    /* Brand Color Palette */
        :root {
            --primary: #00BFFF;   
            --primary-hover: #009acd; 
            --secondary: #003399; 
            --text-dark: #003399; 
            --text-muted: #546e7a; 
            --bg-body: #f0f8ff;   
            --white: #ffffff;
            --shadow-sm: 0 1px 3px rgba(0, 51, 153, 0.1);
            --shadow-lg: 0 20px 25px -5px rgba(0, 51, 153, 0.1), 0 10px 10px -5px rgba(0, 51, 153, 0.04);
            --radius: 8px;
            --transition: all 0.3s ease;
        }

        /* Strict global reset for responsiveness */
        html, body {
            margin: 0;
            padding: 0;
            width: 100%;
            max-width: 100vw;
            overflow-x: hidden; /* Hard stop on horizontal scrolling */
        }

        * {
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg-body);
            color: var(--text-dark);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        /* Top Menu */
        .top-menu {
            background-color: var(--secondary);
            color: var(--white);
            padding: 0.5rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.85rem;
            position: sticky;
            top: 0;
            z-index: 900; 
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .top-menu-left, .top-menu-right {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .top-menu-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .top-menu-icon {
            width: 16px;
            height: 16px;
            color: var(--primary);
        }

        /* Sleek Navigation Bar */
        .navbar {
            position: sticky;
            top: 2.5rem; 
            z-index: 999; 
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.2rem 5%;
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: var(--shadow-sm);
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--secondary);
            text-decoration: none;
            letter-spacing: -0.5px;
        }

        .logo svg {
            width: 40px;
            height: 40px;
            color: var(--secondary);
        }

        .logo img {
            width: 50px;
            height: 50px;
            object-fit: contain;
        }

        .logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }

        .logo-text span {
            display: block;
            font-size: 0.7rem;
            font-weight: 600;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Navigation Links */
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            font-size: 0.95rem;
            transition: var(--transition);
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        /* Hidden on desktop */
        .close-menu-btn,
        .mobile-quote-item,
        .mobile-address-item {
            display: none; 
        }

        /* Buttons */
        .nav-actions {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .btn-primary {
            background-color: var(--primary);
            color: var(--secondary); 
            padding: 0.75rem 1.5rem;
            text-decoration: none;
            font-weight: 700;
            border-radius: var(--radius);
            font-size: 0.95rem;
            transition: var(--transition);
            border: 2px solid var(--primary);
            display: inline-block;
            text-align: center;
        }

        .btn-primary:hover {
            background-color: var(--primary-hover);
            border-color: var(--primary-hover);
            transform: translateY(-1px);
            color: var(--white); 
        }

        .btn-outline {
            background-color: transparent;
            color: var(--white);
            padding: 0.75rem 1.5rem;
            text-decoration: none;
            font-weight: 600;
            border-radius: var(--radius);
            font-size: 0.95rem;
            transition: var(--transition);
            border: 2px solid var(--white);
            display: inline-block;
            text-align: center;
        }

        .btn-outline:hover {
            background-color: var(--white);
            color: var(--secondary);
        }

        /* Hamburger Icon */
        .hamburger {
            display: none;
            cursor: pointer;
            background: none;
            border: none;
            color: var(--secondary);
            padding: 0.2rem;
        }

        .hamburger svg {
            width: 28px;
            height: 28px;
        }

        /* Menu Overlay */
        .menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background-color: rgba(0, 51, 153, 0.5); 
            z-index: 998; 
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }

        .menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Hero Slider Styles */
        .hero-slider {
            position: relative;
            min-height: 85vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding-bottom: 100px; 
            background-color: var(--secondary);
            overflow: hidden;
            width: 100%;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.8s ease-in-out, visibility 0.8s;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            padding-bottom: 100px; 
            z-index: 1;
        }

        .slide.active {
            opacity: 1;
            visibility: visible;
            z-index: 2;
        }

        .slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, rgba(0, 51, 153, 0.85), rgba(0, 191, 255, 0.5));
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 3;
            width: 100%;
            max-width: 900px;
            padding: 0 20px;
            color: var(--white);
            box-sizing: border-box;
        }

        .slide .hero-badge,
        .slide .hero h1,
        .slide .hero p,
        .slide .hero-actions {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
        }

        .slide.active .hero-badge { opacity: 1; transform: translateY(0); transition-delay: 0.4s; }
        .slide.active .hero h1 { opacity: 1; transform: translateY(0); transition-delay: 0.6s; }
        .slide.active .hero p { opacity: 1; transform: translateY(0); transition-delay: 0.8s; }
        .slide.active .hero-actions { opacity: 1; transform: translateY(0); transition-delay: 1.0s; }

        .hero-badge {
            display: inline-block;
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(4px);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            border: 1px solid var(--primary);
            color: var(--white);
        }

        .hero h1 {
            font-size: 4rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            letter-spacing: -1px;
            word-wrap: break-word; /* Prevents long words from breaking layout */
        }

        .hero p {
            font-size: 1.25rem;
            font-weight: 300;
            color: #e0f2fe; 
            margin-bottom: 2.5rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            word-wrap: break-word;
        }

        .hero-actions {
            display: flex;
            gap: 1rem;
            justify-content: center;
        }

        .slider-nav {
            position: absolute;
            top: 50%;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 3%;
            transform: translateY(-50%);
            z-index: 5;
            pointer-events: none; 
        }

        .slider-btn {
            background: rgba(0, 51, 153, 0.4);
            border: 1px solid rgba(255,255,255,0.2);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            pointer-events: auto;
            transition: var(--transition);
            backdrop-filter: blur(5px);
        }

        .slider-btn:hover {
            background: var(--primary);
            transform: scale(1.1);
        }

        .slider-btn svg { width: 24px; height: 24px; }

        .slider-dots {
            position: absolute;
            bottom: 40px; 
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 5;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: var(--transition);
        }

        .dot.active {
            background: var(--primary);
            transform: scale(1.2);
        }

        /* Quick Services Cards */
        .services-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            padding: 0 5%;
            margin-top: -100px;
            position: relative;
            z-index: 10;
            max-width: 1400px;
            margin-left: auto;
            margin-right: auto;
            width: 100%;
        }

        .card {
            background: var(--white);
            padding: 2.5rem 2rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow-lg);
            text-align: left; 
            transition: var(--transition);
            border: 1px solid #cce0ff; 
            border-top: 4px solid transparent;
            height: 100%; /* Ensures all cards stretch evenly */
        }

        .card:hover {
            transform: translateY(-8px);
            border-top: 4px solid var(--primary);
        }

        .card-icon-wrapper {
            width: 60px;
            height: 60px;
            background: #e0f2fe; 
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: var(--primary);
        }

        .card-icon-wrapper svg { width: 30px; height: 30px; stroke-width: 1.5; }

        .card h3 {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 1rem;
        }

        .card p {
            font-size: 0.95rem;
            color: var(--text-muted);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .card-link {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            transition: var(--transition);
        }

        .card-link:hover {
            gap: 8px;
            color: var(--primary-hover);
        }

        /* About Section Styles */
        .about-section {
            padding: 6rem 5%;
            background-color: var(--bg-body);
            width: 100%;
        }

        .about-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            width: 100%;
        }

        .about-image-wrapper {
            position: relative;
            width: 100%;
        }

        .about-image {
            width: 100%;
            display: block; 
            object-fit: cover;
            border-radius: var(--radius);
            box-shadow: var(--shadow-lg);
        }

        .about-quote-box {
            position: absolute;
            bottom: -30px;
            right: -30px;
            background-color: var(--primary);
            color: var(--white);
            padding: 2rem;
            border-radius: var(--radius);
            max-width: 300px;
            box-shadow: var(--shadow-lg);
            z-index: 2;
        }

        .about-quote-icon {
            font-size: 3rem;
            line-height: 1;
            margin-bottom: 1rem;
            opacity: 0.5;
        }

        .about-quote-text {
            font-weight: 600;
            font-size: 1.1rem;
        }

        .about-content {
            width: 100%;
        }

        .about-content h2 {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--secondary);
            margin-bottom: 1.5rem;
            position: relative;
            word-wrap: break-word;
        }

        .about-content h2::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -10px;
            width: 60px;
            height: 4px;
            background-color: var(--primary);
        }

        .about-content p {
            color: var(--text-muted);
            margin-bottom: 1.5rem;
            font-size: 1.05rem;
        }

        .about-link {
            color: var(--secondary);
            text-decoration: none;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: var(--transition);
        }

        .about-link:hover {
            color: var(--primary);
            gap: 0.8rem;
        }

        /* Detailed Services Section */
        .all-services-section {
            padding: 6rem 5%;
            background-color: var(--white);
            width: 100%;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
            width: 100%;
        }

        .section-header h2 {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--secondary);
            position: relative;
            display: inline-block;
            word-wrap: break-word;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: -10px;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background-color: var(--primary);
        }

        .services-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem 2rem; 
            width: 100%;
        }

        .service-list-item {
            display: flex;
            gap: 1.25rem;
            align-items: flex-start;
        }

        .service-list-icon {
            color: var(--secondary); 
            flex-shrink: 0;
        }

        .service-list-icon svg {
            width: 45px;
            height: 45px;
            stroke-width: 1.5;
        }

        .service-list-content h4 {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 0.5rem;
            line-height: 1.2;
        }

        .service-list-content p {
            font-size: 0.95rem;
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* FAQ Section */
        .faq-section {
            padding: 6rem 5%;
            background-color: var(--bg-body); 
            width: 100%;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
            width: 100%;
        }

        .faq-item {
            background-color: var(--white);
            margin-bottom: 1rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow-sm);
            border: 1px solid #cce0ff;
            overflow: hidden;
            transition: var(--transition);
        }

        .faq-item:hover {
            box-shadow: var(--shadow-lg);
        }

        .faq-question {
            width: 100%;
            text-align: left;
            padding: 1.5rem 2rem;
            background: none;
            border: none;
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--secondary);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--transition);
            font-family: inherit;
        }

        .faq-question:hover {
            color: var(--primary);
        }

        .faq-icon {
            color: var(--primary);
            transition: transform 0.4s ease;
            flex-shrink: 0;
            margin-left: 1rem;
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }

        .faq-answer-content {
            padding: 0 2rem 1.5rem 2rem;
            color: var(--text-muted);
            line-height: 1.7;
            font-size: 0.95rem;
        }

        /* Contact / CTA Section */
        .cta-section {
            background-color: var(--secondary);
            color: var(--white);
            padding: 5rem 5%;
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            overflow: hidden;
        }

        .cta-container {
            width: 100%;
            max-width: 1100px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 3rem;
        }

        .cta-content {
            flex: 1 1 400px;
            min-width: 0; /* allows flex item to shrink properly */
        }

        .cta-content h3 {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: #e0f2fe;
            letter-spacing: 1px;
            word-wrap: break-word;
        }

        .cta-content h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            line-height: 1.2;
            word-wrap: break-word;
        }

        .cta-phone {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 1.5rem;
            word-wrap: break-word;
        }

        .cta-content p {
            font-size: 1.05rem;
            line-height: 1.6;
            margin-bottom: 2rem;
            color: #cce0ff;
        }

        .cta-image-wrapper {
            flex: 1 1 300px;
            text-align: center;
            position: relative;
            min-width: 0;
        }

        .cta-image-wrapper img {
            max-width: 100%;
            height: auto;
            border-radius: var(--radius);
            box-shadow: var(--shadow-lg);
            display: block; 
        }

        /* Footer Section */
        .footer {
            background-color: var(--white);
            color: var(--text-dark);
            padding: 4rem 5%;
            width: 100%;
            overflow: hidden;
            border-top: 1px solid #e0e0e0;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
            width: 100%;
        }

        .footer-column h4 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--secondary);
            letter-spacing: 0.5px;
        }

        .footer-column p {
            font-size: 0.95rem;
            line-height: 1.6;
            color: var(--text-muted);
            margin-bottom: 1.5rem;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 1rem;
        }

        .footer-logo svg {
            width: 40px;
            height: 40px;
            color: var(--primary);
        }

        .footer-logo img {
            width: 50px;
            height: 50px;
            object-fit: contain;
        }

        .footer-logo-text {
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--secondary);
            line-height: 1.3;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.95rem;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--primary);
            padding-left: 5px;
        }

        .footer-contact {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-contact li {
            display: flex;
            align-items: flex-start;
            gap: 0.8rem;
            margin-bottom: 1rem;
            font-size: 0.95rem;
            color: var(--text-muted);
        }

        .footer-contact a {
            color: var(--text-muted);
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-contact a:hover {
            color: var(--primary);
        }

        .footer-contact svg {
            width: 18px;
            height: 18px;
            color: var(--primary);
            flex-shrink: 0;
            margin-top: 0.2rem;
        }

        /* Fixed WhatsApp Floating Button */
        .whatsapp-float {
            position: fixed;
            left: 20px;
            bottom: 100px;
            width: 60px;
            height: 60px;
            background-color: #25D366;
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            z-index: 995;
            box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
            transition: var(--transition);
            border: none;
            cursor: pointer;
            padding: 0;
        }

        .whatsapp-float:hover {
            background-color: #1fb855;
            transform: scale(1.1);
            box-shadow: 0 6px 16px rgba(37, 211, 102, 0.5);
        }

        .whatsapp-float img {
            width: 35px;
            height: 35px;
            object-fit: contain;
        }

        @media (max-width: 768px) {
            .whatsapp-float {
                left: 15px;
                bottom: 80px;
                width: 55px;
                height: 55px;
            }

            .whatsapp-float img {
                width: 32px;
                height: 32px;
            }
        }

        /* Footer Responsive */
        @media (max-width: 768px) {
            .footer-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .footer {
                padding: 3rem 1rem;
            }
        }

        /* Scroll to Top Button */
        .scroll-top-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: var(--secondary);
            color: var(--primary);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            z-index: 9999;
            box-shadow: var(--shadow-lg);
            border: 2px solid var(--primary);
            transition: var(--transition);
            opacity: 0;
            visibility: hidden;
        }

        .scroll-top-btn.visible {
            opacity: 1;
            visibility: visible;
        }

        .scroll-top-btn:hover {
            background-color: var(--primary);
            color: var(--white);
            transform: translateY(-3px);
        }

        /* =========================================
           FAQ Page Styles
        ========================================= */
        .faq-category-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            padding: 4rem 5%;
            max-width: 1200px;
            margin: 0 auto;
            background: var(--white);
        }

        .faq-category-cards .card {
            padding: 2rem;
            background: var(--white);
            border: 1px solid #e0f2fe;
            border-radius: var(--radius);
            text-align: center;
            transition: var(--transition);
        }

        .faq-category-cards .card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-5px);
            border-color: var(--primary);
        }

        .faq-category-cards .card-icon-wrapper {
            width: 60px;
            height: 60px;
            background: rgba(0, 191, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
        }

        .faq-category-cards .card-icon-wrapper svg {
            width: 30px;
            height: 30px;
            color: var(--primary);
        }

        .faq-category-cards .card h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
        }

        .faq-category-cards .card p {
            color: var(--text-muted);
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
        }

        .faq-category-cards .card-link {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: var(--transition);
        }

        .faq-category-cards .card-link:hover {
            color: var(--primary-hover);
        }

        .faq-section {
            padding: 4rem 5%;
            background: var(--bg-body);
        }

        .faq-section .container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .faq-category {
            margin-bottom: 3rem;
        }

        .category-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 2px solid var(--primary);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .faq-item {
            background: var(--white);
            border: 1px solid #e0f2fe;
            border-radius: var(--radius);
            margin-bottom: 1rem;
            overflow: hidden;
            transition: var(--transition);
        }

        .faq-item:hover {
            box-shadow: var(--shadow-sm);
            border-color: var(--primary);
        }

        .faq-item.active {
            box-shadow: var(--shadow-sm);
            border-color: var(--primary);
        }

        .faq-question {
            width: 100%;
            padding: 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: none;
            border: none;
            cursor: pointer;
            text-align: left;
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-dark);
            font-family: inherit;
            transition: var(--transition);
        }

        .faq-question:hover {
            background: #fafcfe;
            color: var(--primary);
        }

        .faq-icon {
            color: var(--primary);
            transition: transform 0.4s ease;
            flex-shrink: 0;
            margin-left: 1rem;
            width: 24px;
            height: 24px;
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }

        .faq-answer-content {
            padding: 1.5rem;
            color: var(--text-muted);
            line-height: 1.8;
            font-size: 0.95rem;
            background: #fafcfe;
        }

        .faq-answer-content ul {
            margin: 1rem 0 0 1.5rem;
            list-style: disc;
        }

        .faq-answer-content li {
            margin-bottom: 0.5rem;
        }

        /* Contact Support Section */
        .contact-support-section {
            padding: 4rem 5%;
            background: var(--white);
        }

        .support-cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1100px;
            margin: 0 auto;
        }

        .support-card {
            background: var(--white);
            border: 1px solid #e0f2fe;
            border-radius: var(--radius);
            padding: 2rem;
            text-align: center;
            transition: var(--transition);
        }

        .support-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-5px);
            border-color: var(--primary);
        }

        .support-icon {
            width: 60px;
            height: 60px;
            background: rgba(0, 191, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
        }

        .support-icon svg {
            width: 30px;
            height: 30px;
            color: var(--primary);
        }

        .support-card h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 1rem;
        }

        .support-card p {
            color: var(--text-muted);
            font-size: 0.95rem;
            margin-bottom: 0.5rem;
        }

        .support-card a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }

        .support-card a:hover {
            color: var(--primary-hover);
            text-decoration: underline;
        }

        .support-info {
            font-size: 0.85rem;
            color: #00bfff;
            margin-top: 1rem;
            font-weight: 600;
        }

        /* =========================================
           Responsive Design (Tablets)
        ========================================= */
        @media (max-width: 1024px) {
            .hero h1 { font-size: 3rem; }
            .desktop-btn { display: none; }
            .mobile-quote-item { display: block; border-bottom: none !important; }
            .mobile-address-item { 
                display: flex; align-items: center; gap: 10px; color: var(--text-muted);
                font-size: 0.95rem; padding: 1rem 0; border-bottom: none !important;
            }
            .mobile-address-item svg { width: 20px; height: 20px; color: var(--primary); flex-shrink: 0; }
            .hamburger { display: block; }
            .nav-links {
                position: fixed; top: 0; left: -100%; width: 70%; height: 100vh; 
                background-color: var(--white); flex-direction: column; align-items: flex-start;
                padding: 1.5rem; gap: 0.5rem; transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                box-shadow: var(--shadow-lg); overflow-y: auto;
            }
            .nav-links.active { left: 0; }
            .nav-links li { width: 100%; border-bottom: 1px solid #e0f2fe; }
            .nav-links a { font-size: 1.1rem; display: block; width: 100%; color: var(--secondary); padding: 1rem 0; }
            .close-menu-btn { display: flex; justify-content: flex-end; width: 100%; border-bottom: none !important; margin-bottom: 0.5rem; }
            .close-menu-btn button { background: none; border: none; font-size: 2.2rem; cursor: pointer; color: var(--text-muted); padding: 0.5rem; }
            .mobile-quote-btn { margin-top: 1rem; width: 100%; }
            .slider-btn { display: none; } 
            
            .about-container { grid-template-columns: 1fr; gap: 4rem; }
            .about-quote-box { right: 20px; bottom: -20px; max-width: 80%; }
            
            .services-grid { grid-template-columns: repeat(2, 1fr); }
            
            .cta-content h2 { font-size: 2.2rem; }
            .cta-phone { font-size: 2.2rem; }
        }

        /* =========================================
           Strict Responsive Design (Phones)
        ========================================= */
        @media (max-width: 768px) {
            .top-menu { padding: 0; display: block; width: 100%; }
            .top-menu-left { display: none !important; }
            .top-menu-right { 
                display: flex; 
                width: 100%; 
                justify-content: space-between; 
            }
            .phone-item, .email-item { 
                width: 50%; 
                display: flex; 
                justify-content: center; 
                align-items: center; 
                padding: 0.5rem 0; 
                font-size: 0.75rem; 
                box-sizing: border-box; 
                text-align: center;
            }
            .phone-item { border-right: 1px solid rgba(255, 255, 255, 0.1); }
            
            .navbar { top: 0; padding: 1rem 5%; width: 100%; } 
            .logo { font-size: 1.1rem; }
            .logo svg { width: 32px; height: 32px; }
            
            /* Fix Hero Slider overflow */
            .hero-slider { min-height: 70vh; padding-bottom: 50px; }
            .hero-content { padding: 0 1rem; } 
            .hero h1 { font-size: 2rem; line-height: 1.2; word-break: break-word; }
            .hero p { font-size: 1rem; margin-bottom: 1.5rem; }
            
            /* Fix Services Cards negative margin collision */
            .services-container { 
                margin-top: -30px; /* Reduced negative margin */
                padding: 0 1rem; 
                gap: 1.5rem;
            }
            .hero-actions { flex-direction: column; width: 100%; }
            .hero-actions a { width: 100%; margin: 0 0 10px 0; text-align: center; }
            .slider-dots { bottom: 50px; } 
            
            .about-section { padding: 3rem 1rem; }
            .about-quote-box { position: static; max-width: 100%; margin-top: 1.5rem; }
            
            .services-grid { grid-template-columns: 1fr; gap: 2rem; }
            .all-services-section { padding: 3rem 1rem; }
            .section-header h2 { font-size: 2rem; }

            .faq-section { padding: 3rem 1rem; }
            .faq-question { padding: 1rem; font-size: 1rem; }
            .faq-answer-content { padding: 0 1rem 1rem 1rem; }

            /* Fix CTA section overflow */
            .cta-section { padding: 3rem 1rem; text-align: center; }
            .cta-container { flex-direction: column; gap: 2rem; }
            .cta-content, .cta-image-wrapper { flex: 1 1 100%; width: 100%; }
            .cta-content h2 { font-size: 1.8rem; }
            .cta-phone { font-size: 1.8rem; }
            .btn-primary { width: 100%; }
            
            /* FAQ Mobile Styles */
            .faq-category-cards {
                grid-template-columns: 1fr;
                padding: 2rem 1rem;
                gap: 1.5rem;
            }
            
            .faq-category-cards .card {
                padding: 1.5rem;
            }
            
            .faq-section {
                padding: 2rem 1rem;
            }
            
            .faq-section .container {
                max-width: 100%;
            }
            
            .category-title {
                font-size: 1.1rem;
                margin-bottom: 1rem;
                padding-bottom: 0.75rem;
            }
            
            .faq-question {
                padding: 1rem;
                font-size: 0.95rem;
            }
            
            .faq-answer-content {
                padding: 1rem;
                font-size: 0.9rem;
            }
            
            .contact-support-section {
                padding: 2rem 1rem;
            }
            
            .support-cards-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .support-card {
                padding: 1.5rem;
            }
            
            .scroll-top-btn { bottom: 15px; right: 15px; width: 45px; height: 45px; }
        }
