/* ============================================= */
/* 1. GLOBAL STYLES & CSS VARIABLES */
/* ============================================= */
:root {
    --color-green: #00C853; 
    --color-green-dark: #00A341;
    --color-blue: #0d6efd; 
    --color-blue-dark: #0b5ed7;
    --color-dark: #121212; 
    --color-light: #FFFFFF;
    --color-grey: #6c757d; 
    --color-bg-light: #F8F9FA;
    --font-family: 'Inter', sans-serif;
    --section-padding: 5rem 0;
    --border-radius: 12px;
    --transition-smooth: all 0.3s ease-in-out;
}

*, *::before, *::after { 
    box-sizing: border-box; 
}

html { 
    scroll-behavior: smooth; 
}

body { 
    font-family: var(--font-family); 
    background-color: var(--color-light); 
    color: #333; 
    line-height: 1.7; 
    overflow-x: hidden; 
    padding-top: 81px; /* Adjusted for header height */
}

body.mobile-nav-active { 
    overflow: hidden; 
}

.container { 
    max-width: 1200px; 
}

h1,h2,h3,h4,h5 { 
    color: var(--color-dark); 
    font-weight: 700; 
    line-height: 1.3; 
}

.section-tag { 
    color: var(--color-green); 
    font-weight: 600; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
}

.section-title { 
    font-size: 2.5rem; 
    margin: 0.5rem 0 3rem; 
}

/* ============================================= */
/* 2. HEADER & NAVIGATION */
/* ============================================= */
.header { 
    background: var(--color-light); 
    padding: 1rem 0; 
    transition: var(--transition-smooth); 
    z-index: 1030; 
    border-bottom: 1px solid #e9ecef; 
}

.header.scrolled { 
    box-shadow: 0 4px 15px rgba(0,0,0,0.07); 
}

.header__logo { 
    font-size: 1.5rem; 
    color: var(--color-dark); 
    text-decoration: none; 
    font-weight: 800; 
    display: flex;
    align-items: center;
}

.header__logo img {
    max-height: 40px;
    width: auto;
}

.header__logo i { 
    color: var(--color-green); 
}

.header__nav { 
    gap: 2rem; 
}

.header__nav-list { 
    list-style: none; 
    margin: 0; 
    padding: 0; 
    display: flex; 
    gap: 2.5rem; 
}

.header__nav-list a { 
    color: var(--color-dark); 
    text-decoration: none; 
    font-weight: 500; 
    position: relative; 
}

.header__nav-list a::after { 
    content: ''; 
    position: absolute; 
    bottom: -5px; 
    left: 0; 
    width: 0; 
    height: 2px; 
    background: var(--color-green); 
    transition: width 0.3s ease; 
}

.header__nav-list a:hover::after { 
    width: 100%; 
}

.header__cta-buttons { 
    display: flex; 
    gap: 0.75rem; 
}

.header__toggler { 
    background: none; 
    border: none; 
    cursor: pointer; 
    z-index: 1041; 
    padding: 0; 
}

.toggler-icon { 
    display: block; 
    width: 25px; 
    height: 2px; 
    background-color: var(--color-dark); 
    margin: 5px 0; 
    transition: var(--transition-smooth); 
}

.header__toggler.open .toggler-icon:nth-child(1) { 
    transform: rotate(45deg) translate(5px, 5px); 
}

.header__toggler.open .toggler-icon:nth-child(2) { 
    opacity: 0; 
}

.header__toggler.open .toggler-icon:nth-child(3) { 
    transform: rotate(-45deg) translate(5px, -5px); 
}

.mobile-nav { 
    position: fixed; 
    top: 0; 
    right: -100%; 
    width: 90%; 
    max-width: 400px; 
    height: 100vh; 
    background-color: var(--color-light); 
    box-shadow: -5px 0 15px rgba(0,0,0,0.1); 
    z-index: 1040; 
    padding: 6rem 2rem; 
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1); 
}

.mobile-nav.active { 
    right: 0; 
}

.mobile-nav__close-btn { 
    position: absolute; 
    top: 20px; 
    right: 25px; 
    background: transparent; 
    border: none; 
    font-size: 2rem; 
    color: var(--color-dark); 
    cursor: pointer; 
    padding: 0.5rem; 
    line-height: 1; 
}

.mobile-nav__list { 
    list-style: none; 
    padding: 0; 
    margin: 0; 
    display: flex; 
    flex-direction: column; 
    gap: 1rem; 
}

.mobile-nav__list a.nav-link { 
    font-size: 1.5rem; 
    font-weight: 600; 
    padding: 0.5rem 0; 
    display: block; 
}

.mobile-nav__list .btn { 
    padding: 1rem; 
    font-size: 1.1rem; 
}

/* ============================================= */
/* 3. BUTTONS & HERO */
/* ============================================= */
.btn { 
    padding: 0.8rem 2rem; 
    border-radius: 50px; 
    font-weight: 600; 
    transition: var(--transition-smooth); 
    border: 2px solid transparent; 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
}

.btn-primary { 
    background-color: var(--color-green); 
    border-color: var(--color-green); 
    color: var(--color-light); 
}

.btn-primary:hover { 
    background-color: var(--color-green-dark); 
    border-color: var(--color-green-dark); 
    transform: translateY(-3px); 
    box-shadow: 0 5px 15px rgba(0, 200, 83, 0.3); 
}

.btn-call { 
    background-color: var(--color-blue); 
    border-color: var(--color-blue); 
    color: var(--color-light); 
}

.btn-call:hover { 
    background-color: var(--color-blue-dark); 
    border-color: var(--color-blue-dark); 
    transform: translateY(-3px); 
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3); 
}

.btn-outline-light { 
    border-color: var(--color-light); 
    color: var(--color-light); 
}

.btn-outline-light:hover { 
    background-color: var(--color-light); 
    color: var(--color-dark); 
}

.btn-lg { 
    padding: 1rem 2.5rem; 
}

.hero {
    position: relative;
    padding: 10rem 0;
    color: var(--color-light);
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('images/cardashca.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 18, 18, 0.65);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero__title { 
    font-size: clamp(2.5rem, 5vw, 4rem); 
    color: var(--color-light); 
    font-weight: 800; 
}

.hero__subtitle { 
    font-size: 1.2rem; 
    max-width: 650px; 
    margin: 1rem auto 2.5rem; 
    color: rgba(255, 255, 255, 0.85); 
}

/* ============================================= */
/* 4. CONTENT SECTIONS */
/* ============================================= */
.services, .how-it-works, .reviews, .faq, .contact { 
    padding: var(--section-padding); 
}

.about, .brands, .service-area { 
    padding: var(--section-padding); 
    background-color: var(--color-bg-light); 
}

.service-card { 
    background: var(--color-light); 
    border: 1px solid #e9ecef; 
    border-radius: var(--border-radius); 
    transition: var(--transition-smooth); 
    box-shadow: 0 5px 25px rgba(0,0,0,0.05); 
    overflow: hidden; 
    display: flex; 
    flex-direction: column; 
    height: 100%; 
}

.service-card:hover { 
    transform: translateY(-8px); 
    box-shadow: 0 12px 30px rgba(0,0,0,0.08); 
}

.service-card__thumbnail { 
    width: 100%; 
    aspect-ratio: 16 / 10; 
    overflow: hidden; 
}

.service-card__thumbnail img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 0.4s ease; 
}

.service-card:hover .service-card__thumbnail img { 
    transform: scale(1.05); 
}

.service-card__body { 
    padding: 1.5rem; 
    text-align: center; 
}

.step-card { 
    text-align: center; 
    position: relative; 
}

.step-card__number { 
    position: absolute; 
    top: -1.5rem; 
    left: 50%; 
    transform: translateX(-50%); 
    font-size: 1.5rem; 
    font-weight: 800; 
    background: var(--color-green); 
    color: var(--color-light); 
    width: 40px; 
    height: 40px; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
}

.step-card__icon { 
    font-size: 3rem; 
    color: var(--color-green); 
    margin-bottom: 1rem; 
}

.step-card__title { 
    font-size: 1.4rem; 
    font-weight: 600; 
}

.service-area__list { 
    list-style: none; 
    padding: 0; 
    margin-top: 2rem; 
}

.service-area__list li { 
    font-size: 1.1rem; 
    font-weight: 500; 
    margin-bottom: 1rem; 
    display: flex; 
    align-items: center; 
}

.service-area__list i { 
    color: var(--color-green); 
    margin-right: 1rem; 
    font-size: 1.3rem; 
}

.localities-grid { 
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 1rem; 
    max-width: 800px; 
    margin: 0 auto; 
}

.localities-grid span { 
    background-color: var(--color-light); 
    padding: 0.5rem 1rem; 
    border-radius: 50px; 
    font-weight: 500; 
    border: 1px solid #e9ecef; 
    box-shadow: 0 2px 5px rgba(0,0,0,0.05); 
}

.review-card { 
    background-color: var(--color-light); 
    padding: 2rem; 
    border-radius: var(--border-radius); 
    border-left: 5px solid var(--color-green); 
    box-shadow: 0 5px 25px rgba(0,0,0,0.05); 
    font-size: 1.1rem; 
    font-style: italic; 
}

.review-card__author { 
    font-style: normal; 
    margin-top: 1.5rem; 
    font-size: 1rem; 
    color: var(--color-dark); 
}

.carousel-control-prev-icon, .carousel-control-next-icon { 
    background-color: var(--color-dark); 
    border-radius: 50%; 
    padding: 1.2rem; 
}

.accordion-item { 
    border-radius: var(--border-radius) !important; 
    margin-bottom: 1rem; 
    border: 1px solid #e9ecef; 
    overflow: hidden; 
}

.accordion-button { 
    font-weight: 600; 
    font-size: 1.1rem; 
}

.accordion-button:not(.collapsed) { 
    color: var(--color-light); 
    background-color: var(--color-green); 
}

.accordion-button:focus { 
    box-shadow: 0 0 0 0.25rem rgba(0, 200, 83, 0.25); 
}

.logo-marquee { 
    width: 100%; 
    overflow: hidden; 
    position: relative; 
    -webkit-mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent); 
    mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent); 
}

.logo-marquee__track { 
    display: flex; 
    gap: 4rem; 
    width: max-content; 
    animation: marquee 30s linear infinite; 
}

.logo-marquee__track:hover { 
    animation-play-state: paused; 
}

.logo-marquee__track img { 
    max-height: 40px; 
    filter: grayscale(100%); 
    opacity: 0.6; 
    transition: var(--transition-smooth); 
}

.logo-marquee__track img:hover { 
    filter: grayscale(0); 
    opacity: 1; 
}

@keyframes marquee { 
    0% { transform: translateX(0); } 
    100% { transform: translateX(-50%); } 
}

.contact__title { 
    font-size: 1.8rem; 
    margin-bottom: 1.5rem; 
    padding-bottom: 0.75rem; 
    border-bottom: 2px solid var(--color-green); 
    display: inline-block; 
}

.contact .form-control { 
    padding: 0.8rem 1rem; 
    border-radius: var(--border-radius); 
    border: 1px solid #ddd; 
}

.contact .form-control:focus { 
    border-color: var(--color-green); 
    box-shadow: 0 0 0 0.25rem rgba(0, 200, 83, 0.25); 
}

.contact__direct-buttons .btn { 
    padding-top: 1rem; 
    padding-bottom: 1rem; 
    font-size: 1.1rem; 
}

/* ============================================= */
/* 5. FOOTER (COMPREHENSIVE & FIXED) */
/* ============================================= */
.footer { 
    background-color: var(--color-dark); 
    color: var(--color-grey); 
    padding: 4rem 0 0; 
}

.footer__title { 
    font-size: 1.2rem; 
    font-weight: 600; 
    color: var(--color-light); 
    margin-bottom: 1.5rem; 
    position: relative; 
    padding-bottom: 0.75rem; 
}

.footer__title::after { 
    content: ''; 
    position: absolute; 
    bottom: 0; 
    left: 0; 
    width: 30px; 
    height: 2px; 
    background-color: var(--color-green); 
}

.footer__about { 
    margin: 1.5rem 0; 
    line-height: 1.8; 
}

.footer__socials { 
    display: flex; 
    gap: 1rem; 
}

.footer__socials a { 
    color: var(--color-grey); 
    font-size: 1.2rem; 
    transition: var(--transition-smooth); 
}

.footer__socials a:hover { 
    color: var(--color-green); 
    transform: translateY(-3px); 
}

.footer__list { 
    list-style: none; 
    padding: 0; 
    margin: 0; 
}

.footer__list li { 
    margin-bottom: 0.75rem; 
}

.footer__list a, .footer__list li { 
    color: var(--color-grey); 
    text-decoration: none; 
    transition: var(--transition-smooth); 
}

.footer__list a:hover { 
    color: var(--color-green); 
    padding-left: 5px; 
}

.footer__list--contact li { 
    display: flex; 
    align-items: flex-start; 
    gap: 0.75rem; 
}

.footer__list--contact i { 
    margin-top: 5px; 
    color: var(--color-green); 
    width: 16px; 
    text-align: center; 
}

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 3rem;
    padding: 2rem 0;
    font-size: 0.9rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer__bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }
}

.footer__legal-links a {
    color: var(--color-grey);
    text-decoration: none;
    margin: 0 0.5rem;
    transition: var(--transition-smooth);
}

.footer__legal-links a:hover {
    color: var(--color-light);
    text-decoration: underline;
}

.footer__credit {
    text-align: center;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__credit p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--color-grey);
}

.footer__credit a {
    color: var(--color-light);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer__credit a:hover {
    color: var(--color-green);
    text-decoration: underline;
}

/* ============================================= */
/* 6. LEGAL PAGE & ANIMATIONS */
/* ============================================= */
.legal-content { 
    padding: var(--section-padding); 
}

.legal-content h1 { 
    font-size: 3rem; 
    margin-bottom: 0.5rem; 
}

.legal-content h3 { 
    font-size: 1.5rem; 
    font-weight: 600; 
    margin-top: 2.5rem; 
    margin-bottom: 1rem; 
}

.legal-content p, .legal-content li { 
    color: var(--color-grey); 
}

.legal-content ul { 
    padding-left: 2rem; 
}

.floating-cta { 
    position: fixed; 
    bottom: 20px; 
    right: 20px; 
    z-index: 1025; 
    display: flex; 
    flex-direction: column; 
    gap: 1rem; 
}

.floating-cta__btn { 
    width: 55px; 
    height: 55px; 
    border-radius: 50%; 
    color: var(--color-light); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 1.5rem; 
    text-decoration: none; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.2); 
    transition: var(--transition-smooth); 
    border: none; 
    cursor: pointer; 
}

.floating-cta__btn:hover { 
    transform: scale(1.1); 
}

.floating-cta .whatsapp-float { 
    background-color: var(--color-green); 
    animation: pulse 2s infinite; 
}

.floating-cta .call-float { 
    background-color: var(--color-blue); 
}

@keyframes pulse { 
    0% { box-shadow: 0 0 0 0 rgba(0, 200, 83, 0.7); } 
    70% { box-shadow: 0 0 0 10px rgba(0, 200, 83, 0); } 
    100% { box-shadow: 0 0 0 0 rgba(0, 200, 83, 0); } 
}

.animate-on-scroll { 
    opacity: 0; 
    transition: opacity 0.6s ease-out, transform 0.6s ease-out; 
}

.animate-on-scroll.fadeInUp { 
    transform: translateY(30px); 
}

.animate-on-scroll.is-visible { 
    opacity: 1; 
    transform: none; 
}