/* ========================================
   CSR PAGE STYLES
   ======================================== */

/* CSR Hero Section */
.csr-hero {
    position: relative;
    min-height: 60vh;
    background: linear-gradient(135deg, #0C359E 0%, #1a4bb8 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/tm-2.png') center/cover no-repeat;
    opacity: 0.15;
}

.csr-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.csr-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.csr-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Introduction Section */
.csr-intro-section {
    padding: 60px 0;
    background: white;
}

.intro-text {
    font-size: 1.15rem;
    color: #666;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

/* Wellness Section */
.wellness-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, white 100%);
}

.section-header {
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* Wellness Cards */
.wellness-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
}

.wellness-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(12, 53, 158, 0.15);
}

.wellness-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.wellness-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.wellness-card:hover .wellness-image img {
    transform: scale(1.1);
}

.wellness-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(12, 53, 158, 0.9) 0%, rgba(74, 144, 226, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.wellness-card:hover .wellness-overlay {
    opacity: 1;
}

.wellness-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0);
    transition: transform 0.4s ease 0.1s;
}

.wellness-card:hover .wellness-icon {
    transform: scale(1);
}

.wellness-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--primary-color);
}

.wellness-content {
    padding: 30px 25px;
}

.wellness-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.wellness-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}

/* Training Section */
.training-section {
    padding: 80px 0;
    background: white;
}

/* Training Cards */
.training-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    border: 2px solid #f0f0f0;
}

.training-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(12, 53, 158, 0.15);
    border-color: var(--primary-color);
}

.training-image {
    height: 220px;
    overflow: hidden;
}

.training-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.training-card:hover .training-image img {
    transform: scale(1.05);
}

.training-content {
    padding: 30px 25px;
    text-align: center;
}

.training-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.training-card:hover .training-icon {
    background: var(--gradient-blue);
    transform: scale(1.1);
}

.training-icon svg {
    width: 35px;
    height: 35px;
    fill: var(--primary-color);
    transition: fill 0.3s ease;
}

.training-card:hover .training-icon svg {
    fill: white;
}

.training-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.training-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
    .csr-hero-title {
        font-size: 2.5rem;
    }
    
    .csr-hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .intro-text {
        font-size: 1rem;
    }
    
    .wellness-section,
    .training-section {
        padding: 50px 0;
    }
    
    .csr-intro-section {
        padding: 40px 0;
    }
    
    .wellness-image {
        height: 220px;
    }
    
    .training-image {
        height: 180px;
    }
}
