/* ========================================
   CSS Custom Properties
======================================== */
:root {
    --midnight-blue: #0A2342;
    --midnight-blue-light: #1A3A5C;
    --midnight-blue-dark: #061829;
    --mint: #4FD1C5;
    --mint-light: #7EDDCD;
    --mint-pale: #E6FAF8;
    --mint-ultra-pale: #F0FBF9;
    --white: #FFFFFF;
    --off-white: #F8FBFB;
    --gray-50: #F7FAFC;
    --gray-100: #F0F4F5;
    --gray-200: #E2E8EA;
    --gray-300: #CBD5DA;
    --gray-400: #A0AEC0;
    --gray-500: #718096;
    --gray-600: #4A5568;
    --gray-700: #2D3748;
    --gray-800: #1A202C;
    
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Lato', 'Segoe UI', sans-serif;
    
    --shadow-sm: 0 1px 3px rgba(10, 35, 66, 0.08);
    --shadow-md: 0 4px 16px rgba(10, 35, 66, 0.10);
    --shadow-lg: 0 8px 32px rgba(10, 35, 66, 0.12);
    --shadow-xl: 0 16px 48px rgba(10, 35, 66, 0.14);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   Reset & Base
======================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-700);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--mint);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--mint-light);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   Typography
======================================== */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--midnight-blue);
    line-height: 1.25;
    font-weight: 600;
}

h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
}

h3 {
    font-size: clamp(1.2rem, 2vw, 1.4rem);
}

p {
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.15rem;
    color: var(--gray-600);
    line-height: 1.8;
}

/* ========================================
   Section Labels
======================================== */
.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--mint);
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, var(--mint-pale), transparent);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(79, 209, 197, 0.2);
}

.section-header {
    max-width: 700px;
    margin: 0 auto 3.5rem;
}

.section-header p {
    color: var(--gray-500);
    font-size: 1.05rem;
}

.text-center {
    text-align: center;
}

/* ========================================
   Buttons
======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--mint), var(--mint-light));
    color: var(--midnight-blue);
    border-color: var(--mint);
    box-shadow: 0 4px 16px rgba(79, 209, 197, 0.35);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--mint-light), var(--mint));
    border-color: var(--mint-light);
    color: var(--midnight-blue);
    box-shadow: 0 6px 24px rgba(79, 209, 197, 0.45);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--white);
    color: var(--midnight-blue);
    border-color: var(--gray-200);
}

.btn-secondary:hover {
    border-color: var(--mint);
    color: var(--midnight-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-light {
    background: var(--white);
    color: var(--midnight-blue);
    border-color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-light:hover {
    background: var(--mint-pale);
    color: var(--midnight-blue);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* ========================================
   Header / Navigation
======================================== */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(79, 209, 197, 0.15);
    transition: var(--transition);
}

#main-header.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: var(--midnight-blue);
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--mint), var(--mint-light));
    border-radius: var(--radius-sm);
    color: var(--midnight-blue);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--midnight-blue);
}

nav ul {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
}

nav ul li a {
    padding: 0.5rem 1rem;
    color: var(--gray-600);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 50px;
    transition: var(--transition);
}

nav ul li a:hover {
    color: var(--midnight-blue);
    background: var(--mint-pale);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--midnight-blue);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================================
   Hero Section
======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(160deg, var(--midnight-blue) 0%, var(--midnight-blue-light) 50%, #1A4A5C 100%);
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse 80% 50% at 80% 20%, rgba(79, 209, 197, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 10% 80%, rgba(79, 209, 197, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-bg-pattern::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234FD1C5' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='1.5'%3E%3C/circle%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(79, 209, 197, 0.15);
    border: 1px solid rgba(79, 209, 197, 0.3);
    color: var(--mint-light);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(8px);
}

.hero-content h1 {
    color: var(--white);
    margin-bottom: 1.25rem;
    line-height: 1.15;
}

.hero-content > p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.hero-actions .btn-primary {
    background: linear-gradient(135deg, var(--mint), var(--mint-light));
    color: var(--midnight-blue);
    box-shadow: 0 4px 20px rgba(79, 209, 197, 0.4);
}

.hero-actions .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
    color: var(--white);
    backdrop-filter: blur(8px);
}

.hero-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--white);
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.hero-trust .trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
}

.hero-trust .trust-item svg {
    color: var(--mint);
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.hero-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--mint), var(--mint-light));
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.6;
}

/* ========================================
   Sections (General)
======================================== */
.section {
    padding: 100px 0;
}

/* ========================================
   About Section
======================================== */
.about {
    background: var(--off-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.about-stats {
    position: absolute;
    bottom: -24px;
    left: -24px;
    background: var(--white);
    padding: 1.25rem 1.75rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
}

.about-stats .stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--midnight-blue);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.about-stats .stat-label {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.about-content h2 {
    margin-bottom: 1.25rem;
}

.about-content > p {
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 2rem;
}

.about-features .feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--mint-pale), rgba(79, 209, 197, 0.15));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mint);
    border: 1px solid rgba(79, 209, 197, 0.2);
}

.feature strong {
    display: block;
    color: var(--midnight-blue);
    font-size: 0.95rem;
    margin-bottom: 0.15rem;
}

.feature span {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* ========================================
   Services Section
======================================== */
.services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--mint), var(--mint-light));
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    border-color: rgba(79, 209, 197, 0.3);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--mint-pale), rgba(79, 209, 197, 0.12));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--midnight-blue);
    margin-bottom: 1.25rem;
    border: 1px solid rgba(79, 209, 197, 0.15);
}

.service-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.15rem;
}

.service-card p {
    color: var(--gray-500);
    font-size: 0.925rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ========================================
   Insurance Section
======================================== */
.insurance {
    background: linear-gradient(160deg, var(--midnight-blue) 0%, var(--midnight-blue-light) 100%);
    padding: 100px 0;
}

.insurance-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.insurance-text .section-label {
    background: rgba(79, 209, 197, 0.15);
    border-color: rgba(79, 209, 197, 0.3);
    color: var(--mint-light);
}

.insurance-text h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.insurance-text > p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2rem;
}

.insurance-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.insurance-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.insurance-list li svg {
    color: var(--mint);
    flex-shrink: 0;
}

.insurance-visual img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

/* ========================================
   Contact Section
======================================== */
.contact {
    background: var(--off-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--gray-500);
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--mint-pale), rgba(79, 209, 197, 0.12));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--midnight-blue);
    border: 1px solid rgba(79, 209, 197, 0.2);
}

.contact-item strong {
    display: block;
    color: var(--midnight-blue);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

.contact-item a {
    color: var(--midnight-blue);
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--mint);
}

/* ========================================
   Contact Form
======================================== */
.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
}

.contact-form h3 {
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--midnight-blue);
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--gray-700);
    background: var(--gray-50);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--mint);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(79, 209, 197, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-success {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
    padding: 1rem;
    background: var(--mint-pale);
    border: 1px solid rgba(79, 209, 197, 0.3);
    border-radius: var(--radius-sm);
    color: var(--midnight-blue);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-success svg {
    color: var(--mint);
    flex-shrink: 0;
}

/* ========================================
   Footer
======================================== */
.footer {
    background: var(--midnight-blue-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo .logo-text {
    color: var(--white);
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.25rem;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--mint-light);
    padding-left: 4px;
}

.footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact a:hover {
    color: var(--mint-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

.footer-bottom .disclaimer {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
    max-width: 500px;
}

/* ========================================
   Scroll Reveal Animations (Progressive Enhancement)
======================================== */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }
    
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }
    .reveal-delay-5 { transition-delay: 0.5s; }
    .reveal-delay-6 { transition-delay: 0.6s; }
}

/* ========================================
   Responsive Design
======================================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-image {
        order: 2;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero-content > p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-trust {
        justify-content: center;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .insurance-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .insurance-visual {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--white);
        box-shadow: var(--shadow-xl);
        padding: 100px 2rem 2rem;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
    }
    
    nav.open {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0.25rem;
    }
    
    nav ul li a {
        display: block;
        padding: 0.85rem 1rem;
        font-size: 1rem;
        border-radius: var(--radius-sm);
    }
    
    nav ul li:last-child a {
        margin-top: 0.5rem;
    }
    
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero-image img {
        height: 400px;
    }
    
    .hero-image-accent {
        width: 80px;
        height: 80px;
        bottom: -12px;
        right: -12px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .insurance-list {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .section {
        padding: 70px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn {
        justify-content: center;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .about-stats {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 1rem;
        display: inline-block;
    }
}

/* Mobile menu overlay */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 35, 66, 0.5);
    z-index: 998;
    backdrop-filter: blur(4px);
}

.nav-overlay.active {
    display: block;
}
