/* ========================================
   SERVICE PAGE STYLES
   ======================================== */

/* --- Hero Banner --- */
.service-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.service-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.service-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 60, 100, 0.92) 0%, rgba(14, 119, 194, 0.65) 60%, rgba(14, 119, 194, 0.3) 100%);
    z-index: 1;
}

.service-hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 20px 50px;
    color: white;
}

.service-hero-content h1 {
    font-size: 46px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.service-hero-content>p {
    font-size: 18px;
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 28px;
    max-width: 600px;
}

.service-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.service-hero-actions .btn-primary {
    background-color: var(--light-blue);
    color: #111;
    font-weight: 600;
}

.btn-outline-white {
    display: inline-block;
    border: 2px solid white;
    color: white;
    padding: 10px 28px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
}

.btn-outline-white:hover {
    background-color: white;
    color: var(--primary-blue);
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    margin-bottom: 22px;
    opacity: 0.85;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.2s ease;
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb i {
    font-size: 8px;
    opacity: 0.6;
}

.breadcrumb span {
    color: white;
    font-weight: 500;
}

/* --- Service Page Main --- */
.service-page {
    overflow: hidden;
}

.sp-section {
    padding: 80px 0;
}

.sp-alt-bg {
    background-color: var(--bg-light-blue);
}

/* Two Column Layout */
.sp-two-col {
    display: flex;
    gap: 60px;
    align-items: center;
}

.sp-two-col.sp-reverse {
    flex-direction: row-reverse;
}

.sp-text-col {
    flex: 1;
}

.sp-img-col {
    flex: 1;
    display: flex;
    justify-content: center;
}

.sp-rounded-img {
    width: 100%;
    max-width: 520px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.sp-body {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.85;
    margin-bottom: 20px;
}

.sp-body strong {
    color: var(--primary-blue);
    font-weight: 600;
}

.sp-subheading {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 18px;
    line-height: 1.3;
}

/* Centered Header */
.sp-centered-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 50px;
}

.sp-narrow {
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Benefits Grid --- */
.sp-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.sp-benefit-card {
    background: white;
    border-radius: 14px;
    padding: 35px 28px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.sp-benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(14, 119, 194, 0.12);
    border-color: rgba(14, 119, 194, 0.15);
}

.sp-benefit-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--light-blue), var(--primary-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 28px;
    transition: all 0.3s ease;
}

.sp-benefit-card:hover .sp-benefit-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(14, 119, 194, 0.3);
}

.sp-benefit-card h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.sp-benefit-card p {
    font-size: 13.5px;
    color: var(--text-medium);
    line-height: 1.6;
    margin: 0;
}

/* --- Locations Grid --- */
.sp-locations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.sp-location-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    background: white;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.25s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.sp-location-item i {
    font-size: 20px;
    color: var(--primary-blue);
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.sp-location-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(14, 119, 194, 0.1);
    border-color: rgba(14, 119, 194, 0.15);
    color: var(--primary-blue);
}

/* --- CTA Section --- */
.sp-cta-section {
    background: linear-gradient(135deg, var(--primary-blue), #0b5f9e);
    padding: 80px 0;
    color: white;
}

.sp-cta-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 18px;
    color: white;
}

.sp-cta-section p {
    font-size: 16px;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 35px;
    line-height: 1.7;
}

.sp-cta-actions {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

.sp-cta-actions .btn-primary {
    background-color: var(--light-blue);
    color: #111;
    font-weight: 600;
    padding: 14px 32px;
    font-size: 15px;
}

.sp-cta-actions .btn-outline-white {
    padding: 14px 32px;
    font-size: 15px;
}

/* --- Checklist --- */
.sp-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sp-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14.5px;
    color: var(--text-medium);
    line-height: 1.7;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.sp-check-list li:last-child {
    border-bottom: none;
}

.sp-check-list li i {
    color: var(--primary-blue);
    font-size: 18px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* --- FAQ --- */
.sp-faq-list {
    max-width: 820px;
    margin: 0 auto;
}

.sp-faq-item {
    background: white;
    border-radius: 12px;
    padding: 28px 32px;
    margin-bottom: 18px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.sp-faq-question {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.sp-faq-question i {
    color: var(--primary-blue);
    font-size: 20px;
    flex-shrink: 0;
}

.sp-faq-item .sp-body {
    margin-bottom: 0;
    padding-left: 32px;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .sp-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sp-locations-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .service-hero {
        min-height: 340px;
    }

    .service-hero-content h1 {
        font-size: 32px;
    }

    .sp-section {
        padding: 50px 0;
    }

    .sp-two-col,
    .sp-two-col.sp-reverse {
        flex-direction: column;
        gap: 35px;
    }

    .sp-benefits-grid {
        grid-template-columns: 1fr;
    }

    .sp-locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sp-cta-section h2 {
        font-size: 28px;
    }
}