/* Color Variables */

.cta-button {
    background: linear-gradient(45deg, var(--secondary-color), #f39c12);
    color: #003366;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 15px 35px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

.hero-worker {
    position: relative;
    animation: slideInRight 1s ease-out;
}

.worker-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 51, 102, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.worker-image:hover {
    transform: scale(1.05);
}

.safety-banner {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #FFD700;
    padding: 30px;
    border-radius: 15px;
    color: #003366;
    animation: slideInUp 1s ease-out 0.5s both;
}

.safety-label {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.safety-title {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.safety-text {
    font-size: 1rem;
    line-height: 1.6;
}


/* Safety Message Section */

.safety-message {
    background: #FFD700;
    padding: 80px 0;
    text-align: center;
}

.safety-message-content {
    max-width: 800px;
    margin: 0 auto;
}

.safety-aim {
    color: #003366;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 20px;
}

.safety-message-title {
    color: #003366;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.safety-divider {
    width: 100px;
    height: 4px;
    background: #003366;
    margin: 0 auto 30px;
}

.safety-message-text {
    color: #003366;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.6;
}


/* Mission Section */

.mission {
    background: yellow;
    padding: 100px 0;
    text-align: center;
}

.mission-icon {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 20px;
}

.mission-icon i {
    color: #0026ff;
    font-size: 1.5rem;
    animation: pulseIcon 2s infinite alternate;
}

.mission-label {
    color: #7f8c8d;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 20px;
}

.mission-title {
    color: #2c3e50;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.3;
    max-width: 900px;
    margin: 0 auto 20px;
}

.mission-subtitle {
    color: #7f8c8d;
    font-size: 1.2rem;
    font-style: italic;
}


/* Statistics Section */

.statistics {
    background: #FFD700;
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    color: #003366;
}

.stat-number {
    display: block;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
}


/* Scroll to Top */

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #FFD700;
    color: #003366;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}


/* Animations */

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}