:root {
    --pre: rgb(67, 180, 255);
    --primary: #0073e6;
    --primary-dark: #0059b3;
    --navy: rgb(0, 46, 131);
    --primary-light: #e6f2ff;
    --accent: #ff6b35;
    --dark: #1a1a1a;
    --light-dark: rgb(43, 43, 43);
    --gray: #666666;
    --lightish-gray: #979797;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.12);
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* Remove blue highlight on buttons, links, and interactive elements */
button:focus,
a:focus,
.btn:focus,
.btn-primary:focus,
.btn-outline:focus,
.service-link:focus,
.contact-action-btn:focus,
.viewServices-more-btn:focus,
.learn-more-btn:focus,
.google-review-btn:focus,
.navbar a:focus,
.mobile-menu-btn:focus,
input:focus,
textarea:focus {
    outline: none !important;
    box-shadow: none !important;
    -webkit-tap-highlight-color: transparent !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
     -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto ,sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(230, 104, 0, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 115, 230, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--pre);
    border: 2px solid var(--pre);
}

.btn-outline:hover {
    background: var(--primary-light);
}

.btn-orange {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-orange:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-full {
    width: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background:linear-gradient(90deg, rgb(255, 255, 255), rgba(255, 255, 255, 0.95),rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.082)) ;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 20px;
    color: var(--primary-dark);
}
.logo img {
            width: 205px;
            height: 65px;
            margin-right: 1px;
            
            
        }
.logo .logo-icon-footer img {
            width: 275px;
            height: 255px;
            margin-right: 1px;
            
            
        }
.logo-icon {
    width: 205px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}
.logo-icon-footer {
    width: 275px;
    height: 255px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-weight: 500;
    color: var(--dark);
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-contact {
    display: flex;
    align-items: center;
    gap: 16px;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: var(--dark);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--dark);
    transition: all 0.3s ease;
}



       section {
            padding: 80px 0;
        }
        

        h1, h2, h3, h4, h5 {
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
            
        }

        p {
            margin-bottom: 1.5rem;
        }

        a {
            text-decoration: none;
            color: inherit;
        }
   

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
             display: inline-block;
    padding: 8px 16px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 16px;
        }

      

        .section-title p {
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
        }

        /* === HERO SECTION === */
        .about-hero {
            background: linear-gradient(135deg, rgba(0, 115, 230, 0.9) 0%, rgba(0, 89, 179, 0.85) 100%), url('images/AC-Repair.jpg');
            background-size: cover;
            background-position: center;
            padding: 140px 0 80px;
            margin-top: 0;
            color: white;
            position: relative;
        }

        .about-hero-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            animation: fadeInUp 1s ease-out;
        }

        .about-hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
        }

        .about-hero-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }

        .hero-buttons {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* === ABOUT SECTION === */
        /* === ABOUT SECTION === */
.about-main {
    background-color: var(--white);
}

.about-grid {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1;
    position: relative; /* Important for caption positioning */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.5s ease-in-out, transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.03);
}

/* Caption styling */
.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.6), transparent);
    color: white;
    padding: 20px 16px 12px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(2px);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    color: var(--primary);
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text);
}

/* Feature list styling */
.feature-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.feature-list li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text);
}

.feature-list li:before {
    content: "✓";
    color: var(--primary);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Mobile responsive - keeps your layout */
@media (max-width: 768px) {
    .about-grid {
        flex-direction: column;
        gap: 30px;
    }
    
    .about-text h2 {
        font-size: 1.8rem;
    }
    
    .image-caption {
        font-size: 0.75rem;
        padding: 12px 12px 8px;
    }
}

/* Desktop caption adjustment */
@media (min-width: 769px) {
    .image-caption {
        font-size: 0.85rem;
        padding: 20px 20px 12px;
    }
}
        /* === STATS SECTION === */
        .stats-section {
            background: linear-gradient(135deg, var(--navy), var(--primary));
            color: white;
            text-align: center;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }

        .stat-card {
            padding: 20px;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 10px;
            color: var(--secondary);
        }

        .stat-label {
            font-size: 1rem;
            opacity: 0.9;
        }

        /* === WHY CHOOSE US — Full Background Images === */
.why-choose {
    background-color: var(--light-gray);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Feature Card - With Full Background Image */
.feature-card {
    position: relative;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-bottom: none;
    box-shadow: var(--shadow);
}

/* Dark overlay for readability */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
    transition: background 0.3s ease;
}

.feature-card:hover::before {
    background: rgba(0, 0, 0, 0.8);
}

/* Card content stays above overlay */
.feature-card .feature-icon,
.feature-card h3,
.feature-card p {
    position: relative;
    z-index: 2;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

/* Individual background images for each feature card */
.feature-card:nth-child(1) {
    background-image: url('images/about-technician.jpg');
}
.feature-card:nth-child(2) {
    background-image: url('images/OEM.jpg');
}
.feature-card:nth-child(3) {
    background-image: url('images/istockphoto-2154268652-612x612.jpg');
}
.feature-card:nth-child(4) {
    background-image: url('images/parts.jpg');
}
.feature-card:nth-child(5) {
    background-image: url('images/1777228314218.png');
}
.feature-card:nth-child(6) {
    background-image: url('images/AC-Repair.jpg');
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background-color: var(--accent);
    transform: scale(1.05);
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: white;
    font-weight: 700;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 30px 20px;
        min-height: 280px;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
    }
}
        /* ===TESTIMONY=== */
        .testimonials {
           background-color: var(--light-gray);  
    }

        /* === SERVICE AREAS === */
        .areas-section {
            background-color: var(--white);
        }

        .areas-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
            margin-top: 30px;
        }

        .area-tag {
            background-color: var(--light-dark);
            padding: 10px 24px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 500;
            color: var(--white);
            transition: var(--transition);
        }

        .area-tag:hover {
            background-color: var(--primary);
            color: white;
            transform: translateY(-2px);
        }

        /* ----- STICKER / BADGE MARQUEE (no card background) ----- */
        .sticker-marquee {
            background: var(--white);       /* warm neutral backdrop */
            padding: 1.2rem 0;
            overflow: hidden;
            border-top: 0px solid rgb(255, 255, 255);
            border-bottom: 0px solid rgb(255, 255, 255);
            width: 100%;
        }

        .marquee-track {
            display: flex;
            overflow: hidden;
            user-select: none;
            gap: 3rem;                  /* space between logos */
            mask: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
            -webkit-mask: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
        }

        /* infinite scrolling strip (duplicate for seamless loop) */
        .marquee-content {
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: space-around;
            gap: 3rem;
            min-width: 100%;
            animation: scrollSticker 20s linear infinite;
            will-change: transform;
        }

        /* --- badge / sticker style (completely transparent background) --- */
        .brand-badge {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: auto;                /* no fixed card, shrink to content */
            background: transparent;    /* NO background, NO card */
            border: none;
            box-shadow: none;
            backdrop-filter: none;
            transition: transform 0.2s ease, filter 0.2s;
            filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
            flex-shrink: 0;
        }

        .brand-badge:hover {
            transform: scale(1.1) rotate(0.5deg);
            filter: drop-shadow(0 8px 12px rgba(0,0,0,0.15));
        }

        /* image simulates a vector logo / sticker - completely background-free */
        .badge-img {
            width: 140px;               /* consistent logo size */
            height: 140px;
            object-fit: contain;        /* keeps logo shape, no distortion */
            display: block;
            background: transparent;    /* crucial — no white, no card */
            border-radius: 0;           /* no rounded background */
            border: none;
            pointer-events: none;
            filter: brightness(0.95) contrast(1.1);
        }

        /* optional tiny descriptor — appears like a genuine sticker label */
        .badge-name {
            background: transparent;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 1px;
            color: #2d3a47;
            text-transform: uppercase;
            margin-top: 0.4rem;
            padding: 0.2rem 0.6rem;
            border-radius: 40px;         /* subtle pill, but transparent bg */
            background: rgba(255,255,255,0.2);  /* very faint glass, no card */
            backdrop-filter: blur(2px);
            border: 1px solid rgba(255,255,255,0.4);
            transition: background 0.2s;
        }

        .brand-badge:hover .badge-name {
            background: rgba(255,255,255,0.45);
            border-color: rgba(0,0,0,0.1);
        }

        /* animation */
        @keyframes scrollSticker {
            from { transform: translateX(0); }
            to { transform: translateX(-100%); }
        }

        /* pause on hover (optional, respects reduced motion) */
        .marquee-track:hover .marquee-content {
            animation-play-state: paused;
        }

           /* responsive */
        @media (max-width: 700px) {
            .badge-img {
                width: 90px;
                height: 90px;
            }
            .marquee-content {
                gap: 2rem;
            }
            .marquee-track {
                gap: 2rem;
            }
            .badge-name {
                font-size: 0.7rem;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .marquee-content {
                animation: none;
                transform: translateX(0);
            }
        }

        /* make all images transparent / background-free.
           using picsum with grayscale & transparent effect – but real png would be best.
           we force remove any background via forcing background:none and use svg-like images.
           to simulate transparent logo, we use picsum but apply a mix-blend-mode to drop white.
           plus we ensure no accidental card background */
        .brand-badge {
            background: transparent !important;
        }
        .badge-img {
            background: transparent !important;
            mix-blend-mode: multiply;    /* helps blend white-ish bg away, gives sticker feel */
        }
        /* extra insurance: no border, no outline */



        /* === BRANDS SECTION === */
        .brands-section {
            background-color: var(--white);
            text-align: center;
        }

       

        

        /* === CTA SECTION === */
        .cta-section {
            background: linear-gradient(135deg, var(--accent), #e55a2b);
            color: white;
            text-align: center;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-buttons {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-cta-primary {
            background-color: white;
            color: var(--primary-dark);
        }

        .btn-cta-primary:hover {
            background-color: var(--primary-dark);
            color: white;
        }

        .btn-cta-outline {
            background-color: transparent;
            border: 2px solid white;
            color: white;
        }

        .btn-cta-outline:hover {
            background-color: white;
            color: var(--primary-dark);
        }

        /* === ANIMATIONS === */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* === RESPONSIVE === */
        @media (max-width: 992px) {
            .about-grid {
                flex-direction: column;
            }
            .about-hero-content h1 {
                font-size: 2.5rem;
            }
            .section-title h2 {
                font-size: 2rem;
            }
        }

        @media (max-width: 768px) {
            section {
                padding: 60px 0;
            }
            .about-hero {
                padding: 100px 0 60px;
            }
            .about-hero-content h1 {
                font-size: 2rem;
            }
            .stat-number {
                font-size: 2.5rem;
            }
            .features-grid {
                grid-template-columns: 1fr;
            }
            .brands-grid {
                gap: 15px;
            }
            .brand-item {
                padding: 15px 20px;
            }
        }

        @media (max-width: 576px) {
            .hero-buttons, .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            .btn {
                width: 100%;
                text-align: center;
            }
            .area-tag {
                font-size: 12px;
                padding: 6px 14px;
            }
        }






/* Footer */
.footer {
    background: var(--light-dark);
    color: var(--white);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
}

.social-links svg {
    color: var(--white);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-contact svg {
    color: #FFC107;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact p {
    font-weight: 500;
}

.footer-contact small {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

.rating-badge {
    margin-top: 24px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
}

.rating-badge .stars {
    margin-bottom: 8px;
}

.rating-badge p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--white);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        order: 2;
    }

    .hero-image {
        order: 1;
    }

    .hero p {
        margin: 0 auto 32px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-image img {
        max-width: 300px;
    }

    .floating-card {
        display: none;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-contact {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    /* Mobile Menu Styles */
    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        border-bottom: 1px solid #eee;
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: block;
        padding: 16px 20px;
        font-size: 16px;
        font-weight: 500;
    }

    .nav-links a:hover {
        background: var(--primary-light);
        color: var(--primary);
    }

    /* Hamburger Animation */
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .section-header h2,
    .about-content h2 {
        font-size: 32px;
    }
    
    .section-title h2 {
         
    font-size: 14px;
    
        }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .values-list {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 32px 24px;
    }

    .testimonial-text {
        font-size: 17px;
    }

    .service-tag {
        display: none;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-contact li {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
    .footer-brand .logo {
     justify-content: center;
}
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-large {
        width: 100%;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .trust-badges {
        gap: 20px;
    }

    .badge-item span {
        display: none;
    }
    
}

/* ========== FLOATING CONTACT HUB (PURE, NO LAYOUT CONFLICTS) ========== */
        /* main wrapper - fixed position, high z-index, independent stacking */
        .floating-contact-wrapper {
            position: fixed;
            bottom: 24px;
            right: 24px;
            z-index: 999999;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            pointer-events: none; /* container doesn't block clicks, but children enable */
        }

        /* menu container (WhatsApp, Email, Call) - slides up like hamburger */
        .contact-actions-menu {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 14px;
            margin-bottom: 18px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(30px) scale(0.9);
            transition: opacity 0.25s cubic-bezier(0.2, 0.9, 0.4, 1.2), 
                        visibility 0.2s,
                        transform 0.28s cubic-bezier(0.18, 0.89, 0.32, 1.28);
            pointer-events: none;
        }

        /* active state: menu visible upward (like popup menu) */
        .floating-contact-wrapper.active .contact-actions-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
            pointer-events: auto;
        }

        /* individual contact cards */
        .contact-action-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            background: white;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(4px);
            border-radius: 60px;
            padding: 0 20px 0 18px;
            height: 54px;
            box-shadow: 0 12px 24px -8px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0,0,0,0.02);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            letter-spacing: -0.2px;
            transition: all 0.2s ease;
            font-family: inherit;
            color: #1f2f3c;
            cursor: pointer;
            min-width: 170px;
            border: none;
        }

        .contact-action-btn svg {
            width: 22px;
            height: 22px;
            flex-shrink: 0;
        }

        /* brand hover effects */
        .contact-action-btn.whatsapp-item:hover {
            background: #25D366;
            color: white;
            transform: translateX(-6px) scale(1.02);
        }
        .contact-action-btn.whatsapp-item:hover svg path {
            fill: white;
        }

        .contact-action-btn.email-item:hover {
            background: #EA4335;
            color: white;
            transform: translateX(-6px) scale(1.02);
        }
        .contact-action-btn.email-item:hover svg path {
            fill: white;
        }

        .contact-action-btn.call-item:hover {
            background: #1e6fdf;
            color: white;
            transform: translateX(-6px) scale(1.02);
        }
        .contact-action-btn.call-item:hover svg path {
            fill: white;
        }

        /* MAIN FLOATING BUTTON (green WhatsApp style) */
        .main-contact-fab {
            width: 60px;
            height: 60px;
            background: linear-gradient(145deg, #25D366, #1da959);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
            cursor: pointer;
            transition: all 0.2s ease;
            border: none;
            pointer-events: auto;
            position: relative;
            z-index: 10;
        }

        .main-contact-fab:hover {
            transform: scale(1.08);
            background: #20b359;
            box-shadow: 0 12px 26px rgba(0, 0, 0, 0.3);
        }

        .main-contact-fab svg {
            width: 30px;
            height: 30px;
            display: block;
        }

        /* tooltip on hover (optional) */
        .fab-hover-tip {
            position: absolute;
            right: 74px;
            background: #1e2a36;
            color: white;
            font-size: 13px;
            font-weight: 500;
            padding: 6px 14px;
            border-radius: 40px;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.2s;
            font-family: inherit;
            pointer-events: none;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }

        .main-contact-fab:hover .fab-hover-tip {
            opacity: 1;
            visibility: visible;
        }

        /* ---------- POP-UP REMINDER (appears every 2 min or on hover) ---------- */
        .reminder-popup {
            position: fixed;
            bottom: 100px;
            right: 100px;
            background: white;
            border-radius: 60px;
            padding: 10px 22px 10px 24px;
            display: flex;
            align-items: center;
            gap: 12px;
            box-shadow: 0 20px 30px -10px rgba(0,0,0,0.25), 0 0 0 1px rgba(37,211,102,0.3);
            z-index: 999998;
            font-family: inherit;
            font-weight: 600;
            font-size: 0.9rem;
            color: #075E54;
            background: #ffffffef;
            backdrop-filter: blur(12px);
            border: 1px solid rgba(37,211,102,0.5);
            cursor: pointer;
            transition: all 0.2s ease;
            opacity: 0;
            visibility: hidden;
            transform: scale(0.9) translateX(10px);
            pointer-events: auto;
            white-space: nowrap;
        }

        .reminder-popup.show {
            opacity: 1;
            visibility: visible;
            transform: scale(1) translateX(0);
        }

        .reminder-popup:hover {
            background: #25D366;
            color: white;
            border-color: white;
            transform: scale(1.02);
        }

        .reminder-popup svg {
            width: 20px;
            height: 20px;
        }

        /* close icon inside reminder */
        .reminder-close {
            margin-left: 6px;
            background: rgba(0,0,0,0.1);
            border-radius: 50%;
            width: 22px;
            height: 22px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: 0.1s;
        }
        .reminder-close:hover {
            background: rgba(0,0,0,0.2);
        }

        /* responsive */
        @media (max-width: 550px) {
            .floating-contact-wrapper {
                bottom: 18px;
                right: 18px;
            }
            .main-contact-fab {
                width: 54px;
                height: 54px;
            }
            .main-contact-fab svg {
                width: 26px;
                height: 26px;
            }
            .contact-action-btn {
                min-width: 150px;
                height: 48px;
                padding: 0 14px 0 14px;
                font-size: 0.85rem;
            }
            .contact-action-btn svg {
                width: 20px;
                height: 20px;
            }
            .reminder-popup {
                bottom: 88px;
                right: 80px;
                padding: 8px 16px;
                font-size: 0.8rem;
                white-space: nowrap;
            }
            .fab-hover-tip {
                font-size: 11px;
                right: 64px;
            }
        }

        /* reduced motion */
        @media (prefers-reduced-motion: reduce) {
            .contact-actions-menu, .reminder-popup, .main-contact-fab {
                transition: none;
            }
            .main-contact-fab:hover {
                transform: none;
            }
        }

        /* little pulse ring on main button (subtle) */
        .pulse-ring {
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: rgba(37, 211, 102, 0.4);
            animation: softPulse 2s infinite;
            pointer-events: none;
            z-index: -1;
        }

        @keyframes softPulse {
            0% { transform: scale(1); opacity: 0.5; }
            70% { transform: scale(1.35); opacity: 0; }
            100% { transform: scale(1.5); opacity: 0; }
        }