/* ============================================================
   SheoraGlow — Master Design System
   Usage: <link rel="stylesheet" href="{{ asset('css/glowbook.css') }}">
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;1,400&family=DM+Sans:wght@300;400;500&display=swap');

/* ══════════════════════════════════════════════════════════════
   VARIABLES
══════════════════════════════════════════════════════════════ */
:root {
    /* Brand */
    --pink: #e8557a;
    --pink-dark: #c43060;
    --pink-light: #fce8ef;
    --rose: #e91e8c;
    --rose-dark: #b8176d;
    --rose-light: #fdf0f8;
    --rose-mid: #fbd5ee;

    /* Neutral */
    --cream: #fdf8f5;
    --charcoal: #1a1a2e;
    --muted: #7a7a8c;
    --border: #ede9f6;
    --white: #ffffff;

    /* Aliases used across components */
    --text-muted: var(--muted);
    --radius: 14px;
}

/* ══════════════════════════════════════════════════════════════
   BASE
══════════════════════════════════════════════════════════════ */
body {
    font-family: 'DM Sans', sans-serif;
    background-color: var(--cream);
    color: var(--charcoal);
}

/* ══════════════════════════════════════════════════════════════
   TYPOGRAPHY
══════════════════════════════════════════════════════════════ */
.font-display {
    font-family: 'Playfair Display', serif;
}

.text-pink {
    color: var(--pink) !important;
}

.text-pink-dark {
    color: var(--pink-dark) !important;
}

.text-rose {
    color: var(--rose) !important;
}

.text-muted-sm {
    color: var(--muted);
    font-size: .85rem;
}

.fw-600 {
    font-weight: 600;
}

/* ══════════════════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════════════════ */

/* Primary pink gradient */
.btn-pink {
    background: linear-gradient(135deg, var(--pink), var(--pink-dark));
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(228, 85, 122, .28);
    transition: transform .2s, box-shadow .2s;
}

.btn-pink:hover,
.btn-pink:focus {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(228, 85, 122, .4);
}

.btn-pink:active {
    transform: translateY(0);
}

/* Outline pink */
.btn-outline-pink {
    border: 1.5px solid var(--pink);
    color: var(--pink);
    border-radius: 10px;
    font-weight: 500;
    background: transparent;
    transition: all .2s;
}

.btn-outline-pink:hover {
    background: var(--pink);
    color: #fff;
}

/* Rose (darker brand) variants */
.btn-rose {
    background: linear-gradient(135deg, var(--rose), var(--rose-dark));
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(233, 30, 140, .28);
    transition: transform .2s, box-shadow .2s, opacity .15s;
    text-decoration: none;
    display: inline-block;
}

.btn-rose:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 22px rgba(233, 30, 140, .4);
}

.btn-rose:active {
    transform: translateY(0);
}

.btn-outline-rose {
    border: 1.5px solid var(--rose);
    color: var(--rose);
    border-radius: 10px;
    font-weight: 500;
    background: transparent;
    transition: all .2s;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-rose:hover {
    background: var(--rose);
    color: #fff;
}

.btn-ghost-rose {
    font-size: .8rem;
    color: var(--rose);
    font-weight: 600;
    text-decoration: none;
    padding: .35rem .85rem;
    border-radius: 8px;
    border: 1.5px solid rgba(233, 30, 140, .25);
    transition: all .18s;
    display: inline-block;
}

.btn-ghost-rose:hover {
    background: var(--rose-light);
    color: var(--rose);
    border-color: rgba(233, 30, 140, .5);
}

/* ══════════════════════════════════════════════════════════════
   CARDS
══════════════════════════════════════════════════════════════ */
.card-glow {
    border: 1.5px solid var(--border);
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(228, 85, 122, .06);
    background: var(--white);
}

/* ══════════════════════════════════════════════════════════════
   FORM FIELDS
══════════════════════════════════════════════════════════════ */
.form-control,
.form-select {
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: .9rem;
    color: var(--charcoal);
    transition: border-color .2s;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--pink);
    box-shadow: 0 0 0 3px rgba(228, 85, 122, .12);
}

.form-control.is-invalid,
.form-select.is-invalid {
    border-color: #e53e3e;
}

.form-label {
    font-size: .85rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: .35rem;
}

.invalid-feedback {
    font-size: .75rem;
}

/* Form section label — used in wizard & profile forms */
.gb-form-section-label {
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--pink-dark);
    padding-bottom: .5rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: .85rem;
}

/* Input group prefix (+91 etc.) */
.input-group-text {
    background: var(--pink-light);
    border: 1.5px solid var(--border);
    border-radius: 10px 0 0 10px;
    color: var(--pink-dark);
    font-weight: 500;
}

/* ══════════════════════════════════════════════════════════════
   NAV PILLS  (login tabs)
══════════════════════════════════════════════════════════════ */
.nav-pills .nav-link {
    border-radius: 8px;
    color: var(--muted);
    font-size: .875rem;
    font-weight: 500;
}

.nav-pills .nav-link.active {
    background: linear-gradient(135deg, var(--pink), var(--pink-dark));
    color: #fff;
}

/* ══════════════════════════════════════════════════════════════
   ROLE TOGGLE  (register page)
══════════════════════════════════════════════════════════════ */
.role-toggle {
    background: var(--pink-light);
    border-radius: 12px;
    padding: .3rem;
}

.role-toggle .btn-check+label {
    border-radius: 9px;
    color: var(--muted);
    font-size: .85rem;
    font-weight: 500;
    border: none;
    transition: all .2s;
}

.role-toggle .btn-check:checked+label {
    background: #fff;
    color: var(--pink-dark);
    box-shadow: 0 2px 8px rgba(228, 85, 122, .15);
}

/* ══════════════════════════════════════════════════════════════
   PASSWORD STRENGTH BAR
══════════════════════════════════════════════════════════════ */
.strength-bar {
    display: flex;
    gap: 4px;
    margin-top: .4rem;
}

.strength-bar span {
    flex: 1;
    height: 3px;
    border-radius: 10px;
    background: var(--border);
    transition: background .3s;
}

.strength-label {
    font-size: .72rem;
    color: var(--muted);
    margin-top: .25rem;
}

/* ══════════════════════════════════════════════════════════════
   UPLOAD AREA
══════════════════════════════════════════════════════════════ */
.upload-area {
    border: 2px dashed var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all .2s;
    position: relative;
}

.upload-area:hover {
    border-color: var(--pink);
    background: var(--pink-light);
}

.upload-area input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

/* ══════════════════════════════════════════════════════════════
   TOGGLE SWITCH  (Bootstrap override)
══════════════════════════════════════════════════════════════ */
.form-check-input:checked {
    background-color: var(--pink);
    border-color: var(--pink);
}

.form-check-input:focus {
    box-shadow: 0 0 0 3px rgba(228, 85, 122, .2);
    border-color: var(--pink);
}

/* ══════════════════════════════════════════════════════════════
   SETUP WIZARD STEPS  (supports 3- and 4-step variants)
══════════════════════════════════════════════════════════════ */
.setup-steps {
    display: flex;
    align-items: center;
    max-width: 640px;
    margin: 0 auto 2.5rem;
}

.step-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 0 0 auto;
}

.step-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--border);
    color: var(--muted);
    font-size: .82rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .25s;
    border: 2px solid transparent;
}

.step-node.done .step-circle {
    background: var(--pink-dark);
    color: #fff;
    border-color: var(--pink-dark);
}

.step-node.active .step-circle {
    background: linear-gradient(135deg, var(--pink), var(--pink-dark));
    color: #fff;
    box-shadow: 0 0 0 4px var(--pink-light);
    border-color: transparent;
}

.step-label {
    font-size: .68rem;
    color: var(--muted);
    margin-top: .4rem;
    white-space: nowrap;
    font-weight: 500;
}

.step-node.active .step-label,
.step-node.done .step-label {
    color: var(--pink-dark);
}

.step-connector {
    flex: 1;
    height: 2px;
    background: var(--border);
    margin-bottom: 1.4rem;
    transition: background .25s;
    min-width: 24px;
}

.step-connector.done {
    background: var(--pink-dark);
}

/* ══════════════════════════════════════════════════════════════
   VENDOR SIDEBAR NAV
══════════════════════════════════════════════════════════════ */
.vendor-nav .list-group-item {
    border: none;
    border-left: 3px solid transparent;
    border-radius: 0 !important;
    color: var(--muted);
    font-size: .875rem;
    padding: .75rem 1.1rem;
    transition: all .18s;
}

.vendor-nav .list-group-item:hover {
    background: var(--pink-light);
    color: var(--pink-dark);
}

.vendor-nav .list-group-item.active {
    background: var(--pink-light);
    color: var(--pink-dark);
    border-left-color: var(--pink);
    font-weight: 500;
}

/* ══════════════════════════════════════════════════════════════
   SUBSCRIPTION PLAN BADGE  (sidebar widget)
══════════════════════════════════════════════════════════════ */
.sub-plan-card {
    background: linear-gradient(135deg, var(--pink), var(--pink-dark));
    border-radius: 14px;
    color: #fff;
    text-align: center;
    padding: 1rem;
}

.sub-plan-card .plan-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
}

/* ══════════════════════════════════════════════════════════════
   STAT CARDS  (dashboard)
══════════════════════════════════════════════════════════════ */

/* Bootstrap-style version */
.stat-card {
    border: none;
    border-radius: 16px;
    text-align: center;
    padding: 1.2rem 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .04);
    transition: transform .2s;
    background: var(--white);
}

.stat-card:hover {
    transform: translateY(-3px);
}

.stat-card .stat-value,
.stat-card .stat-value {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--charcoal);
}

.stat-card .stat-label {
    font-size: .72rem;
    color: var(--muted);
}

/* Vendor dashboard variant (with coloured icon wrap) */
.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto .7rem;
}

/* ══════════════════════════════════════════════════════════════
   STATUS PILLS  (bookings)
══════════════════════════════════════════════════════════════ */
.pill-pending {
    background: #fff7e6;
    color: #b45309;
}

.pill-confirmed {
    background: #e0f2fe;
    color: #0369a1;
}

.pill-completed {
    background: #dcfce7;
    color: #15803d;
}

.pill-cancelled {
    background: #fee2e2;
    color: #b91c1c;
}

.pill-no_show,
.pill-noshow {
    background: #f1f5f9;
    color: #475569;
}

/* Legacy Bootstrap badge aliases */
.badge.pill-pending {
    background: #fff3cd !important;
    color: #856404 !important;
}

.badge.pill-confirmed {
    background: #cfe2ff !important;
    color: #084298 !important;
}

.badge.pill-completed {
    background: #d1e7dd !important;
    color: #0a3622 !important;
}

.badge.pill-cancelled {
    background: #f8d7da !important;
    color: #842029 !important;
}

/* ══════════════════════════════════════════════════════════════
   BOOKING TABLE  (vendor)
══════════════════════════════════════════════════════════════ */
.vnd-card {
    background: var(--white);
    border-radius: 20px;
    border: 1.5px solid var(--border);
    overflow: hidden;
}

.vnd-card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.1rem 1.4rem;
    border-bottom: 1px solid var(--border);
}

.vnd-card-title {
    font-size: .95rem;
    font-weight: 600;
    color: var(--charcoal);
    display: flex;
    align-items: center;
    gap: .5rem;
}

.vnd-table-wrap {
    overflow-x: auto;
}

.vnd-table {
    width: 100%;
    border-collapse: collapse;
}

.vnd-table thead th {
    padding: .7rem 1rem;
    font-size: .68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--muted);
    background: #fafafa;
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
}

.vnd-table tbody td {
    padding: .85rem 1rem;
    vertical-align: middle;
    border-bottom: 1px solid #faf5f7;
    font-size: .85rem;
}

.vnd-tr:hover td {
    background: #fdf8fb;
}

.vnd-tr:last-child td {
    border-bottom: none;
}

.ref-code {
    background: #f0eef8;
    color: #6b4fa0;
    padding: .2rem .5rem;
    border-radius: 6px;
    font-size: .74rem;
    font-weight: 700;
    font-family: 'Courier New', monospace;
}

.cell-name {
    font-weight: 600;
    color: var(--charcoal);
}

.cell-sub {
    font-size: .72rem;
    color: var(--muted);
}

.cell-amount {
    font-weight: 700;
    color: var(--charcoal);
    font-size: .92rem;
}

.cell-muted {
    color: #cbd5e1;
}

.svc-pill {
    display: inline-block;
    background: var(--pink-light);
    color: var(--rose);
    font-size: .7rem;
    font-weight: 600;
    padding: .18rem .6rem;
    border-radius: 100px;
    margin: .1rem .1rem 0 0;
}

/* Action buttons inside table */
.action-btns {
    display: flex;
    gap: .4rem;
}

.act-btn {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    transition: all .15s;
}

.act-ok {
    background: #dcfce7;
    color: #15803d;
}

.act-ok:hover {
    background: #15803d;
    color: #fff;
}

.act-no {
    background: #fee2e2;
    color: #b91c1c;
}

.act-no:hover {
    background: #b91c1c;
    color: #fff;
}

/* ══════════════════════════════════════════════════════════════
   AUTH SPLIT PANEL  (login / register)
══════════════════════════════════════════════════════════════ */
.auth-visual {
    background: linear-gradient(145deg, #f9c4d2 0%, #f0789a 40%, #c43060 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.auth-visual .visual-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .2;
    mix-blend-mode: luminosity;
}

.auth-visual .visual-content {
    position: relative;
    z-index: 2;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

.visual-tag {
    display: inline-block;
    background: rgba(255, 255, 255, .2);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: .7rem;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
    padding: .3rem .8rem;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, .3);
}

.visual-headline {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    line-height: 1.2;
    color: #fff;
}

/* ══════════════════════════════════════════════════════════════
   ONBOARDING CARD  (no parlour state)
══════════════════════════════════════════════════════════════ */
.onboard-icon {
    width: 72px;
    height: 72px;
    background: var(--pink-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.2rem;
}

.onboard-step {
    background: var(--cream);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: .9rem;
}

.onboard-step .step-num {
    width: 26px;
    height: 26px;
    background: linear-gradient(135deg, var(--pink), var(--pink-dark));
    color: #fff;
    border-radius: 50%;
    font-size: .72rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Vendor dashboard onboarding variant */
.ob-wrap {
    min-height: 78vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 2rem 1rem;
}

.ob-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.ob-blob-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232, 85, 122, .18) 0%, transparent 70%);
    top: -100px;
    right: -80px;
}

.ob-blob-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(139, 92, 246, .12) 0%, transparent 70%);
    bottom: -60px;
    left: -60px;
}

.ob-card {
    position: relative;
    z-index: 2;
    background: var(--white);
    border-radius: 28px;
    padding: 2.8rem 2.5rem;
    max-width: 520px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(232, 85, 122, .1), 0 4px 20px rgba(0, 0, 0, .06);
    text-align: center;
}

.ob-icon-ring {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink-light), #fff0f5);
    border: 2px solid rgba(232, 85, 122, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 16px rgba(232, 85, 122, .15);
}

.ob-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    color: var(--charcoal);
    margin-bottom: .5rem;
}

.ob-sub {
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.7;
    margin-bottom: 1.8rem;
}

.ob-steps {
    text-align: left;
    margin-bottom: 1.8rem;
    border: 1.5px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
}

.ob-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: .9rem 1.1rem;
    text-decoration: none;
    transition: background .18s;
}

.ob-step--active {
    background: var(--pink-light);
    cursor: pointer;
}

.ob-step--active:hover {
    background: #f9d8e6;
}

.ob-step--locked {
    background: #fafafa;
    cursor: default;
    opacity: .65;
}

.ob-step-divider {
    height: 1px;
    background: var(--border);
}

.ob-step-num {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rose), var(--rose-dark));
    color: #fff;
    font-size: .8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(232, 85, 122, .3);
}

.ob-step-num--lock {
    background: #e2e8f0;
    box-shadow: none;
}

.ob-step-title {
    font-size: .875rem;
    font-weight: 600;
    color: var(--charcoal);
}

.ob-step-sub {
    font-size: .75rem;
    color: var(--muted);
}

.ob-step-arrow {
    margin-left: auto;
    color: var(--rose);
    font-size: .85rem;
}

.ob-cta {
    display: inline-block;
    padding: .85rem 2.5rem;
    background: linear-gradient(135deg, var(--rose), var(--rose-dark));
    color: #fff;
    border-radius: 12px;
    font-size: .95rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: .02em;
    box-shadow: 0 4px 18px rgba(232, 85, 122, .35);
    transition: all .22s;
}

.ob-cta:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(232, 85, 122, .45);
}

.ob-cta-hint {
    margin-top: .85rem;
    font-size: .74rem;
    color: var(--muted);
}

/* ══════════════════════════════════════════════════════════════
   PARLOUR BROWSE PAGE
══════════════════════════════════════════════════════════════ */

/* Hero */
.pl-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d1b3d 55%, #1a1a2e 100%);
    padding: 5rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.pl-hero-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    opacity: .55;
}

.pl-hero-glow--left {
    background: radial-gradient(circle, rgba(233, 30, 140, .22), transparent 70%);
    top: -120px;
    left: -120px;
}

.pl-hero-glow--right {
    background: radial-gradient(circle, rgba(139, 92, 246, .18), transparent 70%);
    bottom: -80px;
    right: -80px;
}

.pl-hero-inner {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.pl-hero-badge {
    display: inline-block;
    background: rgba(233, 30, 140, .14);
    border: 1px solid rgba(233, 30, 140, .35);
    color: #f48cbf;
    padding: .35rem 1rem;
    border-radius: 100px;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 1.4rem;
}

.sg-footer ul {
	padding-left: 0px;
}

.pl-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 4.5vw, 3.1rem);
    color: #fff;
    line-height: 1.18;
    margin-bottom: 1rem;
}

.pl-hero-title em {
    color: var(--rose);
    font-style: italic;
}

.pl-hero-sub {
    color: rgba(255, 255, 255, .6);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Search card */
.pl-search-card {
    background: rgba(255, 255, 255, .07);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 18px;
    padding: 1rem;
    margin-bottom: 1.6rem;
}

.pl-search-form {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: .8rem;
}

.pl-sf-field {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.pl-sf-icon {
    position: absolute;
    left: 1rem;
    color: rgba(255, 255, 255, .4);
    font-size: .9rem;
    pointer-events: none;
}

.pl-sf-field input,
.pl-sf-field select {
    width: 100%;
    padding: .75rem 1rem .75rem 2.5rem;
    background: transparent;
    border: none;
    color: #fff;
    font-size: .9rem;
    font-family: 'DM Sans', sans-serif;
    outline: none;
}

.pl-sf-field input::placeholder {
    color: rgba(255, 255, 255, .35);
}

.pl-sf-field select option {
    background: #1a1a2e;
    color: #fff;
}

.pl-sf-divider {
    width: 1px;
    height: 28px;
    background: rgba(255, 255, 255, .12);
    flex-shrink: 0;
}

.pl-search-btn {
    display: flex;
    align-items: center;
    gap: .5rem;
    background: linear-gradient(135deg, var(--rose), var(--rose-dark));
    color: #fff;
    border: none;
    padding: .75rem 1.6rem;
    font-weight: 700;
    font-size: .9rem;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity .18s;
    flex-shrink: 0;
}

.pl-search-btn:hover {
    opacity: .88;
}

.pl-search-extras {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .5rem;
    padding: 0 .25rem;
}

.pl-toggle-label {
    display: flex;
    align-items: center;
    gap: .55rem;
    color: rgba(255, 255, 255, .7);
    font-size: .82rem;
    cursor: pointer;
    user-select: none;
}

.pl-toggle-label input {
    display: none;
}

.pl-toggle-track {
    width: 36px;
    height: 20px;
    background: rgba(255, 255, 255, .15);
    border-radius: 100px;
    position: relative;
    flex-shrink: 0;
    transition: background .2s;
}

.pl-toggle-track::after {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    background: #fff;
    border-radius: 50%;
    top: 3px;
    left: 3px;
    transition: transform .2s;
}

.pl-toggle-label input:checked+.pl-toggle-track {
    background: var(--rose);
}

.pl-toggle-label input:checked+.pl-toggle-track::after {
    transform: translateX(16px);
}

.pl-clear-link {
    color: rgba(255, 255, 255, .45);
    font-size: .78rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: .3rem;
    transition: color .15s;
}

.pl-clear-link:hover {
    color: var(--rose);
}

.pl-trust-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: .6rem;
}

.pl-trust-pill {
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .15);
    color: rgba(255, 255, 255, .8);
    padding: .3rem .85rem;
    border-radius: 100px;
    font-size: .78rem;
    font-weight: 500;
}

/* Category pills */
.pl-cats-wrap {
    border-bottom: 1px solid var(--border);
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 10;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
}

.pl-cats-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: .85rem 2rem;
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    align-items: center;
}

.pl-cat {
    padding: .38rem 1rem;
    border-radius: 100px;
    font-size: .82rem;
    font-weight: 600;
    border: 1.5px solid var(--border);
    color: var(--charcoal);
    background: var(--white);
    text-decoration: none;
    transition: all .18s;
    white-space: nowrap;
}

.pl-cat:hover {
    border-color: var(--rose);
    color: var(--rose);
}

.pl-cat--on {
    background: var(--rose);
    border-color: var(--rose);
    color: #fff !important;
}

/* Results */
.pl-body {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem 2rem 3rem;
}

.pl-results-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.4rem;
    flex-wrap: wrap;
    gap: .5rem;
}

.pl-results-count {
    font-size: .875rem;
    color: var(--muted);
}

.pl-results-count strong {
    color: var(--charcoal);
}

.pl-sort-wrap {
    display: flex;
    align-items: center;
    gap: .4rem;
}

.pl-sort-label {
    font-size: .78rem;
    color: var(--muted);
}

.pl-sort-btn {
    font-size: .78rem;
    font-weight: 600;
    color: var(--muted);
    text-decoration: none;
    padding: .28rem .75rem;
    border-radius: 100px;
    border: 1.5px solid var(--border);
    transition: all .15s;
}

.pl-sort-btn:hover {
    border-color: var(--rose);
    color: var(--rose);
}

.pl-sort-btn--on {
    background: var(--rose);
    border-color: var(--rose);
    color: #fff;
}

/* Parlour grid */
.pl-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(258px, 1fr));
    gap: 1.5rem;
}

.pl-card {
    background: var(--white);
    border-radius: 18px;
    overflow: hidden;
    border: 1.5px solid var(--border);
    display: flex;
    flex-direction: column;
    transition: transform .22s, box-shadow .22s;
}

.pl-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(233, 30, 140, .13);
    border-color: rgba(233, 30, 140, .25);
}

.pl-card-img-wrap {
    position: relative;
    height: 190px;
    overflow: hidden;
}

.pl-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s;
}

.pl-card:hover .pl-card-img-wrap img {
    transform: scale(1.06);
}

.pl-card-badges {
    position: absolute;
    top: .65rem;
    left: .65rem;
    display: flex;
    flex-direction: column;
    gap: .3rem;
}

.pl-badge {
    display: inline-block;
    padding: .2rem .6rem;
    border-radius: 100px;
    font-size: .68rem;
    font-weight: 700;
    backdrop-filter: blur(6px);
}

.pl-badge--gold {
    background: rgba(245, 158, 11, .92);
    color: #1a1a1a;
}

.pl-badge--green {
    background: rgba(16, 185, 129, .9);
    color: #fff;
}

.pl-fav-form {
    position: absolute;
    top: .6rem;
    right: .6rem;
}

.pl-fav-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(6px);
    color: var(--rose);
    font-size: .85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .15s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .12);
}

.pl-fav-btn:hover {
    background: var(--rose);
    color: #fff;
}

.pl-card-body {
    padding: 1rem 1.1rem .6rem;
    flex: 1;
}

.pl-card-name {
    font-weight: 700;
    font-size: .975rem;
    color: var(--charcoal);
    margin-bottom: .3rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pl-card-city {
    font-size: .8rem;
    color: var(--muted);
    margin-bottom: .5rem;
    display: flex;
    align-items: center;
    gap: .25rem;
}

.pl-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: .4rem;
}

.pl-rating {
    display: flex;
    align-items: center;
    gap: .25rem;
    font-size: .83rem;
}

.pl-star {
    color: #f59e0b;
    font-size: .9rem;
}

.pl-rating strong {
    color: var(--charcoal);
}

.pl-rating-count {
    color: var(--muted);
    font-size: .75rem;
}

.pl-svc-count {
    font-size: .75rem;
    color: var(--muted);
}

.pl-price-from {
    font-size: .78rem;
    color: var(--muted);
}

.pl-price-from strong {
    color: var(--rose);
    font-size: .88rem;
}

.pl-card-footer {
    padding: .75rem 1.1rem;
    border-top: 1px solid var(--border);
    display: flex;
    gap: .5rem;
}

.pl-btn-ghost {
    flex: 1;
    padding: .5rem;
    text-align: center;
    border-radius: 9px;
    border: 1.5px solid var(--border);
    color: var(--charcoal);
    font-size: .8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all .15s;
}

.pl-btn-ghost:hover {
    border-color: var(--rose);
    color: var(--rose);
}

.pl-btn-book {
    flex: 2;
    padding: .5rem;
    text-align: center;
    border-radius: 9px;
    background: linear-gradient(135deg, var(--rose), var(--rose-dark));
    color: #fff;
    font-size: .8rem;
    font-weight: 700;
    text-decoration: none;
    transition: opacity .15s;
    box-shadow: 0 3px 12px rgba(233, 30, 140, .28);
}

.pl-btn-book:hover {
    opacity: .88;
    color: #fff;
}

/* Vendor CTA strip */
.pl-vendor-cta {
    background: linear-gradient(135deg, var(--charcoal) 0%, #2d1b3d 100%);
    padding: 3rem 2rem;
    margin-top: 2rem;
}

.pl-vendor-cta-inner {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.pl-vc-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: .3rem;
}

.pl-vc-sub {
    color: rgba(255, 255, 255, .6);
    font-size: .9rem;
}

.pl-vc-btn {
    display: inline-block;
    background: var(--rose);
    color: #fff;
    padding: .75rem 2rem;
    border-radius: 100px;
    font-weight: 700;
    font-size: .9rem;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(233, 30, 140, .35);
    transition: all .2s;
}

.pl-vc-btn:hover {
    color: #fff;
    background: var(--rose-dark);
    transform: translateY(-2px);
}

/* Empty state */
.pl-empty {
    text-align: center;
    padding: 5rem 2rem;
}

.pl-empty-icon {
    font-size: 3.5rem;
    opacity: .35;
    display: block;
    margin-bottom: 1rem;
}

.pl-empty h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--charcoal);
    margin-bottom: .4rem;
}

.pl-empty p {
    color: var(--muted);
    font-size: .9rem;
    margin-bottom: 1rem;
}

.pl-empty-reset {
    display: inline-block;
    color: var(--rose);
    font-weight: 700;
    text-decoration: none;
    font-size: .9rem;
}

/* Pagination */
.pl-pagination {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
}

/* ══════════════════════════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════════════════════════ */
.fade-up {
    animation: fadeUp .5s cubic-bezier(.22, 1, .36, 1) both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pl-card-anim {
    animation: plFadeUp .5s cubic-bezier(.22, 1, .36, 1) both;
}

@keyframes plFadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .auth-visual {
        display: none;
    }

    .pl-search-form {
        flex-wrap: wrap;
    }

    .pl-sf-divider {
        display: none;
    }

    .pl-sf-field {
        min-width: 48%;
    }

    .pl-search-btn {
        width: 100%;
        justify-content: center;
        border-radius: 10px;
    }

    .pl-vendor-cta-inner {
        text-align: center;
        flex-direction: column;
    }

    .ob-card {
        padding: 2rem 1.4rem;
    }
}

@media (max-width: 480px) {
    .step-label {
        display: none;
    }

    .step-connector {
        min-width: 16px;
    }

    .pl-sf-field {
        min-width: 100%;
    }

    .pl-hero {
        padding: 3.5rem 1.2rem 2.5rem;
    }

    .pl-body {
        padding: 1.5rem 1rem 2rem;
    }

    .pl-cats-inner {
        padding: .65rem 1rem;
    }

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

/* =============================================================
   SheoraGlow — Single Parlour Page CSS
   Add to: public/css/parlour-show.css  (or paste into app.css)
   ============================================================= */

/* ── Hero / top section ──────────────────────────────────────── */
.parlour-hero {
    position: relative;
    height: 420px;
    overflow: hidden;
    background: #1a1a2e;
}
.parlour-hero .hero-bg {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.55;
    transition: transform 6s ease;
}
.parlour-hero:hover .hero-bg { transform: scale(1.04); }
.parlour-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
        rgba(15,10,25,0.15) 0%,
        rgba(15,10,25,0.65) 60%,
        rgba(15,10,25,0.92) 100%);
}
.parlour-hero .hero-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 2rem 2.5rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
}
.hero-logo-wrap {
    display: flex; align-items: flex-end; gap: 1.2rem;
}
.hero-logo {
    width: 82px; height: 82px;
    border-radius: 16px;
    object-fit: cover;
    border: 3px solid rgba(255,255,255,0.2);
    background: #1a1a2e;
    flex-shrink: 0;
}
.hero-logo-placeholder {
    width: 82px; height: 82px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(233,30,140,0.3), rgba(184,23,109,0.2));
    border: 3px solid rgba(255,255,255,0.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; flex-shrink: 0;
}
.hero-info .parlour-name {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700; color: #fff;
    margin-bottom: 0.35rem; line-height: 1.2;
}
.hero-info .hero-meta {
    display: flex; align-items: center; gap: 0.8rem; flex-wrap: wrap;
}
.hero-meta-item {
    display: flex; align-items: center; gap: 0.3rem;
    font-size: 0.83rem; color: rgba(255,255,255,0.72);
}
.hero-meta-item i { font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.hero-meta-item .star-val { color: #fbbf24; font-weight: 700; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 0.28rem;
    padding: 0.22rem 0.65rem; border-radius: 50px;
    font-size: 0.72rem; font-weight: 700;
}
.hero-badge.approved { background: rgba(16,185,129,0.2); color: #6ee7b7; border: 1px solid rgba(16,185,129,0.3); }
.hero-badge.featured  { background: rgba(245,158,11,0.2); color: #fcd34d; border: 1px solid rgba(245,158,11,0.3); }
.hero-badge.home      { background: rgba(139,92,246,0.2); color: #c4b5fd; border: 1px solid rgba(139,92,246,0.3); }
.hero-actions {
    display: flex; flex-direction: column; gap: 0.5rem; align-items: flex-end;
}
.btn-book-hero {
    padding: 0.65rem 1.8rem;
    background: var(--pink, #e91e8c); color: #fff;
    border: none; border-radius: 50px;
    font-size: 0.92rem; font-weight: 700;
    text-decoration: none; cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: background 0.18s, transform 0.15s;
    white-space: nowrap;
    display: inline-flex; align-items: center; gap: 0.4rem;
}
.btn-book-hero:hover { background: #b8176d; transform: translateY(-2px); color: #fff; }
.hero-share-btn {
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.8); font-size: 0.95rem; cursor: pointer;
    transition: background 0.18s; text-decoration: none;
    backdrop-filter: blur(6px);
}
.hero-share-btn:hover { background: rgba(255,255,255,0.22); color: #fff; }

/* ── Sticky booking bar (scrolls into view) ──────────────────── */
.booking-bar {
    background: #fff;
    border-bottom: 1px solid #e8e8f0;
    padding: 0.8rem 2.5rem;
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
    position: sticky; top: 0; z-index: 90;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.booking-bar .bar-name {
    font-family: 'Playfair Display', serif;
    font-size: 1rem; font-weight: 700; color: #1a1a2e;
}
.booking-bar .bar-rating { font-size: 0.82rem; color: #6b6b88; }
.booking-bar .bar-rating .star { color: #f59e0b; }

/* ── Page layout ──────────────────────────────────────────────── */
.parlour-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 2rem 4rem;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 2rem;
    align-items: start;
}
.parlour-main { min-width: 0; }
.parlour-aside { position: sticky; top: 70px; }

/* Section card */
.show-card {
    background: #fff;
    border: 1px solid #ebebf5;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}
.show-card-head {
    display: flex; align-items: center; gap: 0.5rem;
    padding: 1rem 1.4rem;
    border-bottom: 1px solid #f0eef8;
    font-size: 0.88rem; font-weight: 700; color: #1a1a2e;
}
.show-card-head i { color: var(--pink, #e91e8c); }
.show-card-body { padding: 1.3rem 1.4rem; }

/* ── Gallery slider ───────────────────────────────────────────── */
.gallery-section { margin-bottom: 1.5rem; }
.gallery-slider-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #0f0f1a;
}
/* Main visible strip */
.gallery-strip {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 4px;
    scrollbar-width: none;
}
.gallery-strip::-webkit-scrollbar { display: none; }
.gallery-strip-item {
    flex: 0 0 calc(33.33% - 3px);
    aspect-ratio: 4/3;
    overflow: hidden;
    cursor: pointer;
    scroll-snap-align: start;
    position: relative;
}
.gallery-strip-item:first-child { flex: 0 0 calc(50% - 2px); }
.gallery-strip-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.35s, filter 0.25s;
}
.gallery-strip-item:hover img { transform: scale(1.06); filter: brightness(1.08); }
.gallery-strip-item .item-overlay {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0);
    transition: background 0.2s;
    display: flex; align-items: center; justify-content: center;
}
.gallery-strip-item:hover .item-overlay { background: rgba(233,30,140,0.15); }
.gallery-more-count {
    position: absolute; inset: 0;
    background: rgba(15,10,25,0.72);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    color: #fff; font-size: 1.4rem; font-weight: 700;
    font-family: 'Playfair Display', serif;
    cursor: pointer;
}
.gallery-more-count small { font-size: 0.78rem; font-weight: 400; opacity: 0.8; margin-top: 0.2rem; font-family: 'DM Sans', sans-serif; }
.gallery-nav-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.92); border: none; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem; color: #1a1a2e; cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    transition: background 0.18s, transform 0.18s;
    z-index: 10;
}
.gallery-nav-btn:hover { background: #fff; transform: translateY(-50%) scale(1.08); }
.gallery-nav-btn.prev { left: 10px; }
.gallery-nav-btn.next { right: 10px; }

/* ── Lightbox modal ───────────────────────────────────────────── */
.lightbox-overlay {
    position: fixed; inset: 0;
    background: rgba(10,8,20,0.95);
    z-index: 2000;
    display: none;
    align-items: center; justify-content: center;
    backdrop-filter: blur(8px);
}
.lightbox-overlay.open { display: flex; }
.lightbox-inner {
    position: relative;
    max-width: 90vw; max-height: 90vh;
    display: flex; align-items: center; gap: 1rem;
}
.lightbox-img-wrap {
    max-width: 80vw; max-height: 85vh;
    display: flex; align-items: center; justify-content: center;
}
.lightbox-img-wrap img {
    max-width: 80vw; max-height: 82vh;
    border-radius: 12px;
    object-fit: contain;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.lightbox-arrow {
    width: 46px; height: 46px;
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%; cursor: pointer; color: #fff; font-size: 1.1rem;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.18s; flex-shrink: 0;
    backdrop-filter: blur(4px);
}
.lightbox-arrow:hover { background: rgba(233,30,140,0.4); border-color: var(--pink, #e91e8c); }
.lightbox-close {
    position: absolute; top: -44px; right: 0;
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%; cursor: pointer; color: #fff; font-size: 1rem;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.18s;
}
.lightbox-close:hover { background: rgba(239,68,68,0.5); }
.lightbox-counter {
    position: absolute; bottom: -36px; left: 50%; transform: translateX(-50%);
    font-size: 0.78rem; color: rgba(255,255,255,0.5);
    white-space: nowrap;
}
.lightbox-thumb-strip {
    position: absolute; bottom: -80px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 6px; max-width: 80vw; overflow-x: auto;
    scrollbar-width: none; padding: 0 4px;
}
.lightbox-thumb-strip::-webkit-scrollbar { display: none; }
.lightbox-thumb {
    width: 52px; height: 36px; flex-shrink: 0;
    border-radius: 6px; overflow: hidden; cursor: pointer;
    border: 2px solid transparent; opacity: 0.55;
    transition: opacity 0.18s, border-color 0.18s;
}
.lightbox-thumb.active { border-color: var(--pink, #e91e8c); opacity: 1; }
.lightbox-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* ── Services list ────────────────────────────────────────────── */
.service-item {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0.85rem 0;
    border-bottom: 1px solid #f4f3fb;
    gap: 1rem;
}
.service-item:last-child { border-bottom: none; }
.service-info .svc-name   { font-size: 0.9rem; font-weight: 600; color: #1a1a2e; }
.service-info .svc-dur    { font-size: 0.76rem; color: #8888a0; margin-top: 1px; }
.service-right { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.svc-price { font-size: 1rem; font-weight: 700; color: var(--pink, #e91e8c); font-family: 'Playfair Display', serif; }
.btn-add-svc {
    padding: 0.3rem 0.85rem;
    background: #fdf0f8; color: var(--pink, #e91e8c);
    border: 1.5px solid #fbd5ee; border-radius: 8px;
    font-size: 0.78rem; font-weight: 700; cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: all 0.18s; white-space: nowrap;
}
.btn-add-svc:hover { background: var(--pink, #e91e8c); color: #fff; border-color: var(--pink, #e91e8c); }

/* ── Info rows (address, hours etc) ──────────────────────────── */
.info-row {
    display: flex; align-items: flex-start; gap: 0.9rem;
    padding: 0.7rem 0; border-bottom: 1px solid #f4f3fb;
    font-size: 0.86rem;
}
.info-row:last-child { border-bottom: none; }
.info-row .info-icon {
    width: 32px; height: 32px; flex-shrink: 0;
    background: #fdf0f8; border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
    color: var(--pink, #e91e8c); font-size: 0.9rem;
}
.info-row .info-label { font-size: 0.74rem; color: #8888a0; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.info-row .info-val   { font-size: 0.87rem; color: #1a1a2e; font-weight: 500; margin-top: 0.1rem; }

/* ── Reviews ──────────────────────────────────────────────────── */
.rating-summary {
    display: flex; align-items: center; gap: 1.5rem;
    padding-bottom: 1rem; margin-bottom: 1rem;
    border-bottom: 1px solid #f0eef8;
}
.rating-big {
    font-family: 'Playfair Display', serif;
    font-size: 3rem; font-weight: 700; color: #1a1a2e; line-height: 1;
}
.rating-stars { color: #f59e0b; font-size: 1rem; letter-spacing: 1px; }
.rating-count { font-size: 0.8rem; color: #8888a0; margin-top: 0.2rem; }
.review-card {
    padding: 1rem 0; border-bottom: 1px solid #f4f3fb;
}
.review-card:last-child { border-bottom: none; }
.review-header {
    display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.5rem;
}
.reviewer-info { display: flex; align-items: center; gap: 0.6rem; }
.reviewer-avatar {
    width: 34px; height: 34px; border-radius: 50%;
    background: linear-gradient(135deg, #e91e8c, #b8176d);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem; font-weight: 700; color: #fff; flex-shrink: 0;
}
.reviewer-name  { font-size: 0.87rem; font-weight: 700; color: #1a1a2e; }
.reviewer-date  { font-size: 0.74rem; color: #8888a0; }
.review-stars   { color: #f59e0b; font-size: 0.82rem; }
.review-text    { font-size: 0.85rem; color: #444; line-height: 1.6; }

/* ── Booking sidebar card ─────────────────────────────────────── */
.book-card {
    background: #fff;
    border: 1px solid #ebebf5;
    border-radius: 16px;
    overflow: hidden;
}
.book-card-head {
    background: linear-gradient(135deg, #1a0820, #2d1030);
    padding: 1.2rem 1.4rem;
}
.book-card-head .bh-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem; color: #fff; font-weight: 700; margin-bottom: 0.2rem;
}
.book-card-head .bh-sub { font-size: 0.78rem; color: rgba(255,255,255,0.55); }
.book-card-body { padding: 1.3rem 1.4rem; }
.book-info-pill {
    display: flex; align-items: center; gap: 0.6rem;
    padding: 0.65rem 0.9rem;
    background: #f8f7ff; border: 1px solid #e8e6f5;
    border-radius: 10px; margin-bottom: 0.65rem;
    font-size: 0.84rem; color: #1a1a2e;
}
.book-info-pill i { color: var(--pink, #e91e8c); font-size: 0.9rem; flex-shrink: 0; }
.book-info-pill strong { font-weight: 700; }
.btn-book-main {
    display: flex; align-items: center; justify-content: center; gap: 0.5rem;
    width: 100%; padding: 0.85rem;
    background: var(--pink, #e91e8c); color: #fff;
    border: none; border-radius: 11px;
    font-size: 0.95rem; font-weight: 700;
    cursor: pointer; font-family: 'DM Sans', sans-serif;
    text-decoration: none; transition: background 0.18s, transform 0.15s;
    margin-top: 0.5rem;
}
.btn-book-main:hover { background: #b8176d; transform: translateY(-1px); color: #fff; }
.book-note { font-size: 0.75rem; color: #8888a0; text-align: center; margin-top: 0.6rem; }

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 900px) {
    .parlour-page { grid-template-columns: 1fr; }
    .parlour-aside { position: static; }
    .parlour-hero { height: 300px; }
    .parlour-hero .hero-content { padding: 1.2rem 1.2rem; flex-direction: column; align-items: flex-start; }
    .hero-actions { flex-direction: row; align-items: center; }
    .booking-bar { padding: 0.7rem 1.2rem; }
    .gallery-strip-item { flex: 0 0 calc(50% - 2px); }
    .gallery-strip-item:first-child { flex: 0 0 calc(60% - 2px); }
}
@media (max-width: 560px) {
    .parlour-page { padding: 1.2rem 1rem 3rem; }
    .gallery-strip-item { flex: 0 0 80%; }
    .gallery-strip-item:first-child { flex: 0 0 85%; }
    .lightbox-inner { gap: 0.4rem; }
    .lightbox-arrow { width: 36px; height: 36px; font-size: 0.9rem; }
}


/* ── Hero ────────────────────────────────────────────────────── */
.about-hero {
    background: linear-gradient(135deg, #0f0a1a 0%, #1e0a22 50%, #0f0a1a 100%) !important;
    padding: 6rem 2rem 4.5rem;
    position: relative;
    overflow: hidden;
    text-align: center;
    isolation: isolate;
}
.about-hero::before {
    content: '';
    position: absolute;
    top: -60px; left: 50%;
    transform: translateX(-50%);
    width: 700px; height: 400px;
    background: radial-gradient(ellipse, rgba(233,30,140,0.18) 0%, transparent 70%);
    pointer-events: none;
}
.about-hero .hero-eyebrow {
    display: inline-block;
    background: rgba(233,30,140,0.12);
    border: 1px solid rgba(233,30,140,0.25);
    color: #f48cbf;
    padding: 0.3rem 1rem; border-radius: 50px;
    font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; margin-bottom: 1.2rem;
}
.about-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: #fff; line-height: 1.18; margin-bottom: 1.1rem;
}
.about-hero h1 em { color: var(--rose); font-style: italic; }
.about-hero p {
    font-size: 1.05rem; color: rgba(255,255,255,0.62);
    max-width: 540px; margin: 0 auto 2rem; line-height: 1.75;
}
.hero-cta-row { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; }
.btn-rose-hero {
    padding: 0.7rem 1.8rem; background: var(--rose); color: #fff;
    border: none; border-radius: 50px; font-size: 0.92rem; font-weight: 700;
    text-decoration: none; cursor: pointer; font-family: 'DM Sans', sans-serif;
    transition: background 0.18s, transform 0.15s;
    display: inline-flex; align-items: center; gap: 0.4rem;
}
.btn-rose-hero:hover { background: var(--rose-dark); transform: translateY(-2px); color: #fff; }
.btn-outline-hero {
    padding: 0.7rem 1.8rem; color: rgba(255,255,255,0.8);
    border: 1.5px solid rgba(255,255,255,0.2); border-radius: 50px;
    font-size: 0.92rem; font-weight: 600; text-decoration: none;
    transition: all 0.18s; display: inline-flex; align-items: center; gap: 0.4rem;
}
.btn-outline-hero:hover { border-color: rgba(255,255,255,0.5); color: #fff; background: rgba(255,255,255,0.06); }
 
/* ── Stats strip ─────────────────────────────────────────────── */
.stats-strip {
    background: var(--rose-light);
    border-top: 1px solid var(--rose-mid);
    border-bottom: 1px solid var(--rose-mid);
    padding: 2rem;
}
.stats-strip .inner {
    max-width: 900px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 1rem; text-align: center;
}
.stats-strip .stat-item .num {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem; font-weight: 700; color: var(--rose); line-height: 1;
}
.stats-strip .stat-item .lbl { font-size: 0.82rem; color: var(--muted); font-weight: 500; margin-top: 0.3rem; }
 
/* ── Section wrapper ─────────────────────────────────────────── */
.about-section { max-width: 1100px; margin: 0 auto; padding: 5rem 2rem; }
.about-section .section-eyebrow, .about-hero .section-eyebrow,
.values-section .section-eyebrow, .timeline-section .section-eyebrow,
.faq-section .section-eyebrow, .contact-hero .section-eyebrow {
    font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--rose); margin-bottom: 0.5rem;
}
.about-section .section-title, .values-section .section-title,
.faq-section .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 700;
    color: var(--charcoal); line-height: 1.25; margin-bottom: 0.8rem;
}
.about-section .section-sub { font-size: 0.95rem; color: var(--muted); line-height: 1.75; max-width: 520px; }
 
/* ── Mission split layout ────────────────────────────────────── */
.mission-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.mission-visual { position: relative; }
.mission-visual .main-img {
    width: 100%; border-radius: 20px; overflow: hidden;
    aspect-ratio: 4/5;
    background: linear-gradient(145deg, var(--rose-mid), var(--rose-light));
    display: flex; align-items: center; justify-content: center; font-size: 5rem;
    box-shadow: 0 20px 60px rgba(233,30,140,0.15);
}
.mission-visual .float-card {
    position: absolute; bottom: -1.5rem; right: -1.5rem;
    background: #fff; border-radius: 14px; padding: 1rem 1.2rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    display: flex; align-items: center; gap: 0.8rem;
    min-width: 180px; border: 1px solid #f0eef8;
}
.float-card .fc-icon {
    width: 40px; height: 40px; border-radius: 10px;
    background: var(--rose-light); color: var(--rose);
    display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0;
}
.float-card .fc-val { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--charcoal); }
.float-card .fc-lbl { font-size: 0.74rem; color: var(--muted); }
.feature-list { margin-top: 1.8rem; display: flex; flex-direction: column; gap: 1rem; }
.feature-row {
    display: flex; align-items: flex-start; gap: 0.85rem;
    padding: 0.9rem 1rem; border-radius: 12px;
    background: #fff; border: 1px solid #f0eef8;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    transition: box-shadow 0.2s;
}
.feature-row:hover { box-shadow: 0 6px 20px rgba(233,30,140,0.08); }
.feature-row .f-icon {
    width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
    background: var(--rose-light); color: var(--rose);
    display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.feature-row .f-title { font-size: 0.9rem; font-weight: 700; color: var(--charcoal); margin-bottom: 0.15rem; }
.feature-row .f-text  { font-size: 0.82rem; color: var(--muted); line-height: 1.55; }
 
/* ── Values ──────────────────────────────────────────────────── */
.values-section { background: #fafafd; padding: 5rem 2rem; }
.values-inner { max-width: 1100px; margin: 0 auto; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.value-card {
    background: #fff; border-radius: 16px; border: 1px solid #ebebf5;
    padding: 1.8rem 1.5rem; transition: transform 0.2s, box-shadow 0.2s;
}
.value-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(233,30,140,0.1); }
.value-card .vc-icon {
    width: 52px; height: 52px; border-radius: 14px;
    background: var(--rose-light); color: var(--rose);
    display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 1rem;
}
.value-card .vc-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--charcoal); margin-bottom: 0.5rem; }
.value-card .vc-text  { font-size: 0.85rem; color: var(--muted); line-height: 1.7; }
 
/* ── Team ────────────────────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.team-card {
    text-align: center; padding: 1.5rem 1rem;
    background: #fff; border-radius: 16px; border: 1px solid #ebebf5;
    transition: transform 0.2s, box-shadow 0.2s;
}
.team-card:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(233,30,140,0.08); }
.team-avatar {
    width: 72px; height: 72px; border-radius: 50%;
    margin: 0 auto 0.9rem;
    background: linear-gradient(135deg, var(--rose), var(--rose-dark));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; color: #fff; font-weight: 700;
    font-family: 'Playfair Display', serif;
}
.team-name  { font-weight: 700; font-size: 0.92rem; color: var(--charcoal); margin-bottom: 0.15rem; }
.team-role  { font-size: 0.78rem; color: var(--rose); font-weight: 600; margin-bottom: 0.4rem; }
.team-about { font-size: 0.78rem; color: var(--muted); line-height: 1.55; }
 
/* ── Timeline ────────────────────────────────────────────────── */
.timeline-section { background: linear-gradient(135deg, #0f0a1a, #1e0a22); padding: 5rem 2rem; }
.timeline-inner { max-width: 800px; margin: 0 auto; }
.timeline { position: relative; margin-top: 3rem; }
.timeline::before {
    content: ''; position: absolute; left: 50%; transform: translateX(-50%);
    top: 0; bottom: 0; width: 2px;
    background: linear-gradient(to bottom, var(--rose), rgba(233,30,140,0.1));
}
.timeline-item { display: grid; grid-template-columns: 1fr 40px 1fr; gap: 1.5rem; align-items: start; margin-bottom: 2.5rem; }
.timeline-item:nth-child(even) .t-left  { order: 3; text-align: left; }
.timeline-item:nth-child(even) .t-dot   { order: 2; }
.timeline-item:nth-child(even) .t-right { order: 1; text-align: right; }
.timeline-item:nth-child(odd) .t-left   { text-align: right; }
.t-dot {
    width: 40px; height: 40px; border-radius: 50%;
    background: linear-gradient(135deg, var(--rose), var(--rose-dark));
    border: 3px solid #0f0a1a;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem; color: #fff; font-weight: 700;
    position: relative; z-index: 1; flex-shrink: 0;
    box-shadow: 0 0 0 4px rgba(233,30,140,0.2);
}
.t-card {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px; padding: 1rem 1.1rem;
}
.t-year  { font-size: 0.7rem; font-weight: 700; color: var(--rose); letter-spacing: 0.1em; margin-bottom: 0.25rem; }
.t-title { font-weight: 700; color: #fff; font-size: 0.92rem; margin-bottom: 0.3rem; }
.t-text  { font-size: 0.8rem; color: rgba(255,255,255,0.5); line-height: 1.6; }
 
/* ── About CTA ───────────────────────────────────────────────── */
.about-cta { padding: 5rem 2rem; text-align: center; }
.about-cta-card {
    max-width: 680px; margin: 0 auto;
    background: linear-gradient(135deg, var(--rose), var(--rose-dark));
    border-radius: 24px; padding: 3.5rem 3rem;
    position: relative; overflow: hidden;
}
.about-cta-card::before {
    content: ''; position: absolute; bottom: -40px; right: -40px;
    width: 180px; height: 180px; background: rgba(255,255,255,0.07); border-radius: 50%;
}
.about-cta-card h2 { font-family: 'Playfair Display', serif; font-size: 2rem; color: #fff; margin-bottom: 0.7rem; }
.about-cta-card p  { color: rgba(255,255,255,0.78); font-size: 0.95rem; margin-bottom: 1.8rem; }
.btn-white {
    padding: 0.72rem 2rem; background: #fff; color: var(--rose);
    border: none; border-radius: 50px; font-size: 0.92rem; font-weight: 700;
    text-decoration: none; cursor: pointer; font-family: 'DM Sans', sans-serif;
    transition: transform 0.15s; display: inline-flex; align-items: center; gap: 0.4rem;
}
.btn-white:hover { transform: scale(1.04); color: var(--rose-dark); }
 
/* About responsive */
@media (max-width: 900px) {
    .mission-layout { grid-template-columns: 1fr; gap: 2.5rem; }
    .mission-visual .float-card { right: 0; bottom: -1rem; }
    .values-grid { grid-template-columns: 1fr 1fr; }
    .team-grid   { grid-template-columns: 1fr 1fr; }
    .stats-strip .inner { grid-template-columns: 1fr 1fr; }
    .timeline::before { left: 20px; }
    .timeline-item { grid-template-columns: 40px 1fr; }
    .timeline-item:nth-child(even) .t-left,
    .timeline-item:nth-child(odd)  .t-left  { display: none; }
    .timeline-item:nth-child(even) .t-right,
    .timeline-item:nth-child(odd)  .t-right { text-align: left; }
    .timeline-item:nth-child(even) .t-dot   { order: 1; }
    .timeline-item:nth-child(even) .t-right { order: 2; }
}
@media (max-width: 580px) {
    .values-grid { grid-template-columns: 1fr; }
    .team-grid   { grid-template-columns: 1fr 1fr; }
    .about-cta-card { padding: 2.5rem 1.5rem; }
}
 
 
/* ══════════════════════════════════════════════════════════════
   CONTACT PAGE
   page: resources/views/contact.blade.php
   Remove @push('styles') block from that blade after adding this.
══════════════════════════════════════════════════════════════ */
 
/* ── Contact Hero ────────────────────────────────────────────── */
.contact-hero {
    background: linear-gradient(135deg, #0f0a1a 0%, #1e0a22 50%, #0f0a1a 100%);
    padding: 5rem 2rem 3rem;
    text-align: center; position: relative; overflow: hidden;
}
.contact-hero::before {
    content: '';
    position: absolute; top: -60px; left: 50%; transform: translateX(-50%);
    width: 600px; height: 350px;
    background: radial-gradient(ellipse, rgba(233,30,140,0.16) 0%, transparent 70%);
    pointer-events: none;
}
.contact-hero .hero-eyebrow {
    display: inline-block;
    background: rgba(233,30,140,0.12); border: 1px solid rgba(233,30,140,0.25);
    color: #f48cbf; padding: 0.3rem 1rem; border-radius: 50px;
    font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; margin-bottom: 1.1rem;
}
.contact-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 4vw, 2.9rem);
    color: #fff; margin-bottom: 0.9rem; line-height: 1.2;
}
.contact-hero h1 em { color: var(--rose); font-style: italic; }
.contact-hero p { font-size: 1rem; color: rgba(255,255,255,0.6); max-width: 480px; margin: 0 auto; line-height: 1.7; }
.quick-pills {
    display: flex; justify-content: center; gap: 0.75rem;
    flex-wrap: wrap; margin-top: 2rem; position: relative; z-index: 1;
}
.quick-pill {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.5rem 1.1rem;
    background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.14);
    border-radius: 50px; font-size: 0.83rem; color: rgba(255,255,255,0.8);
    text-decoration: none; transition: all 0.18s; backdrop-filter: blur(4px);
}
.quick-pill:hover { background: rgba(233,30,140,0.2); border-color: rgba(233,30,140,0.4); color: #fff; }
.quick-pill i { font-size: 0.85rem; color: #f48cbf; }
 
/* ── Contact layout ──────────────────────────────────────────── */
.contact-layout {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem; padding: 4rem 2rem 5rem; align-items: start;
}
.contact-form-card {
    background: #fff; border-radius: 20px;
    border: 1px solid #ebebf5; padding: 2.2rem 2rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}
.contact-form-card .form-head { margin-bottom: 1.8rem; }
.contact-form-card .form-head .eyebrow {
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--rose); margin-bottom: 0.3rem;
}
.contact-form-card .form-head h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem; font-weight: 700; color: var(--charcoal); margin-bottom: 0.3rem;
}
.contact-form-card .form-head p { font-size: 0.85rem; color: var(--muted); }
.cf-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
    margin-bottom: 1rem;
}
.cf-group {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
}
.cf-group label {
    display: block; font-size: 0.8rem; font-weight: 600; color: #4a4a6a; margin-bottom: 0.35rem;
}
.cf-group label .req { color: var(--rose); }
.cf-group input,
.cf-group select,
.cf-group textarea {
    display: block;
    width: 100% !important;
    border: 1.5px solid #e0deee !important;
    border-radius: 10px !important;
    padding: 0.65rem 0.9rem !important;
    font-size: 0.88rem !important;
    color: var(--charcoal) !important;
    font-family: 'DM Sans', sans-serif !important;
    background: #fff !important;
    box-shadow: none !important;
    transition: border-color 0.18s, box-shadow 0.18s;
    margin-bottom: 0;
}
.cf-group textarea { resize: vertical; min-height: 130px !important; }
.cf-group input:focus,
.cf-group select:focus,
.cf-group textarea:focus {
    outline: none !important;
    border-color: var(--rose) !important;
    box-shadow: 0 0 0 3px rgba(233,30,140,0.08) !important;
}
.cf-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238888a0' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 0.8rem center; padding-right: 2.2rem;
}
.field-hint { font-size: 0.74rem; color: var(--muted); margin-top: 0.25rem; text-align: right; }
.btn-submit {
    display: flex; align-items: center; justify-content: center; gap: 0.5rem;
    width: 100%; padding: 0.85rem;
    background: var(--rose); color: #fff; border: none; border-radius: 11px;
    font-size: 0.95rem; font-weight: 700; cursor: pointer;
    font-family: 'DM Sans', sans-serif; transition: background 0.18s, transform 0.15s;
    margin-top: 0.5rem;
}
.btn-submit:hover { background: var(--rose-dark); transform: translateY(-1px); }
.form-success { display: none; text-align: center; padding: 2.5rem 1rem; }
.form-success .success-icon {
    width: 64px; height: 64px; background: #ecfdf5; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; margin: 0 auto 1rem; color: #059669;
}
.form-success h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--charcoal); margin-bottom: 0.5rem; }
.form-success p  { font-size: 0.88rem; color: var(--muted); }
 
/* ── Contact info column ─────────────────────────────────────── */
.contact-info { display: flex; flex-direction: column; gap: 1.25rem; }
.info-card {
    background: #fff; border-radius: 16px; border: 1px solid #ebebf5;
    padding: 1.4rem 1.5rem; display: flex; align-items: flex-start; gap: 1rem;
    transition: box-shadow 0.2s, transform 0.2s;
}
.info-card:hover { box-shadow: 0 8px 28px rgba(233,30,140,0.08); transform: translateY(-2px); }
.info-card .ic-icon {
    width: 46px; height: 46px; border-radius: 13px; flex-shrink: 0;
    background: var(--rose-light); color: var(--rose);
    display: flex; align-items: center; justify-content: center; font-size: 1.15rem;
}
.info-card .ic-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.3rem; }
.info-card .ic-val   { font-size: 0.92rem; font-weight: 600; color: var(--charcoal); margin-bottom: 0.15rem; }
.info-card .ic-sub   { font-size: 0.78rem; color: var(--muted); }
.info-card a { color: var(--rose); text-decoration: none; font-weight: 600; }
.info-card a:hover { text-decoration: underline; }
.map-card {
    background: linear-gradient(135deg, #1a0820, #2d1030);
    border-radius: 16px; overflow: hidden; aspect-ratio: 4/3;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.6); font-size: 0.85rem; text-align: center;
    border: 1px solid rgba(255,255,255,0.06); padding: 1.5rem; position: relative;
}
.map-card::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 40% 40%, rgba(233,30,140,0.15) 0%, transparent 60%);
}
.map-card .map-icon { font-size: 2.5rem; margin-bottom: 0.7rem; opacity: 0.7; position: relative; }
.map-card .map-name { font-family: 'Playfair Display', serif; font-size: 1rem; color: rgba(255,255,255,0.85); font-weight: 700; position: relative; margin-bottom: 0.3rem; }
.map-card .map-addr { font-size: 0.78rem; color: rgba(255,255,255,0.4); position: relative; }
.social-row { display: flex; gap: 0.6rem; }
.social-btn {
    width: 40px; height: 40px; border-radius: 10px;
    background: var(--rose-light); color: var(--rose);
    border: 1px solid var(--rose-mid);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; text-decoration: none;
    transition: background 0.18s, color 0.18s, transform 0.15s;
}
.social-btn:hover { background: var(--rose); color: #fff; transform: translateY(-2px); }
 
/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-section { background: #fafafd; padding: 5rem 2rem; }
.faq-inner { max-width: 780px; margin: 0 auto; }
.faq-grid { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item { background: #fff; border: 1px solid #ebebf5; border-radius: 13px; overflow: hidden; }
.faq-q {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.1rem 1.3rem; cursor: pointer;
    font-size: 0.9rem; font-weight: 600; color: var(--charcoal);
    transition: background 0.18s; gap: 1rem; user-select: none;
}
.faq-q:hover { background: var(--rose-light); }
.faq-q.open  { background: var(--rose-light); color: var(--rose); }
.faq-q .faq-icon { flex-shrink: 0; color: var(--rose); transition: transform 0.25s; font-size: 1rem; }
.faq-q.open .faq-icon { transform: rotate(45deg); }
.faq-a {
    max-height: 0; overflow: hidden;
    font-size: 0.87rem; color: var(--muted); line-height: 1.7;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.3rem;
}
.faq-a.open { max-height: 300px; padding: 0 1.3rem 1.1rem; }
 
/* Contact responsive */
@media (max-width: 860px) {
    .contact-layout { grid-template-columns: 1fr; gap: 2rem; }
    .cf-row { grid-template-columns: 1fr; }
    .map-card { aspect-ratio: 3/2; }
}
@media (max-width: 500px) {
    .contact-form-card { padding: 1.5rem 1.2rem; }
    .quick-pills { flex-direction: column; align-items: center; }
}
 
 
/* ── Map preview card (inside info column) ───────────────────── */
.map-preview-card {
    display: block;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    border: 1px solid #ebebf5;
    transition: box-shadow 0.2s, transform 0.2s;
}
.map-preview-card:hover { box-shadow: 0 10px 32px rgba(233,30,140,0.12); transform: translateY(-2px); }
.map-preview-inner {
    position: relative;
    height: 200px;
    overflow: hidden;
}
.map-preview-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(10,8,20,0.35);
    backdrop-filter: blur(1px);
    transition: background 0.2s;
}
.map-preview-card:hover .map-preview-overlay { background: rgba(10,8,20,0.45); }
.map-pin-pulse {
    width: 44px; height: 44px;
    background: var(--rose);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.2rem;
    box-shadow: 0 0 0 8px rgba(233,30,140,0.2);
    animation: pin-pulse 2s ease-in-out infinite;
}
@keyframes pin-pulse {
    0%, 100% { box-shadow: 0 0 0 8px rgba(233,30,140,0.2); }
    50%       { box-shadow: 0 0 0 16px rgba(233,30,140,0.05); }
}
.map-preview-label { text-align: center; }
.map-preview-name { font-family: 'Playfair Display', serif; font-size: 0.95rem; font-weight: 700; color: #fff; }
.map-preview-addr { font-size: 0.76rem; color: rgba(255,255,255,0.7); }
.map-open-hint {
    position: absolute; bottom: 10px; right: 12px;
    font-size: 0.72rem; color: rgba(255,255,255,0.6);
    display: flex; align-items: center; gap: 0.3rem;
}
 
/* ── Full-width map section ──────────────────────────────────── */
.map-section {
    background: linear-gradient(135deg, #0f0a1a 0%, #1e0a22 100%);
}
.map-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2.5rem 2rem 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
    gap: 1rem;
    flex-wrap: wrap;
}
.btn-directions {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.65rem 1.5rem;
    background: var(--rose); color: #fff;
    border: none; border-radius: 50px;
    font-size: 0.88rem; font-weight: 700;
    text-decoration: none; transition: background 0.18s, transform 0.15s;
    white-space: nowrap;
}
.btn-directions:hover { background: var(--rose-dark); transform: translateY(-1px); color: #fff; }
.map-embed-wrap {
    height: 420px;
    width: 100%;
    overflow: hidden;
    filter: brightness(0.9) contrast(1.05);
    border-top: 2px solid rgba(233,30,140,0.2);
}
.map-embed-wrap iframe { display: block; }
 
@media (max-width: 640px) {
    .map-section-header { padding: 1.5rem 1.2rem 1rem; }
    .map-embed-wrap { height: 280px; }
    .map-preview-inner { height: 170px; }
}
.policy-hero {
    background: linear-gradient(135deg, #0f0a1a 0%, #1e0a22 50%, #0f0a1a 100%);
    padding: 5.5rem 2rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.policy-hero::before {
    content: '';
    position: absolute;
    top: -60px; left: 50%;
    transform: translateX(-50%);
    width: 600px; height: 350px;
    background: radial-gradient(ellipse, rgba(233,30,140,0.18) 0%, transparent 70%);
    pointer-events: none; z-index: 0;
}
.policy-hero > * { position: relative; z-index: 1; }
.policy-eyebrow {
    display: inline-block;
    background: rgba(233,30,140,0.12); border: 1px solid rgba(233,30,140,0.25);
    color: #f48cbf; padding: 0.3rem 1rem; border-radius: 50px;
    font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; margin-bottom: 1.1rem;
}
.policy-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fff; line-height: 1.2; margin-bottom: 0.8rem;
}
.policy-hero h1 em { color: #e91e8c; font-style: italic; }
.policy-hero p { font-size: 0.95rem; color: rgba(255,255,255,0.55); margin: 0 auto; max-width: 480px; }
.policy-meta {
    display: inline-flex; align-items: center; gap: 0.5rem;
    margin-top: 1rem; font-size: 0.8rem; color: rgba(255,255,255,0.4);
}
.policy-meta i { color: #f48cbf; }
 
/* Layout */
.policy-layout {
    max-width: 860px; margin: 0 auto; padding: 3.5rem 2rem 5rem;
    display: grid; grid-template-columns: 1fr 220px; gap: 3rem; align-items: start;
}
.policy-content { min-width: 0; }
.policy-toc {
    position: sticky; top: 80px;
    background: #fff; border: 1px solid #ebebf5;
    border-radius: 14px; padding: 1.2rem 1.3rem;
}
.policy-toc .toc-title {
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; color: #8888a0; margin-bottom: 0.8rem;
}
.policy-toc a {
    display: block; font-size: 0.82rem; color: #6b6b88;
    text-decoration: none; padding: 0.35rem 0;
    border-bottom: 1px solid #f4f3fb; transition: color 0.15s;
}
.policy-toc a:last-child { border-bottom: none; }
.policy-toc a:hover { color: #e91e8c; }
 
/* Section */
.policy-section { margin-bottom: 2.5rem; }
.policy-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem; font-weight: 700; color: #1a1a2e;
    margin-bottom: 0.8rem; padding-bottom: 0.5rem;
    border-bottom: 2px solid #fbd5ee;
    display: flex; align-items: center; gap: 0.5rem;
}
.policy-section h2 .sec-num {
    width: 26px; height: 26px; border-radius: 50%;
    background: #fdf0f8; color: #e91e8c;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.72rem; font-weight: 700; flex-shrink: 0;
    font-family: 'DM Sans', sans-serif;
}
.policy-section p {
    font-size: 0.9rem; color: #444; line-height: 1.8; margin-bottom: 0.8rem;
}
.policy-section ul {
    list-style: none; padding: 0; margin: 0.5rem 0 1rem;
}
.policy-section ul li {
    font-size: 0.88rem; color: #444; line-height: 1.7;
    padding: 0.35rem 0 0.35rem 1.4rem; position: relative;
}
.policy-section ul li::before {
    content: ''; position: absolute; left: 0; top: 0.75rem;
    width: 6px; height: 6px; border-radius: 50%; background: #e91e8c;
}
.policy-highlight {
    background: #fdf0f8; border-left: 3px solid #e91e8c;
    border-radius: 0 10px 10px 0; padding: 0.9rem 1.1rem;
    font-size: 0.87rem; color: #4a1a30; margin: 1rem 0;
    line-height: 1.65;
}
 
@media (max-width: 700px) {
    .policy-layout { grid-template-columns: 1fr; }
    .policy-toc { position: static; }
}
.service-item {
    transition: background .2s, border-color .2s;
    border-radius: 10px;
    border: 1.5px solid transparent;
}
.service-item.svc-selected {
    background: #fdf0f8;
    border-color: #e91e8c;
}
.service-item.svc-selected .svc-name {
    color: #e91e8c;
    font-weight: 700;
}
.service-item.svc-selected .btn-add-svc {
    background: #e91e8c;
    color: #fff;
}
 
/* ── Selected service pill in sidebar ────────────────────────────── */
.selected-svc-pill {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: #fdf0f8;
    border: 1.5px solid #e91e8c;
    border-radius: 12px;
    padding: 10px 12px;
    margin-bottom: 14px;
    animation: pillIn .22s ease;
}
@keyframes pillIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}
.ssp-left {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    flex: 1;
}
.ssp-left > .bi {
    color: #e91e8c;
    font-size: 1rem;
    flex-shrink: 0;
}
.ssp-name {
    font-size: .88rem;
    font-weight: 700;
    color: #1a1a2e;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ssp-meta {
    font-size: .76rem;
    color: #e91e8c;
    font-weight: 600;
    margin-top: 1px;
}
.ssp-clear {
    background: none;
    border: none;
    cursor: pointer;
    color: #e91e8c;
    padding: 2px 4px;
    border-radius: 6px;
    line-height: 1;
    font-size: 1rem;
    flex-shrink: 0;
    transition: background .15s;
}
.ssp-clear:hover {
    background: #fbd5ee;
}


