/* ========================================
   SAFETY PAGE STYLES
======================================== */

/* HERO SECTION */
.safety-hero {
    position: relative;
    min-height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 100px 0 80px;
}

.safety-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.safety-hero .hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.safety-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(255, 117, 31, 0.7) 100%);
    z-index: -1;
}

.safety-hero .hero-content {
    text-align: center;
    color: var(--color-white);
    max-width: 900px;
}

.safety-hero .hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.safety-hero .hero-subtitle {
    font-size: clamp(1.3rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--primary-orange-light);
    margin-bottom: 20px;
}

.safety-hero .hero-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* SAFETY RULES SECTION */
.safety-rules {
    padding: 80px 0;
}

.rule-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-fast);
    border: 2px solid transparent;
}

.rule-card:hover {
    border-color: var(--primary-orange);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.rule-icon {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 25px;
    animation: bounce 3s ease infinite;
}

.rule-title {
    font-size: 1.8rem;
    color: var(--color-dark);
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.rule-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-orange);
    border-radius: 2px;
}

.rule-list {
    padding-left: 0;
}

.rule-list li {
    padding: 15px 20px 15px 50px;
    margin-bottom: 15px;
    background: var(--color-light-bg);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-orange);
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-gray);
    position: relative;
    transition: all var(--transition-fast);
}

.rule-list li:last-child {
    margin-bottom: 0;
}

.rule-list li::before {
    content: '✓';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-orange);
    font-weight: bold;
    font-size: 1.3rem;
}

.rule-list li:hover {
    background: rgba(255, 117, 31, 0.1);
    padding-left: 55px;
}

/* COMMITMENT SECTION */
.commitment-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-dark) 100%);
    position: relative;
    overflow: hidden;
}

.commitment-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.commitment-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: var(--color-white);
}

.commitment-icon {
    font-size: 5rem;
    margin-bottom: 30px;
}

.commitment-title {
    font-size: 2.5rem;
    color: var(--color-white);
    margin-bottom: 30px;
    font-weight: 800;
}

.commitment-text {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 20px;
    opacity: 0.95;
}

.commitment-text:last-child {
    margin-bottom: 0;
}

/* CTA SECTION */
.cta-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.cta-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(255, 117, 31, 0.8) 100%);
    z-index: -1;
}

.cta-content {
    text-align: center;
    color: var(--color-white);
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--color-white);
}

.cta-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.cta-content .btn {
    margin-top: 20px;
    font-size: 1.1rem;
    padding: 16px 40px;
}

/* ========================================
   RESPONSIVE - TABLET
======================================== */

@media (max-width: 992px) {
    .safety-hero {
        min-height: 45vh;
        padding: 80px 0 60px;
    }
    
    .rule-card {
        padding: 35px;
    }
    
    .rule-icon {
        font-size: 3rem;
    }
    
    .commitment-icon {
        font-size: 4rem;
    }
    
    .commitment-title {
        font-size: 2rem;
    }
}

/* ========================================
   RESPONSIVE - MOBILE
======================================== */

@media (max-width: 768px) {
    .safety-hero {
        min-height: 40vh;
        padding: 60px 0 50px;
    }
    
    .safety-rules {
        padding: 50px 0;
    }
    
    .rule-card {
        padding: 30px;
        margin-bottom: 25px;
    }
    
    .rule-title {
        font-size: 1.5rem;
    }
    
    .rule-list li {
        font-size: 1rem;
        padding: 12px 15px 12px 45px;
    }
    
    .rule-list li::before {
        left: 15px;
    }
    
    .commitment-section {
        padding: 60px 0;
    }
    
    .commitment-icon {
        font-size: 3.5rem;
    }
    
    .commitment-title {
        font-size: 1.8rem;
    }
    
    .commitment-text {
        font-size: 1.05rem;
    }
    
    .cta-section {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .safety-hero {
        padding: 50px 0 40px;
    }
    
    .rule-card {
        padding: 25px;
    }
    
    .rule-icon {
        font-size: 2.5rem;
    }
    
    .rule-title {
        font-size: 1.3rem;
    }
    
    .rule-list li {
        padding: 10px 10px 10px 40px;
    }
    
    .commitment-icon {
        font-size: 3rem;
    }
}

