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

.sd-section {
    padding: 80px 0 90px;
    background: #f8fafb;
}

/* ---- Sidebar ---- */
.sd-sidebar {
    position: sticky;
    top: 100px;
}

.sd-sidebar-nav {
    background: #ffffff;
    border-radius: 12px;
    padding: 28px;
    margin-bottom: 24px;
    border: 1px solid #eaeef3;
}

.sd-sidebar-title {
    font-size: 1rem;
    font-weight: 700;
    color: #18455d;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 2px solid #f0f3f7;
}

.sd-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sd-nav-list li {
    margin-bottom: 4px;
}

.sd-nav-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-radius: 8px;
    color: #4a5d6e;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.25s ease;
}

.sd-nav-list li a i {
    font-size: 0.65rem;
    opacity: 0;
    transform: translateX(-4px);
    transition: all 0.25s ease;
}

.sd-nav-list li a:hover {
    background: #fef2f4;
    color: #e74860;
}

.sd-nav-list li a:hover i {
    opacity: 1;
    transform: translateX(0);
}

.sd-nav-list li.active a {
    background: #e74860;
    color: #ffffff;
    font-weight: 600;
}

.sd-nav-list li.active a i {
    opacity: 1;
    transform: translateX(0);
}

/* Sidebar CTA */
.sd-sidebar-cta {
    background: linear-gradient(135deg, #18455d 0%, #1a5276 100%);
    border-radius: 12px;
    padding: 28px;
    margin-bottom: 24px;
    text-align: center;
}

.sd-sidebar-cta h5 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.sd-sidebar-cta p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 18px;
}

.sd-cta-btn {
    display: inline-block;
    background: #e74860;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 10px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.sd-cta-btn:hover {
    background: #ffffff;
    color: #18455d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Sidebar Social */
.sd-sidebar-social {
    background: #ffffff;
    border-radius: 12px;
    padding: 28px;
    border: 1px solid #eaeef3;
}

.sd-social-links {
    display: flex;
    gap: 10px;
}

.sd-social-links a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #f0f3f7;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a5d6e;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sd-social-links a:hover {
    background: #e74860;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(231, 72, 96, 0.3);
}

/* ---- Main Content ---- */
.sd-content {
    padding-left: 20px;
}

.sd-hero-img {
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 32px;
    box-shadow: 0 8px 30px rgba(24, 69, 93, 0.08);
}

.sd-hero-img img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
}

.sd-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #18455d;
    margin-bottom: 16px;
}

.sd-lead {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #4a5d6e;
    margin-bottom: 14px;
    font-weight: 500;
}

.sd-content > p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: #6b7a8d;
    margin-bottom: 16px;
}

/* Features Section */
.sd-features-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #18455d;
    margin-top: 36px;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0f3f7;
}

.sd-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.sd-feature-item {
    display: flex;
    gap: 18px;
    padding: 22px 24px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #eaeef3;
    transition: all 0.3s ease;
}

.sd-feature-item:hover {
    border-color: rgba(231, 72, 96, 0.2);
    box-shadow: 0 8px 24px rgba(24, 69, 93, 0.06);
    transform: translateX(4px);
}

.sd-feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #fef2f4;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e74860;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.sd-feature-item:hover .sd-feature-icon {
    background: #e74860;
    color: #ffffff;
    box-shadow: 0 6px 16px rgba(231, 72, 96, 0.25);
}

.sd-feature-item h5 {
    font-size: 0.975rem;
    font-weight: 700;
    color: #18455d;
    margin-bottom: 6px;
}

.sd-feature-item p {
    font-size: 0.875rem;
    line-height: 1.65;
    color: #6b7a8d;
    margin-bottom: 0;
}

/* CTA Banner */
.sd-cta-banner {
    background: linear-gradient(135deg, #18455d 0%, #1a5276 100%);
    border-radius: 14px;
    padding: 40px 44px;
    position: relative;
    overflow: hidden;
}

.sd-cta-banner::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 160px;
    height: 160px;
    background: rgba(231, 72, 96, 0.12);
    border-radius: 50%;
    pointer-events: none;
}

.sd-cta-banner::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 25%;
    width: 120px;
    height: 120px;
    background: rgba(231, 72, 96, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.sd-cta-banner h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
    position: relative;
    z-index: 1;
}

.sd-cta-banner p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.sd-cta-banner-btn {
    background: #e74860;
    color: #ffffff;
    font-weight: 600;
    border-radius: 8px;
    padding: 12px 30px;
    border: none;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(231, 72, 96, 0.3);
}

.sd-cta-banner-btn:hover {
    background: #ffffff;
    color: #18455d;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* ---- Responsive ---- */
@media (max-width: 1199px) {
    .sd-content {
        padding-left: 0;
        margin-bottom: 40px;
    }

    .sd-sidebar {
        position: static;
    }
}

@media (max-width: 991px) {
    .sd-section {
        padding: 60px 0 70px;
    }

    .sd-hero-img img {
        height: 260px;
    }

    .sd-title {
        font-size: 1.5rem;
    }

    .sd-cta-banner {
        padding: 30px;
        text-align: center;
    }

    .sd-cta-banner .text-lg-end {
        text-align: center !important;
    }
}

@media (max-width: 767px) {
    .sd-section {
        padding: 40px 0 50px;
    }

    .sd-hero-img img {
        height: 200px;
    }

    .sd-title {
        font-size: 1.3rem;
    }

    .sd-feature-item {
        flex-direction: column;
        gap: 12px;
        padding: 18px 20px;
    }

    .sd-cta-banner {
        padding: 24px 20px;
    }

    .sd-cta-banner h4 {
        font-size: 1.1rem;
    }

    .sd-sidebar-nav {
        padding: 20px;
    }
}
