/* ... Previous styles ... */
:root {
    --primary: #0EA5E9;
    --primary-dark: #0284C7;
    --secondary: #F97316;
    --secondary-dark: #EA580C;
    --bg-color: #F0F9FF;
    --card-bg: rgba(255, 255, 255, 0.9);
    --text-main: #0F172A;
    --text-muted: #475569;
    --font-head: 'Fredoka One', cursive;
    --font-body: 'Outfit', sans-serif;
    --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
    box-sizing: border-box;
}

#snow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 50;
    overflow: hidden;
}

.snowflake {
    position: absolute;
    top: -10px;
    color: #FFF;
    font-size: 1.5rem;
    animation: fall linear infinite;
    opacity: 0.8;
}

@keyframes fall {
    to {
        transform: translateY(105vh);
    }
}

.navbar {
    display: flex;
    justify-content: center;
    /* Center the container inside */
    padding: 1.5rem 0;
    /* Vertical padding only, horizontal handled by container */
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Alert Banner */
.alert-banner {
    background-color: #DC2626;
    /* Red-600 */
    color: white;
    text-align: center;
    padding: 0.75rem 1rem;
    font-weight: 700;
    font-size: 0.95rem;
    position: relative;
    z-index: 101;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo {
    font-family: var(--font-head);
    font-size: 1.8rem;
    color: var(--primary-dark);
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    margin-left: 2rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.hero {
    flex-direction: column-reverse;
    align-items: center;
    padding: 4rem 1.5rem;
    /* Match container padding vertically */
    min-height: 80vh;
    justify-content: center;
    gap: 3rem;
    text-align: center;
}

.hero-content h1 {
    font-family: var(--font-head);
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.highlight {
    color: var(--primary);
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn:active {
    transform: scale(0.95);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: white;
}

/* Snowman CSS Art */
.hero-visual {
    position: relative;
    width: 200px;
    height: 250px;
}

.snowman .head,
.snowman .body-top,
.snowman .body-bottom {
    background: white;
    border-radius: 50%;
    margin: 0 auto;
    box-shadow: inset -5px -5px 15px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.snowman .head {
    width: 80px;
    height: 80px;
    z-index: 3;
}

.snowman .body-top {
    width: 110px;
    height: 110px;
    margin-top: -30px;
    z-index: 2;
}

.snowman .body-bottom {
    width: 140px;
    height: 140px;
    margin-top: -40px;
    z-index: 1;
}

.snowman .eye {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #333;
    border-radius: 50%;
    top: 30px;
}

.snowman .eye.left {
    left: 25px;
}

.snowman .eye.right {
    right: 25px;
}

.snowman .nose {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 20px solid var(--secondary);
    top: 35px;
    left: 35px;
    transform: rotate(90deg);
}

.snowman .button {
    width: 8px;
    height: 8px;
    background: #333;
    border-radius: 50%;
    margin: 15px auto;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.modal-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.modal-content {
    background: #FFF;
    padding: 2.5rem;
    border-radius: 24px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    transform: translateY(0);
    transition: transform 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-overlay.hidden .modal-content {
    transform: translateY(20px);
}

.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: #F1F5F9;
    border: none;
    font-size: 2rem;
    line-height: 1;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    color: var(--text-muted);
    transition: background 0.2s, color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 4px;
}

.close-modal:hover {
    background: #E2E8F0;
    color: var(--secondary);
}

/* Forms */
h2 {
    font-family: var(--font-head);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--primary);
    /* Brighter blue to match reference */
}

.form-group {
    margin-bottom: 1.25rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-muted);
}

input,
select,
textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.row {
    display: flex;
    gap: 1rem;
}

.half {
    flex: 1;
}

.full-width {
    width: 100%;
}

/* Premium Cards & Grid */
.requests-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.request-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #fee2e2;
    /* Soft red border */
}

.card-header-premium {
    background: #fff5f5;
    /* Light pink/red header */
    padding: 1.25rem;
    position: relative;
    border-bottom: 2px solid #fff;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.card-title-premium {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.3rem;
    color: #333;
}

.date-badge {
    color: #ef4444;
    font-weight: 700;
    font-size: 1.1rem;
}

.emergency-chip {
    background: #ef4444;
    color: #fff;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 10px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.header-sub {
    font-size: 0.95rem;
    color: #666;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.header-sub div {
    display: flex;
    align-items: center;
    gap: 6px;
}

.header-address {
    margin-top: 8px;
    font-weight: 500;
    color: #444;
}

.card-body-premium {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pill-badge {
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pill-blue {
    background: #e0f2fe;
    color: #0369a1;
    border: 1px solid #bae6fd;
}

.pill-green {
    background: #dcfce7;
    color: #15803d;
    border: 1px solid #bbf7d0;
}

.pill-purple {
    background: #f3e8ff;
    color: #7e22ce;
    border: 1px solid #e9d5ff;
}

.pill-info {
    background: #eff6ff;
    color: #1d4ed8;
    border: 1px solid #dbeafe;
}

.equipment-text {
    font-size: 0.95rem;
    color: #444;
}

.emergency-reason-box {
    background: #fff1f2;
    border-radius: 8px;
    padding: 1rem;
    color: #be123c;
    font-size: 0.95rem;
}

.emergency-label {
    font-weight: 700;
    margin-bottom: 4px;
    display: block;
}

.action-buttons {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-help-now {
    background: #10b981;
    color: #fff;
    border: none;
    padding: 0.9rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s;
}

.btn-help-now:hover {
    background: #059669;
}

.btn-whatsapp {
    background: #fff;
    color: #333;
    border: 1px solid #e2e8f0;
    padding: 0.75rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    transition: background 0.2s;
}

.btn-whatsapp:hover {
    background: #f8fafc;
}


footer {
    text-align: center;
    padding: 2rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive */
@media (min-width: 768px) {
    .hero {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
    }

    .hero-content {
        max-width: 50%;
    }

    .hero-buttons {
        justify-content: flex-start;
    }

    .hero-visual {
        transform: scale(1.5);
    }
}