/* ==========================================================================
   Identidad Visual ALAS A.C. 2026 - System Design & Core Stylesheet
   ========================================================================== */

:root {
    /* Color Palette - Stitch System Tokens for ALAS A.C. */
    --navy: #003466;
    --navy-light: #1A4B84;
    --navy-gradient: linear-gradient(135deg, #003466 0%, #1A4B84 100%);
    --navy-dark: #001C3B;
    --blue: #35485F;
    --teal: #006A71;
    --gold: #D4A83E;
    --gold-light: #FBC02D;
    --paper: #F8F9FA;
    --surface-low: #F3F4F5;
    --surface-high: #E7E8E9;
    --ink: #191C1D;
    --muted: #424750;
    --white: #FFFFFF;
    --danger: #BA1A1A;
    --danger-bg: #FFDAD6;
    --border-light: rgba(115, 119, 129, 0.15);
    
    /* Typography */
    --font-heading: 'Georgia', serif;
    --font-body: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    
    /* Layout & Spacing */
    --max-width: 1320px;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --shadow-sm: 0 4px 16px rgba(25, 28, 29, 0.04);
    --shadow-md: 0 12px 32px rgba(25, 28, 29, 0.08);
    --shadow-lg: 0 24px 50px rgba(0, 52, 102, 0.14);
    --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -100px;
    left: 10px;
    background: var(--gold);
    color: var(--ink);
    padding: 12px 20px;
    font-weight: 800;
    z-index: 10000;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: top 0.2s ease;
}
.skip-link:focus {
    top: 10px;
}

/* Reset & Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
    font-size: 16px;
}
body {
    background-color: var(--paper);
    color: var(--ink);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    opacity: 1;
    transition: opacity 0.2s ease-in-out;
}
body.page-fading {
    opacity: 0.1;
}

/* Prevent abrupt image loading shifts & bumps */
img {
    max-width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.3s ease;
}

/* Keyboard Focus Accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
}

/* Utility Containers */
.container {
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
}

/* Typography Hierarchy */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--navy);
    line-height: 1.15;
    letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.5rem, 5vw, 4.2rem); }
h2 { font-size: clamp(2rem, 3.8vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.8rem); }
h4 { font-size: 1.15rem; font-weight: 700; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.eyebrow {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}
.eyebrow.navy { color: var(--navy); }
.eyebrow.teal { color: var(--teal); }
.eyebrow.gold { color: var(--gold); }

.gold-word { color: var(--gold); }

/* Buttons & Links */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #D4A83E 0%, #FBC02D 100%);
    color: #001C3B;
    font-size: 0.95rem;
    font-weight: 800;
    text-decoration: none;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(212, 168, 62, 0.25);
    transition: var(--transition);
}
.button:hover {
    background: linear-gradient(135deg, #FBC02D 0%, #D4A83E 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(212, 168, 62, 0.4);
}

/* 2-Phase Alternating CTA Animation: 1. Booming Flare Explosion -> 2. Border Light Beam Sweep */
.button-glow {
    position: relative;
    z-index: 1;
    overflow: hidden;
    background: linear-gradient(135deg, #D4A83E 0%, #FBC02D 100%);
    color: #001C3B;
    font-weight: 800;
    letter-spacing: 0.02em;
    border-radius: var(--radius-sm, 6px);
    box-shadow: 0 4px 18px rgba(212, 168, 62, 0.35);
    animation: alternatingBoom 7.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

/* Phase 2: Rotating Border Light Beam Sweep (Active 40% to 85%) */
.button-glow::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        transparent 0deg,
        transparent 280deg,
        rgba(255, 255, 255, 0.95) 320deg,
        rgba(255, 215, 0, 0.9) 345deg,
        transparent 360deg
    );
    animation: alternatingBorderSweep 7.5s linear infinite;
    z-index: -2;
}

/* Inner Button Face + Phase 1 Outer Shockwave Flare */
.button-glow::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: linear-gradient(135deg, #D4A83E 0%, #FBC02D 100%);
    border-radius: calc(var(--radius-sm, 6px) - 2px);
    z-index: -1;
    transition: background 0.3s ease;
    animation: alternatingShockwave 7.5s cubic-bezier(0.2, 0.8, 0.2, 1) infinite;
}

.button-glow:hover {
    transform: scale(1.07);
    filter: brightness(1.25);
    box-shadow: 0 10px 30px rgba(251, 192, 45, 0.8);
}

.button-glow:hover::after {
    background: linear-gradient(135deg, #FBC02D 0%, #D4A83E 100%);
}

/* Phase 1: Booming Flare (Scale + Brightness Flash) at 0% - 35% */
@keyframes alternatingBoom {
    0%, 100% {
        transform: scale(1);
        filter: brightness(1);
    }
    12% {
        /* THE BOOM FLASH */
        transform: scale(1.07);
        filter: brightness(1.35);
        box-shadow: 0 12px 35px rgba(251, 192, 45, 0.85), 0 0 30px rgba(255, 255, 255, 0.9);
    }
    25% {
        transform: scale(1.02);
        filter: brightness(1.15);
    }
    35%, 92% {
        transform: scale(1);
        filter: brightness(1);
    }
}

/* Phase 2: Perimeter Light Trace Rotation at 40% - 85% */
@keyframes alternatingBorderSweep {
    0%, 38% {
        transform: rotate(0deg);
        opacity: 0;
    }
    42% {
        opacity: 1;
    }
    85% {
        transform: rotate(360deg);
        opacity: 1;
    }
    90%, 100% {
        transform: rotate(360deg);
        opacity: 0;
    }
}

/* Phase 1 Outer Energy Shockwave Ring at 8% - 32% */
@keyframes alternatingShockwave {
    0%, 8% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.9);
    }
    28% {
        box-shadow: 0 0 0 24px rgba(255, 215, 0, 0);
    }
    29%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
}
.button-small {
    padding: 9px 18px;
    font-size: 0.85rem;
}
.button-outline {
    background: transparent;
    border: 2px solid var(--navy);
    color: var(--navy);
    box-shadow: none;
}
.button-outline:hover {
    background: var(--navy);
    color: var(--white);
}
.button-outline-light {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}
.button-outline-light:hover {
    background: var(--white);
    color: var(--navy);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 800;
    color: var(--navy);
    text-decoration: none;
    transition: var(--transition);
}
.text-link:hover {
    color: var(--gold);
}
.text-link.light { color: var(--white); }
.text-link.light:hover { color: var(--gold); }

/* ==========================================================================
   Header & Emergency Topbar Components
   ========================================================================== */



/* Header Placeholder & Fixed Main Navigation Header */
#header-placeholder {
    min-height: 84px;
    background-color: var(--navy-dark);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.main-header {
    height: 84px;
    padding: 0 5.5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--navy-dark);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

/* Ensure page content starts smoothly below fixed header */
#main-content {
    padding-top: 84px;
}
.brand-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--white);
}
.brand-link img {
    width: 46px;
    height: 46px;
    object-fit: contain;
}
.brand-title {
    display: flex;
    flex-direction: column;
}
.brand-title strong {
    font-size: 1.15rem;
    color: var(--gold);
    letter-spacing: 0.06em;
    line-height: 1.1;
}
.brand-title small {
    font-size: 0.65rem;
    color: #d7e5e9;
    max-width: 210px;
    line-height: 1.2;
    margin-top: 2px;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 22px;
    list-style: none;
}
.nav-item {
    position: relative;
}
.nav-link {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
    color: var(--gold);
}
.dropdown-icon {
    font-size: 0.7rem;
    transition: transform 0.2s ease;
}

/* Dropdown Menu */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 220px;
    background: #111;
    border: 1px solid rgba(212, 168, 62, 0.3);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    list-style: none;
    padding: 8px 0;
    z-index: 105;
}
.nav-item:hover .dropdown-menu,
.nav-item:focus-within .dropdown-menu {
    display: block;
}
.dropdown-menu a {
    display: block;
    padding: 10px 18px;
    color: #ddd;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}
.dropdown-menu a:hover {
    background: var(--navy);
    color: var(--gold);
}

/* Mobile Menu Toggle Button */
.mobile-toggle {
    display: none;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    font-size: 1.3rem;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    cursor: pointer;
}

/* Mobile Nav Drawer */
/* Mobile Navigation Drawer */
.mobile-drawer {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: rgba(10, 10, 10, 0.96);
    z-index: 2000;
    flex-direction: column;
    padding: 30px 24px;
    overflow-y: auto;
}

body.menu-open {
    overflow: hidden !important;
}
.mobile-drawer.active {
    display: flex;
}
.mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 20px;
    margin-bottom: 30px;
}
.mobile-drawer-close {
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
}
.mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.mobile-nav-list a {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 700;
    text-decoration: none;
}
.mobile-nav-sublist {
    list-style: none;
    padding-left: 20px;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.mobile-nav-sublist a {
    font-size: 1rem;
    color: #ccc;
    font-weight: 500;
}

/* ==========================================================================
   Page Sections & Components
   ========================================================================== */

/* Hero Section - Bright & High Contrast Layout */
.hero {
    position: relative;
    min-height: 650px;
    background: var(--navy);
    color: var(--white);
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    overflow: hidden;
}
.hero-content {
    position: relative;
    z-index: 3;
    padding: 80px 4vw 80px 6vw;
    background: var(--navy);
}
.hero h1 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: clamp(2.3rem, 4.2vw, 3.6rem);
}
.hero .lead {
    font-size: 1.18rem;
    line-height: 1.65;
    color: #F1F5F9;
    max-width: 640px;
    margin-bottom: 35px;
}
.hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.trust-row {
    display: flex;
    gap: 24px;
    margin-top: 45px;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 800;
    color: var(--gold);
    flex-wrap: wrap;
}
.trust-row span::before {
    content: "✓ ";
    color: var(--white);
}

.hero-visual {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 650px;
    background: var(--navy);
    z-index: 1;
}
.hero-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #063B78 0%, rgba(6, 59, 120, 0.4) 25%, transparent 50%);
}
.hero-card {
    position: absolute;
    right: 4vw;
    bottom: 6%;
    width: 280px;
    padding: 24px 28px;
    background: rgba(255, 255, 255, 0.98);
    color: var(--ink);
    box-shadow: var(--shadow-lg);
    border-top: 5px solid var(--gold);
    z-index: 2;
    border-radius: var(--radius-sm);
}
.hero-card small {
    display: block;
    color: var(--navy);
    font-weight: 800;
    letter-spacing: 0.14em;
    margin-bottom: 10px;
    font-size: 0.75rem;
}
.hero-card strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.7rem;
    color: var(--navy);
    line-height: 1.2;
}
.hero-card strong + strong {
    border-top: 1px solid #D4DFDF;
    margin-top: 8px;
    padding-top: 8px;
}

/* Section Header */
.section-intro {
    max-width: 820px;
    margin: 0 auto 50px;
    text-align: center;
}
.section-intro.left {
    text-align: left;
    margin-left: 0;
}
.section-intro p {
    font-size: 1.15rem;
    color: var(--muted);
}

/* Section Layouts */
.section-padding {
    padding: 90px 6vw;
}
.bg-white { background-color: var(--white); }
.bg-paper { background-color: var(--paper); }
.bg-navy { background-color: var(--navy); color: var(--white); }
.bg-ink { background-color: var(--ink); color: var(--white); }

/* Route Selector Grid (5 Visitor Journeys) */
.route-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    max-width: 1400px;
    margin: 0 auto;
}
.route-card {
    background: var(--white);
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--ink);
    border-top: 5px solid var(--navy);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.route-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.route-card.gold { border-top-color: var(--gold); }
.route-card.teal { border-top-color: var(--teal); }
.route-card.blue { border-top-color: var(--blue); }

.route-number {
    font-size: 0.85rem;
    font-weight: 900;
    color: var(--navy);
    letter-spacing: 0.1em;
}
.route-card h3 {
    font-size: 1.35rem;
    margin: 18px 0 12px;
}
.route-card p {
    font-size: 0.92rem;
    color: var(--muted);
    flex-grow: 1;
    margin-bottom: 20px;
}
.route-link-text {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--navy);
}

/* Boundary Grid (Can / Cannot Scope Clarity) */
.boundary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}
.boundary-box {
    padding: 45px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}
.boundary-box.can {
    background: var(--paper);
    border-top: 5px solid var(--navy);
}
.boundary-box.cannot {
    background: var(--white);
    border-top: 5px solid var(--gold);
}
.boundary-box h3 {
    margin-bottom: 24px;
}
.boundary-box ul {
    list-style: none;
}
.boundary-box li {
    position: relative;
    padding: 10px 0 10px 30px;
    border-bottom: 1px solid rgba(6, 59, 120, 0.1);
    font-size: 0.98rem;
}
.boundary-box.can li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--navy);
    font-weight: 900;
}
.boundary-box.cannot li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 900;
}

/* 5-Step Process Timeline */
.process-steps {
    display: flex;
    align-items: stretch;
    gap: 15px;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}
.step-card {
    flex: 1;
    min-width: 200px;
    background: var(--white);
    padding: 28px 20px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--navy);
}
.step-number {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    background: var(--navy);
    color: var(--white);
    font-weight: 900;
    border-radius: 50%;
    margin-bottom: 16px;
}
.step-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}
.step-card p {
    font-size: 0.9rem;
    color: var(--muted);
}
.process-disclaimer {
    text-align: center;
    font-weight: 800;
    color: var(--danger);
    margin-top: 35px;
    font-size: 0.95rem;
}

/* Shelters / Refuges Cards */
.shelter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.shelter-card {
    background: var(--white);
    padding: 35px;
    border-radius: var(--radius-sm);
    border-top: 5px solid var(--navy);
    box-shadow: var(--shadow-sm);
}
.shelter-card h3 { margin-bottom: 12px; }
.shelter-badge {
    display: inline-block;
    background: rgba(6, 59, 120, 0.08);
    color: var(--navy);
    font-size: 0.78rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 3px;
    margin-bottom: 16px;
}
.shelter-card p { font-size: 0.95rem; color: var(--muted); }

/* Resource Directory Cards (COMAR, OIM, INM, DIF, IFDP) */
.resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.resource-card {
    background: var(--white);
    padding: 35px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
}
.resource-card h3 { margin-bottom: 10px; }
.resource-card p { font-size: 0.92rem; color: var(--muted); flex-grow: 1; }
.resource-card .visitar-btn {
    align-self: flex-start;
    margin-top: 20px;
}

/* Forms & Inputs */
.request-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 45px;
    box-shadow: var(--shadow-lg);
    border-top: 6px solid var(--gold);
    border-radius: var(--radius-sm);
}
.form-group {
    margin-bottom: 22px;
}
.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
}
.form-control {
    width: 100%;
    padding: 14px;
    border: 1px solid #CBD5E1;
    background: #F8FAFC;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--ink);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.form-control:focus {
    border-color: var(--navy);
    background: var(--white);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.check-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
}
.check-label input {
    width: 18px;
    height: 18px;
}
/* Anti-Spam Honeypot Field */
.hidden-field {
    display: none !important;
    visibility: hidden !important;
}

/* Modals */
.modal-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.8);
    z-index: 99999 !important;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.modal-backdrop.active {
    display: flex;
}
.modal-box {
    background: var(--white);
    max-width: 650px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    padding: 45px 35px 35px 35px;
    position: relative;
}
@keyframes modalShake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-6px); }
    40%, 80% { transform: translateX(6px); }
}
.modal-shake {
    animation: modalShake 0.35s ease-in-out;
}
.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #F1F5F9;
    color: var(--navy);
    border: 1px solid #CBD5E1;
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.modal-close:hover {
    background: var(--navy);
    color: var(--white);
    transform: scale(1.05);
}

/* Footer */
.site-footer {
    background: var(--ink);
    color: var(--white);
    padding: 70px 6vw 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto 50px;
}
.footer-col h4 {
    color: var(--gold);
    margin-bottom: 18px;
    font-size: 1rem;
}
.footer-col p, .footer-col a, .footer-col span {
    color: #CBD5E1;
    font-size: 0.9rem;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}
.footer-col a:hover {
    color: var(--gold);
}
.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    font-size: 0.82rem;
    color: #94A3B8;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

@media (max-width: 1024px) {
    .nav-menu { display: none; }
    .mobile-toggle { display: block; }
    .boundary-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-visual { min-height: 420px; }
    .hero-card { display: none; }
}

@media (max-width: 700px) {
    .emergency-bar { flex-direction: column; text-align: center; }
    .hero-content { padding: 45px 18px 45px; }
    .hero-visual { min-height: 280px; }
    .section-padding { padding: 45px 18px; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .resource-grid { grid-template-columns: 1fr !important; }
    .shelter-grid { grid-template-columns: 1fr !important; }
    .request-form-container { padding: 25px 18px; }
    .modal-box { padding: 24px 18px !important; max-height: 92dvh; }
}
