/* Safety Page Styles */

/* Page Hero */
.page-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 80px;
    background: linear-gradient(135deg, rgba(10,22,40,0.9) 0%, rgba(19,34,56,0.85) 100%);
    position: relative;
}

.page-hero-content {
    max-width: 800px;
}

.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.page-hero p {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #E0161B 0%, #c41219 100%);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 2.75rem;
    font-weight: 700;
    color: #0a1628;
    margin-bottom: 15px;
}

.section-header h2 span {
    color: #E0161B;
}

.section-header p {
    font-size: 1.125rem;
    color: #5a6a7a;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Safety Overview Section */
.safety-overview {
    padding: 100px 0;
    background: #f8f9fa;
}

.safety-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.safety-content {
    padding-right: 40px;
}

.safety-features {
    display: grid;
    gap: 25px;
}

.safety-feature {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.safety-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.safety-feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, #E0161B 0%, #c41219 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.safety-feature-icon svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

.safety-feature-text h5 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #0a1628;
    margin-bottom: 8px;
}

.safety-feature-text p {
    font-size: 0.9375rem;
    color: #5a6a7a;
    line-height: 1.6;
    margin: 0;
}

.safety-stats-section {
    padding: 40px;
    background: linear-gradient(135deg, #0a1628 0%, #132238 100%);
    border-radius: 20px;
}

.safety-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.safety-stat-card {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.safety-stat-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
}

.safety-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #E0161B;
    margin-bottom: 8px;
}

.safety-stat-label {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
}

/* Certifications Section */
.certifications-section {
    padding: 100px 0;
    background: #fff;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.certification-card {
    padding: 40px 30px;
    background: #f8f9fa;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.certification-card:hover {
    transform: translateY(-10px);
    border-color: #E0161B;
    box-shadow: 0 15px 40px rgba(224, 22, 27, 0.15);
}

.certification-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #0a1628 0%, #132238 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.certification-icon svg {
    width: 32px;
    height: 32px;
    fill: #E0161B;
}

.certification-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0a1628;
    margin-bottom: 10px;
}

.certification-card p {
    font-size: 0.9375rem;
    color: #5a6a7a;
    line-height: 1.6;
    margin: 0;
}

/* Safety Procedures Section */
.safety-procedures {
    padding: 100px 0;
    background: #f8f9fa;
}

.procedures-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.procedure-card {
    padding: 35px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.procedure-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #E0161B 0%, #c41219 100%);
}

.procedure-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.procedure-number {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(224, 22, 27, 0.15);
    position: absolute;
    top: 15px;
    right: 20px;
}

.procedure-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0a1628;
    margin-bottom: 12px;
}

.procedure-card p {
    font-size: 0.9375rem;
    color: #5a6a7a;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a1628 0%, #132238 100%);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 35px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .safety-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .safety-content {
        padding-right: 0;
    }
    
    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .procedures-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-hero {
        min-height: 50vh;
        padding: 100px 20px 60px;
    }
    
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .page-hero p {
        font-size: 1.0625rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .safety-overview,
    .certifications-section,
    .safety-procedures,
    .cta-section {
        padding: 60px 0;
    }
    
    .certifications-grid {
        grid-template-columns: 1fr;
    }
    
    .procedures-grid {
        grid-template-columns: 1fr;
    }
    
    .safety-stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .safety-stats-grid {
        grid-template-columns: 1fr;
    }
}