        /* CSS Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --deep-blue: #1F3C88;
            --teal: #17A2B8;
            --orange: #FF7A00;
            --white: #FFFFFF;
            --dark-gray: #2E2E2E;
            --light-gray: #F5F5F5;
            --card-radius: 16px;
            --ff-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
            
            --primary: var(--deep-blue);
            --secondary: var(--teal);
            --accent: var(--orange);
            --light: var(--light-gray);
            --dark: var(--dark-gray);
            --text: #333;
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
            
            /* Typography Scale */
            --text-xs: 0.75rem;   /* 12px */
            --text-sm: 0.875rem;  /* 14px */
            --text-base: 1rem;    /* 16px */
            --text-lg: 1.125rem;  /* 18px */
            --text-xl: 1.25rem;   /* 20px */
            --text-2xl: 1.5rem;   /* 24px */
            --text-3xl: 1.875rem; /* 30px */
            --text-4xl: 2.25rem;  /* 36px */
            --text-5xl: 3rem;     /* 48px */
            --text-6xl: 3.75rem;  /* 60px */
        }

        /* Font Family Definitions */
        .font-heading {
            font-family: var(--ff-sans);
            font-weight: 700;
            line-height: 1.2;
            letter-spacing: -0.5px;
        }

        .font-subheading {
            font-family: var(--ff-sans);
            font-weight: 600;
            line-height: 1.3;
            letter-spacing: -0.3px;
        }

        .font-body {
            font-family: var(--ff-sans);
            font-weight: 400;
            line-height: 1.6;
        }

        .font-button {
            font-family: var(--ff-sans);
            font-weight: 600;
            line-height: 1.4;
            letter-spacing: 0.5px;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            color: var(--text);
            background-color: var(--white);
            overflow-x: hidden;
            font-family: var(--ff-sans);
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        section {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: var(--text-5xl);
            color: var(--primary);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            width: 70px;
            height: 3px;
            background: var(--secondary);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

        .section-title p {
            color: #666;
            max-width: 700px;
            margin: 0 auto;
            font-size: var(--text-lg);
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: var(--secondary);
            color: var(--white);
            border: none;
            border-radius: var(--card-radius);
            font-size: var(--text-base);
            text-decoration: none;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .btn:hover {
            background: #138496;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }

        .btn-primary {
            background: var(--primary);
        }

        .btn-primary:hover {
            background: #1A3170;
        }

        /* Header Styles */
        header {
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: var(--shadow);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: var(--transition);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .logo h1 {
            font-size: var(--text-2xl);
            color: var(--primary);
            text-decoration: none;
        }

        .logo span {
            color: var(--secondary);
            text-decoration: none;
        }

        .nav-menu {
            display: flex;
            list-style: none;
        }

        .nav-menu li {
            margin-left: 30px;
            position: relative;
        }

        .nav-menu a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            transition: var(--transition);
            padding: 5px 0;
            font-size: var(--text-base);
        }

        .nav-menu a:hover {
            color: var(--secondary);
        }

        .nav-menu a.active {
            color: var(--secondary);
            font-weight: 600;
        }

        /* Mega Menu */
        .mega-menu {
            position: absolute;
            left: 0;
            top: 100%;
            width: 800px;
            background: var(--white);
            box-shadow: var(--shadow);
            border-radius: var(--card-radius);
            padding: 25px;
            display: none;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            z-index: 1000;
        }

        .mega-menu.active {
            display: grid;
            animation: fadeInDown 0.3s ease;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .mega-menu-column h4 {
            color: var(--primary);
            margin-bottom: 15px;
            font-size: var(--text-lg);
            border-bottom: 2px solid var(--light);
            padding-bottom: 8px;
        }

        .mega-menu-links {
            list-style: none;
        }

        .mega-menu-links li {
            margin-bottom: 10px;
        }

        .mega-menu-links a {
            color: var(--dark);
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 0;
            font-size: var(--text-sm);
        }

        .mega-menu-links a:hover {
            color: var(--secondary);
            transform: translateX(5px);
        }

        .mega-menu-links a i {
            color: var(--secondary);
            font-size: 0.9rem;
        }

        .mobile-toggle {
            display: none;
            font-size: var(--text-2xl);
            cursor: pointer;
        }

        /* NEW: Modern Contact Hero Section */
        .contact-hero {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: var(--white);
            padding: 150px 0 80px;
            margin-top: 70px;
            position: relative;
            overflow: hidden;
        }

        .contact-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1568605114967-8130f3a36994?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80') no-repeat center center/cover;
            opacity: 0.1;
        }

        .contact-hero-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .contact-hero h1 {
            font-size: var(--text-5xl);
            margin-bottom: 20px;
        }

        .contact-hero p {
            font-size: var(--text-xl);
            margin-bottom: 30px;
        }

        /* NEW: Contact Cards Section */
        .contact-cards {
            background-color: var(--light);
            padding: 80px 0;
        }

        .cards-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .contact-card {
            background: var(--white);
            padding: 40px 30px;
            border-radius: var(--card-radius);
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .contact-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            z-index: 2;
        }

        .contact-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .contact-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: var(--text-2xl);
            margin: 0 auto 25px;
            transition: var(--transition);
        }

        .contact-card:hover .contact-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .contact-card h3 {
            font-size: var(--text-xl);
            color: var(--primary);
            margin-bottom: 15px;
        }

        .contact-card p {
            color: #666;
            font-size: var(--text-base);
            margin-bottom: 10px;
        }

        .contact-card a {
            color: var(--secondary);
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
        }

        .contact-card a:hover {
            color: var(--primary);
        }

        /* NEW: Contact Form Section */
        .contact-form-section {
            background-color: var(--white);
            padding: 80px 0;
        }

        .form-container {
            max-width: 900px;
            margin: 0 auto;
            background: var(--white);
            border-radius: var(--card-radius);
            box-shadow: var(--shadow);
            overflow: hidden;
            display: grid;
            grid-template-columns: 1fr 1fr;
        }

        .form-info {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: var(--white);
            padding: 50px 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .form-info h3 {
            font-size: var(--text-3xl);
            margin-bottom: 20px;
        }

        .form-info p {
            margin-bottom: 30px;
            font-size: var(--text-base);
        }

        .info-list {
            list-style: none;
        }

        .info-list li {
            margin-bottom: 20px;
            display: flex;
            align-items: flex-start;
        }

        .info-list i {
            margin-right: 15px;
            font-size: var(--text-lg);
            margin-top: 3px;
        }

        .form-content {
            padding: 50px 40px;
        }

        .form-content h3 {
            font-size: var(--text-3xl);
            color: var(--primary);
            margin-bottom: 30px;
            text-align: center;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--dark);
            font-weight: 500;
            font-size: var(--text-sm);
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: var(--card-radius);
            font-size: var(--text-base);
            transition: var(--transition);
            font-family: var(--ff-sans);
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--secondary);
            box-shadow: 0 0 0 2px rgba(23, 162, 184, 0.2);
        }

        .form-submit-btn {
            width: 100%;
            padding: 15px;
            background: var(--secondary);
            color: var(--white);
            border: none;
            border-radius: var(--card-radius);
            font-size: var(--text-base);
            cursor: pointer;
            transition: var(--transition);
            font-weight: 600;
        }

        .form-submit-btn:hover {
            background: #138496;
        }

        /* NEW: FAQ Section */
        .faq-section {
            background-color: var(--light);
            padding: 80px 0;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--white);
            border-radius: var(--card-radius);
            margin-bottom: 15px;
            box-shadow: var(--shadow);
            overflow: hidden;
        }

        .faq-question {
            padding: 20px 25px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--transition);
        }

        .faq-question:hover {
            background-color: rgba(31, 60, 136, 0.05);
        }

        .faq-question h3 {
            font-size: var(--text-lg);
            color: var(--primary);
            margin: 0;
        }

        .faq-icon {
            font-size: var(--text-lg);
            color: var(--secondary);
            transition: var(--transition);
        }

        .faq-answer {
            padding: 0 25px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }

        .faq-answer p {
            padding-bottom: 20px;
            color: #666;
            font-size: var(--text-base);
        }

        .faq-item.active .faq-question {
            background-color: rgba(31, 60, 136, 0.1);
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 0 25px 20px;
        }

        /* NEW: Map Section */
        .map-section {
            padding: 0;
            height: 500px;
        }

        .map-container {
            width: 100%;
            height: 100%;
        }

        .map-placeholder {
            width: 100%;
            height: 100%;
            background: var(--light);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            color: var(--primary);
        }

        .map-placeholder i {
            font-size: 60px;
            margin-bottom: 20px;
        }

        .map-placeholder p {
            font-size: var(--text-lg);
        }

        /* Social Sidebar */
        .social-sidebar {
            position: fixed;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 100;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .social-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--primary);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: var(--text-lg);
            text-decoration: none;
            transition: var(--transition);
            box-shadow: var(--shadow);
        }

        .social-icon:hover {
            background: var(--secondary);
            transform: translateY(-5px);
        }

        .social-icon.whatsapp {
            background: #25D366;
        }

        .social-icon.phone {
            background: var(--secondary);
        }

        /* Footer */
        footer {
            background: var(--dark);
            color: var(--white);
            padding: 60px 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-col h3 {
            font-size: var(--text-xl);
            margin-bottom: 20px;
            color: var(--accent);
            position: relative;
            padding-bottom: 10px;
        }

        .footer-col h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background: var(--accent);
        }

        .footer-col p {
            margin-bottom: 20px;
            font-size: var(--text-base);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #bbb;
            text-decoration: none;
            transition: var(--transition);
            font-size: var(--text-sm);
        }

        .footer-links a:hover {
            color: var(--accent);
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: var(--white);
            transition: var(--transition);
        }

        .social-links a:hover {
            background: var(--accent);
            transform: translateY(-3px);
        }

        .contact-item-footer {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
            padding: 10px 15px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: var(--card-radius);
            transition: var(--transition);
        }

        .contact-item-footer:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .contact-item-footer i {
            margin-right: 10px;
            color: var(--accent);
            margin-top: 3px;
            flex-shrink: 0;
        }

        .contact-item-footer span {
            font-size: var(--text-sm);
            line-height: 1.5;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: var(--text-sm);
        }

        /* Apply Font Classes */
        h1, h2, h3, h4, h5, h6 {
            font-family: var(--ff-sans);
        }

        .logo h1, .contact-hero h1, .section-title h2, .contact-card h3, 
        .form-info h3, .form-content h3, .faq-question h3, .footer-col h3 {
            font-family: var(--ff-sans);
        }

        .contact-hero p, .section-title p, .contact-card p, .form-info p,
        .faq-answer p, .footer-col p, .footer-bottom p, .map-placeholder p {
            font-family: var(--ff-sans);
        }

        .btn, .nav-menu a, .form-group label,
        .form-group input, .form-group textarea, .form-group select {
            font-family: var(--ff-sans);
        }

        /* Responsive Styles */
        @media (max-width: 1200px) {
            :root {
                --text-5xl: 2.5rem;
                --text-4xl: 2rem;
                --text-3xl: 1.75rem;
                --text-2xl: 1.5rem;
                --text-xl: 1.25rem;
                --text-lg: 1.125rem;
            }
            
            .mega-menu {
                width: 600px;
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 992px) {
            .form-container {
                grid-template-columns: 1fr;
            }
            
            .contact-hero h1 {
                font-size: var(--text-4xl);
            }
            
            .social-sidebar {
                display: none;
            }

            .mega-menu {
                width: 500px;
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 70px;
                left: -100%;
                flex-direction: column;
                background: var(--white);
                width: 100%;
                text-align: center;
                transition: 0.3s;
                box-shadow: var(--shadow);
                padding: 20px 0;
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-menu li {
                margin: 15px 0;
            }

            .mobile-toggle {
                display: block;
            }

            .contact-hero h1 {
                font-size: var(--text-3xl);
            }

            .contact-hero p {
                font-size: var(--text-lg);
            }

            .section-title h2 {
                font-size: var(--text-3xl);
            }

            .mega-menu {
                width: 90%;
                grid-template-columns: 1fr;
                left: 5%;
            }

            .form-info, .form-content {
                padding: 30px 20px;
            }

            :root {
                --text-5xl: 2.25rem;
                --text-4xl: 1.875rem;
                --text-3xl: 1.625rem;
                --text-2xl: 1.375rem;
                --text-xl: 1.125rem;
            }
        }

        @media (max-width: 480px) {
            .contact-hero {
                padding: 120px 0 60px;
            }
            
            .contact-hero h1 {
                font-size: var(--text-2xl);
            }

            .contact-hero p {
                font-size: var(--text-base);
            }

            .form-info, .form-content {
                padding: 20px 15px;
            }

            .section-title h2 {
                font-size: var(--text-2xl);
            }

            :root {
                --text-5xl: 1.75rem;
                --text-4xl: 1.5rem;
                --text-3xl: 1.375rem;
                --text-2xl: 1.25rem;
                --text-xl: 1.125rem;
                --text-lg: 1rem;
                --text-base: 0.9rem;
            }
        }