/* ========================================
   SAFETY & SECURITY PAGE STYLES
   Modern, student-friendly design with warm, reassuring visuals
   ======================================== */

/* ========================================
   HERO SECTION
   ======================================== */
.ss-hero {
    position: relative;
    min-height: 500px;
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 40%, #2b6cb0 100%);
    padding: 120px 60px 60px;
    overflow: hidden;
    display: flex;
    align-items: center;
    margin: 0;
}

.ss-hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(72, 187, 120, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.ss-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(237, 137, 54, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.ss-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.ss-hero-shield {
    position: absolute;
    top: 15%;
    right: 8%;
    width: 350px;
    height: 350px;
    opacity: 0.08;
    pointer-events: none;
}

.ss-hero-shield svg {
    width: 100%;
    height: 100%;
}

.ss-hero-container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ss-hero-content {
    max-width: 600px;
}

.ss-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    background: rgba(255,255,255,0.1);
    padding: 8px 16px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

.ss-hero-badge-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(72, 187, 120, 0.2);
}

.ss-hero-badge-icon svg {
    width: 18px;
    height: 18px;
    stroke: #48bb78;
}

.ss-hero-badge span {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ss-hero-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin: 0 0 24px;
}

.ss-hero-title .accent {
    color: #48bb78;
}

.ss-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    margin: 0 0 32px;
}

.ss-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #48bb78;
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(72, 187, 120, 0.3);
}

.ss-hero-cta:hover {
    background: #38a169;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(72, 187, 120, 0.4);
}

.ss-hero-cta svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.ss-hero-cta:hover svg {
    transform: translateX(4px);
}

/* Hero Visual - Safety Features */
.ss-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ss-safety-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 500px;
}

.ss-safety-feature {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.ss-safety-feature:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-4px);
}

.ss-safety-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(72, 187, 120, 0.2);
}

.ss-safety-icon svg {
    width: 24px;
    height: 24px;
    stroke: #48bb78;
}

.ss-safety-feature h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin: 0 0 8px;
}

.ss-safety-feature p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    margin: 0;
    line-height: 1.4;
}

/* ========================================
   SECTION STYLES
   ======================================== */
.ss-section {
    padding: 80px 40px;
    position: relative;
}

.ss-section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.ss-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.ss-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(72, 187, 120, 0.1);
    color: #48bb78;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.ss-section-badge svg {
    width: 16px;
    height: 16px;
}

.ss-section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--er-deep);
    margin: 0 0 16px;
    line-height: 1.2;
}

.ss-section-title .accent {
    color: #48bb78;
}

.ss-section-subtitle {
    font-size: 1.2rem;
    color: var(--er-text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ========================================
   SECTION 1: SAFETY MEASURES
   ======================================== */
.ss-measures-section {
    background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
}

.ss-measures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.ss-measure-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ss-measure-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #48bb78, #38a169);
}

.ss-measure-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

.ss-measure-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    margin-bottom: 24px;
}

.ss-measure-icon.security {
    background: rgba(72, 187, 120, 0.1);
}

.ss-measure-icon.security svg {
    stroke: #48bb78;
}

.ss-measure-icon.emergency {
    background: rgba(237, 137, 54, 0.1);
}

.ss-measure-icon.emergency svg {
    stroke: #ed8936;
}

.ss-measure-icon.global {
    background: rgba(66, 153, 225, 0.1);
}

.ss-measure-icon.global svg {
    stroke: #4299e1;
}

.ss-measure-icon svg {
    width: 32px;
    height: 32px;
}

.ss-measure-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--er-deep);
    margin: 0 0 16px;
}

.ss-measure-card p {
    color: var(--er-text-light);
    line-height: 1.6;
    margin: 0 0 24px;
}

.ss-measure-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ss-measure-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: var(--er-text);
    font-size: 0.95rem;
}

.ss-measure-feature svg {
    width: 16px;
    height: 16px;
    stroke: #48bb78;
    flex-shrink: 0;
}

/* ========================================
   SECTION 2: PERSONAL SAFETY SUPPORT (REDESIGNED)
   ======================================== */
.ss-personal-safety {
    background: linear-gradient(180deg, #ffffff 0%, #f0fdf4 100%);
    padding: 100px 40px;
}

.ss-personal-container {
    max-width: 1200px;
    margin: 0 auto;
}

.ss-personal-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.ss-personal-intro p {
    font-size: 1.15rem;
    color: var(--er-text-light);
    line-height: 1.7;
    margin: 0;
}

.ss-personal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
}

.ss-personal-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(72, 187, 120, 0.1);
    display: flex;
    flex-direction: column;
}

.ss-personal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(72, 187, 120, 0.03) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.ss-personal-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(72, 187, 120, 0.15);
    border-color: rgba(72, 187, 120, 0.3);
}

.ss-personal-card:hover::before {
    opacity: 1;
}

/* Card Icon Styles */
.ss-personal-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.ss-personal-card-icon.emergency {
    background: rgba(239, 68, 68, 0.1);
}

.ss-personal-card-icon.emergency svg {
    stroke: #ef4444;
}

.ss-personal-card-icon.routes {
    background: rgba(66, 153, 225, 0.1);
}

.ss-personal-card-icon.routes svg {
    stroke: #4299e1;
}

.ss-personal-card-icon.orientation {
    background: rgba(237, 137, 54, 0.1);
}

.ss-personal-card-icon.orientation svg {
    stroke: #ed8936;
}

.ss-personal-card-icon.international {
    background: rgba(128, 90, 213, 0.1);
}

.ss-personal-card-icon.international svg {
    stroke: #805ad5;
}

.ss-personal-card-icon.online {
    background: rgba(72, 187, 120, 0.1);
}

.ss-personal-card-icon.online svg {
    stroke: #48bb78;
}

.ss-personal-card-icon svg {
    width: 28px;
    height: 28px;
}

/* Card Content */
.ss-personal-card-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.ss-personal-card-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--er-deep);
    margin: 0 0 12px;
    line-height: 1.3;
}

.ss-personal-card-content p {
    font-size: 0.95rem;
    color: var(--er-text-light);
    line-height: 1.6;
    margin: 0;
}

/* Card Highlight Badge */
.ss-personal-card-highlight {
    margin-top: 16px;
}

.ss-highlight-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(72, 187, 120, 0.1);
    color: #38a169;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Card Number */
.ss-personal-card-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(72, 187, 120, 0.08);
    line-height: 1;
    z-index: 0;
    font-family: var(--font-heading);
}

/* CTA Button */
.ss-personal-cta {
    text-align: center;
    margin-top: 60px;
}

.ss-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: white;
    padding: 18px 36px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(72, 187, 120, 0.3);
}

.ss-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(72, 187, 120, 0.4);
    color: white;
}

.ss-btn-primary svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.ss-btn-primary:hover svg {
    transform: translateX(4px);
}

/* ========================================
   SECTION 3: EMERGENCY CONTACTS
   ======================================== */
.ss-emergency-contacts {
    background: linear-gradient(180deg, #f0fdf4 0%, #ecfdf5 50%, #f8fafc 100%);
    padding: 100px 40px;
    position: relative;
    overflow: hidden;
}

.ss-emergency-contacts::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(72, 187, 120, 0.3), transparent);
}

.ss-emergency-contacts-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Contacts Grid */
.ss-contacts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

/* Contact Card */
.ss-contact-card {
    background: white;
    border-radius: 20px;
    padding: 28px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.04);
}

.ss-contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    border-radius: 4px 0 0 4px;
    transition: width 0.3s ease;
}

.ss-contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}

.ss-contact-card:hover::before {
    width: 6px;
}

/* Card Color Variants */
.ss-contact-card.emergency::before {
    background: linear-gradient(180deg, #ef4444, #dc2626);
}

.ss-contact-card.emergency .ss-contact-icon {
    background: rgba(239, 68, 68, 0.1);
}

.ss-contact-card.emergency .ss-contact-icon svg {
    stroke: #ef4444;
}

.ss-contact-card.emergency .ss-contact-badge {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

.ss-contact-card.security::before {
    background: linear-gradient(180deg, #48bb78, #38a169);
}

.ss-contact-card.security .ss-contact-icon {
    background: rgba(72, 187, 120, 0.1);
}

.ss-contact-card.security .ss-contact-icon svg {
    stroke: #48bb78;
}

.ss-contact-card.security .ss-contact-badge {
    background: rgba(72, 187, 120, 0.1);
    color: #38a169;
}

.ss-contact-card.support::before {
    background: linear-gradient(180deg, #4299e1, #3182ce);
}

.ss-contact-card.support .ss-contact-icon {
    background: rgba(66, 153, 225, 0.1);
}

.ss-contact-card.support .ss-contact-icon svg {
    stroke: #4299e1;
}

.ss-contact-card.support .ss-contact-badge {
    background: rgba(66, 153, 225, 0.1);
    color: #3182ce;
}

.ss-contact-card.whatsapp::before {
    background: linear-gradient(180deg, #25d366, #128c7e);
}

.ss-contact-card.whatsapp .ss-contact-icon {
    background: rgba(37, 211, 102, 0.1);
}

.ss-contact-card.whatsapp .ss-contact-icon svg {
    stroke: #25d366;
}

.ss-contact-card.whatsapp .ss-contact-badge {
    background: rgba(37, 211, 102, 0.1);
    color: #128c7e;
}

.ss-contact-card.medical::before {
    background: linear-gradient(180deg, #ed8936, #dd6b20);
}

.ss-contact-card.medical .ss-contact-icon {
    background: rgba(237, 137, 54, 0.1);
}

.ss-contact-card.medical .ss-contact-icon svg {
    stroke: #ed8936;
}

.ss-contact-card.medical .ss-contact-badge {
    background: rgba(237, 137, 54, 0.1);
    color: #dd6b20;
}

.ss-contact-card.email::before {
    background: linear-gradient(180deg, #805ad5, #6b46c1);
}

.ss-contact-card.email .ss-contact-icon {
    background: rgba(128, 90, 213, 0.1);
}

.ss-contact-card.email .ss-contact-icon svg {
    stroke: #805ad5;
}

.ss-contact-card.email .ss-contact-badge {
    background: rgba(128, 90, 213, 0.1);
    color: #6b46c1;
}

/* Contact Icon */
.ss-contact-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
}

.ss-contact-icon svg {
    width: 26px;
    height: 26px;
}

/* Contact Info */
.ss-contact-info {
    flex: 1;
}

.ss-contact-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--er-text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.ss-contact-number,
.ss-contact-email {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--er-deep);
    margin: 0 0 6px;
    line-height: 1.2;
}

.ss-contact-email {
    font-size: 1.1rem;
    word-break: break-all;
}

.ss-contact-desc {
    font-size: 0.85rem;
    color: var(--er-text-light);
    margin: 0;
    line-height: 1.4;
}

/* Contact Badge */
.ss-contact-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Contacts Footer */
.ss-contacts-footer {
    margin-top: 48px;
}

.ss-contacts-note {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(66, 153, 225, 0.08);
    border: 1px solid rgba(66, 153, 225, 0.2);
    border-radius: 16px;
    padding: 20px 24px;
    max-width: 800px;
    margin: 0 auto;
}

.ss-contacts-note svg {
    width: 24px;
    height: 24px;
    min-width: 24px;
    stroke: #4299e1;
    margin-top: 2px;
}

.ss-contacts-note p {
    font-size: 0.95rem;
    color: var(--er-text);
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
    .ss-hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .ss-hero-visual {
        order: -1;
    }
    
    .ss-support-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .ss-support-visual {
        order: -1;
    }
    
    /* Personal Safety Section */
    .ss-personal-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Emergency Contacts Section */
    .ss-contacts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Emergency Hub Section */
    .ss-emergency-hub-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .ss-emergency-header h2 {
        font-size: 2.2rem;
    }
    
    /* Reporting Section Redesigned */
    .ss-reporting-wrapper {
        grid-template-columns: 1fr;
    }
    
    .ss-reporting-right {
        min-height: 350px;
    }
}

@media (max-width: 768px) {
    .ss-hero {
        padding: 100px 30px 50px;
        min-height: 400px;
    }
    
    .ss-hero-title {
        font-size: 2.2rem;
    }
    
    .ss-hero-subtitle {
        font-size: 1rem;
    }
    
    .ss-safety-features {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .ss-section {
        padding: 60px 30px;
    }
    
    .ss-section-title {
        font-size: 2rem;
    }
    
    .ss-measures-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .ss-emergency-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .ss-reporting-content {
        padding: 32px 24px;
    }
    
    .ss-reporting-content h3 {
        font-size: 1.5rem;
    }
    
    .ss-reporting-content p {
        font-size: 1rem;
    }
    
    /* Personal Safety Section */
    .ss-personal-safety {
        padding: 70px 30px;
    }
    
    .ss-personal-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Emergency Contacts Section */
    .ss-emergency-contacts {
        padding: 70px 30px;
    }
    
    .ss-contacts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .ss-contact-card {
        padding: 24px;
    }
    
    .ss-contact-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
    }
    
    .ss-contact-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .ss-contact-number,
    .ss-contact-email {
        font-size: 1.2rem;
    }
    
    .ss-contact-badge {
        padding: 5px 10px;
        font-size: 0.65rem;
    }
    
    .ss-contacts-note {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .ss-contacts-note svg {
        margin: 0 auto;
    }
    
    .ss-personal-card {
        padding: 24px;
    }
    
    .ss-personal-number {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }
    
    .ss-personal-card h3 {
        font-size: 1.1rem;
    }
    
    /* Emergency Hub Section */
    .ss-emergency-hub {
        padding: 70px 30px;
    }
    
    .ss-emergency-header h2 {
        font-size: 2rem;
    }
    
    .ss-emergency-contact-card {
        padding: 20px;
        gap: 16px;
    }
    
    .ss-emergency-contact-icon {
        width: 48px;
        height: 48px;
    }
    
    .ss-emergency-value {
        font-size: 1.2rem;
    }
    
    .ss-quick-actions {
        padding: 24px;
    }
    
    .ss-quick-action-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .ss-quick-action {
        padding: 18px 12px;
    }
    
    .ss-quick-action-icon {
        width: 44px;
        height: 44px;
    }
    
    /* Reporting Section Redesigned */
    .ss-reporting-section {
        padding: 70px 30px;
    }
    
    .ss-reporting-wrapper {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .ss-reporting-left {
        padding: 40px 30px;
    }
    
    .ss-reporting-left h2 {
        font-size: 1.8rem;
    }
    
    .ss-reporting-options {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .ss-reporting-option {
        padding: 16px;
    }
    
    .ss-reporting-option-icon {
        width: 40px;
        height: 40px;
    }
    
    .ss-reporting-option h4 {
        font-size: 0.9rem;
    }
    
    .ss-reporting-option p {
        font-size: 0.8rem;
    }
    
    .ss-reporting-right {
        padding: 40px 30px;
    }
    
    .ss-reporting-shield {
        width: 100px;
        height: 100px;
        margin-bottom: 24px;
    }
    
    .ss-reporting-shield svg {
        width: 50px;
        height: 50px;
    }
    
    .ss-reporting-reassurance h3 {
        font-size: 1.3rem;
    }
    
    .ss-reporting-reassurance p {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }
    
    .ss-trust-item {
        padding: 8px 14px;
    }
    
    .ss-trust-item span {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .ss-hero-title {
        font-size: 1.8rem;
    }
    
    .ss-section-title {
        font-size: 1.8rem;
    }
    
    .ss-measure-card,
    .ss-support-item,
    .ss-emergency-card {
        padding: 24px;
    }
    
    .ss-reporting-content {
        padding: 24px 20px;
    }
    
    /* Personal Safety Section */
    .ss-personal-header {
        flex-direction: column;
        gap: 12px;
    }
    
    .ss-personal-card {
        padding: 20px;
    }
    
    /* Emergency Contacts Section */
    .ss-emergency-contacts {
        padding: 60px 20px;
    }
    
    .ss-contact-card {
        padding: 20px;
        gap: 16px;
    }
    
    .ss-contact-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        border-radius: 12px;
    }
    
    .ss-contact-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .ss-contact-number,
    .ss-contact-email {
        font-size: 1.1rem;
    }
    
    .ss-contact-label {
        font-size: 0.75rem;
    }
    
    .ss-contact-desc {
        font-size: 0.8rem;
    }
    
    .ss-contact-badge {
        top: 12px;
        right: 12px;
        padding: 4px 8px;
        font-size: 0.6rem;
    }
    
    .ss-contacts-note p {
        font-size: 0.9rem;
    }
    
    /* Emergency Hub Section */
    .ss-emergency-header h2 {
        font-size: 1.7rem;
    }
    
    .ss-emergency-contact-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .ss-emergency-contact-info {
        text-align: center;
    }
    
    .ss-quick-action-grid {
        grid-template-columns: 1fr;
    }
    
    .ss-quick-action {
        flex-direction: row;
        text-align: left;
        padding: 16px;
    }
    
    .ss-safety-tip {
        flex-direction: column;
        text-align: center;
    }
    
    .ss-safety-tip-icon {
        margin: 0 auto;
    }
    
    /* Reporting Section Redesigned */
    .ss-reporting-left {
        padding: 30px 20px;
    }
    
    .ss-reporting-left h2 {
        font-size: 1.5rem;
    }
    
    .ss-reporting-left > p {
        font-size: 1rem;
        margin-bottom: 28px;
    }
    
    .ss-reporting-options {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .ss-reporting-option {
        flex-direction: row;
        align-items: center;
        padding: 16px;
        gap: 16px;
    }
    
    .ss-reporting-option-icon {
        flex-shrink: 0;
    }
    
    .ss-reporting-option-content {
        flex: 1;
    }
    
    .ss-reporting-right {
        padding: 30px 20px;
    }
    
    .ss-reporting-shield {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }
    
    .ss-reporting-shield svg {
        width: 40px;
        height: 40px;
    }
    
    .ss-reporting-reassurance h3 {
        font-size: 1.2rem;
    }
    
    .ss-reporting-reassurance p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .ss-reporting-trust {
        gap: 8px;
    }
    
    .ss-trust-item {
        padding: 8px 12px;
        justify-content: center;
    }
    
    .ss-trust-item svg {
        width: 16px;
        height: 16px;
    }
    
    .ss-trust-item span {
        font-size: 0.8rem;
    }
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.ss-safety-feature:nth-child(1) {
    animation: float 3s ease-in-out infinite;
}

.ss-safety-feature:nth-child(2) {
    animation: float 3s ease-in-out infinite 0.5s;
}

.ss-safety-feature:nth-child(3) {
    animation: float 3s ease-in-out infinite 1s;
}

.ss-safety-feature:nth-child(4) {
    animation: float 3s ease-in-out infinite 1.5s;
}

/* ========================================
   ACCESSIBILITY
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    .ss-safety-feature,
    .ss-measure-card,
    .ss-support-item,
    .ss-emergency-card,
    .ss-hero-cta,
    .ss-support-cta a,
    .ss-reporting-cta {
        animation: none;
        transition: none;
    }
}

/* Focus styles */
.ss-hero-cta:focus,
.ss-support-cta a:focus,
.ss-reporting-cta:focus {
    outline: 3px solid #48bb78;
    outline-offset: 2px;
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .ss-hero {
        background: #000;
    }
    
    .ss-measure-card,
    .ss-reporting-content {
        border: 2px solid #000;
    }
}