/* ── Service Detail Pages — Shared Styles ───────────────────────
   Inherits: style.css (CSS variables + .btn, .btn-primary, header)
   ──────────────────────────────────────────────────────────────── */

html,
body {
    overflow: auto !important;
    height: auto !important;
    background: #f4f0f8;
}

/* ── Header override (standalone, no transparent hero) ─── */
#main-header {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    pointer-events: auto !important;
}

#main-header .top-utility {
    color: #555 !important;
    text-shadow: none !important;
}

#main-header .lang-link {
    color: #777 !important;
}

#main-header .lang-link.active {
    color: #333 !important;
    border-bottom-color: var(--primary-color) !important;
}

/* ── Hero Band (EN pages) ──────────────────────────────── */
.svc-hero {
    margin-top: 80px;
    /* clear fixed header */
    background: linear-gradient(135deg, #7d3c98 0%, #4a235a 100%);
    padding: 28px 5% 22px;
    color: #fff;
    text-align: center;
}

.svc-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    margin: 8px 0 6px;
    color: #fff;
}

.svc-hero p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.82);
    margin: 0;
}

.svc-hero .svc-hero-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 4px;
}

.svc-hero .svc-breadcrumb {
    justify-content: center;
    margin-bottom: 6px;
}

/* ── Breadcrumb Bar (replaces large hero banner) ───────── */
.svc-breadcrumb-bar {
    margin-top: 80px;
    /* clear fixed header */
    background: linear-gradient(135deg, #7d3c98 0%, #4a235a 100%);
    padding: 16px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.svc-breadcrumb {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.75);
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.svc-breadcrumb a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.2s;
}

.svc-breadcrumb a:hover {
    color: #fff;
}

.svc-breadcrumb .sep {
    opacity: 0.5;
}

.svc-breadcrumb .current {
    color: #fff;
    font-weight: 600;
}

/* ── Page Wrapper ─────────────────────────────────────── */
.svc-page-wrapper {
    max-width: 1240px;
    margin: 0 auto;
    padding: 40px 4% 100px;
    /* bottom pad for mobile sticky bar */
}

/* ── EN Layout Wrapper (wraps mobile-nav + service-layout) */
.svc-page {
    max-width: 1240px;
    margin: 0 auto;
    padding: 32px 4% 100px;
}


/* ── Two-Column Layout ───────────────────────────────── */
.service-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    align-items: start;
}

/* ── Left Sidebar ─────────────────────────────────────── */
.service-sidebar {
    position: sticky;
    top: 100px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    border: 1px solid rgba(168, 85, 247, 0.12);
}

.service-sidebar-header {
    background: linear-gradient(135deg, #7d3c98, #4a235a);
    padding: 18px 20px;
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.78rem;
}

/* ── Service Menu — Level 1 ───────────────────────────── */
.service-menu {
    list-style: none;
    padding: 8px 0;
    margin: 0;
}

.service-menu-item {
    margin: 0;
}

/* Level-1 parent link */
.service-menu-item>.svc-group-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 20px;
    font-size: 0.91rem;
    font-weight: 500;
    color: #444;
    text-decoration: none;
    border-left: 4px solid transparent;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    line-height: 1.3;
    cursor: pointer;
    user-select: none;
    justify-content: space-between;
}

.service-menu-item>.svc-group-toggle .toggle-inner {
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-menu-item>.svc-group-toggle:hover {
    background: rgba(168, 85, 247, 0.06);
    color: #7d3c98;
    border-left-color: rgba(168, 85, 247, 0.3);
}

.service-menu-item>.svc-group-toggle .menu-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
    width: 22px;
    text-align: center;
}

/* Chevron indicator */
.svc-group-toggle .toggle-chevron {
    font-size: 0.65rem;
    color: #bbb;
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

.svc-group--open>.svc-group-toggle .toggle-chevron {
    transform: rotate(180deg);
    color: #a855f7;
}

/* Active parent (current page) */
.svc-group--active>.svc-group-toggle {
    background: rgba(168, 85, 247, 0.09);
    color: #7d3c98;
    border-left-color: #a855f7;
    font-weight: 700;
}

/* ── Service Menu — Level 2 Sub-menu ──────────────────── */
.svc-submenu {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #faf7fe;
    border-top: 1px solid rgba(168, 85, 247, 0.08);
}

.svc-group--open>.svc-submenu {
    max-height: 600px;
}

.svc-submenu-item {
    border-bottom: 1px solid rgba(168, 85, 247, 0.06);
}

.svc-submenu-item:last-child {
    border-bottom: none;
}

.svc-submenu-item>a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px 10px 36px;
    font-size: 0.82rem;
    color: #666;
    text-decoration: none;
    transition: background 0.18s, color 0.18s;
    border-left: 3px solid transparent;
    line-height: 1.35;
}

.svc-submenu-item>a::before {
    content: '─';
    font-size: 0.65rem;
    color: #ccc;
    flex-shrink: 0;
}

.svc-submenu-item>a:hover {
    background: rgba(168, 85, 247, 0.07);
    color: #7d3c98;
    border-left-color: rgba(168, 85, 247, 0.25);
}

/* Active sub-item */
.svc-submenu-item>a.svc-sub-active {
    color: #7d3c98;
    font-weight: 600;
    border-left-color: #a855f7;
    background: rgba(168, 85, 247, 0.1);
}

.svc-submenu-item>a.svc-sub-active::before {
    color: #a855f7;
}

/* ── Divider between Level-1 items ───────────────────── */
.service-menu-item:not(:last-child) {
    border-bottom: 1px solid #f5f0f8;
}

/* ── Sidebar Booking CTA ──────────────────────────────── */
.service-sidebar-cta {
    padding: 18px 16px;
    border-top: 1px solid #f0e8f8;
    background: #fdfaff;
}

.service-sidebar-cta a {
    display: block;
    text-align: center;
    background: #a855f7;
    color: #fff;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 13px 20px;
    border-radius: 30px;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 14px rgba(168, 85, 247, 0.3);
}

.service-sidebar-cta a:hover {
    background: #9333ea;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(168, 85, 247, 0.4);
}

/* ── Right Content Area ───────────────────────────────── */
.service-content {
    min-width: 0;
    /* prevents overflow in grid */
}

/* ── Content Page Header ──────────────────────────────── */
.svc-page-header {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 2px solid #f0e6f6;
}

.svc-page-header .svc-category-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #a855f7;
    margin-bottom: 10px;
}

.svc-page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 600;
    color: #2d1b40;
    margin-bottom: 10px;
    line-height: 1.2;
}

.svc-page-header .svc-lead {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.75;
    max-width: 680px;
}

/* ── Section Title ───────────────────────────────────── */
.svc-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #7d3c98;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0e6f6;
}

/* ── Description block ───────────────────────────────── */
.svc-intro {
    margin-bottom: 44px;
}

.svc-intro p {
    font-size: 1.03rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 14px;
}

/* ── Benefits Grid ───────────────────────────────────── */
.svc-benefits {
    margin-bottom: 44px;
}

.svc-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.svc-benefit-card {
    background: #fff;
    border-radius: 12px;
    padding: 22px 18px;
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #a855f7;
    transition: transform 0.2s, box-shadow 0.2s;
}

.svc-benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(142, 68, 173, 0.12);
}

.svc-benefit-icon {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.svc-benefit-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: #333;
    margin-bottom: 5px;
}

.svc-benefit-card p {
    font-size: 0.87rem;
    color: #777;
    line-height: 1.5;
}

/* ── Pricing Table ───────────────────────────────────── */
.svc-pricing {
    margin-bottom: 44px;
}

.svc-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 18px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 18px rgba(0, 0, 0, 0.05);
}

.svc-table th {
    background: linear-gradient(135deg, #8e44ad, #6c3483);
    color: #fff;
    padding: 13px 18px;
    text-align: left;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
}

.svc-table td {
    padding: 13px 18px;
    border-bottom: 1px solid #f5f0f7;
    font-size: 0.94rem;
    color: #444;
}

.svc-table tr:last-child td {
    border-bottom: none;
}

.svc-table tr:hover td {
    background: rgba(168, 85, 247, 0.03);
}

/* Book column */
.svc-table td.svc-book {
    white-space: nowrap;
    text-align: right;
    padding: 8px 14px;
    width: 1%;
}

.svc-book-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 14px;
    background: #a855f7;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 20px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 3px 10px rgba(168, 85, 247, 0.25);
}

.svc-book-btn:hover {
    background: #9333ea;
    transform: translateY(-1px);
    box-shadow: 0 5px 16px rgba(168, 85, 247, 0.38);
}

.svc-table th.svc-book-th {
    text-align: center;
    width: 1%;
    white-space: nowrap;
}

.svc-table tr:hover td {
    background: #fdf6ff;
}

.svc-price {
    font-weight: 700;
    color: #7d3c98;
    white-space: nowrap;
}

.svc-duration {
    color: #999;
    font-size: 0.86rem;
    white-space: nowrap;
}

/* ── CTA Section ─────────────────────────────────────── */
.svc-cta {
    background: linear-gradient(135deg, #7d3c98, #4a235a);
    color: #fff;
    border-radius: 16px;
    padding: 44px 36px;
    text-align: center;
    margin-top: 16px;
}

.svc-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    font-weight: 400;
    margin-bottom: 10px;
}

.svc-cta p {
    opacity: 0.88;
    margin-bottom: 24px;
    font-size: 1rem;
}

.svc-cta .btn-primary {
    background: #fff;
    color: #7d3c98;
    font-size: 1rem;
    padding: 14px 38px;
    border-radius: 30px;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s, transform 0.2s;
}

.svc-cta .btn-primary:hover {
    background: #f5e6ff;
    transform: translateY(-3px);
}

.svc-cta-note {
    margin-top: 16px;
    font-size: 0.85rem;
    opacity: 0.7;
}

.svc-cta-note a {
    color: #e8d5f5;
    text-decoration: underline;
}

/* ── Mobile Sticky Booking Bar ───────────────────────── */
.svc-mobile-sticky {
    display: none;
    /* hidden by default — shown on mobile */
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: #fff;
    border-top: 1px solid #e6d8f5;
    padding: 12px 16px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
}

.svc-mobile-sticky a {
    display: block;
    background: #a855f7;
    color: #fff;
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 15px 20px;
    border-radius: 30px;
    text-decoration: none;
    transition: background 0.2s;
}

.svc-mobile-sticky a:hover {
    background: #9333ea;
}

/* ── Mobile Sidebar Select (Dropdown) ────────────────── */
.svc-mobile-select-wrap {
    display: none;
    /* shown on mobile */
    margin-bottom: 24px;
}

.svc-mobile-select {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid #a855f7;
    border-radius: 10px;
    font-size: 1rem;
    color: #444;
    background: #fff;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23a855f7' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    font-family: inherit;
}

.svc-mobile-select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.2);
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 959px) {
    .service-layout {
        grid-template-columns: 1fr;
        /* single column */
    }

    .service-sidebar {
        display: none;
        /* hide desktop sidebar */
        position: static;
        /* un-sticky */
    }

    .svc-mobile-select-wrap {
        display: block;
        /* show dropdown */
    }

    .svc-mobile-sticky {
        display: block;
        /* show sticky booking bar */
    }

    .svc-page-wrapper {
        padding: 24px 4% 100px;
    }

    .svc-page-header h1 {
        font-size: 1.9rem;
    }

    .svc-cta {
        padding: 32px 20px;
    }

    .svc-cta h2 {
        font-size: 1.5rem;
    }

    .svc-table th,
    .svc-table td {
        padding: 11px 13px;
        font-size: 0.87rem;
    }
}

@media (max-width: 600px) {
    .svc-page-header h1 {
        font-size: 1.65rem;
    }

    .svc-benefits-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 400px) {
    .svc-benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* ── FAQ Section ──────────────────────────────────────── */
.svc-faq {
    margin-bottom: 44px;
    margin-top: 16px;
}

.svc-faq-list {
    margin-top: 20px;
}

.svc-faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(168, 85, 247, 0.1);
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.svc-faq-item:hover {
    box-shadow: 0 4px 18px rgba(142, 68, 173, 0.1);
}

.svc-faq-item summary {
    padding: 18px 22px;
    font-size: 0.98rem;
    font-weight: 600;
    color: #2d1b40;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    transition: color 0.2s, background 0.2s;
}

.svc-faq-item summary::-webkit-details-marker {
    display: none;
}

.svc-faq-item summary::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: #a855f7;
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 12px;
}

.svc-faq-item[open] summary::after {
    content: '−';
}

.svc-faq-item[open] summary {
    color: #7d3c98;
    background: rgba(168, 85, 247, 0.04);
    border-bottom: 1px solid rgba(168, 85, 247, 0.08);
}

.svc-faq-item p {
    padding: 16px 22px 20px;
    font-size: 0.94rem;
    line-height: 1.75;
    color: #555;
    margin: 0;
}

.svc-faq-item p a {
    color: #7d3c98;
    text-decoration: underline;
}

.svc-faq-item p a:hover {
    color: #a855f7;
}