: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;
}

section {
            padding: 80px 0;
        }

/* 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;
}


/* Services Hero */
        .services-hero {
            background: linear-gradient(135deg, rgba(0, 115, 230, 0.9) 0%, rgba(0, 89, 179, 0.85) 100%), url('images/parts.jpg');
            background-size: cover;
            background-position: center;
            padding: 140px 0 80px;
            margin-top: 0;
            color: white;
            text-align: center;
        }

        .services-hero h1 {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .services-hero p {
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.9;
        }

        /* Section Header */
        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-tag {
            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-header h2 {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 16px;
            color: var(--dark);
        }

        .section-header p {
            color: var(--gray);
            max-width: 600px;
            margin: 0 auto;
        }

        /* ========================================
           QUICK JUMP MENU (STICKY NAVIGATION)
           ======================================== */
        .quick-jump-carousel {
    position: sticky;
    top: 70px;
    background:linear-gradient(90deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95),rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.082)) ;
    backdrop-filter:  blur(10px);
    padding: 1px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 99;
}

.carousel-container {
    flex: 1;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: rgba(24, 24, 24, 0.479) #ffffffb2; /* thumb, track - Firefox */
}

/* WebKit scrollbar styling */
.carousel-container::-webkit-scrollbar {
    height: 6px; /* Height of horizontal scrollbar */
}

.carousel-container::-webkit-scrollbar-track {
    background: #e2e8f0; /* Light gray track - CHANGE THIS COLOR */
    border-radius: 10px;
}

.carousel-container::-webkit-scrollbar-thumb {
    background: var(--lightish-gray); /* Dark blue thumb */
    border-radius: 10px;
}



.carousel-links {
    display: flex;
    gap: 8px;
    padding: 4px 0;
}

.carousel-links a {
    flex-shrink: 0;
    padding: 8px 20px;
    background: rgba(24, 24, 24, 0.356);
    border-radius: 40px;
    border: 0.1px solid white;
    color: white;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
}

.carousel-nav {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gray);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
}


@media (max-width: 768px) {
    .carousel-nav {
        display: none;
    }
}
/* Service Icon Color Classes */
.service-icon-large {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon-large.blue {
    background: linear-gradient(135deg, #0073e6, #0059b3);
}

.service-icon-large.purple {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.service-icon-large.teal {
    background: linear-gradient(135deg, #14b8a6, #0d9488);
}

.service-icon-large.orange {
    background: linear-gradient(135deg, #f97316, #ea580c);
}

.service-icon-large.violet {
    background: linear-gradient(135deg, #a855f7, #9333ea);
}

.service-icon-large.sky {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
}

.service-icon-large.green {
    background: linear-gradient(135deg, #10b981, #059669);
}

.service-icon-large.red {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}
        /* ========================================
           ALTERNATING SERVICE ROWS 
           ======================================== */
        .service-row {
            padding: 60px 0;
            border-bottom: 1px solid #eef2f6;
            scroll-margin-top: 130px;
        }

        .service-row:last-child {
            border-bottom: none;
        }

        .service-row:nth-child(even) {
            background-color: var(--light-dark);
        }

        .service-row:nth-child(odd) {
            background-color: var(--light-dark);
        }
        

        .service-alternating {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .service-alternating.reverse {
            direction: rtl;
        }

        .service-alternating.reverse .service-info {
            direction: ltr;
        }

        .service-image {
            border-radius: 22px;
            overflow: hidden;
            box-shadow: var(--shadow-hover);
        }

        .service-image img {
            width: 100%;
            height: 60vh;
            object-fit: cover;
            transition: transform 0.3s ease;
            display: block;
        }
        

        .service-image:hover img {
            transform: scale(1.03);
        }

        .service-icon-large {
            width: 70px;
            height: 70px;
            border-radius: 16px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
        }
        .service-alternating .service-info h2{
            color: var(--white);
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .service-alternating.reverse .service-info h2 {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 16px;
            color: var(--white);
        }
        .service-alternating.reverse .service-description {
             color: rgba(255,255,255,0.75);
            font-size: 16px;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .service-info h2 .highlight {
            color: var(--accent);
        }

        .service-alternating .service-description {
            color: rgba(255,255,255,0.75);
            font-size: 16px;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .service-list {
            list-style: none;
            margin-bottom: 24px;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
        }

        .service-list li {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: var(--white);
        }

        .service-list li svg {
            color: var(--accent);
            flex-shrink: 0;
        }

        .brand-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 20px 0;
        }

        .service-alternating.reverse .brand-badge {
            background: var(--gray);
            padding: 6px 14px;
            border-radius: 30px;
            font-size: 12px;
            font-weight: 500;
            color: var(--primary-light);

        }

        .service-alternating .brand-badge {
            background: var(--gray);
            padding: 6px 14px;
            border-radius: 30px;
            font-size: 12px;
            font-weight: 500;
            color: var(--primary-light);
        }

        .service-alternating.reverse .service-btn {
             display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--primary-dark);
            color: white;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 600;
            margin-top: 20px;
            transition: var(--transition);
            text-decoration: none;
        }

        .service-alternating .service-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--primary-dark);
            color: white;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 600;
            margin-top: 20px;
            transition: var(--transition);
            text-decoration: none;
        }

        .service-btn:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
        }

        /* Brands Section */
        .brands-section {
            background: var(--light-gray);
            text-align: center;
        }

        .brands-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-top: 40px;
        }

        .brand-item {
            background: white;
            padding: 15px 30px;
            border-radius: 12px;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .brand-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }

        .brand-item img {
            height: 50px;
            width: auto;
            object-fit: contain;
        }

        /* Pricing Section */
        .pricing-section {
            background: linear-gradient(135deg, var(--navy), var(--primary-dark));
            color: white;
            padding: 34px 0;
        }

        .pricing-flex {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px 32px;
            text-align: left;
        }

        .pricing-text h2 {
            font-size: 22px;
            margin-bottom: 4px;
        }
        .pricing-text p {
            font-size: 13.5px;
            opacity: 0.85;
            margin: 0;
        }

        .pricing-price {
            text-align: center;
            flex-shrink: 0;
        }
        .pricing-price p {
            font-size: 13px;
            margin: 2px 0 0;
        }

        .callout-price {
            font-size: 30px;
            font-weight: 800;
            color: var(--accent);
            margin: 0;
        }

        .callout-price span {
            font-size: 15px;
            font-weight: 400;
            color: white;
        }

        .pricing-badges {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            flex-shrink: 0;
        }

        .price-badge, .warranty-badge {
            display: inline-block;
            padding: 8px 18px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 13.5px;
        }

        .price-badge {
            background: rgba(255,255,255,0.15);
        }

        .warranty-badge {
            background: var(--accent);
        }

        @media (max-width: 700px) {
            .pricing-flex { justify-content: center; text-align: center; }
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--accent), #e55a2b);
            color: white;
            text-align: center;
            padding: 46px 0;
        }

        .cta-section h2 {
            font-size: 32px;
            margin-bottom: 16px;
        }

        .cta-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 24px;
        }

        .btn-cta-primary {
            background: white;
            color: var(--accent);
            padding: 14px 32px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
        }

        .btn-cta-outline {
            background: transparent;
            border: 2px solid white;
            color: white;
            padding: 14px 32px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
        }

        .btn-cta-primary:hover, .btn-cta-outline:hover {
            transform: translateY(-3px);
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            left: 30px;
            width: 40px;
            height: 40px;
            background: var(--navy);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 999;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }

        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background: var(--accent);
            transform: translateY(-3px);
        }
 
/* ===== FAQ Section ===== */
.faq-section {
    position: relative;
    padding: 90px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}
.faq-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,15,25,0.88), rgba(10,15,25,0.75));
    z-index: 1;
}
.faq-content { position: relative; z-index: 2; }

/* Light header on dark background — WHITE text */
.section-header.light .section-tag { 
    color: #fff; 
    background: rgba(255, 255, 255, 0.12); 
}

.section-header.light h2 { 
    color: #fff; 
}

.section-header.light p { 
    color: rgba(255, 255, 255, 0.75); 
}
.faq-list {
    max-width: 780px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.faq-item {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    overflow: hidden;
    backdrop-filter: blur(6px);
}
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    color: #fff;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
}
.faq-icon {
    flex-shrink: 0;
    font-size: 22px;
    font-weight: 400;
    color: var(--primary, #0073e6);
    transition: transform 0.25s ease;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 24px;
}
.faq-item.open .faq-answer { max-height: 220px; padding: 0 24px 22px; }
.faq-answer p {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-section { background-attachment: scroll; padding: 60px 0; }
    .faq-question { padding: 16px 18px; font-size: 15px; }
}
/* 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: 992px) {
            .service-alternating {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .service-alternating.reverse {
                direction: ltr;
            }
            .service-list {
                grid-template-columns: 1fr;
            }
        }
@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;
    }
    .quick-jump {
                top: 70px;
                overflow-x: auto;
                white-space: nowrap;
            }
            .jump-menu {
                flex-wrap: nowrap;
                overflow-x: auto;
                padding-bottom: 5px;
            }
            .jump-links {
                flex-wrap: nowrap;
            }
             .quick-jump {
            overflow-x: auto;
            overflow-y: hidden;
            white-space: nowrap;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: thin;
            padding: 10px 0;
        }
        
        .jump-menu {
            display: inline-flex;
            flex-wrap: nowrap;
            gap: 8px;
            padding: 0 16px;
        }
        
        
        
        .jump-links {
            display: inline-flex;
            flex-wrap: nowrap;
            gap: 8px;
        }
        
        /* Make scrollbar visible and styled */
        .quick-jump::-webkit-scrollbar {
            height: 4px;
        }
        
        .quick-jump::-webkit-scrollbar-track {
            background: #e0e0e0;
            border-radius: 10px;
        }
        
        .quick-jump::-webkit-scrollbar-thumb {
            background: var(--navy);
            border-radius: 10px;
        }
        
        .quick-jump::-webkit-scrollbar-thumb:hover {
            background: var(--accent);
        }

    .section-header h2,
    .about-content h2 {
        font-size: 32px;
    }
.service-image img {
            width: 100%;
            height: 35vh;
            
        }
    .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;
}
 .services-hero h1 {
                font-size: 32px;
            }
            .section-header h2 {
                font-size: 28px;
            }
            .service-info h2 {
                font-size: 24px;
            }
            .callout-price {
                font-size: 36px;
            }
}

@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; }
        }

/* ===== Services Dropdown Nav ===== */
.nav-dropdown { position: relative; }
.nav-dropdown > a.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}
.dropdown-caret { transition: transform 0.25s ease; flex-shrink: 0; }
.nav-dropdown:hover .dropdown-caret,
.nav-dropdown.open .dropdown-caret { transform: rotate(180deg); }
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.14);
    padding:  18px 10px 10px;
    min-width: 250px;
    display: grid;
    gap: 2px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease 0.35s, transform 0.25s ease 0.35s, visibility 0.25s ease 0.35s;
    z-index: 500;
    list-style: none;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
    transition-delay: 0s;
}
.dropdown-menu li a {
    display: block;
    padding: 9px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    color: var(--dark, #1a1a1a);
}
.dropdown-menu li a:hover,
.dropdown-menu li a.active {
    background: rgba(0, 115, 230, 0.08);
    color: var(--primary, #0073e6);
}
.dropdown-viewall a {
    border-top: 1px solid rgba(0,0,0,0.08);
    margin-top: 4px;
    padding-top: 12px !important;
    color: var(--primary, #0073e6) !important;
    font-weight: 600 !important;
    white-space: normal !important;
}
@media (max-width: 768px) {
    .dropdown-menu {
        position: static !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        width: 100% !important;
        box-shadow: none;
        border-radius: 10px;
        background: rgba(0,0,0,0.03);
        display: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        min-width: 0;
        margin: 6px 0 4px;
        padding: 6px;
    }
    .nav-dropdown.open .dropdown-menu { display: grid; }
    .nav-dropdown > a.dropdown-trigger { justify-content: space-between; width: 100%; }
}

/* ===== Service page mini-hero breadcrumb ===== */
.breadcrumb {
    font-size: 14px;
    margin-bottom: 14px;
    opacity: 0.85;
}
.breadcrumb a { color: inherit; text-decoration: underline; }
.breadcrumb span { margin: 0 6px; opacity: 0.6; }

/* ===== Related Services strip ===== */
.related-services {
    padding: 60px 0;
    background: var(--light, #f8f9fb);
}
.related-services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 30px;
}
.related-services-grid a {
    padding: 10px 20px;
    border-radius: 30px;
    background: #fff;
    border: 1.5px solid rgba(0,0,0,0.08);
    font-weight: 600;
    font-size: 14px;
    color: var(--dark, #1a1a1a);
    transition: all 0.25s ease;
}
.related-services-grid a:hover {
    background: var(--primary, #0073e6);
    border-color: var(--primary, #0073e6);
    color: #fff;
    transform: translateY(-2px);
}

/* ===== Services hub cards (services.html) ===== */
.services-grid-hub {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 26px;
    margin-top: 40px;
}
.service-card-hub {
    background: #fff;
    border-radius: 18px;
    padding: 32px 28px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.service-card-hub:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}
.service-card-hub h3 { font-size: 20px; margin: 0; }
.service-card-hub p { font-size: 14.5px; opacity: 0.8; margin: 0; line-height: 1.6; }
.service-card-hub .service-card-link {
    margin-top: auto;
    font-weight: 700;
    color: var(--primary, #0073e6);
}

/* ===========================================================
   NEW: CTA-focused service page redesign
   =========================================================== */

/* --- Hero (centered, no form) --- */
.quote-hero {
    background: linear-gradient(135deg, rgba(25, 25, 26, 0.397) 0%, rgba(1, 15, 29, 0.473) 100%), url('images/likompo.jpeg');
    background-size: cover;
    background-position: center;
    padding: 186px 0 70px;
    color: white;
    text-align: center;
}
.quote-hero .container { max-width: 760px; }
.quote-hero .breadcrumb { font-size: 14px; margin-bottom: 18px; opacity: 0.85; }
.quote-hero .breadcrumb a { color: inherit; text-decoration: underline; }
.quote-hero .breadcrumb span { margin: 0 6px; opacity: 0.6; }
.quote-hero h1 {
    font-size: 45px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 14px;
}
.quote-hero h1 .highlight { color: var(--accent); }
.quote-hero-tagline {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 12px;
    opacity: 0.95;
}
.quote-hero-sub {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.85;
    max-width: 560px;
    margin: 0 auto 30px;
}
.quote-hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 22px;
}
.quote-hero-stat {
    font-size: 14.5px;
    opacity: 0.9;
}
.quote-hero-stat strong { color: var(--accent); font-size: 16px; }

.quote-hero-google-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 30px;
    text-decoration: none;
    color: #fff;
    transition: background 0.25s ease, transform 0.25s ease;
}
.quote-hero-google-badge:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
}
.quote-hero-google-rating {
    font-size: 14.5px;
    font-weight: 600;
}
.quote-hero-google-rating strong { font-size: 16px; }
.quote-hero-google-stars {
    display: inline-flex;
    align-items: center;
    gap: 1px;
    color: #FBBC05;
}

@media (max-width: 500px) {
    .quote-hero-google-badge { padding: 7px 12px; }
    .quote-hero-google-rating { font-size: 13px; }
}

@media (max-width: 900px) {
    .quote-hero { padding: 166px 0 50px; }
    .quote-hero h1 { font-size: 32px; }
}

/* --- Request a Quote (its own section, directly after the hero) --- */
.quote-form-section {
    padding: 80px 0;
    background: var(--primary-light);
}
.quote-form-card {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 0;
    background: #fff;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-hover);
    overflow: hidden;
}
.quote-form-intro {
    background:
        linear-gradient(135deg, rgba(0, 30, 70, 0.62), rgba(0, 60, 130, 0.58)),
        url('images/call.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 44px 38px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.quote-form-intro .section-tag { background: rgba(255,255,255,0.15); color: #fff; }
.quote-form-intro h2 { font-size: 26px; font-weight: 800; margin: 14px 0 12px; line-height: 1.25; }
.quote-form-intro p { font-size: 15px; line-height: 1.6; opacity: 0.9; }

.quote-hero-form-wrapper { padding: 40px; }
.form-note {
    font-size: 12px;
    color: var(--gray);
    text-align: center;
    margin-top: 14px;
    line-height: 1.5;
}
.form-note a {
    color: var(--primary);
    font-weight: 700;
    text-decoration: underline;
}
.form-note a:hover { color: var(--primary-dark); }
.quote-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.quote-form .form-group { margin-bottom: 16px; }
.quote-form .form-group label {
    display: block; font-size: 13.5px; font-weight: 600; color: var(--dark); margin-bottom: 6px;
}
.quote-form .form-group input,
.quote-form .form-group select,
.quote-form .form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #e5e5e5;
    border-radius: var(--radius);
    font-size: 14.5px;
    font-family: inherit;
    background: #fff;
    transition: all 0.3s ease;
}
.quote-form .form-group input:focus,
.quote-form .form-group select:focus,
.quote-form .form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}
.quote-form .form-group textarea { resize: vertical; min-height: 80px; }
.quote-hero-form-wrapper .success-message { display: none; text-align: center; padding: 30px 10px; }
.quote-hero-form-wrapper .success-message svg { color: #22c55e; margin-bottom: 14px; }
.quote-hero-form-wrapper .success-message h4 { font-size: 20px; font-weight: 700; margin-bottom: 6px; }
.quote-hero-form-wrapper .success-message p { color: var(--gray); font-size: 14px; }

@media (max-width: 900px) {
    .quote-form-section { padding: 50px 0; }
    .quote-form-card { grid-template-columns: 1fr; }
    .quote-hero-form-wrapper { padding: 28px 22px; }
    .quote-form-intro { padding: 34px 26px; }
    .quote-form .form-row { grid-template-columns: 1fr; }
}


/* --- Service checklist label + Types We Repair block --- */
.service-checklist-label {
    font-weight: 700;
    margin: 18px 0 10px;
    color: var(--white);
}
.service-row .section-tag {
    background: rgba(255,255,255,0.15);
    color: #fff;
}
.service-types-block {
    margin-top: 60px;
    padding-top: 50px;
    border-top: 1px solid rgba(255,255,255,0.12);
    text-align: center;
}
.service-types-block .section-tag { margin-bottom: 12px; }
.service-types-block h3 { font-size: 28px; font-weight: 800; margin-bottom: 14px; color: var(--white); }
.service-types-block > p { max-width: 640px; margin: 0 auto 30px; color: rgba(255,255,255,0.75); }
.service-types-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}
.service-types-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: var(--light-gray);
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 14.5px;
}
.service-types-list li svg { color: var(--primary); flex-shrink: 0; }

/* --- Why Choose Us --- */
.why-choose-section {
    padding: 90px 0;
    background: var(--primary-dark);
    color: var(--white);
}
.why-choose-section .section-header p { max-width: 720px; color: rgba(255,255,255,0.75); }
.why-choose-section .section-header h2 { color: var(--white); }
.why-choose-section .section-header .section-tag { color: #fff; background: rgba(255,255,255,0.12); }
.why-choose-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    max-width: 980px;
    margin: 40px auto;
}
.why-choose-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    background: #fff;
    color: var(--dark);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    font-weight: 600;
    font-size: 15px;
}
.why-choose-list li svg { color: #22c55e; flex-shrink: 0; }
.why-choose-cta { text-align: center; margin-top: 40px; }

/* --- Why Choose Us: repair photos --- */
.why-choose-images {
    display: flex;
    gap: 16px;
    max-width: 780px;
    margin: 46px auto 10px;
}
.why-choose-images img {
    flex: 1;
    width: 50%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-hover);
    display: block;
}
@media (max-width: 560px) {
    .why-choose-images { flex-direction: row; gap: 10px; }
    .why-choose-images img { aspect-ratio: 1 / 1; }
}

/* --- Areas Serviced --- */
.areas-serviced {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.06);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.areas-serviced h3 {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary);
    margin-bottom: 16px;
}
.areas-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 18px;
    max-width: 900px;
    margin: 0 auto;
}
.area-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--gray);
    font-size: 14px;
}
.area-item svg { color: var(--primary); flex-shrink: 0; }

/* ===========================================================
   Brand Marquee (scrolling logos, white background)
   Scoped under .brands-section so it never collides with the
   small text-pill .brand-badge used inside .service-alternating
   =========================================================== */
.brands-section {
    background-color: var(--white);
    text-align: center;
    padding: 70px 0 0;
}
.brands-section.brands-simple { padding: 22px 0 0; }
.brands-simple-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 6px;
}
.brands-section .section-header { margin-bottom: 10px; }

.brands-section .sticker-marquee {
    background: var(--white);
    padding: 0.6rem 0 1.4rem;
    overflow: hidden;
    width: 100%;
}
.brands-section .marquee-track {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 3rem;
    mask: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    -webkit-mask: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.brands-section .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;
}
.brands-section .brand-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    background: transparent !important;
    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;
}
.brands-section .brand-badge:hover {
    transform: scale(1.1) rotate(0.5deg);
    filter: drop-shadow(0 8px 12px rgba(0,0,0,0.15));
}
.brands-section .badge-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    display: block;
    background: transparent !important;
    border-radius: 0;
    border: none;
    pointer-events: none;
    filter: brightness(0.95) contrast(1.1);
    mix-blend-mode: multiply;
}
.brands-section .marquee-track:hover .marquee-content {
    animation-play-state: paused;
}

@keyframes scrollSticker {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}

@media (max-width: 700px) {
    .brands-section .badge-img { width: 55px; height: 55px; }
    .brands-section .marquee-content,
    .brands-section .marquee-track { gap: 2rem; }
}
@media (prefers-reduced-motion: reduce) {
    .brands-section .marquee-content {
        animation: none;
        transform: translateX(0);
    }
}

/* ===========================================================
   Info Strip — "Need help? WhatsApp us / email" bar
   Pinned directly under the fixed navbar. Only present in the
   HTML of the 7 service pages (body.has-info-strip).
   =========================================================== */
.info-strip {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    z-index: 998;
    background: var(--navy);
}
.info-strip-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 9px 20px;
    flex-wrap: wrap;
}
.info-strip-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    opacity: 0.92;
    transition: opacity 0.2s ease;
}
.info-strip-item:hover { opacity: 1; text-decoration: underline; }
.info-strip-item svg { flex-shrink: 0; }

@media (max-width: 600px) {
    .info-strip-inner { gap: 16px; padding: 8px 14px; }
    .info-strip-item { font-size: 11.5px; }
}

/* Push the mobile dropdown menu down below the info strip
   (only on the 7 service pages — services.html has no strip) */
@media (max-width: 768px) {
    .has-info-strip .nav-links {
        top: 106px;
    }
}

/* ===========================================================
   Thank You page
   =========================================================== */
.thankyou-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 140px 20px 90px;
    background:
        linear-gradient(160deg, rgba(0, 10, 30, 0.92) 0%, rgba(0, 30, 75, 0.88) 100%),
        url('images/about-technician.jpg');
    background-size: cover;
    background-position: center;
}
.thankyou-hero .container { max-width: 620px; }
.thankyou-logo {
    width: 150px;
    height: auto;
    margin: 0 auto 34px;
    display: block;
}
.thankyou-hero h1 {
    font-size: 44px;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 18px;
}
.thankyou-hero p {
    font-size: 17px;
    line-height: 1.7;
    opacity: 0.9;
    max-width: 460px;
    margin: 0 auto 34px;
}
.thankyou-hero .btn-cta-primary {
    display: inline-flex;
}

@media (max-width: 600px) {
    .thankyou-hero { padding: 120px 20px 70px; }
    .thankyou-hero h1 { font-size: 32px; }
    .thankyou-logo { width: 120px; margin-bottom: 26px; }
}



/* ===========================================================
   Services Cards — each card has its own background image
   =========================================================== */
.services-cards-dark {
    position: relative;
    padding: 90px 0;
    overflow: hidden;
    background: var(--light-gray);
}

.services-cards-content {
    position: relative;
    z-index: 2;
}

.services-grid-hub {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 26px;
    margin-top: 40px;
}

/* Each card — with background image */
.service-card-hub {
    position: relative;
    border-radius: 18px;
    padding: 0;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background-size: cover;
    background-position: center;
}

.service-card-hub:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

/* Dark overlay on each card */
.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.226) 0%, rgb(0, 0, 0) 100%);
    z-index: 1;
}

/* Card content sits above overlay */
.card-content {
    position: relative;
    z-index: 2;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    justify-content: flex-end;
    min-height: 320px;
}

/* Text colors on dark backgrounds */
.card-content h3 {
    color: #ffffff;
    font-size: 20px;
    margin: 0;
}

.card-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14.5px;
    opacity: 1;
    margin: 0;
    line-height: 1.6;
}

.card-content .service-card-link {
    margin-top: auto;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 30px;
    width: fit-content;
    transition: background 0.2s ease;
}

.card-content .service-card-link:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* Icons on dark backgrounds */
.card-content .service-icon-large {
    margin-bottom: 8px;
}

/* Individual card background images */
.card-bg-fridge {
    background-image: url('images/samsung_2_door.jpg');
}
.card-bg-washer {
    background-image: url('images/dryer.jpeg');
}
.card-bg-dishwasher {
    background-image: url('images/dishwasher.jpg');
}
.card-bg-oven {
    background-image: url('images/PRO-2.jpg');
}
.card-bg-stove {
    background-image: url('images/stove-2___13133653149.png');
}
.card-bg-microwave {
    background-image: url('images/2019+Winnebago+MINNIE+2606RLvvvv - Copy.webp');
}
.card-bg-dryer {
    background-image: url('images/dryer2.jpg');
}
.card-bg-ac {
    background-image: url('images/6.jpeg');
}
.card-bg-commercial {
    background-image: url('images/commercial.webp');
}
.card-bg-freezer {
    background-image: url('images/sliding_glass_door_chest_freez.jpg');
}
.card-bg-maintenance {
    background-image: url('images/faq2.jpg');
}
.card-bg-emergency {
    background-image: url('images/1777228297645-copy.png');
}

@media (max-width: 900px) {
    .services-cards-dark {
        padding: 60px 0;
    }
}

@media (max-width: 600px) {
    .service-card-hub {
        min-height: 280px;
    }
    .card-content {
        min-height: 280px;
        padding: 24px 20px;
    }
    .card-content h3 {
        font-size: 18px;
    }
    .card-content p {
        font-size: 13px;
    }
}