/* =========================================
   SERVICE DETAIL 2 — STICKY BOOKING SIDEBAR LAYOUT
   Self-contained: only depends on style.css for
   tokens (--blue, --dark, etc.), topbar, navbar,
   drawer, container, chip, footer.
   ========================================= */

/* ---- BANNER HEADER ---- */
.sd2-header {
    position: relative;
    padding: 64px 0 44px;
    overflow: hidden;
    isolation: isolate;
}

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

.sd2-header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 31, 61, 0.93) 0%, rgba(0, 113, 188, 0.75) 100%);
    z-index: -1;
}

.sd2-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

.sd2-breadcrumb a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: var(--t);
}

.sd2-breadcrumb a:hover {
    color: var(--yellow);
}

.sd2-breadcrumb svg {
    width: 14px;
    height: 14px;
    opacity: 0.6;
}

.sd2-header-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.sd2-header h1 {
    font-size: clamp(1.9rem, 3.4vw, 2.6rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.01em;
    margin: 10px 0 8px;
}

.sd2-header-sub {
    font-size: 1.02rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 560px;
}

.sd2-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.sd2-rating svg {
    width: 18px;
    height: 18px;
    color: var(--yellow);
}

/* ---- BODY LAYOUT ---- */
.sd2-body {
    padding: 56px 0 110px;
    background: #fff;
}

.sd2-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 56px;
    align-items: start;
}

/* ---- MAIN COLUMN ---- */
.sd2-hero-img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 44px;
}

.sd2-block {
    margin-bottom: 48px;
}

.sd2-block:last-child {
    margin-bottom: 0;
}

.sd2-block-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 18px;
}

.sd2-block p {
    font-size: 1rem;
    color: var(--grey);
    line-height: 1.8;
    margin-bottom: 16px;
}

.sd2-block p:last-child {
    margin-bottom: 0;
}

/* Checklist */
.sd2-checklist {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 24px;
}

.sd2-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.98rem;
    color: var(--dark);
    font-weight: 500;
    line-height: 1.5;
}

.sd2-check-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--blue-lg);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.sd2-check-icon svg {
    width: 12px;
    height: 12px;
}

/* Vertical timeline */
.sd2-timeline {
    position: relative;
    padding-left: 44px;
}

.sd2-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: var(--border);
}

.sd2-tl-item {
    position: relative;
    padding-bottom: 32px;
}

.sd2-tl-item:last-child {
    padding-bottom: 0;
}

.sd2-tl-num {
    position: absolute;
    left: -44px;
    top: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 4px #fff;
}

.sd2-tl-item h4 {
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.sd2-tl-item p {
    font-size: 0.95rem;
    color: var(--grey);
    line-height: 1.7;
    margin: 0;
}

/* FAQ — left accent style */
.sd2-faq-list {
    display: flex;
    flex-direction: column;
}

.sd2-faq-item {
    border-bottom: 1px solid var(--border);
}

.sd2-faq-item:first-child {
    border-top: 1px solid var(--border);
}

.sd2-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 4px 20px 16px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    cursor: pointer;
    list-style: none;
    border-left: 3px solid transparent;
    transition: var(--t);
}

.sd2-faq-q::-webkit-details-marker {
    display: none;
}

.sd2-faq-item[open] .sd2-faq-q {
    border-left-color: var(--blue);
    background: var(--offwhite);
    color: var(--blue);
}

.sd2-faq-q-mark {
    flex-shrink: 0;
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--grey);
    line-height: 1;
}

.sd2-faq-item[open] .sd2-faq-q-mark {
    color: var(--blue);
}

.sd2-faq-a {
    padding: 0 16px 22px 16px;
    font-size: 0.94rem;
    color: var(--grey);
    line-height: 1.75;
}

.sd2-faq-item[open] .sd2-faq-a {
    background: var(--offwhite);
    padding-top: 2px;
    padding-bottom: 22px;
}

.sd2-faq-a p {
    margin: 0;
}

/* ---- STICKY SIDEBAR ---- */
.sd2-sidebar {
    position: sticky;
    top: 100px;
}

.sd2-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px;
    box-shadow: var(--sh);
}

.sd2-card-eyebrow {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--blue);
    margin-bottom: 6px;
}

.sd2-card-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px;
}

.sd2-facts {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.sd2-fact {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sd2-fact-icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: var(--blue-lg);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sd2-fact-icon svg {
    width: 17px;
    height: 17px;
}

.sd2-fact-label {
    display: block;
    font-size: 0.75rem;
    color: var(--grey);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.sd2-fact-val {
    display: block;
    font-size: 0.94rem;
    font-weight: 700;
    color: var(--dark);
}

.sd2-book-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 15px;
    background: var(--blue);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    white-space: nowrap;
    border: none;
    border-radius: 100px;
    text-decoration: none;
    cursor: pointer;
    transition: var(--t);
    box-shadow: 0 10px 24px rgba(0, 113, 188, 0.25);
    margin-bottom: 12px;
}

.sd2-book-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.sd2-book-btn:hover {
    background: var(--blue-dk);
    transform: translateY(-2px);
}

.sd2-call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 15px;
    background: #fff;
    color: var(--dark);
    font-size: 0.98rem;
    font-weight: 700;
    border: 2px solid var(--border);
    border-radius: 100px;
    text-decoration: none;
    cursor: pointer;
    transition: var(--t);
}

.sd2-call-btn:hover {
    border-color: var(--blue);
    color: var(--blue);
}

.sd2-call-btn svg {
    width: 16px;
    height: 16px;
}

.sd2-trust {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    font-size: 0.82rem;
    color: var(--grey);
    text-align: center;
    justify-content: center;
    line-height: 1.5;
}

.sd2-trust svg {
    width: 15px;
    height: 15px;
    color: var(--blue);
    flex-shrink: 0;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 992px) {
    .sd2-layout {
        grid-template-columns: 1fr;
    }

    .sd2-sidebar {
        position: static;
        order: -1;
        margin-bottom: 40px;
    }

    .sd2-checklist {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .sd2-header {
        padding: 36px 0 28px;
    }

    .sd2-body {
        padding: 40px 0 70px;
    }

    .sd2-hero-img {
        height: 220px;
        margin-bottom: 32px;
    }

    .sd2-block {
        margin-bottom: 36px;
    }
}

/* ---- CTA — dark banner with watermark ---- */
.sd2-cta-final {
    position: relative;
    overflow: hidden;
    background: var(--dark);
    padding: 72px 0;
    text-align: center;
}

.sd2-cta-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(6rem, 16vw, 14rem);
    font-weight: 800;
    color: rgba(255, 255, 255, 0.035);
    white-space: nowrap;
    letter-spacing: 0.02em;
    z-index: 0;
    pointer-events: none;
    user-select: none;
}

.sd2-cta-inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
}

.sd2-cta-badge {
    display: inline-block;
    padding: 10px 24px;
    border: 1px solid rgba(255, 200, 2, 0.4);
    border-radius: 100px;
    color: var(--yellow);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.sd2-cta-heading {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin-bottom: 20px;
}

.sd2-cta-heading span {
    color: var(--yellow);
}

.sd2-cta-sub {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 520px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.sd2-cta-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.sd2-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 18px 36px;
    background: var(--yellow);
    color: var(--dark);
    font-weight: 800;
    font-size: 1rem;
    border-radius: 100px;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 0 30px rgba(255, 200, 2, 0.35);
    transition: var(--t);
}

.sd2-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(255, 200, 2, 0.55);
}

.sd2-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 32px;
    background: transparent;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 100px;
    text-decoration: none;
    white-space: nowrap;
    transition: var(--t);
}

.sd2-cta-secondary:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.sd2-cta-secondary svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

@media (max-width: 560px) {
    .sd2-cta-final {
        padding: 56px 0;
    }

    .sd2-cta-btns {
        flex-direction: column;
        width: 100%;
    }

    .sd2-cta-primary,
    .sd2-cta-secondary {
        width: 100%;
        justify-content: center;
    }
}
