/* Emergency-specific styles */
.emergency-number {
    background: var(--accent);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    margin: 0.5rem 0;
    cursor: pointer;
    transition: background 0.3s;
    text-align: center;
    font-weight: 600;
}

.emergency-number:hover {
    background: #b91c1c;
}

.emergency-contact {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1rem 0;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--accent);
}

.emergency-region {
    background: var(--background-alt);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    border: 2px solid var(--border);
}

.emergency-region h3 {
    color: var(--accent);
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 0.5rem;
}

.emergency-hotline {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    margin: 2rem 0;
    box-shadow: var(--shadow-lg);
}

.emergency-hotline h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.emergency-hotline .btn {
    background: white;
    color: var(--accent);
    font-size: 1.2rem;
    padding: 1rem 2rem;
    margin-top: 1rem;
}

.emergency-hotline .btn:hover {
    background: var(--background-alt);
    transform: translateY(-2px);
}

/* Emergency preparedness checklist */
.checklist {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: var(--shadow);
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin: 1rem 0;
    padding: 1rem;
    background: var(--background-alt);
    border-radius: 6px;
    border-left: 4px solid var(--secondary);
}

.checklist-item input[type="checkbox"] {
    margin-top: 0.25rem;
}

.checklist-item label {
    font-weight: 500;
    cursor: pointer;
}

.checklist-item.completed {
    background: #f0fdf4;
    border-left-color: #059669;
    text-decoration: line-through;
    color: var(--text-light);
}

/* Emergency contact form */
.emergency-form {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: var(--shadow);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.emergency-priority {
    background: #fef3c7;
    border: 2px solid #d97706;
    color: #92400e;
    padding: 1rem;
    border-radius: 6px;
    margin: 1rem 0;
    font-weight: 600;
}

/* Mobile responsive emergency styles */
@media (max-width: 768px) {
    .emergency-hotline h2 {
        font-size: 2rem;
    }
    
    .emergency-region {
        padding: 1.5rem;
    }
    
    .checklist {
        padding: 1.5rem;
    }
    
    .emergency-form {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .emergency-hotline {
        padding: 2rem 1rem;
    }
    
    .emergency-hotline h2 {
        font-size: 1.75rem;
    }
    
    .checklist-item {
        flex-direction: column;
        gap: 0.5rem;
    }
}