/* EMERGENCY CONTACT PAGE COMPONENTS */

/* Emergency hero section */
.emergency-hero {
    background: linear-gradient(135deg, #dc2626, #b91c1c, #991b1b);
    color: white;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.emergency-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="emergency" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><rect fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1" width="20" height="20"/></pattern></defs><rect width="100%" height="100%" fill="url(%23emergency)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.emergency-alert {
    text-align: center;
    margin-bottom: 3rem;
}

.alert-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: emergencyPulse 2s infinite;
}

@keyframes emergencyPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.emergency-alert h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.emergency-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.4);
}

.stat-item.urgent {
    border-color: #fbbf24;
    box-shadow: 0 0 20px rgba(251,191,36,0.3);
}

.stat-item.available {
    border-color: #10b981;
    box-shadow: 0 0 20px rgba(16,185,129,0.3);
}

.stat-item.experts {
    border-color: #3b82f6;
    box-shadow: 0 0 20px rgba(59,130,246,0.3);
}

.stat-item.coverage {
    border-color: #8b5cf6;
    box-shadow: 0 0 20px rgba(139,92,246,0.3);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-weight: bold;
    color: white;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.stat-note {
    color: rgba(255,255,255,0.8);
    font-size: 0.8rem;
}

/* Emergency contacts grid */
.emergency-contacts {
    padding: 5rem 0;
    background: #f8fafc;
}

.emergency-contacts h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-grid {
    display: grid;
    gap: 3rem;
    margin-top: 3rem;
}

.emergency-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border-top: 6px solid;
}

.emergency-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.emergency-card.critical {
    border-top-color: #dc2626;
}

.emergency-card.high {
    border-top-color: #f59e0b;
}

.emergency-card.standard {
    border-top-color: #10b981;
}

/* Emergency level header */
.emergency-level {
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-bottom: 1px solid #e5e7eb;
}

.level-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.emergency-level h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
    font-weight: bold;
    font-size: 1.5rem;
}

.level-description {
    text-align: center;
    color: #64748b;
    font-size: 1rem;
}

.emergency-card.critical .level-description {
    color: #dc2626;
    font-weight: 600;
}

/* Contact methods */
.contact-methods {
    padding: 2rem;
}

.primary-contact {
    background: #f8fafc;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 2px solid #e5e7eb;
}

.contact-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-icon {
    font-size: 3rem;
    color: var(--accent-color);
}

.contact-title {
    font-weight: bold;
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.contact-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 0.25rem;
}

.contact-subtitle {
    color: #64748b;
    font-size: 1rem;
}

.contact-features {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    color: #374151;
    font-size: 0.95rem;
}

.call-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.emergency-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    flex: 1;
    justify-content: center;
    min-width: 200px;
}

.emergency-btn.critical-call {
    background: #dc2626;
    color: white;
    animation: criticalPulse 3s infinite;
}

.emergency-btn.critical-call:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220,38,38,0.3);
}

@keyframes criticalPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(220,38,38,0.7); }
    50% { box-shadow: 0 0 0 10px rgba(220,38,38,0); }
}

.emergency-btn.high-call {
    background: #f59e0b;
    color: white;
}

.emergency-btn.high-call:hover {
    background: #d97706;
    transform: translateY(-2px);
}

.emergency-btn.standard-call {
    background: #10b981;
    color: white;
}

.emergency-btn.standard-call:hover {
    background: #059669;
    transform: translateY(-2px);
}

.callback-btn,
.chat-btn {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--accent-color);
    padding: 1rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 150px;
}

.callback-btn:hover,
.chat-btn:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
}

/* Secondary contacts */
.secondary-contacts,
.alternative-contacts {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.backup-contact,
.whatsapp-contact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.method-icon {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.method-info {
    display: flex;
    flex-direction: column;
}

.method-info strong {
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.method-info a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.method-info span {
    color: #64748b;
    font-size: 0.9rem;
}

/* Support options */
.support-options {
    margin-top: 2rem;
}

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

.support-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.support-option:hover {
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.option-icon {
    font-size: 2rem;
    color: var(--accent-color);
}

.option-info {
    flex: 1;
}

.option-info strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.25rem;
}

.option-info span {
    color: #64748b;
    font-size: 0.9rem;
}

.option-btn {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.option-btn:hover {
    background: #0369a1;
    transform: translateY(-1px);
}

/* Response info */
.response-info {
    padding: 2rem;
    border-top: 1px solid #e5e7eb;
}

.response-info h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.response-steps {
    display: grid;
    gap: 1rem;
}

.step {
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
    font-size: 0.9rem;
    color: #374151;
}

.critical-response .step {
    border-left-color: #dc2626;
}

.high-response .step {
    border-left-color: #f59e0b;
}

/* Response timeline */
.response-timeline {
    display: grid;
    gap: 1rem;
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.time {
    font-weight: bold;
    color: var(--accent-color);
}

.action {
    color: #374151;
    font-size: 0.9rem;
}

/* Response levels */
.response-levels {
    display: grid;
    gap: 1rem;
}

.level-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid #10b981;
}

.level-name {
    font-weight: 600;
    color: var(--primary-color);
}

.level-time {
    color: #10b981;
    font-weight: bold;
}

/* Emergency types section */
.emergency-types {
    padding: 5rem 0;
}

.emergency-types h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.emergency-categories {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.category-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border-top: 4px solid;
}

.category-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.critical-category {
    border-top-color: #dc2626;
}

.high-category {
    border-top-color: #f59e0b;
}

.standard-category {
    border-top-color: #10b981;
}

.category-header {
    padding: 2rem;
    text-align: center;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.category-header h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.category-priority {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    color: white;
}

.critical-category .category-priority {
    background: #dc2626;
}

.high-category .category-priority {
    background: #f59e0b;
}

.standard-category .category-priority {
    background: #10b981;
}

.category-situations {
    padding: 2rem;
}

.situation-list {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.situation-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.situation-item:hover {
    background: #e2e8f0;
    transform: translateX(5px);
}

.situation-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.situation-info strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.25rem;
}

.situation-info span {
    color: #64748b;
    font-size: 0.9rem;
}

.category-action {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    color: white;
    transition: all 0.3s ease;
}

.action-btn.critical {
    background: #dc2626;
}

.action-btn.critical:hover {
    background: #b91c1c;
    transform: translateY(-2px);
}

.action-btn.high {
    background: #f59e0b;
}

.action-btn.high:hover {
    background: #d97706;
    transform: translateY(-2px);
}

.action-btn.standard {
    background: #10b981;
}

.action-btn.standard:hover {
    background: #059669;
    transform: translateY(-2px);
}

.action-note {
    color: #64748b;
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Emergency process timeline */
.emergency-process {
    padding: 5rem 0;
    background: #f8fafc;
}

.emergency-process h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.process-timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 60px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #dc2626, #f59e0b, #10b981);
    border-radius: 2px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.step-marker {
    position: relative;
    z-index: 1;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    font-size: 2rem;
    font-weight: bold;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.step-content {
    flex: 1;
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.step-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.step-details p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.step-features {
    display: grid;
    gap: 0.75rem;
}

.step-features .feature {
    color: #374151;
    font-size: 0.9rem;
}

.step-time {
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    white-space: nowrap;
    align-self: flex-start;
    margin-top: 2rem;
}

/* Coverage section */
.emergency-coverage {
    padding: 5rem 0;
}

.emergency-coverage h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

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

.coverage-item {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.coverage-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.coverage-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.coverage-item h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.coverage-details {
    text-align: left;
    display: grid;
    gap: 1rem;
}

.region {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: #f8fafc;
    border-radius: 6px;
    font-size: 0.9rem;
}

.team-stats,
.vehicle-fleet {
    display: grid;
    gap: 1rem;
}

.team-member,
.vehicle-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.member-role,
.vehicle-type {
    font-weight: 600;
    color: var(--primary-color);
}

.member-count,
.vehicle-info {
    color: #64748b;
    font-size: 0.9rem;
}

.availability-schedule {
    display: grid;
    gap: 1rem;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid;
}

.schedule-item.full {
    border-left-color: #10b981;
}

.schedule-item.limited {
    border-left-color: #f59e0b;
}

.schedule-item.weekend {
    border-left-color: #dc2626;
}

.schedule-item .time {
    font-weight: bold;
    color: var(--accent-color);
}

.schedule-item .service {
    color: #374151;
    font-size: 0.9rem;
}

/* Preparation section */
.emergency-preparation {
    padding: 5rem 0;
    background: #f8fafc;
}

.emergency-preparation h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.preparation-content {
    display: grid;
    gap: 3rem;
    margin-top: 3rem;
}

.preparation-section {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.preparation-section h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.prevention-list,
.app-features {
    display: grid;
    gap: 1rem;
}

.prevention-item,
.app-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.prevention-item:hover,
.app-feature:hover {
    background: #e2e8f0;
    transform: translateX(5px);
}

.prevention-icon,
.feature-icon {
    font-size: 2rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.prevention-info strong,
.feature-info strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.25rem;
}

.prevention-info span,
.feature-info span {
    color: #64748b;
    font-size: 0.9rem;
}

.emergency-steps {
    display: grid;
    gap: 1rem;
}

.emergency-step {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.emergency-step .step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    font-weight: bold;
    flex-shrink: 0;
}

.step-instruction strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.25rem;
}

.step-instruction span {
    color: #64748b;
    font-size: 0.9rem;
}

.app-download {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    color: white;
}

.download-btn.ios {
    background: #000;
}

.download-btn.ios:hover {
    background: #333;
    transform: translateY(-2px);
}

.download-btn.android {
    background: #34a853;
}

.download-btn.android:hover {
    background: #2d8f46;
    transform: translateY(-2px);
}

/* Emergency CTA */
.emergency-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.cta-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.cta-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-btn.critical {
    background: #dc2626;
    color: white;
    animation: ctaCriticalPulse 4s infinite;
}

.cta-btn.critical:hover {
    background: #b91c1c;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(220,38,38,0.3);
}

@keyframes ctaCriticalPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(220,38,38,0.4); }
    50% { box-shadow: 0 0 0 15px rgba(220,38,38,0); }
}

.cta-btn.priority {
    background: #f59e0b;
    color: white;
}

.cta-btn.priority:hover {
    background: #d97706;
    transform: translateY(-3px);
}

.cta-btn.callback {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

.cta-btn.callback:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-3px);
}

.cta-btn span {
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: normal;
}

.cta-guarantee {
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: left;
}

.cta-guarantee h4 {
    color: white;
    margin-bottom: 2rem;
    text-align: center;
}

.guarantee-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.guarantee-item {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.guarantee-item strong {
    color: white;
    margin-bottom: 0.25rem;
}

.guarantee-item span {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .emergency-alert h1 {
        font-size: 2rem;
    }
    
    .emergency-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
    }
    
    .contact-grid {
        gap: 2rem;
    }
    
    .contact-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .contact-number {
        font-size: 1.5rem;
    }
    
    .call-actions {
        flex-direction: column;
    }
    
    .emergency-btn {
        min-width: auto;
    }
    
    .option-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline::before {
        left: 30px;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.25rem;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-time {
        align-self: center;
        margin-top: 1rem;
    }
    
    .coverage-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-actions {
        grid-template-columns: 1fr;
    }
    
    .guarantee-points {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .emergency-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .primary-contact {
        padding: 1.5rem;
    }
    
    .emergency-step {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .app-download {
        flex-direction: column;
        align-items: center;
    }
    
    .download-btn {
        width: 100%;
        max-width: 250px;
    }
}
