        /* Reset & Base (preserving original design tokens) */
        :root {
            --primary-blue: #0b57d0;
            --primary-blue-light: #4285f4;
            --accent-blue: #d3e3fd;
            --bg-white: #ffffff;
            --bg-light: #f8fafd;
            --text-black: #1f1f1f;
            --text-muted: #444746;
            --border-color: #c7c7c7;
            --accent-green: #7ddc1f;
            --dark-blue: #0a1128;
            --primary-blue-dark: #0742a0;
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3), 0 1px 3px 1px rgba(0, 0, 0, 0.15);
            --shadow-md: 0 1px 2px 0 rgba(0, 0, 0, 0.3), 0 2px 6px 2px rgba(0, 0, 0, 0.15);
            --shadow-lg: 0 1px 3px 0 rgba(0, 0, 0, 0.3), 0 4px 8px 3px rgba(0, 0, 0, 0.15);
            --shadow-hover: 0 2px 3px 0 rgba(0, 0, 0, 0.3), 0 6px 10px 4px rgba(0, 0, 0, 0.15);
            --radius-sm: 4px;
            --radius-md: 8px;
            --radius-lg: 12px;
            --radius-pill: 4px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--bg-light);
            color: var(--text-black);
            line-height: 1.5;
            scroll-behavior: smooth;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
            width: 100%;
        }

        /* Header styles (from existing CSS, kept minimal) */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background-color: #0d1b2a;
            backdrop-filter: blur(8px);
            transition: all 0.3s;
            padding: 0.8rem 0;
        }
        .header.scrolled {
            background-color: rgba(255,255,255,0.98);
            backdrop-filter: blur(10px);
            padding: 0.4rem 0;
            box-shadow: var(--shadow-sm);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            min-height: 70px;
        }
        .logo img {
            height: 60px;
            width: auto;
            object-fit: contain;
        }
        .nav-links {
            display: flex;
            gap: 2rem;
            align-items: center;
            list-style: none;
        }
        .nav-links a {
            color: white;
            font-weight: 500;
            text-decoration: none;
            font-size: 0.95rem;
        }
        .header.scrolled .nav-links a { color: var(--text-black); }
        .dropdown { position: relative; }
        .dropdown i { font-size: 0.7rem; margin-left: 4px; }
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: -1rem;
            background: white;
            min-width: 260px;
            border-radius: 8px;
            box-shadow: var(--shadow-lg);
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.2s;
            list-style: none;
            z-index: 1100;
        }
        .dropdown:hover > .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .dropdown-menu a {
            color: var(--text-black) !important;       
            padding: 0.75rem 1.5rem;
            display: block;
        }
        .dropdown-submenu { position: relative; }
        .dropdown-submenu .dropdown-menu {
            top: 0;
            left: 100%;
            transform: translateX(10px);
        }
        .dropdown-submenu:hover > .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateX(0);
        }
        .nav-actions { display: flex; align-items: center; gap: 1rem; }
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.6rem;
            cursor: pointer;
            color: white;
        }
        .mobile-toggle {
        display: none;
        background: none;
        border: none;
        font-size: 1.6rem;
        cursor: pointer;
        color: white;
    }

    .header.scrolled .mobile-toggle {
        color: var(--primary-blue);
    }

    /* ========== MOBILE MENU STYLES ========== */
    @media (max-width: 1024px) {
        .mobile-toggle {
            display: block;
        }

        .nav-links {
            position: fixed;
            top: 0;
            right: -100%;
            width: 280px;
            height: 100vh;
            background: white;
            flex-direction: column;
            align-items: flex-start;
            padding: 5rem 2rem 2rem;
            gap: 1rem;
            transition: right 0.3s ease;
            box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
            z-index: 1100;
            overflow-y: auto;
        }

        .nav-links.active {
            right: 0;
        }

        .nav-links a {
            color: var(--text-black) !important;
            font-size: 1rem;
            width: 100%;
            padding: 0.6rem 0;
            border-bottom: 1px solid #eee;
        }

        /* Reset dropdown for mobile */
        .dropdown .dropdown-menu,
        .dropdown-submenu .dropdown-menu {
            position: static;
            opacity: 1;
            visibility: visible;
            transform: none;
            box-shadow: none;
            padding-left: 20px;
            display: none;
            background: transparent;
            width: 100%;
        }

        .dropdown.open > .dropdown-menu,
        .dropdown-submenu.open > .dropdown-menu {
            display: block;
        }

        .dropdown i, .dropdown-submenu i {
            transform: rotate(0deg);
        }

        .dropdown.open > a i, .dropdown-submenu.open > a i {
            transform: rotate(180deg);
        }
    }
        .btn-primary {
            background: var(--primary-blue);
            border: none;
            color: white;
            padding: 8px 20px;
            border-radius: var(--radius-pill);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: 0.2s;
            cursor: pointer;
        }
        .btn-outline {
            background: transparent;
            border: 1px solid currentColor;
            padding: 8px 20px;
            border-radius: var(--radius-pill);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        /* Hero section - fixed visibility */
        .page-header {
            position: relative;
            background-size: cover;
            background-position: center;
            padding: 80px 0 80px;
            margin-top: 70px;
            text-align: center;
            z-index: 1;
        }
        .page-header::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(10, 17, 40, 0.75);
            z-index: -1;
        }
        .page-header .container {
            position: relative;
            z-index: 2;
        }
        .page-header h1 {
            color: white !important;
            font-size: 2.8rem;
            margin-bottom: 1rem;
        }
        .page-header p {
            color: rgba(255,255,255,0.95) !important;
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
        }
        .hero-btns {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin-top: 2rem;
            flex-wrap: wrap;
        }
        .trust-badges {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
            margin-top: 2rem;
        }
        .trust-badge {
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(4px);
            padding: 0.4rem 1rem;
            border-radius: 40px;
            color: white;
            font-size: 0.85rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        /* Sections */
        .section {
            padding: 4rem 0;
        }
        .bg-light {
            background-color: var(--bg-light);
        }
        .section-title {
            text-align: center;
            margin-bottom: 2.5rem;
        }
        .section-title h2 {
            font-size: 2rem;
            margin-bottom: 0.5rem;
            color: var(--primary-blue);
        }
        .section-title p {
            color: var(--text-muted);
        }

        /* Contact methods */
        .contact-methods {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }
        .contact-method-card {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            background: white;
            padding: 1.5rem;
            border-radius: 12px;
            box-shadow: var(--shadow-sm);
            text-decoration: none;
            color: inherit;
            transition: 0.2s;
        }
        .contact-icon {
            background: var(--accent-blue);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            color: var(--primary-blue);
            flex-shrink: 0;
        }

        /* Form layout */
        .contact-layout {
            display: flex;
            gap: 3rem;
            align-items: flex-start;
            flex-wrap: wrap;
        }
        .contact-info-col {
            flex: 1;
            min-width: 250px;
        }
        .advanced-form-container {
            flex: 1.5;
            background: white;
            border-radius: 12px;
            padding: 2rem;
            box-shadow: var(--shadow-md);
        }
        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin-bottom: 1rem;
        }
        .form-group {
            margin-bottom: 1rem;
        }
        .form-group label {
            display: block;
            font-weight: 500;
            margin-bottom: 0.5rem;
            color: var(--text-muted);
        }
        .form-control {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid var(--border-color);
            border-radius: var(--radius-sm);
            font-family: inherit;
            font-size: 1rem;
            background: var(--bg-light);
        }
        .file-upload-wrapper {
            position: relative;
        }
        .upload-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.75rem;
            border: 2px dashed var(--primary-blue);
            border-radius: var(--radius-sm);
            background: var(--accent-blue);
            cursor: pointer;
        }
        .upload-btn input {
            position: absolute;
            left: 0;
            top: 0;
            opacity: 0;
            width: 100%;
            height: 100%;
            cursor: pointer;
        }

        /* Why choose us grid */
        .about-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }
        .feature-card {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            text-align: center;
            box-shadow: var(--shadow-sm);
        }
        .icon-box {
            background: var(--accent-blue);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            font-size: 1.5rem;
            color: var(--primary-blue);
        }

        /* FAQ */
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        .faq-item {
            background: white;
            margin-bottom: 1rem;
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid var(--border-color);
        }
        .faq-question {
            padding: 1rem 1.5rem;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: white;
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        .faq-answer-inner {
            padding: 0 1.5rem 1rem 1.5rem;
            color: var(--text-muted);
        }
        .faq-item.active .faq-answer {
            max-height: 300px;
        }

        /* Footer */
        .footer {
            background: var(--dark-blue);
            color: #eef2f6;
            padding: 3rem 0 1.5rem;
            margin-top: 2rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }
        .footer-col ul {
            list-style: none;
            padding: 0;
        }
        .footer-col a {
            color: #ccddee;
            text-decoration: none;
        }
        .newsletter-form {
            display: flex;
            gap: 0.5rem;
            margin-top: 0.5rem;
        }
        .newsletter-form input {
            flex: 1;
            padding: 0.5rem;
            border-radius: 4px;
            border: none;
        }
        .newsletter-form button {
            background: var(--primary-blue);
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            color: white;
        }
        .floating-widgets {
            position: fixed;
            bottom: 1.5rem;
            right: 1.5rem;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            z-index: 1000;
        }
        .widget-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            box-shadow: var(--shadow-md);
            text-decoration: none;
        }
        .whatsapp { background: #25D366; }
        .phone { background: var(--primary-blue); }

        /* Responsive */
        @media (max-width: 1024px) {
            .mobile-toggle {
                display: block;
            }
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                background: white;
                flex-direction: column;
                align-items: flex-start;
                padding: 5rem 2rem;
                gap: 1rem;
                transition: right 0.3s;
                z-index: 1100;
            }
            .nav-links.active {
                right: 0;
            }
            .nav-links a {
                color: var(--text-black) !important;
            }
            .dropdown .dropdown-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                padding-left: 20px;
                display: none;
                background: transparent;
            }
            .dropdown.open > .dropdown-menu {
                display: block;
            }
            .page-header {
                padding: 100px 0 60px;
            }
            .page-header h1 {
                font-size: 2rem;
            }
            .contact-layout {
                flex-direction: column;
            }
            .form-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
        }
        @media (max-width: 768px) {
            .container {
                padding: 0 16px;
            }
            .page-header h1 {
                font-size: 1.8rem;
            }
            .page-header p {
                font-size: 1rem;
            }
            .hero-btns .btn-primary, .hero-btns .btn-outline {
                padding: 0.6rem 1.2rem;
                font-size: 0.9rem;
            }
            .section {
                padding: 2.5rem 0;
            }
            .advanced-form-container {
                padding: 1.5rem;
            }
        }