/* ==========================================================================
   DESIGN SYSTEM & CUSTOM PROPERTIES (style.css)
   ========================================================================== */
:root {
    /* Color Palette (60-30-10 Rule) */
    --bg-main: #F8FAFC;         /* 60% Background: clean coastal slate */
    --bg-white: #FFFFFF;        /* Content containers */
    --text-primary: #0F172A;    /* 30% Structure: deep navy */
    --text-secondary: #475569;  /* Body: legible slate */
    
    --brand-primary: #0284C7;   /* Turquoise / Caribbean Blue */
    --brand-secondary: #0EA5E9; /* Light Turquoise / Sky Blue */
    --brand-dark: #0369A1;      /* Deep Ocean Blue */
    --brand-gradient: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    --brand-gradient-hover: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-primary) 100%);
    
    --cta-primary: #EA580C;     /* 10% CTA / Accent: Coral */
    --cta-hover: #C2410C;       /* Accent hover */
    --cta-gradient: linear-gradient(135deg, var(--cta-primary) 0%, #F97316 100%);
    --cta-gradient-hover: linear-gradient(135deg, #C2410C 0%, var(--cta-primary) 100%);
    
    --status-active: #22C55E;   /* Green indicator */
    --error-color: #EF4444;     /* Red error alerts */
    
    /* Typography */
    --font-headings: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing & Borders */
    --container-width: 1200px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.1), 0 2px 4px -2px rgba(15, 23, 42, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.03);
    --shadow-premium: 0 20px 25px -5px rgba(2, 132, 199, 0.08), 0 8px 10px -6px rgba(2, 132, 199, 0.03);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg-main);
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headings);
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.25;
}

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

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

ul, ol {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 5rem 0;
}

/* ==========================================================================
   BUTTONS & CTAs
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--border-radius-sm);
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-align: center;
}

.btn-primary {
    background: var(--cta-gradient);
    color: var(--bg-white);
    box-shadow: 0 4px 14px rgba(234, 88, 12, 0.3);
}

.btn-primary:hover {
    background: var(--cta-gradient-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(234, 88, 12, 0.4);
}

.btn-secondary {
    background: var(--brand-gradient);
    color: var(--bg-white);
    box-shadow: 0 4px 14px rgba(2, 132, 199, 0.2);
}

.btn-secondary:hover {
    background: var(--brand-gradient-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(2, 132, 199, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--brand-primary);
    border: 2px solid var(--brand-primary);
}

.btn-outline:hover {
    background: var(--brand-primary);
    color: var(--bg-white);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* ==========================================================================
   TOP BAR & HEADER
   ========================================================================== */
.top-bar {
    background-color: var(--text-primary);
    color: #E2E8F0;
    font-size: 0.8125rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    position: relative;
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: var(--status-active);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    animation: statusPulse 2s infinite;
}

@keyframes statusPulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

.top-bar-divider {
    color: rgba(255, 255, 255, 0.2);
}

.top-bar-link:hover {
    color: var(--brand-secondary);
}

.top-bar-phone-btn {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    color: var(--bg-white);
    font-weight: 600;
    transition: var(--transition-fast);
}

.top-bar-phone-btn:hover {
    background: var(--cta-primary);
    color: var(--bg-white);
}

/* Header Navigation */
.main-header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 999;
    padding: 1.25rem 0;
    transition: var(--transition-smooth);
}

.main-header.shrink {
    padding: 0.75rem 0;
    box-shadow: var(--shadow-md);
}

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

.logo .logo-text {
    font-family: var(--font-headings);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
}

.logo .logo-highlight {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
}

.nav-list {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-family: var(--font-headings);
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--brand-primary);
    transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--brand-primary);
}

/* Mobile Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.hamburger-bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    position: relative;
    background: linear-gradient(180deg, #E0F2FE 0%, var(--bg-main) 100%);
    overflow: hidden;
    padding: 4rem 0;
}

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

.hero-tagline {
    display: inline-block;
    background: rgba(2, 132, 199, 0.1);
    color: var(--brand-dark);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.hero-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--text-primary);
}

.hero-feature-icon {
    color: var(--status-active);
    font-size: 1.25rem;
}

/* Hero Reservation Form Card */
.form-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-premium);
    padding: 2.5rem;
    border: 1px solid rgba(2, 132, 199, 0.1);
}

.form-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.form-card-desc {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

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

.form-label {
    display: block;
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #CBD5E1;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

/* ==========================================================================
   SERVICES BLOCK
   ========================================================================== */
.section-title-wrapper {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3.5rem auto;
}

.section-subtitle {
    color: var(--brand-primary);
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
    display: block;
}

.section-title {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.section-description {
    color: var(--text-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-md);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(15, 23, 42, 0.04);
    transition: var(--transition-smooth);
    text-align: left;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(2, 132, 199, 0.15);
}

.service-icon-box {
    width: 50px;
    height: 50px;
    background: rgba(2, 132, 199, 0.08);
    color: var(--brand-primary);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-card-title {
    font-size: 1.25rem;
    margin-bottom: 0.875rem;
}

.service-card-desc {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.service-card-price {
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--text-primary);
    border-top: 1px solid #F1F5F9;
    padding-top: 1rem;
}

/* ==========================================================================
   TECHNICAL PROCESS BLOCK (Timeline)
   ========================================================================== */
.bg-alt {
    background-color: var(--bg-white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.process-item {
    text-align: center;
    position: relative;
}

.process-step-num {
    width: 60px;
    height: 60px;
    background: var(--brand-gradient);
    color: var(--bg-white);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-headings);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 10px rgba(2, 132, 199, 0.2);
    position: relative;
    z-index: 2;
}

.process-item::after {
    content: '';
    position: absolute;
    top: 30px;
    left: 50%;
    width: 100%;
    height: 2px;
    background-color: #E2E8F0;
    z-index: 1;
}

.process-item:last-child::after {
    display: none;
}

.process-title {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.process-desc {
    font-size: 0.9rem;
    padding: 0 1rem;
}

/* ==========================================================================
   GEOGRAPHIC COVERAGE
   ========================================================================== */
.coverage-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.coverage-info {
    text-align: left;
}

.location-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.badge-item {
    background-color: var(--bg-white);
    padding: 1rem;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(15, 23, 42, 0.05);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--text-primary);
}

.badge-dot {
    width: 6px;
    height: 6px;
    background-color: var(--brand-primary);
    border-radius: 50%;
}

.coverage-visual {
    background: linear-gradient(135deg, #E0F2FE 0%, #BAE6FD 100%);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    position: relative;
}

.coverage-map-placeholder {
    border: 2px dashed rgba(2, 132, 199, 0.3);
    border-radius: var(--border-radius-md);
    padding: 4rem 2rem;
    background-color: rgba(255, 255, 255, 0.6);
}

.map-icon {
    font-size: 3rem;
    color: var(--brand-primary);
    margin-bottom: 1rem;
    display: block;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info-panel {
    background: var(--brand-gradient);
    color: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-premium);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-info-panel h3 {
    color: var(--bg-white);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.contact-info-desc {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
}

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

.contact-detail-card {
    display: flex;
    gap: 1rem;
}

.contact-detail-icon {
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-label {
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.7);
}

.contact-detail-value {
    font-size: 1.05rem;
}

.contact-detail-value a:hover {
    color: var(--text-primary);
}

.contact-form-panel {
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(15, 23, 42, 0.05);
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.main-footer {
    background-color: #0F172A;
    color: #94A3B8;
    padding: 5rem 0 0 0;
    font-size: 0.95rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 4rem;
    padding-bottom: 4rem;
}

.footer-title {
    color: var(--bg-white);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer-desc {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-fiscal p {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.footer-menu-list li {
    margin-bottom: 0.75rem;
}

.footer-menu-list a:hover {
    color: var(--brand-secondary);
    padding-left: 4px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--bg-white);
}

.footer-contact-link:hover {
    color: var(--brand-secondary);
}

.footer-contact-link.email {
    font-size: 0.95rem;
    font-weight: 500;
    color: #94A3B8;
}

.footer-bottom {
    background-color: #0B0F19;
    padding: 2.5rem 0;
    color: #64748B;
    font-size: 0.8125rem;
}

.footer-disclaimer {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    text-align: justify;
}

.footer-divider {
    border: 0;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.08);
    margin-bottom: 1.5rem;
}

.footer-legal-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-legal-links a:hover {
    color: var(--brand-secondary);
}

.backup-link {
    color: var(--brand-secondary);
    font-weight: 600;
}

/* ==========================================================================
   COOKIE CONSENT FLOATER
   ========================================================================== */
.cookie-consent {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    max-width: 450px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(2, 132, 199, 0.15);
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.15);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transform: translateY(150%);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-title {
    font-size: 1.1rem;
    font-weight: 700;
}

.cookie-desc {
    font-size: 0.85rem;
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
}

.btn-cookie-accept {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
}

/* ==========================================================================
   THANK YOU & 404 & SUBPAGES
   ========================================================================== */
.page-hero {
    background: linear-gradient(180deg, #E0F2FE 0%, var(--bg-main) 100%);
    padding: 6rem 0 3rem 0;
    text-align: center;
}

.page-hero-title {
    font-size: 2.75rem;
    margin-bottom: 1rem;
}

.page-hero-desc {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* 404 & Gracias Card */
.feedback-card {
    max-width: 600px;
    margin: 3rem auto;
    background-color: var(--bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-premium);
    padding: 4rem 3rem;
    text-align: center;
    border: 1px solid rgba(2, 132, 199, 0.08);
}

.feedback-icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: rgba(34, 197, 94, 0.1);
    color: var(--status-active);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 2rem auto;
}

.feedback-icon-wrapper.error {
    background-color: rgba(239, 68, 68, 0.1);
    color: var(--error-color);
}

.feedback-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.feedback-msg {
    margin-bottom: 2rem;
}

.feedback-urgency-banner {
    background-color: #FEF3C7;
    border-left: 4px solid #F59E0B;
    padding: 1rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.9rem;
    color: #92400E;
    margin-bottom: 2rem;
    text-align: left;
}

.feedback-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Legal pages content styling */
.legal-content {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-md);
    padding: 4rem;
    box-shadow: var(--shadow-sm);
    margin: 2rem auto 5rem auto;
    max-width: 900px;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem 0;
}

.legal-content h3 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.75rem 0;
}

.legal-content p, .legal-content ul {
    margin-bottom: 1.25rem;
}

.legal-content ul {
    padding-left: 2rem;
    list-style-type: disc;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

/* ==========================================================================
   RESPONSIVE LAYOUTS (Mobile-First)
   ========================================================================== */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-feature-item {
        justify-content: center;
    }
    
    .coverage-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    
    .process-item::after {
        display: none;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .section-padding {
        padding: 3.5rem 0;
    }
    
    .top-bar-info {
        display: none;
    }
    
    .top-bar-container {
        justify-content: center;
    }
    
    .top-bar-action {
        width: 100%;
        text-align: center;
    }
    
    .top-bar-phone-btn {
        display: block;
        width: 100%;
        border-radius: 0;
    }
    
    /* Header menu toggle */
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        box-shadow: var(--shadow-lg);
        padding: 2rem;
        border-top: 1px solid #F1F5F9;
        flex-direction: column;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: var(--transition-smooth);
    }
    
    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
    }
    
    .nav-link {
        display: block;
        padding: 0.5rem 0;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-legal-bar {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal-links {
        justify-content: center;
    }
    
    .legal-content {
        padding: 2rem;
    }
    
    .feedback-card {
        padding: 2.5rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .location-badges {
        grid-template-columns: 1fr;
    }
    
    .form-card {
        padding: 1.5rem;
    }
}
