        @import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Kaushan+Script&family=Lexend:wght@300;400;500;600;700&display=swap');

        .services-wrap {
            min-height: 100vh;
            padding: 80px 36px 500px;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }

        .services-header {
            margin-bottom: 36px;
        }

        .services-back {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--color-text-muted);
            text-decoration: none;
            margin-bottom: 16px;
            transition: var(--transition);
        }

        .services-back:hover { color: var(--color-text); }

        .services-back svg {
            width: 14px; height: 14px;
            stroke: currentColor; fill: none;
            stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
        }

        .services-title {
            font-family: 'Kaushan Script', cursive;
            font-size: 40px;
            font-weight: normal;
            letter-spacing: 0;
            text-transform: none;
            text-align: center;
            color: var(--color-text);
        }

        .svc-section { margin-bottom: 8px; }

        .svc-section-header {
            font-family: var(--font-primary);
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: var(--color-text-muted);
            margin-bottom: 16px;
        }

        .svc-divider {
            border: none;
            border-top: 1px solid var(--color-border);
            margin: 32px 0;
        }

        .svc-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }

        .svc-card-wrap {
            position: relative;
            height: 200px;
            transition: height 0.4s ease;
        }

        .svc-btn-card {
            cursor: pointer;
            position: absolute;
            top: 0; left: 0; right: 0;
            background: #FFFFFF;
            border: 1px solid rgba(30,60,32,0.12);
            border-top: 3px solid rgba(176,160,95,0.5);
            border-radius: 6px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            height: 200px;
            transition: height 0.45s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s ease, border-color 0.3s ease;
            box-shadow: 0 4px 20px rgba(30,60,32,0.08);
            z-index: 1;
        }

        .svc-btn-card:hover {
            border-color: rgba(176,160,95,0.45);
            border-top-color: #B0A05F;
            box-shadow: 0 8px 32px rgba(30,60,32,0.12);
        }

        .svc-btn-card.expanded {
            z-index: 50;
            box-shadow: 0 20px 60px rgba(30,60,32,0.15), 0 0 0 1px rgba(176,160,95,0.3);
            border-color: rgba(176,160,95,0.5);
            border-top-color: #B0A05F;
        }

        .svc-card-header {
            background: rgba(30,60,32,0.04);
            padding: 18px 36px 16px 12px;
            flex-shrink: 0;
            position: relative;
            display: flex;
            align-items: center;
        }

        .svc-card-header::after {
            content: '';
            position: absolute;
            right: 14px;
            top: 50%;
            width: 8px;
            height: 8px;
            border-right: 2px solid rgba(176,160,95,0.5);
            border-bottom: 2px solid rgba(176,160,95,0.5);
            transform: translateY(-50%) rotate(45deg);
            transition: transform 0.45s cubic-bezier(0.4,0,0.2,1), border-color 0.3s ease;
        }

        .svc-btn-card.expanded .svc-card-header::after {
            transform: translateY(-50%) rotate(-135deg);
            border-color: #B0A05F;
        }

        .svc-btn-name {
            font-family: 'Lexend', sans-serif;
            font-size: 24px;
            font-weight: 400;
            color: #1E3A20;
            line-height: 1.25;
            letter-spacing: 0.2px;
            flex: 1;
            min-width: 0;
        }

        .svc-card-body {
            padding: 16px 20px 16px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .svc-desc-intro {
            display: block;
            margin-bottom: 12px;
        }

        .svc-contents-label {
            display: block;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: rgba(176,160,95,0.85);
            margin-bottom: 6px;
        }

        .svc-contents-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .svc-contents-list li {
            font-size: 14px;
            color: rgba(30,60,32,0.72);
            padding: 2px 0 2px 14px;
            position: relative;
            line-height: 1.5;
        }

        .svc-contents-list li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: rgba(176,160,95,0.6);
        }

        .svc-note {
            display: block;
            margin-top: 12px;
            font-size: 16px;
            color: rgba(30,60,32,0.75);
            line-height: 1.5;
        }

        .svc-note-label {
            font-weight: 600;
        }

        .svc-btn-desc {
            font-size: 16px;
            color: rgba(30,60,32,0.72);
            line-height: 1.65;
            flex: 1;
            margin-bottom: 16px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .svc-btn-card.expanded .svc-btn-desc {
            opacity: 1;
        }

        .svc-card-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            flex-shrink: 0;
        }

        .svc-card-price {
            font-family: 'Lexend', sans-serif;
            font-size: 22px;
            font-weight: 600;
            color: #B0A05F;
        }

        @media (max-width: 1100px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (max-width: 680px)  { .svc-grid { grid-template-columns: 1fr; } }
        @media (max-width: 768px)  { .services-wrap { padding-left: 20px; padding-right: 20px; } }

        /* Modal */
        .svc-modal-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(10,20,38,0.55);
            backdrop-filter: blur(4px);
            z-index: 1000;
            align-items: center;
            justify-content: center;
        }
        .svc-modal-overlay.open { display: flex; }

        .svc-modal {
            background: #fff;
            border-radius: 16px;
            padding: 40px 36px 36px;
            max-width: 440px;
            width: calc(100% - 40px);
            position: relative;
            box-shadow: 0 24px 60px rgba(10,20,38,0.18);
            text-align: center;
            cursor: default;
            user-select: none;
        }

        .svc-modal-close {
            position: absolute;
            top: 16px; right: 18px;
            background: none; border: none;
            font-size: 22px; line-height: 1;
            color: var(--color-text-muted);
            cursor: pointer;
            padding: 4px 6px;
            border-radius: 6px;
            transition: var(--transition);
        }
        .svc-modal-close:hover { color: var(--color-text); background: rgba(0,0,0,0.06); }

        .svc-modal-title {
            font-family: 'Lexend', sans-serif;
            font-size: 32px;
            font-weight: 400;
            color: var(--color-text);
            letter-spacing: 0.3px;
            line-height: 1.4;
            margin-bottom: 12px;
        }

        .svc-modal-desc {
            font-size: 17px;
            color: #000000;
            line-height: 1.6;
            margin-bottom: 28px;
        }

        .svc-modal-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
        }

        .svc-modal-price {
            font-family: 'Lexend', sans-serif;
            font-size: 28px;
            font-weight: 700;
            color: #000000;
        }

        .svc-book-btn {
            display: inline-block;
            padding: 0;
            background: none;
            border: none;
            border-radius: 0;
            text-decoration: none;
            opacity: 0;
            pointer-events: none;
            line-height: 0;
            transition: opacity 0.2s ease, transform 0.2s ease;
        }
        .svc-book-btn img {
            display: block;
            height: 44px;
            width: auto;
        }
        .svc-btn-card.expanded .svc-book-btn {
            opacity: 1;
            pointer-events: auto;
        }
        .svc-book-btn:hover { opacity: 0.88 !important; transform: translateY(-1px); }

        /* Add-ons */
        .svc-addons {
            margin-bottom: 14px;
            opacity: 0;
            transition: opacity 0.3s ease;
            max-height: 160px;
            overflow-y: auto;
            overscroll-behavior: contain;
        }

        .svc-btn-card.expanded .svc-addons { opacity: 1; }

        .svc-addons-label {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: rgba(176,160,95,0.85);
            margin-bottom: 8px;
        }

        .svc-addon-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 7px 0;
            cursor: pointer;
            border-bottom: 1px solid rgba(30,60,32,0.06);
        }

        .svc-addon-item:last-child { border-bottom: none; }

        .svc-addon-name {
            flex: 1;
            font-size: 14px;
            color: rgba(30,60,32,0.8);
            line-height: 1.4;
        }

        .svc-addon-price {
            font-size: 13px;
            font-weight: 600;
            color: #B0A05F;
            white-space: nowrap;
        }

        .svc-addon-cb {
            accent-color: #1E3A20;
            width: 16px;
            height: 16px;
            flex-shrink: 0;
            cursor: pointer;
        }

        .addon-tooltip {
            position: absolute;
            z-index: 9999;
            max-width: 260px;
            padding: 10px 14px;
            background: #1E3A20;
            color: #F8F4EF;
            font-size: 13px;
            line-height: 1.55;
            border-radius: 8px;
            pointer-events: none;
            box-shadow: 0 4px 20px rgba(0,0,0,0.22);
        }

        /* Booking iframe overlay */
        .booking-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(10,20,38,0.55);
            backdrop-filter: blur(4px);
            z-index: 1001;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }
        .booking-overlay.open { display: flex; }

        .booking-modal {
            background: #fff;
            border-radius: 16px;
            width: 100%;
            max-width: 1200px;
            height: 720px;
            display: flex;
            flex-direction: column;
            overflow: hidden;
            box-shadow: 0 24px 60px rgba(10,20,38,0.22);
        }

        .booking-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 20px;
            border-bottom: 1px solid var(--color-border);
            flex-shrink: 0;
        }

        .booking-header-title {
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--color-text-muted);
        }

        .booking-close {
            background: none;
            border: none;
            font-size: 24px;
            line-height: 1;
            color: var(--color-text-muted);
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 6px;
            transition: var(--transition);
        }
        .booking-close:hover { color: var(--color-text); background: rgba(0,0,0,0.06); }

        .booking-frame {
            flex: 1;
            width: 100%;
            border: none;
        }

        /* ── How It Works ────────────────────────────────── */
        .hiw-steps {
            max-width: 780px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .hiw-step {
            display: flex;
            gap: 32px;
            align-items: flex-start;
            padding: 36px 0;
            border-bottom: 1px solid var(--color-border);
        }

        .hiw-step:first-child { border-top: 1px solid var(--color-border); }

        .hiw-step-number {
            font-size: 36px;
            font-weight: 700;
            color: #B0A05F;
            letter-spacing: 1px;
            line-height: 1;
            min-width: 48px;
            flex-shrink: 0;
        }

        .hiw-step-title {
            font-size: 17px;
            font-weight: 600;
            color: #B0A05F;
            margin-bottom: 10px;
        }

        .hiw-step-desc {
            font-size: 15px;
            color: var(--color-text-muted);
            line-height: 1.75;
        }


        /* ── FAQ ─────────────────────────────────────────── */
        .faq-list {
            max-width: 780px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .faq-item {
            border-bottom: 1px solid var(--color-border);
            padding: 28px 0;
        }

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

        .faq-question {
            font-size: 17px;
            font-weight: 600;
            color: var(--color-text);
            margin-bottom: 12px;
            letter-spacing: 0.2px;
        }

        .faq-answer {
            font-size: 15px;
            color: var(--color-text-muted);
            line-height: 1.75;
        }


.services-wrap.services-embed {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 60px;
}

.om-embed-wrap {
    width: 100%;
}

.om-embed-frame {
    width: 100%;
    height: 1400px;
    border: none;
    display: block;
}

@media (max-width: 768px) {
    .om-embed-frame {
        height: 1200px;
    }
}
