/**
 * Service Page Styles
 * Modern Training Page Design
 */

/* ========================================
   SERVICE HERO SECTION
======================================== */
.service-hero-section {
    padding: 80px 0;
    background: #ffffff;
}

.service-hero-content h1 {
    font-size: 25px;
    font-weight: 550;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.service-hero-content .lead {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
}

.service-hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-service-primary,
.btn-service-secondary {
    padding: 14px 30px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-service-primary {
    background: #ff6b35;
    color: #fff;
    border: 2px solid #ff6b35;
}

.btn-service-primary:hover {
    background: #e55a2b;
    border-color: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.btn-service-secondary {
    background: transparent;
    color: #0066cc;
    border: 2px solid #0066cc;
}

.btn-service-secondary:hover {
    background: #0066cc;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.2);
}

.service-hero-image {
    position: relative;
}

.service-hero-image img {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    width: 100%;
}

/* ========================================
   WHY TRAINING SECTION
======================================== */
.why-training-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.why-training-section .row {
    display: flex;
    flex-wrap: wrap;
}

.training-subtitle {
    font-size: 20px;
    font-weight: 700;
    color: #0066cc;
    margin-top: 10px;
    margin-bottom: 40px;
}

.why-training-item {
    margin-bottom: 30px;
    display: flex;
    align-items: stretch;
}

.why-training-card {
    background: #fff;
    border-radius: 16px;
    padding: 35px 30px;
    width: 100%;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #e9ecef;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.why-training-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0066cc 0%, #0052a3 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.why-training-card:hover::before {
    transform: scaleX(1);
}

.why-training-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 102, 204, 0.15);
    border-color: #0066cc;
}

.why-training-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.why-training-icon.icon-blue {
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.25);
}

.why-training-icon.icon-orange {
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.25);
}

.why-training-card:hover .why-training-icon {
    transform: scale(1.1) rotate(-8deg);
}

.why-training-card:hover .why-training-icon.icon-blue {
    box-shadow: 0 12px 30px rgba(0, 102, 204, 0.4);
}

.why-training-card:hover .why-training-icon.icon-orange {
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4);
}

.why-training-icon i {
    font-size: 32px;
    color: #fff;
}

.why-training-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.5;
    min-height: 50px;
    display: flex;
    align-items: center;
}

.why-training-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin: 0;
    flex: 1;
}

/* ========================================
   MATERI PELATIHAN SECTION
======================================== */
.materi-section {
    padding: 80px 0;
    background: #ffffff;
}

.duration-text {
    font-size: 16px;
    color: #666;
    font-weight: 600;
    margin-top: 10px;
}

.materi-table-wrapper {
    overflow-x: auto;
    margin-top: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.materi-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.materi-table thead {
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
}

.materi-table thead th {
    padding: 20px 15px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-align: left;
    border: none;
}

.materi-table tbody tr {
    border-bottom: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.materi-table tbody tr:hover {
    background: #f8f9fa;
}

.materi-table tbody tr:last-child {
    border-bottom: none;
}

.materi-table tbody td {
    padding: 20px 15px;
    font-size: 14px;
    color: #1a1a1a;
    vertical-align: top;
}

.materi-table tbody td strong {
    color: #0066cc;
    font-weight: 700;
}

.materi-table ul {
    margin: 0;
    padding-left: 20px;
}

.materi-table ul li {
    margin-bottom: 8px;
    line-height: 1.6;
    color: #666;
}

/* ========================================
   FASILITAS SECTION
======================================== */
.fasilitas-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.fasilitas-item {
    margin-bottom: 30px;
}

.fasilitas-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    transition: all 0.4s ease;
    border: 2px solid #e9ecef;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.fasilitas-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.2);
    border-color: #0066cc;
}

.fasilitas-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
}

.fasilitas-card:hover .fasilitas-icon {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.3);
}

.fasilitas-icon i {
    font-size: 36px;
    color: #fff;
}

.fasilitas-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

/* ========================================
   METODE TRAINING SECTION
======================================== */
.metode-section {
    padding: 80px 0;
    background: #ffffff;
}

.metode-content {
    max-width: 900px;
    margin: 40px auto 0;
}

.metode-content > p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
    text-align: center;
}

.metode-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.metode-item {
    display: flex;
    gap: 25px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #ff6b35;
    transition: all 0.3s ease;
}

.metode-item:hover {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateX(10px);
}

.metode-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.metode-text h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.metode-text p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* ========================================
   CTA SECTION
======================================== */
.service-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    position: relative;
    overflow: hidden;
}

.service-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-image {
    position: relative;
    z-index: 2;
}

.cta-image img {
    max-width: 100%;
    height: auto;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h3 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.3;
}

.cta-content p {
    font-size: 18px;
    color: #fff;
    opacity: 0.95;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-cta-primary,
.btn-cta-secondary {
    padding: 14px 30px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-cta-primary {
    background: #fff;
    color: #ff6b35;
    border: 2px solid #fff;
}

.btn-cta-primary:hover {
    background: transparent;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.btn-cta-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-cta-secondary:hover {
    background: #fff;
    color: #ff6b35;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 991px) {
    .service-hero-content h1 {
        font-size: 32px;
    }
    
    .service-hero-content {
        margin-bottom: 40px;
    }
    
    .metode-item {
        flex-direction: column;
        text-align: center;
    }
    
    .metode-number {
        margin: 0 auto;
    }
    
    .cta-image {
        margin-bottom: 40px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .service-hero-content h1 {
        font-size: 28px;
    }
    
    .service-hero-buttons {
        flex-direction: column;
    }
    
    .btn-service-primary,
    .btn-service-secondary {
        width: 100%;
        text-align: center;
    }
    
    .materi-table-wrapper {
        font-size: 13px;
    }
    
    .materi-table thead th,
    .materi-table tbody td {
        padding: 15px 10px;
    }
    
    .cta-content h3 {
        font-size: 24px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
}

/* ========================================
   TEAM SECTION
======================================== */
.service-team-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.team-member-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    text-align: center;
}

.team-member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.team-member-photo {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

.team-member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member-card:hover .team-member-photo img {
    transform: scale(1.1);
}

.team-member-info {
    padding: 25px 20px;
}

.team-member-name {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.team-member-designation {
    font-size: 14px;
    color: #ff6b35;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.team-member-detail {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* List Style */
.team-member-list-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.team-member-list-item:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    transform: translateX(10px);
}

.team-member-photo-list {
    flex-shrink: 0;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #ff6b35;
}

.team-member-photo-list img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member-info-list {
    flex: 1;
    text-align: left;
}

.team-member-info-list .team-member-name {
    font-size: 24px;
    margin-bottom: 8px;
}

.team-member-info-list .team-member-designation {
    font-size: 15px;
    margin-bottom: 15px;
}

.team-member-info-list .team-member-detail {
    font-size: 15px;
    line-height: 1.7;
}

/* Carousel Style */
.team-carousel .team-member-card {
    margin: 0 10px;
}

@media (max-width: 768px) {
    .team-member-list-item {
        flex-direction: column;
        text-align: center;
    }
    
    .team-member-info-list {
        text-align: center;
    }
    
    .team-member-photo-list {
        width: 120px;
        height: 120px;
    }
}
