/* =====================================================================
   ZAKARIA SEDOT WC — PREMIUM DESIGN SYSTEM v2.0
   Dark Charcoal + Champagne Gold | Modern Luxury
   ===================================================================== */

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

/* =====================================================================
   1. DESIGN TOKENS
   ===================================================================== */
:root {
    --ink:          #0F1115;
    --ink-soft:     #1A1D24;
    --ink-border:   #262A33;

    --gold:         #C9A24B;
    --gold-bright:  #E3C57A;
    --gold-deep:    #A8822F;
    --gold-tint:    rgba(201,162,75,0.10);
    --gold-tint-2:  rgba(201,162,75,0.18);

    --cream:        #FBF9F4;
    --white:        #FFFFFF;

    --text-on-dark:       #FFFFFF;
    --text-on-dark-muted: rgba(255,255,255,0.65);
    --text-on-dark-faint: rgba(255,255,255,0.35);

    --text-heading: #14161B;
    --text-body:    #4B5160;
    --text-muted:   #8A8F9C;
    --text-faint:   #C0C4CE;

    --surface-page:   #FFFFFF;
    --surface-alt:    #F6F5F1;
    --surface-card:   #FFFFFF;
    --surface-border: #ECEAE3;

    --success:    #1F9D63;
    --success-bg: rgba(31,157,99,0.10);
    --danger:     #D14848;
    --danger-bg:  rgba(209,72,72,0.08);
    --warning:    #C8862C;
    --warning-bg: rgba(200,134,44,0.10);
    --info:       #3576D1;
    --info-bg:    rgba(53,118,209,0.10);

    --r-sm:   8px;
    --r-md:   14px;
    --r-lg:   20px;
    --r-xl:   28px;
    --r-2xl:  36px;
    --r-pill: 999px;

    --shadow-xs:   0 2px 8px rgba(15,17,21,0.05);
    --shadow-soft: 0 4px 16px rgba(15,17,21,0.06);
    --shadow-md:   0 12px 32px rgba(15,17,21,0.08);
    --shadow-lg:   0 24px 60px rgba(15,17,21,0.12);
    --shadow-xl:   0 40px 90px rgba(15,17,21,0.16);
    --shadow-gold: 0 16px 40px rgba(201,162,75,0.22);

    --ease:   cubic-bezier(0.4,0,0.2,1);
    --t-fast: 160ms;
    --t-base: 280ms;
    --t-slow: 500ms;
}

/* =====================================================================
   2. RESET & BASE
   ===================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--surface-page);
    color: var(--text-body);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6, .luxury-serif {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    color: var(--text-heading);
    line-height: 1.15;
}
p { color: var(--text-body); margin-bottom: 0; }
a { color: var(--gold-deep); text-decoration: none; transition: color var(--t-base) var(--ease); }
a:hover { color: var(--gold); }
img { max-width: 100%; }
::selection { background: var(--gold-tint-2); color: var(--text-heading); }

/* =====================================================================
   3. TYPOGRAPHY UTILITIES
   ===================================================================== */
.luxury-serif  { font-family: 'Playfair Display', serif; }
.text-gold     { color: var(--gold) !important; }
.text-gold-solid { color: var(--gold-deep) !important; }
.text-muted-custom { color: var(--text-muted) !important; }

.eyebrow {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--gold-deep);
    display: block;
    margin-bottom: 12px;
}

/* =====================================================================
   4. BACKGROUND & SURFACE HELPERS
   ===================================================================== */
.bg-luxury      { background-color: var(--ink) !important; }
.bg-luxury-soft { background-color: var(--ink-soft) !important; }
.bg-surface-alt { background-color: var(--surface-alt) !important; }
.bg-gold-gradient {
    background: linear-gradient(95deg, var(--gold-deep) 0%, var(--gold) 50%, var(--gold-bright) 100%) !important;
}
.bg-gold-tint { background-color: var(--gold-tint) !important; }
.border-gold   { border-color: var(--gold) !important; }

/* =====================================================================
   5. NAVBAR
   ===================================================================== */
.navbar-custom {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--surface-border);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow var(--t-base) var(--ease);
}
.navbar-custom.scrolled { box-shadow: var(--shadow-md); }

.navbar-brand-custom {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.navbar-brand-custom img {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    object-fit: cover;
}
.brand-name {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: 18px;
    color: var(--text-heading);
    line-height: 1.1;
}
.brand-tagline {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold-deep);
    display: block;
}

.nav-link-custom {
    color: var(--text-heading) !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 11px;
    padding: 8px 16px !important;
    position: relative;
    transition: color var(--t-base) var(--ease);
}
.nav-link-custom::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 16px;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--t-base) var(--ease);
    border-radius: 2px;
}
.nav-link-custom:hover,
.nav-link-custom.active { color: var(--gold-deep) !important; }
.nav-link-custom:hover::after,
.nav-link-custom.active::after { width: calc(100% - 32px); }

/* =====================================================================
   6. HERO SECTIONS (Page Headers)
   ===================================================================== */
.hero-page {
    background-color: var(--ink);
    padding: 72px 0 64px;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.hero-page::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201,162,75,0.14) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.hero-page::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201,162,75,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.hero-page .container { position: relative; z-index: 2; }
.hero-page h1 { color: var(--white); font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 12px; }
.hero-page .hero-sub {
    color: var(--text-on-dark-muted);
    font-size: 15px;
    max-width: 480px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.7;
}

.luxury-divider {
    width: 64px;
    height: 3px;
    background: var(--gold);
    border-radius: var(--r-pill);
    margin: 16px auto 20px;
}

/* =====================================================================
   7. BUTTONS
   ===================================================================== */
.btn-luxury, .btn-premium {
    background: var(--gold);
    color: var(--ink) !important;
    padding: 14px 32px;
    border-radius: var(--r-pill);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 11px;
    border: 2px solid var(--gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: var(--shadow-gold);
    transition: all var(--t-base) var(--ease);
}
.btn-luxury:hover, .btn-premium:hover {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--white) !important;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}
.btn-luxury:active, .btn-premium:active { transform: translateY(0); }

.btn-luxury-outline, .btn-premium-outline {
    background: transparent;
    color: var(--gold-deep) !important;
    padding: 13px 30px;
    border-radius: var(--r-pill);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 11px;
    border: 2px solid var(--gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    transition: all var(--t-base) var(--ease);
}
.btn-luxury-outline:hover, .btn-premium-outline:hover {
    background: var(--gold);
    color: var(--ink) !important;
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.btn-dark-lux {
    background: var(--ink);
    color: var(--white) !important;
    padding: 14px 32px;
    border-radius: var(--r-pill);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 11px;
    border: 2px solid var(--ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    transition: all var(--t-base) var(--ease);
    box-shadow: var(--shadow-md);
}
.btn-dark-lux:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--ink) !important;
    transform: translateY(-3px);
}

/* =====================================================================
   8. CARDS
   ===================================================================== */
.luxury-card {
    background: var(--surface-card);
    border-radius: var(--r-xl);
    border: 1px solid var(--surface-border);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease), border-color var(--t-base) var(--ease);
}
.luxury-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201,162,75,0.35);
}
.luxury-card .card-accent-top {
    height: 4px;
    background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright));
    flex-shrink: 0;
}

.card-premium {
    background: var(--surface-card);
    border-radius: var(--r-xl);
    padding: 40px;
    border: 1px solid var(--surface-border);
    height: 100%;
    transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease), border-color var(--t-base) var(--ease);
    box-shadow: var(--shadow-xs);
}
.card-premium:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}
.card-premium .icon-box {
    width: 60px;
    height: 60px;
    background: var(--ink);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 22px;
    margin-bottom: 28px;
}

/* =====================================================================
   9. FORMS
   ===================================================================== */
.form-label-lux {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--text-muted);
    margin-bottom: 10px;
    display: block;
}

.form-control-lux,
.form-select-lux {
    background-color: var(--surface-alt) !important;
    border: 1.5px solid var(--surface-border) !important;
    border-radius: var(--r-md) !important;
    padding: 14px 16px !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    color: var(--text-heading) !important;
    box-shadow: none !important;
    transition: border-color var(--t-base) var(--ease), background-color var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease) !important;
    width: 100%;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.form-control-lux:focus,
.form-select-lux:focus {
    background-color: var(--white) !important;
    border-color: var(--gold) !important;
    box-shadow: 0 0 0 4px var(--gold-tint) !important;
    outline: none;
}
.form-control-lux::placeholder { color: var(--text-faint); font-weight: 400; }
textarea.form-control-lux { resize: vertical; min-height: 100px; }

.input-group-lux {
    position: relative;
}
.input-group-lux .input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 14px;
    z-index: 2;
}
.input-group-lux .form-control-lux { padding-left: 44px !important; }

/* =====================================================================
   10. BADGES / STATUS PILLS
   ===================================================================== */
.badge-lux {
    padding: 6px 14px;
    border-radius: var(--r-pill);
    font-weight: 700;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.badge-lux-warning { background: var(--warning-bg); color: var(--warning); }
.badge-lux-info    { background: var(--info-bg);    color: var(--info); }
.badge-lux-success { background: var(--success-bg); color: var(--success); }
.badge-lux-danger  { background: var(--danger-bg);  color: var(--danger); }
.badge-lux-primary { background: var(--gold-tint-2); color: var(--gold-deep); }

/* =====================================================================
   11. ALERTS
   ===================================================================== */
.alert-lux {
    border: none;
    border-radius: var(--r-lg);
    padding: 16px 20px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.alert-lux-danger  { background: var(--danger-bg);  color: var(--danger);  border-left: 4px solid var(--danger); }
.alert-lux-success { background: var(--success-bg); color: var(--success); border-left: 4px solid var(--success); }
.alert-lux-warning { background: var(--warning-bg); color: var(--warning); border-left: 4px solid var(--warning); }
.alert-lux-info    { background: var(--gold-tint);  color: var(--gold-deep); border-left: 4px solid var(--gold); }

/* =====================================================================
   12. AUTH PAGES (Login / Register)
   ===================================================================== */
.auth-page {
    background-color: var(--cream);
    background-image:
        radial-gradient(circle at 80% 10%, rgba(201,162,75,0.12) 0%, transparent 50%),
        radial-gradient(circle at 10% 90%, rgba(201,162,75,0.08) 0%, transparent 50%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 16px;
}

.auth-card {
    background: var(--white);
    border-radius: var(--r-2xl);
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-width: 440px;
    padding: 52px 48px;
    border: 1px solid rgba(201,162,75,0.12);
    position: relative;
    overflow: hidden;
}
.auth-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright));
}
.auth-logo {
    width: 72px; height: 72px;
    border-radius: 20px;
    object-fit: cover;
    border: 2px solid var(--surface-border);
    display: block;
    margin: 0 auto 24px;
    box-shadow: var(--shadow-md);
}
.auth-title {
    font-size: 28px;
    text-align: center;
    margin-bottom: 4px;
}
.auth-sub {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 36px;
    display: block;
}
.auth-card .btn-auth {
    width: 100%;
    padding: 15px;
    background: var(--ink);
    color: var(--white) !important;
    border: none;
    border-radius: var(--r-md);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    cursor: pointer;
    transition: all var(--t-base) var(--ease);
    margin-top: 8px;
    box-shadow: var(--shadow-md);
}
.auth-card .btn-auth:hover {
    background: var(--gold);
    color: var(--ink) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* =====================================================================
   13. INDEX / HOME PAGE
   ===================================================================== */
.hero-main {
    background: linear-gradient(150deg, #F6F5F1 0%, #FFFFFF 60%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}
.hero-main::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201,162,75,0.10) 0%, transparent 70%);
    border-radius: 50%;
}
.hero-main h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}
.hero-main h1 span { color: var(--gold-deep); font-style: italic; }
.hero-main .hero-desc {
    font-size: 17px;
    color: var(--text-body);
    line-height: 1.75;
    max-width: 500px;
    margin-bottom: 40px;
    font-weight: 400;
}
.hero-badges {
    display: flex;
    gap: 24px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--surface-border);
}
.hero-badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
}
.hero-badge-item .badge-icon {
    width: 36px; height: 36px;
    background: var(--gold-tint);
    color: var(--gold-deep);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}
.hero-badge-item span {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.stat-strip {
    background: var(--ink);
    padding: 40px 0;
}
.stat-item { text-align: center; }
.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 900;
    color: var(--gold);
    display: block;
    line-height: 1;
    margin-bottom: 6px;
}
.stat-label {
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-on-dark-muted);
}

/* =====================================================================
   14. SERVICES PAGE
   ===================================================================== */
.service-card {
    background: var(--white);
    border-radius: var(--r-xl);
    border: 1px solid var(--surface-border);
    box-shadow: var(--shadow-xs);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease), border-color var(--t-base) var(--ease);
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201,162,75,0.3);
}
.service-card-top {
    height: 5px;
    background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright));
}
.service-card-body {
    padding: 36px 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.service-icon {
    width: 56px; height: 56px;
    background: var(--gold-tint);
    color: var(--gold-deep);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 24px;
    transition: background var(--t-base) var(--ease), transform var(--t-base) var(--ease);
}
.service-card:hover .service-icon {
    background: var(--gold);
    color: var(--ink);
    transform: scale(1.1);
}
.service-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    line-height: 1.3;
}
.service-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 24px;
}
.service-card-pricing {
    background: var(--ink);
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.service-price-label {
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-on-dark-faint);
    display: block;
    margin-bottom: 4px;
}
.service-price {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--gold);
}
.service-duration {
    text-align: right;
}
.service-duration-label {
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-on-dark-faint);
    display: block;
    margin-bottom: 4px;
}
.service-duration-val {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
}
.service-card-footer {
    padding: 24px 32px;
    border-top: 1px solid var(--surface-border);
}

/* =====================================================================
   15. BOOKING PAGE
   ===================================================================== */
.booking-section { padding: 64px 0 80px; background: var(--surface-alt); }

.booking-selected-service {
    background: var(--ink);
    border-radius: var(--r-lg);
    padding: 28px 32px;
    margin-bottom: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--ink-border);
}
.booking-selected-service::after {
    content: '';
    position: absolute;
    right: -40px; top: -40px;
    width: 140px; height: 140px;
    background: radial-gradient(circle, rgba(201,162,75,0.18) 0%, transparent 70%);
    border-radius: 50%;
}
.booking-service-name {
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold);
    display: block;
    margin-bottom: 6px;
}
.booking-service-title {
    font-size: 22px;
    color: var(--white);
    margin-bottom: 6px;
}
.booking-service-desc {
    font-size: 13px;
    color: var(--text-on-dark-muted);
    line-height: 1.6;
    max-width: 400px;
    margin: 0;
}
.booking-price-wrap { text-align: right; flex-shrink: 0; }
.booking-price-label {
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold);
    display: block;
    margin-bottom: 6px;
}
.booking-price-val {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 900;
    color: var(--white);
}

.booking-form-card {
    background: var(--white);
    border-radius: var(--r-xl);
    border: 1px solid var(--surface-border);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}
.booking-form-header {
    padding: 28px 36px;
    border-bottom: 1px solid var(--surface-border);
    background: var(--surface-alt);
}
.booking-form-header h4 {
    font-size: 18px;
    margin: 0;
}
.booking-form-body { padding: 36px; }
.booking-form-body .form-group { margin-bottom: 24px; }

.booking-sidebar-card {
    background: var(--white);
    border-radius: var(--r-xl);
    border: 1px solid var(--surface-border);
    box-shadow: var(--shadow-soft);
    padding: 32px;
    position: sticky;
    top: 100px;
}
.booking-sidebar-card h5 {
    font-size: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--surface-border);
    margin-bottom: 24px;
}
.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--surface-border);
}
.summary-row:last-of-type { border-bottom: none; }
.summary-label {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-muted);
    flex-shrink: 0;
}
.summary-val {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-heading);
    text-align: right;
}
.summary-total {
    background: var(--ink);
    border-radius: var(--r-lg);
    padding: 20px 24px;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.summary-total-label {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-on-dark-muted);
}
.summary-total-val {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 900;
    color: var(--gold);
}
.booking-info-note {
    background: var(--gold-tint);
    border-left: 3px solid var(--gold);
    border-radius: 0 var(--r-md) var(--r-md) 0;
    padding: 14px 16px;
    margin-top: 20px;
    font-size: 12px;
    color: var(--gold-deep);
    font-weight: 600;
    line-height: 1.6;
}

/* =====================================================================
   16. BOOKINGS LIST PAGE
   ===================================================================== */
.bookings-section { padding: 64px 0 80px; background: var(--surface-alt); }

.booking-item-card {
    background: var(--white);
    border-radius: var(--r-xl);
    border: 1px solid var(--surface-border);
    box-shadow: var(--shadow-xs);
    overflow: hidden;
    transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease), border-color var(--t-base) var(--ease);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.booking-item-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201,162,75,0.3);
}
.booking-item-header {
    padding: 24px 28px;
    border-bottom: 1px solid var(--surface-border);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    background: var(--surface-alt);
}
.booking-item-id {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--text-muted);
    display: block;
    margin-bottom: 4px;
}
.booking-item-name {
    font-size: 17px;
    color: var(--text-heading);
    margin: 0;
}
.booking-item-body { padding: 28px; flex: 1; }
.detail-row {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}
.detail-row:last-child { margin-bottom: 0; }
.detail-icon {
    width: 32px; height: 32px;
    background: var(--gold-tint);
    color: var(--gold-deep);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}
.detail-content-label {
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--text-muted);
    display: block;
    margin-bottom: 2px;
}
.detail-content-val {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-heading);
    line-height: 1.4;
}
.detail-content-sub {
    font-size: 12px;
    color: var(--text-muted);
    display: block;
    margin-top: 1px;
}

.booking-price-strip {
    margin: 20px 0 0;
    background: var(--surface-alt);
    border-radius: var(--r-lg);
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--surface-border);
}
.booking-item-footer {
    padding: 20px 28px;
    border-top: 1px solid var(--surface-border);
}

/* =====================================================================
   17. BOOKING DETAIL PAGE
   ===================================================================== */
.detail-section { padding: 64px 0 80px; background: var(--surface-alt); }

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-heading);
    margin-bottom: 28px;
    transition: color var(--t-base) var(--ease);
}
.back-link:hover { color: var(--gold-deep); }
.back-link .back-icon {
    width: 32px; height: 32px;
    background: var(--white);
    border: 1px solid var(--surface-border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: background var(--t-base) var(--ease), border-color var(--t-base) var(--ease);
}
.back-link:hover .back-icon {
    background: var(--gold-tint);
    border-color: var(--gold);
    color: var(--gold-deep);
}

.detail-main-card {
    background: var(--white);
    border-radius: var(--r-xl);
    border: 1px solid var(--surface-border);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    margin-bottom: 24px;
}
.detail-main-header {
    padding: 28px 36px;
    border-bottom: 1px solid var(--surface-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.detail-txid-label {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--text-muted);
    display: block;
    margin-bottom: 4px;
}
.detail-txid {
    font-size: 28px;
    font-family: 'Playfair Display', serif;
    color: var(--text-heading);
    margin: 0;
}
.detail-main-body { padding: 36px; }

.bank-card {
    background: var(--surface-alt);
    border-radius: var(--r-lg);
    padding: 20px 24px;
    border: 1px solid var(--surface-border);
    margin-bottom: 16px;
}
.bank-card .bank-name {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--text-muted);
    display: block;
    margin-bottom: 4px;
}
.bank-card .bank-number {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 2px;
}
.bank-card .bank-holder {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
}

/* =====================================================================
   18. EMPTY STATES
   ===================================================================== */
.empty-state {
    background: var(--white);
    border-radius: var(--r-xl);
    border: 1px solid var(--surface-border);
    box-shadow: var(--shadow-soft);
    padding: 80px 48px;
    text-align: center;
    max-width: 440px;
    margin: 0 auto;
}
.empty-icon {
    width: 80px; height: 80px;
    background: var(--gold-tint);
    color: var(--gold);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 24px;
}
.empty-state h4 { font-size: 22px; margin-bottom: 12px; }
.empty-state p { font-size: 14px; color: var(--text-muted); margin-bottom: 32px; line-height: 1.7; }

/* =====================================================================
   19. FOOTER
   ===================================================================== */
.footer-luxury {
    background: var(--ink);
    padding: 72px 0 0;
}
.footer-brand h5 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--white);
    margin-bottom: 8px;
}
.footer-brand p {
    font-size: 13px;
    color: var(--text-on-dark-muted);
    line-height: 1.75;
    max-width: 280px;
}
.footer-section-title {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 20px;
    display: block;
}
.footer-link {
    display: block;
    color: var(--text-on-dark-muted);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 10px;
    transition: color var(--t-base) var(--ease);
    text-decoration: none;
}
.footer-link:hover { color: var(--gold); }
.footer-bottom {
    border-top: 1px solid var(--ink-border);
    padding: 20px 0;
    margin-top: 56px;
    text-align: center;
    font-size: 12px;
    color: var(--text-on-dark-faint);
}

/* =====================================================================
   20. ANIMATIONS
   ===================================================================== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
.animate-in { animation: fadeInUp 0.7s var(--ease) forwards; }
.animate-in-delay-1 { animation: fadeInUp 0.7s var(--ease) 0.1s backwards; }
.animate-in-delay-2 { animation: fadeInUp 0.7s var(--ease) 0.2s backwards; }
.animate-in-delay-3 { animation: fadeInUp 0.7s var(--ease) 0.3s backwards; }

/* =====================================================================
   21. RESPONSIVE
   ===================================================================== */
@media (max-width: 991px) {
    .hero-main { padding: 72px 0 56px; min-height: auto; }
    .booking-sidebar-card { position: static; }
    .booking-selected-service { flex-direction: column; align-items: flex-start; }
    .booking-price-wrap { text-align: left; }
}
@media (max-width: 767px) {
    .hero-main h1 { font-size: 2.2rem; }
    .hero-badges { flex-wrap: wrap; gap: 16px; }
    .hero-page h1 { font-size: 1.8rem; }
    .auth-card { padding: 40px 28px; }
    .booking-form-body { padding: 24px; }
    .detail-main-header { flex-direction: column; align-items: flex-start; }
    .detail-main-body { padding: 24px; }
    .booking-item-header { flex-direction: column; }
    .section-py { padding: 56px 0; }
}
@media (max-width: 575px) {
    .btn-luxury, .btn-premium, .btn-luxury-outline, .btn-premium-outline, .btn-dark-lux { width: 100%; }
    .hero-page { padding: 52px 0 44px; }
    .empty-state { padding: 52px 24px; }
    .booking-sidebar-card { padding: 24px; }
    .booking-form-header { padding: 20px 24px; }
}

.section-py { padding: 80px 0; }