
        /* ===== CSS VARIABLES ===== */
        :root {
            /* Navy + Gold Palette (Primary) */
            --primary: #0a192f;
            --primary-light: #1e3a8a;
            --secondary: #d4af37;
            --secondary-light: #f5d76e;
            --accent: #f8f9fa;
            
            /* Text Colors */
            --text-dark: #1a1a1a;
            --text-medium: #333333;
            --text-light: #666666;
            --text-muted: #999999;
            --white: #ffffff;
            
            /* Backgrounds */
            --bg-light: #f8f9fa;
            --bg-section: #ffffff;
            --bg-dark: #0a192f;
            
            /* Spacing & Layout */
            --container-width: 1200px;
            --section-padding: 80px 0;
            --border-radius: 8px;
            
            /* Shadows & Effects */
            --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
            --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
            --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
            --transition: all 0.3s ease;
        }
/*
        :root {
    
    --primary: #0B2E3A;
    --primary-light: #126577;
    --secondary: #00C4CC;
    --secondary-light: #66E0E6;
    --accent: #F2FCFC;
    
   
    --text-dark: #0B2E3A;
    --text-medium: #14575C;
    --text-light: #4DA8A9;
    --text-muted: #8FCFD1;
    --white: #FFFFFF;
    
   
    --bg-light: #E6F4F6;
    --bg-section: #CCEBED;
    --bg-dark: #0B2E3A;
    
  
    --container-width: 1200px;
    --section-padding: 80px 0;
    --border-radius: 8px;
    
    
    --shadow-sm: 0 2px 4px rgba(11,46,58,0.05);
    --shadow-md: 0 4px 12px rgba(11,46,58,0.08);
    --shadow-lg: 0 8px 24px rgba(11,46,58,0.12);
    --transition: all 0.3s ease;
}

:root {
   
    --primary: #2D1053;
    --primary-light: #5A2DA0;
    --secondary: #A57FFF;
    --secondary-light: #C3B3FF;
    --accent: #F8F7FF;
    
   
    --text-dark: #2D1053;
    --text-medium: #5A2DA0;
    --text-light: #A57FFF;
    --text-muted: #C3B3FF;
    --white: #FFFFFF;
    
  
    --bg-light: #F3EFFD;
    --bg-section: #E8E0F4;
    --bg-dark: #2D1053;
    
   
    --container-width: 1200px;
    --section-padding: 80px 0;
    --border-radius: 8px;
    
  
    --shadow-sm: 0 2px 4px rgba(45,16,83,0.05);
    --shadow-md: 0 4px 12px rgba(45,16,83,0.08);
    --shadow-lg: 0 8px 24px rgba(45,16,83,0.12);
    --transition: all 0.3s ease;
}
*/

        /* ===== RESET & BASE ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Open Sans', sans-serif;
            color: var(--text-medium);
            line-height: 1.6;
            background-color: var(--white);
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            color: var(--text-dark);
            line-height: 1.3;
            margin-bottom: 1rem;
        }

        h1 { font-size: 3rem; }
        h2 { font-size: 2.5rem; }
        h3 { font-size: 1.75rem; }
        h4 { font-size: 1.25rem; }

        p {
            margin-bottom: 1rem;
            color: var(--text-light);
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        .container {
            width: 100%;
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 20px;
        }

        .section {
            padding: var(--section-padding);
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }

        .section-title h2 {
            color: var(--primary);
            display: inline-block;
            position: relative;
            padding-bottom: 15px;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--secondary);
        }

        .section-title p {
            max-width: 700px;
            margin: 1rem auto 0;
            color: var(--text-light);
        }

        .btn {
            display: inline-block;
            padding: 14px 32px;
            border-radius: var(--border-radius);
            font-weight: 600;
            font-family: 'Montserrat', sans-serif;
            text-align: center;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            font-size: 1rem;
        }

        .btn-primary {
            background-color: var(--secondary);
            color: var(--primary);
        }

        .btn-primary:hover {
            background-color: var(--secondary-light);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--secondary);
            color: var(--secondary);
        }

        .btn-outline:hover {
            background-color: var(--secondary);
            color: var(--primary);
        }

        .btn-dark {
            background-color: var(--primary);
            color: var(--white);
        }

        .btn-dark:hover {
            background-color: var(--primary-light);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        /* ===== HEADER ===== */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background-color: var(--primary);
            padding: 20px 0;
            transition: var(--transition);
            box-shadow: var(--shadow-sm);
        }

        .header.scrolled {
            padding: 15px 0;
            background-color: rgba(10, 25, 47, 0.95);
            backdrop-filter: blur(10px);
        }

        .header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.75rem;
            font-weight: 800;
            color: var(--white);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo i {
            color: var(--secondary);
            font-size: 2rem;
        }

        .nav {
            display: flex;
            align-items: center;
        }

        .nav-list {
            display: flex;
            gap: 30px;
            margin-right: 30px;
        }

        .nav-list a {
            color: var(--white);
            font-weight: 500;
            font-size: 0.95rem;
            position: relative;
            padding: 5px 0;
        }

        .nav-list a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--secondary);
            transition: var(--transition);
        }

        .nav-list a:hover::after {
            width: 100%;
        }

        .header-cta {
            padding: 12px 24px;
            font-size: 0.9rem;
        }

        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--white);
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* ===== HERO SECTION ===== */
        .hero {
            padding: 180px 0 120px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            position: relative;
            overflow: hidden;
            color: var(--white);
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
            z-index: 0;
        }

        .hero .container {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .hero-content {
            max-width: 600px;
        }

        .hero h1 {
            color: var(--white);
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .hero h1 span {
            color: var(--secondary);
        }

        .hero p {
            color: rgba(255, 255, 255, 0.85);
            font-size: 1.125rem;
            margin-bottom: 2.5rem;
            line-height: 1.7;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            margin-bottom: 40px;
        }

        .hero-stats {
            display: flex;
            gap: 40px;
            margin-top: 50px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--secondary);
            font-family: 'Montserrat', sans-serif;
            display: block;
            line-height: 1;
        }

        .stat-label {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 5px;
        }

        .hero-image {
            position: relative;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            transform: perspective(1000px) rotateY(-5deg);
            transition: var(--transition);
        }

        .hero-image:hover {
            transform: perspective(1000px) rotateY(0deg);
        }

        .hero-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* ===== ABOUT SECTION ===== */
        .about {
            background-color: var(--bg-light);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-image {
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        .about-content h2 {
            color: var(--primary);
            margin-bottom: 1.5rem;
        }

        .about-content p {
            margin-bottom: 1.5rem;
            font-size: 1.05rem;
        }

        .mission {
            background-color: var(--primary);
            color: var(--white);
            padding: 25px;
            border-radius: var(--border-radius);
            margin: 30px 0;
            position: relative;
            border-left: 4px solid var(--secondary);
        }

        .mission h4 {
            color: var(--secondary);
            margin-bottom: 10px;
            font-size: 1.25rem;
        }

        .mission p {
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 0;
        }

        /* ===== WHY CHOOSE US ===== */
        .why-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .why-card {
            background-color: var(--white);
            padding: 40px 30px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-sm);
            text-align: center;
            transition: var(--transition);
            border-top: 3px solid transparent;
        }

        .why-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
            border-top: 3px solid var(--secondary);
        }

        .why-icon {
            width: 80px;
            height: 80px;
            background-color: rgba(212, 175, 55, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2rem;
            color: var(--secondary);
        }

        .why-card h3 {
            font-size: 1.25rem;
            margin-bottom: 15px;
            color: var(--primary);
        }

        /* ===== SERVICES SECTION ===== */
        .services {
            background-color: var(--bg-light);
        }

        .service-category {
            margin-bottom: 60px;
        }

        .category-header {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--secondary);
        }

        .category-header h3 {
            color: var(--primary);
            font-size: 1.75rem;
            margin: 0;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .category-header i {
            color: var(--secondary);
            font-size: 1.5rem;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 25px;
        }

        .service-card {
            background-color: var(--white);
            border-radius: var(--border-radius);
            padding: 30px 25px;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
        }

        .service-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .service-card h4 {
            color: var(--primary);
            margin-bottom: 12px;
            font-size: 1.2rem;
        }

        .service-card p {
            font-size: 0.95rem;
            color: var(--text-light);
            flex-grow: 1;
            margin-bottom: 20px;
        }

        .service-link {
            color: var(--secondary);
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            font-size: 0.9rem;
        }

        .service-link:hover {
            color: var(--primary);
            gap: 8px;
        }

        /* ===== TESTIMONIALS ===== */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .testimonial-card {
            background-color: var(--white);
            border-radius: var(--border-radius);
            padding: 40px 30px;
            box-shadow: var(--shadow-sm);
            position: relative;
            transition: var(--transition);
        }

        .testimonial-card:hover {
            box-shadow: var(--shadow-md);
        }

        .testimonial-card::before {
            content: '\201C';
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 4rem;
            color: var(--secondary);
            opacity: 0.2;
            font-family: Georgia, serif;
            line-height: 1;
        }

        .stars {
            color: var(--secondary);
            margin-bottom: 15px;
            font-size: 0.9rem;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 25px;
            color: var(--text-medium);
            position: relative;
            z-index: 1;
        }

        .client-info {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .client-photo {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--secondary);
        }

        .client-details h4 {
            margin-bottom: 5px;
            font-size: 1.1rem;
            color: var(--primary);
        }

        .client-profession {
            color: var(--text-light);
            font-size: 0.9rem;
        }

        /* ===== FAQ SECTION ===== */
        .faq {
            background-color: var(--bg-light);
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background-color: var(--white);
            border-radius: var(--border-radius);
            margin-bottom: 15px;
            box-shadow: var(--shadow-sm);
            overflow: hidden;
        }

        .faq-item summary {
            padding: 20px 25px;
            font-weight: 600;
            color: var(--primary);
            cursor: pointer;
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--transition);
        }

        .faq-item summary::-webkit-details-marker {
            display: none;
        }

        .faq-item summary::after {
            content: '\f078';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            transition: var(--transition);
        }

        .faq-item[open] summary::after {
            transform: rotate(180deg);
        }

        .faq-item summary:hover {
            background-color: rgba(212, 175, 55, 0.05);
        }

        .faq-content {
            padding: 0 25px 25px;
            color: var(--text-light);
            border-top: 1px solid #eee;
            margin-top: 10px;
            padding-top: 15px;
        }

        /* ===== CONTACT SECTION ===== */
        .contact {
            background-color: var(--white);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }

        .contact-info h3 {
            color: var(--primary);
            margin-bottom: 20px;
        }

        .contact-info p {
            margin-bottom: 30px;
        }

        .contact-details {
            margin-bottom: 40px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 25px;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background-color: rgba(212, 175, 55, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--secondary);
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .contact-text h4 {
            margin-bottom: 5px;
            color: var(--primary);
            font-size: 1.1rem;
        }

        .contact-form {
            background-color: var(--bg-light);
            padding: 40px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-md);
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--text-dark);
        }

        .form-control {
            width: 100%;
            padding: 14px 18px;
            border: 1px solid #ddd;
            border-radius: var(--border-radius);
            font-family: 'Open Sans', sans-serif;
            font-size: 1rem;
            transition: var(--transition);
        }

        .form-control:focus {
            outline: none;
            border-color: var(--secondary);
            box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        .form-message {
            padding: 15px;
            border-radius: var(--border-radius);
            margin-top: 20px;
            display: none;
        }

        .form-message.success {
            background-color: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
            display: block;
        }

        /* ===== NEWSLETTER ===== */
        .newsletter {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            color: var(--white);
            padding: 80px 0;
            text-align: center;
        }

        .newsletter h2 {
            color: var(--white);
            margin-bottom: 15px;
        }

        .newsletter p {
            color: rgba(255, 255, 255, 0.85);
            max-width: 600px;
            margin: 0 auto 40px;
        }

        .newsletter-form {
            max-width: 600px;
            margin: 0 auto;
            background-color: rgba(255, 255, 255, 0.1);
            padding: 40px;
            border-radius: var(--border-radius);
            backdrop-filter: blur(10px);
        }

        .newsletter-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }

        .newsletter-form .form-control {
            background-color: rgba(255, 255, 255, 0.9);
            border: none;
        }

        .checkbox-group {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 25px;
            text-align: left;
        }

        .checkbox-group input {
            margin-top: 4px;
        }

        .checkbox-group label {
            color: rgba(255, 255, 255, 0.85);
            font-size: 0.9rem;
        }

        .newsletter-message {
            margin-top: 20px;
            padding: 15px;
            border-radius: var(--border-radius);
            display: none;
        }

        .newsletter-message.success {
            background-color: rgba(40, 167, 69, 0.2);
            border: 1px solid rgba(40, 167, 69, 0.5);
            color: #d4edda;
            display: block;
        }

        /* ===== FOOTER ===== */
        .footer {
            background-color: #08142e;
            color: rgba(255, 255, 255, 0.8);
            padding: 80px 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 40px;
            margin-bottom: 60px;
        }

        .footer-logo {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.75rem;
            font-weight: 800;
            color: var(--white);
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
        }

        .footer-logo i {
            color: var(--secondary);
        }

        .footer-about p {
            margin-bottom: 25px;
            font-size: 0.95rem;
            line-height: 1.7;
        }

        .footer-social {
            display: flex;
            gap: 15px;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.1rem;
            transition: var(--transition);
        }

        .social-icon:hover {
            background-color: var(--secondary);
            transform: translateY(-3px);
        }

        .footer-heading {
            color: var(--white);
            font-size: 1.2rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-heading::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--secondary);
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--secondary);
            padding-left: 5px;
        }

        .footer-contact li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 20px;
            font-size: 0.95rem;
        }

        .footer-contact i {
            color: var(--secondary);
            margin-top: 5px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            text-align: center;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.6);
        }

        .footer-legal {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 20px;
        }

        .footer-legal a {
            color: rgba(255, 255, 255, 0.7);
            transition: var(--transition);
        }

        .footer-legal a:hover {
            color: var(--secondary);
        }

        /* ===== MODALS ===== */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }

        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .modal {
            background-color: var(--white);
            width: 90%;
            max-width: 700px;
            max-height: 90vh;
            border-radius: var(--border-radius);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            transform: translateY(-30px);
            transition: var(--transition);
        }

        .modal-overlay.active .modal {
            transform: translateY(0);
        }

        .modal-header {
            background-color: var(--primary);
            color: var(--white);
            padding: 20px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .modal-header h3 {
            color: var(--white);
            margin: 0;
            font-size: 1.5rem;
        }

        .modal-close {
            background: none;
            border: none;
            color: var(--white);
            font-size: 1.5rem;
            cursor: pointer;
            transition: var(--transition);
        }

        .modal-close:hover {
            color: var(--secondary);
        }

        .modal-body {
            padding: 30px;
            overflow-y: auto;
            line-height: 1.7;
        }

        .modal-body h4 {
            color: var(--primary);
            margin: 25px 0 15px;
            font-size: 1.2rem;
        }

        .modal-body p {
            margin-bottom: 15px;
        }

        .modal-body ul {
            margin-bottom: 20px;
            padding-left: 20px;
        }

        .modal-body li {
            list-style-type: disc;
            margin-bottom: 8px;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 992px) {
            .hero .container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .hero-image {
                order: -1;
                transform: none;
                max-width: 500px;
                margin: 0 auto;
            }

            .hero h1 {
                font-size: 2.8rem;
            }

            .about-grid {
                grid-template-columns: 1fr;
            }

            .contact-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .nav-list {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: var(--primary);
                flex-direction: column;
                padding: 30px;
                gap: 20px;
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: var(--transition);
                z-index: 999;
            }

            .nav-list.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }

            .header-cta {
                display: none;
            }

            .mobile-menu-toggle {
                display: block;
            }

            .hero-buttons {
                flex-direction: column;
                gap: 15px;
            }

            .hero-stats {
                flex-wrap: wrap;
                justify-content: center;
            }

            .newsletter-row {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }

            h1 {
                font-size: 2.5rem;
            }

            h2 {
                font-size: 2rem;
            }
        }

        @media (max-width: 480px) {
            .section {
                padding: 60px 0;
            }

            .hero {
                padding: 150px 0 80px;
            }

            .hero h1 {
                font-size: 2.2rem;
            }

            .section-title h2 {
                font-size: 1.8rem;
            }

            .contact-form {
                padding: 25px;
            }

            .newsletter-form {
                padding: 25px;
            }
        }

        /* ===== UTILITIES ===== */
        .text-center {
            text-align: center;
        }

        .mt-1 { margin-top: 10px; }
        .mt-2 { margin-top: 20px; }
        .mt-3 { margin-top: 30px; }
        .mb-1 { margin-bottom: 10px; }
        .mb-2 { margin-bottom: 20px; }
        .mb-3 { margin-bottom: 30px; }

        .hidden {
            display: none;
        }

        /* ===== ANIMATIONS ===== */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate {
            animation: fadeInUp 0.8s ease forwards;
        }
    