/* ==========================================
   Services Section Styling
   ========================================== */

/* Services Page Hero */
.services-hero-section {
    position: relative;
    padding: 85px 0;
    background: linear-gradient(135deg, rgba(45, 57, 139, 0.94), rgba(20, 26, 70, 0.9)), url('../images/home-banner.webp') center/cover no-repeat;
    color: #ffffff;
    text-align: center;
}

.services-hero-content h1 {
    font-family: var(--font-secondary, 'Play', sans-serif);
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.services-hero-line {
    width: 80px;
    height: 4px;
    background-color: var(--color-secondary, #fc0002);
    margin: 0 auto 18px auto;
    border-radius: 2px;
}

.services-hero-subtitle {
    font-size: 17px;
    opacity: 0.92;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Services Intro Bar */
.services-intro-section {
    background-color: #ffffff;
    padding: 45px 0;
    text-align: center;
    border-bottom: 1px solid #eef0f4;
}

.services-intro-text {
    max-width: 850px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

/* Service Detail Cards (Alternating Layout) */
.services-list-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-item-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: row;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.service-item-card.reverse {
    flex-direction: row-reverse;
}

@media (max-width: 992px) {
    .service-item-card, .service-item-card.reverse {
        flex-direction: column;
    }
}

.service-card-media {
    width: 48%;
    min-height: 340px;
    position: relative;
    overflow: hidden;
}

@media (max-width: 992px) {
    .service-card-media {
        width: 100%;
        min-height: 260px;
    }
}

.service-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-item-card:hover .service-card-media img {
    transform: scale(1.06);
}

.service-number-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--color-secondary, #fc0002);
    color: #ffffff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-secondary, 'Play', sans-serif);
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.25);
    z-index: 2;
}

.service-card-content {
    width: 52%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 992px) {
    .service-card-content {
        width: 100%;
        padding: 30px 24px;
    }
}

.service-tag {
    display: inline-block;
    color: var(--color-secondary, #fc0002);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.service-title {
    font-family: var(--font-secondary, 'Play', sans-serif);
    font-size: 26px;
    font-weight: 700;
    color: var(--color-primary, #2d398b);
    margin-bottom: 16px;
    line-height: 1.3;
}

.service-desc {
    font-size: 15px;
    line-height: 1.75;
    color: #4a5568;
    margin-bottom: 22px;
}

.service-features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 20px;
    margin-bottom: 25px;
}

@media (max-width: 576px) {
    .service-features-list {
        grid-template-columns: 1fr;
    }
}

.service-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #2d3748;
}

.service-feature-icon {
    width: 18px;
    height: 18px;
    background: #e2e8f0;
    color: var(--color-secondary, #fc0002);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
    flex-shrink: 0;
}

/* Service CTA Box */
.service-cta-banner {
    background: linear-gradient(135deg, #2d398b, #1a235c);
    border-radius: 12px;
    padding: 40px;
    color: #ffffff;
    text-align: center;
    margin-top: 60px;
    box-shadow: 0 8px 25px rgba(45, 57, 139, 0.2);
}

.service-cta-title {
    font-family: var(--font-secondary, 'Play', sans-serif);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-cta-desc {
    font-size: 16px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 25px auto;
}
