/* Premium Wellness & Recovery Center - Luxury Dark Theme Stylesheet */

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

:root {
    --bg-dark: #040c14; /* Deep luxury navy-black background */
    --bg-card: rgba(8, 28, 45, 0.6); /* Translucent navy card */
    --navy-blue: #081C2D;
    --emerald-green: #0B6E4F;
    --gold: #D4B570; /* Brightened premium gold accent (passes WCAG AA contrast) */
    --gold-hover: #E3C98F;
    --text-white: #FFFFFF;
    --text-muted: #F3F4F6; /* Extremely bright grey for body copy */
    --text-muted-dark: #CBD5E1; /* Bright grey for subtexts to prevent low contrast */
    --warm-beige: #F5F0E8;
    --border-color: rgba(212, 181, 112, 0.22);
    --gold-gradient: linear-gradient(135deg, #b39754 0%, #D4B570 50%, #e9d8a6 100%);
    --font-heading: 'Playfair Display', 'Cormorant Garamond', serif;
    --font-body: 'Poppins', 'Inter', sans-serif;
}

/* Contrast & Accessibility Overrides */
.text-muted {
    color: #D1D5DB !important; /* Brighter fallback grey */
}
.text-muted-dark {
    color: #CBD5E1 !important; /* Brighter subtext grey */
}
.text-white-50 {
    color: rgba(255, 255, 255, 0.8) !important; /* Brighter white opacity text */
}
.small.text-white-50 {
    color: rgba(255, 255, 255, 0.8) !important;
}
.gallery-overlay p.small.text-white-50 {
    color: rgba(255, 255, 255, 0.9) !important;
}
.therapy-benefits li {
    color: #E5E7EB !important; /* Ensure therapy lists are readable */
}
.luxury-input::placeholder {
    color: #9CA3AF !important; /* Visible placeholder text */
}
select.luxury-input option {
    background-color: #081C2D !important;
    color: #FFFFFF !important;
}

/* Global Reset & Body */
body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-body);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6, .luxury-font {
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

p {
    font-family: var(--font-body);
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.7;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-hover);
}

/* Selection Highlight */
::selection {
    background: var(--gold);
    color: var(--bg-dark);
}

/* Luxury Utilities */
.text-gold {
    color: var(--gold) !important;
}

.bg-luxury-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.4s ease;
}

.bg-luxury-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.05);
}

/* Header & Navbar */
.luxury-navbar {
    background: rgba(7, 9, 14, 0.9) !important;
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    transition: all 0.3s ease;
}

.luxury-navbar.scrolled {
    padding: 12px 0;
    background: rgba(7, 9, 14, 0.98) !important;
}

.navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-white) !important;
    margin: 0 10px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--gold) !important;
}

/* Buttons */
.btn-gold {
    background: var(--gold);
    color: var(--bg-dark);
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 4px;
    border: 1px solid var(--gold);
    transition: all 0.4s ease;
}

.btn-gold:hover {
    background: transparent;
    color: var(--gold);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 4px;
    border: 1px solid var(--gold);
    transition: all 0.4s ease;
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--bg-dark);
}

/* ═══════════════════════════════════════════════════════
   LUXURY HERO — Cinematic Video + Parallax System
═══════════════════════════════════════════════════════ */

/* ── Core hero shell ── */
.luxury-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: #040c14;
}

/* ── Video layer ── */
.hero-video-wrapper {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.06);
    filter: brightness(0.55) saturate(0.85);
    will-change: transform;
    transition: transform 0.05s linear;
}

/* ── Cinematic letterbox bars ── */
.hero-letterbox {
    position: absolute;
    left: 0;
    right: 0;
    height: 60px;
    background: #000;
    z-index: 2;
    transition: height 0.6s ease;
}
.hero-letterbox-top    { top: 0; }
.hero-letterbox-bottom { bottom: 0; }

/* ── Multi-layer gradient overlays ── */
.hero-gradient-base {
    position: absolute;
    inset: 0;
    z-index: 3;
    background:
        linear-gradient(180deg,
            rgba(4,12,20,0.30) 0%,
            rgba(4,12,20,0.10) 40%,
            rgba(4,12,20,0.75) 80%,
            rgba(4,12,20,0.97) 100%);
}
.hero-gradient-left {
    position: absolute;
    inset: 0;
    z-index: 4;
    background:
        linear-gradient(90deg,
            rgba(4,12,20,0.88) 0%,
            rgba(4,12,20,0.55) 45%,
            transparent 100%);
}
.hero-gradient-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 220px;
    z-index: 5;
    background: linear-gradient(0deg, rgba(4,12,20,1) 0%, transparent 100%);
}

/* ── Film grain noise texture ── */
.hero-film-grain {
    position: absolute;
    inset: 0;
    z-index: 6;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 220px 220px;
    pointer-events: none;
    animation: grainShift 0.15s steps(1) infinite;
}
@keyframes grainShift {
    0%  { background-position: 0 0; }
    25% { background-position: -30px 10px; }
    50% { background-position: 10px -20px; }
    75% { background-position: -10px 30px; }
}

/* ── Floating ambient orbs ── */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    z-index: 4;
    pointer-events: none;
    animation: orbPulse 8s ease-in-out infinite alternate;
}
.hero-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(180,145,80,0.12) 0%, transparent 70%);
    top: -100px;
    left: -150px;
}
.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(11,110,79,0.09) 0%, transparent 70%);
    bottom: 50px;
    right: -80px;
    animation-delay: 4s;
}
@keyframes orbPulse {
    0%   { transform: scale(1) translate(0,0); opacity: 0.7; }
    100% { transform: scale(1.2) translate(20px,15px); opacity: 1; }
}

/* ── Main hero content layer ── */
.hero-main-content {
    position: relative;
    z-index: 10;
    flex: 1;
}

/* ── Eyebrow badge ── */
.hero-eyebrow-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    opacity: 0;
    transform: translateY(24px);
}
.hero-eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
    box-shadow: 0 0 12px rgba(212,181,112,0.8);
    animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
    0%, 100% { box-shadow: 0 0 8px rgba(212,181,112,0.6); }
    50%       { box-shadow: 0 0 18px rgba(212,181,112,1); }
}
.hero-eyebrow-text {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
}
.hero-eyebrow-line {
    flex: 1;
    max-width: 80px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

/* ── Main headline ── */
.hero-headline {
    font-family: var(--font-heading);
    font-size: clamp(3.4rem, 7vw, 6.5rem);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -1px;
    color: #fff;
    margin-bottom: 28px;
    opacity: 0;
    transform: translateY(32px);
}
.hero-headline-line {
    display: block;
}
.hero-headline-italic {
    font-style: italic;
    color: var(--gold);
    font-weight: 400;
}
.hero-headline-accent {
    font-size: 0.45em;
    vertical-align: super;
    color: var(--gold);
    font-style: normal;
    opacity: 0.75;
    margin-left: 2px;
}

/* ── Sub headline ── */
.hero-subheadline {
    font-family: var(--font-body);
    font-size: 1.08rem;
    font-weight: 300;
    line-height: 1.85;
    color: rgba(255,255,255,0.78);
    max-width: 560px;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(24px);
}

/* ── CTA Buttons ── */
.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(24px);
}

.hero-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 34px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 3px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    border: 1px solid transparent;
}

/* Primary: Gold filled */
.hero-btn-primary {
    background: var(--gold);
    color: #040c14;
    border-color: var(--gold);
    box-shadow: 0 8px 30px rgba(212,181,112,0.35);
}
.hero-btn-primary:hover {
    background: transparent;
    color: var(--gold);
    box-shadow: 0 12px 40px rgba(212,181,112,0.2);
    transform: translateY(-2px);
}
.hero-btn-primary:hover .hero-btn-icon { color: var(--gold); }

/* Shimmer animation on primary button */
.hero-btn-shimmer {
    position: absolute;
    top: -50%;
    left: -75%;
    width: 50%;
    height: 200%;
    background: linear-gradient(105deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: skewX(-20deg);
    transition: none;
}
.hero-btn-primary:hover .hero-btn-shimmer {
    animation: btnShimmer 0.65s ease forwards;
}
@keyframes btnShimmer {
    to { left: 150%; }
}

/* Secondary: Glass outline */
.hero-btn-secondary {
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.9);
    border-color: rgba(255,255,255,0.22);
    backdrop-filter: blur(6px);
}
.hero-btn-secondary:hover {
    background: rgba(212,181,112,0.12);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212,181,112,0.15);
}
.hero-btn-icon {
    font-size: 1rem;
    transition: color 0.3s;
}

/* ── Trust micro-badges ── */
.hero-trust-row {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
}
.hero-trust-badge {
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-body);
    font-size: 0.74rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.60);
    padding: 6px 14px;
    transition: color 0.3s;
}
.hero-trust-badge i {
    color: var(--gold);
    font-size: 0.85rem;
}
.hero-trust-badge:hover { color: rgba(255,255,255,0.90); }
.hero-trust-sep {
    width: 1px;
    height: 20px;
    background: rgba(255,255,255,0.18);
}

/* ── Floating stats card ── */
.hero-float-card {
    position: relative;
    background: rgba(8,28,45,0.55);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border: 1px solid rgba(212,181,112,0.25);
    border-radius: 12px;
    padding: 34px 30px;
    width: 240px;
    opacity: 0;
    transform: translateX(30px);
    overflow: hidden;
}
.hero-float-card-glow {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(212,181,112,0.18), transparent 70%);
    pointer-events: none;
}
.hero-float-stat {
    margin-bottom: 20px;
}
.hero-float-stat-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 600;
    color: #fff;
    line-height: 1;
    letter-spacing: -1px;
}
.hero-float-star { color: var(--gold); font-size: 1.1rem; margin-left: 3px; }
.hero-float-plus,
.hero-float-pct  { color: var(--gold); font-size: 1.5rem; }
.hero-float-stat-label {
    font-family: var(--font-body);
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.50);
    margin-top: 4px;
}
.hero-float-divider {
    width: 100%;
    height: 1px;
    background: rgba(212,181,112,0.15);
    margin: 16px 0;
}
.hero-float-cta {
    display: block;
    width: 100%;
    padding: 12px 0;
    text-align: center;
    font-family: var(--font-body);
    font-size: 0.76rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    border: 1px solid rgba(212,181,112,0.35);
    border-radius: 3px;
    margin-top: 8px;
    transition: all 0.35s ease;
    background: rgba(212,181,112,0.04);
}
.hero-float-cta:hover {
    background: var(--gold);
    color: #040c14;
    box-shadow: 0 6px 20px rgba(212,181,112,0.25);
}

/* ── Bottom stats strip ── */
.hero-stats-strip {
    position: relative;
    z-index: 10;
    border-top: 1px solid rgba(212,181,112,0.12);
    background: rgba(4,12,20,0.80);
    backdrop-filter: blur(12px);
    padding: 18px 0;
    opacity: 0;
    transform: translateY(16px);
}
.hero-stats-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
}
.hero-strip-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 36px;
    text-align: center;
}
.hero-strip-num {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: -0.5px;
    line-height: 1;
}
.hero-strip-label {
    font-family: var(--font-body);
    font-size: 0.68rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.50);
    margin-top: 5px;
}
.hero-strip-divider {
    width: 1px;
    height: 40px;
    background: rgba(212,181,112,0.15);
}

/* ── Scroll indicator ── */
.hero-scroll-indicator {
    position: absolute;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 11;
    text-align: center;
}
.hero-scroll-indicator a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}
.hero-scroll-label {
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.40);
}
.hero-scroll-icon { margin-top: 4px; }
.hero-scroll-mouse {
    width: 22px;
    height: 36px;
    border: 1.5px solid rgba(212,181,112,0.50);
    border-radius: 12px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}
.hero-scroll-wheel {
    width: 3px;
    height: 7px;
    background: var(--gold);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.8s ease infinite;
}
@keyframes scrollWheel {
    0%   { opacity: 1; top: 6px; }
    80%  { opacity: 0; top: 22px; }
    100% { opacity: 0; top: 6px; }
}

/* ── Video mute toggle ── */
.hero-video-toggle {
    position: absolute;
    bottom: 95px;
    right: 28px;
    z-index: 15;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(212,181,112,0.25);
    color: rgba(255,255,255,0.65);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}
.hero-video-toggle:hover {
    background: rgba(212,181,112,0.2);
    border-color: var(--gold);
    color: var(--gold);
}

/* ── Hero animation states ── */
[data-hero-anim] {
    opacity: 0;
}
[data-hero-anim].anim-done {
    animation: heroFadeUp 0.75s cubic-bezier(0.25,0.46,0.45,0.94) forwards;
}
[data-hero-anim="fade-left"].anim-done {
    animation: heroFadeLeft 0.75s cubic-bezier(0.25,0.46,0.45,0.94) forwards;
}
@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(32px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeLeft {
    from { opacity: 0; transform: translateX(32px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .hero-letterbox { height: 0; }
    .luxury-hero { height: auto; min-height: 100svh; }
    .hero-main-content .row { padding-top: 120px; padding-bottom: 160px; }
    .hero-stats-strip { padding: 14px 0; }
    .hero-strip-stat { padding: 6px 20px; }
    .hero-strip-divider { height: 30px; }
}
@media (max-width: 575px) {
    .hero-headline { font-size: clamp(2.8rem, 11vw, 4rem); }
    .hero-cta-group { flex-direction: column; }
    .hero-btn { justify-content: center; width: 100%; max-width: 320px; }
    .hero-trust-row { gap: 4px; }
    .hero-trust-badge { padding: 4px 8px; }
    .hero-stats-strip .hero-stats-inner { gap: 0; }
    .hero-strip-stat { padding: 6px 14px; }
    .hero-strip-num { font-size: 1.3rem; }
    .hero-scroll-indicator { bottom: 105px; }
}

/* Kept for backward compat (other pages may use these) */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(7,9,14,0.4) 0%, rgba(7,9,14,0.95) 100%),
                linear-gradient(to right, rgba(7,9,14,0.8) 0%, rgba(7,9,14,0.2) 100%);
    z-index: 2;
}
.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
}
.hero-title { font-size: 4.5rem; font-weight: 300; line-height: 1.1; margin-bottom: 25px; }
.hero-subtitle { font-size: 1.15rem; letter-spacing: 1px; margin-bottom: 40px; color: #e0e0e0; }

/* Features/Why Choose Us */
.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--gold);
    font-size: 1.5rem;
    background: rgba(212, 175, 55, 0.05);
    transition: all 0.3s ease;
}

.bg-luxury-card:hover .feature-icon-wrapper {
    background: var(--gold);
    color: var(--bg-dark);
}

/* Section Header */
.section-title-wrapper {
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 400;
}

/* Service / Signature Therapies */
.therapy-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.therapy-image-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.therapy-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.therapy-card:hover .therapy-image {
    transform: scale(1.1);
}

.therapy-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.therapy-benefits {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.therapy-benefits li {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.therapy-benefits li::before {
    content: "✓";
    color: var(--gold);
    margin-right: 10px;
    font-weight: bold;
}

/* Add-ons styling */
.addon-item {
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.addon-item:hover {
    border-color: var(--border-color);
    background: rgba(212, 175, 55, 0.03);
}

/* Before / After Slider Section */
.before-after-container {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.slider-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    user-select: none;
}

.img-before {
    z-index: 1;
}

.img-after {
    z-index: 2;
    clip-path: rect(0px 100% 450px 225px); /* Javascript updates this dynamic width */
}

.slider-label {
    position: absolute;
    bottom: 20px;
    background: rgba(7, 9, 14, 0.8);
    color: var(--text-white);
    padding: 6px 15px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    z-index: 3;
}

.label-before {
    left: 20px;
}

.label-after {
    right: 20px;
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: var(--gold);
    z-index: 4;
    cursor: ew-resize;
    transform: translateX(-50%);
}

.slider-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    font-size: 0.8rem;
    pointer-events: none;
}

/* Statistics styling */
.stat-number {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    color: var(--gold);
    margin-bottom: 5px;
}

.stat-label {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--text-muted);
}

/* Membership Tiers */
.membership-card {
    position: relative;
    overflow: hidden;
}

.membership-badge {
    position: absolute;
    top: 25px;
    right: -35px;
    background: var(--gold);
    color: var(--bg-dark);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 40px;
    transform: rotate(45deg);
    text-transform: uppercase;
}

/* Testimonial slider */
.testimonial-card {
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    position: relative;
}

.quote-icon {
    font-size: 3rem;
    color: rgba(212, 175, 55, 0.15);
    position: absolute;
    top: 20px;
    right: 30px;
}

/* Premium Image Gallery */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 250px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(7, 9, 14, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.4s ease;
    padding: 20px;
    border: 1px solid var(--gold);
    border-radius: 8px;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Booking Section Form styling */
.luxury-input {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(212, 175, 55, 0.2) !important;
    color: var(--text-white) !important;
    border-radius: 4px !important;
    padding: 12px 15px !important;
    transition: all 0.3s ease !important;
}

.luxury-input:focus {
    border-color: var(--gold) !important;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.15) !important;
    background: rgba(255, 255, 255, 0.04) !important;
}

select.luxury-input option {
    background-color: var(--bg-dark);
    color: var(--text-white);
}

.form-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
    margin-bottom: 8px;
}

/* Floating WhatsApp button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #25d366;
    animation: pulse 2s infinite;
    pointer-events: none;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* Responsive Overrides */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }
    .section-title {
        font-size: 2.2rem;
    }
    .before-after-container {
        height: 350px;
    }
    .img-after {
        clip-path: rect(0px 100% 350px 175px);
    }
}
@media (max-width: 575px) {
    .hero-title {
        font-size: 2.4rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .before-after-container {
        height: 280px;
    }
    .img-after {
        clip-path: rect(0px 100% 280px 140px);
    }
}
/* Glassmorphism Accents */
.glass-card {
    background: rgba(8, 28, 45, 0.45) !important;
    backdrop-filter: blur(12px) saturate(120%);
    -webkit-backdrop-filter: blur(12px) saturate(120%);
    border: 1px solid rgba(200, 167, 93, 0.25) !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.glass-card:hover {
    border-color: var(--gold) !important;
    box-shadow: 0 12px 40px 0 rgba(200, 167, 93, 0.15);
}

/* Video Testimonial Styles */
.video-testimonial-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    height: 320px;
    background: #000;
}

.video-testimonial-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.65;
    transition: transform 0.5s ease;
}

.video-testimonial-wrapper:hover .video-testimonial-img {
    transform: scale(1.05);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(200, 167, 93, 0.9);
    border: 2px solid #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #081C2D;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 0 25px rgba(200, 167, 93, 0.6);
    transition: all 0.3s ease;
    z-index: 5;
}

.video-play-btn:hover {
    background: #FFFFFF;
    color: #081C2D;
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 35px rgba(255, 255, 255, 0.8);
}

.video-info-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(4, 12, 20, 0.95));
    z-index: 4;
}

/* Lightbox Modal */
.custom-lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(4, 12, 20, 0.98);
    justify-content: center;
    align-items: center;
}

.lightbox-content-wrapper {
    position: relative;
    max-width: 90%;
    max-height: 85%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
}

.lightbox-close {
    position: absolute;
    top: -45px;
    right: 0;
    color: var(--gold);
    font-size: 2.2rem;
    cursor: pointer;
    transition: color 0.3s;
}

.lightbox-close:hover {
    color: #FFFFFF;
}

.lightbox-caption {
    margin-top: 15px;
    color: var(--warm-beige);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    text-align: center;
}

/* Sticky Bottom CTA Bar */
.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(8, 28, 45, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--gold);
    z-index: 998;
    padding: 15px 0;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 -10px 30px rgba(0,0,0,0.5);
}

.sticky-cta-bar.show {
    transform: translateY(0);
}

/* Scroll Indicators & Parallax */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--gold);
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-indicator i {
    font-size: 1.2rem;
    margin-top: 8px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

/* Trust Badges & Verified Client */
.verified-badge {
    background: rgba(11, 110, 79, 0.15);
    color: #2ec4b6;
    border: 1px solid rgba(11, 110, 79, 0.4);
    padding: 2px 8px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.trust-badge-card {
    background: rgba(8, 28, 45, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 25px;
    transition: all 0.3s ease;
}

.trust-badge-card:hover {
    border-color: var(--border-color);
    background: rgba(8, 28, 45, 0.5);
    transform: translateY(-3px);
}

.trust-badge-card i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 15px;
    display: inline-block;
}

/* Google Reviews Slider */
.reviews-slider-wrapper {
    overflow: hidden;
    position: relative;
    padding: 10px 0;
}

.reviews-track {
    display: flex;
    gap: 25px;
    width: max-content;
    animation: autoScroll 35s linear infinite;
}

.reviews-track:hover {
    animation-play-state: paused;
}

@keyframes autoScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.google-review-card {
    width: 320px;
    flex-shrink: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 25px;
}

.google-review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

/* Transformation Journey Progress Bar */
.progress-journey {
    height: 6px;
    background: rgba(255,255,255,0.06);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 8px;
}

.progress-journey-bar {
    height: 100%;
    background: var(--gold-gradient);
    border-radius: 10px;
    width: 0;
    transition: width 1.5s cubic-bezier(0.1, 1, 0.1, 1);
}

/* Scroll-triggered reveal animations */
.reveal {
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Text Accent Overrides */
.bg-emerald-badge {
    background: rgba(11, 110, 79, 0.15) !important;
    color: var(--emerald-green) !important;
    border: 1px solid var(--emerald-green) !important;
}

.text-emerald {
    color: #10B981 !important;
}
/* Inner Page Hero Spacing */
.inner-hero {
    margin-top: 80px;
    padding: 100px 0;
    position: relative;
    background: linear-gradient(rgba(4, 12, 20, 0.9), rgba(4, 12, 20, 0.95)),
                url('https://images.unsplash.com/photo-1540555700478-4be289fbecef?auto=format&fit=crop&q=80&w=1920');
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid var(--border-color);
}

/* Breadcrumbs */
.breadcrumb-item a {
    color: var(--gold) !important;
    text-decoration: none;
    font-size: 0.85rem;
}
.breadcrumb-item.active {
    color: #CBD5E1 !important;
    font-size: 0.85rem;
}

/* Timeline Layout */
.timeline-wrapper {
    position: relative;
    border-left: 2px solid var(--border-color);
    padding-left: 30px;
    margin-left: 15px;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-dot {
    position: absolute;
    left: -41px;
    top: 5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--gold);
    border: 4px solid var(--bg-dark);
}

/* Filter Controls */
.filter-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    color: #CBD5E1;
    padding: 8px 20px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
    background: var(--gold);
    color: var(--bg-dark);
    border-color: var(--gold);
}

/* Comparison Tables */
.comparison-table {
    border-collapse: separate;
    border-spacing: 0;
}
.comparison-table th {
    background: rgba(8, 28, 45, 0.8) !important;
    color: var(--gold);
    font-family: var(--font-heading);
    border-bottom: 2px solid var(--border-color) !important;
    padding: 18px !important;
}
.comparison-table td {
    padding: 15px 18px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    background: rgba(8, 28, 45, 0.4) !important;
    color: #E5E7EB;
}

/* Accordion Luxury Styles */
.accordion-item {
    background-color: rgba(8, 28, 45, 0.45) !important;
    border: 1px solid var(--border-color) !important;
    margin-bottom: 10px;
    border-radius: 8px !important;
    overflow: hidden;
}

.accordion-button {
    background-color: transparent !important;
    color: #FFFFFF !important;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    padding: 20px !important;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: var(--gold) !important;
    border-bottom: 1px solid var(--border-color);
}

.accordion-button::after {
    filter: invert(1);
}

.accordion-body {
    background-color: rgba(4, 12, 20, 0.25) !important;
    color: #CBD5E1;
    line-height: 1.8;
}

/* Star Rating Selector Form */
.rating-selector {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 8px;
}
.rating-selector input {
    display: none;
}
.rating-selector label {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: color 0.2s ease;
}
.rating-selector input:checked ~ label,
.rating-selector label:hover,
.rating-selector label:hover ~ label {
    color: var(--gold);
}

/* Sidebar Styling */
.sidebar-widget {
    background: rgba(8, 28, 45, 0.45);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
}

/* Image Filter States */
.gallery-grid .col-md-4, .gallery-grid .col-md-6 {
    transition: all 0.4s ease;
}
.gallery-grid .col-md-4.hide, .gallery-grid .col-md-6.hide {
    display: none !important;
}

/* ═══════════════════════════════════════════════════════
   PREMIUM GALLERY PAGE
═══════════════════════════════════════════════════════ */

/* ── Gallery Hero ── */
.gallery-hero-section {
    position: relative;
    padding: 180px 0 100px;
    overflow: hidden;
    background: #040c14;
}
.gallery-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1540555700478-4be289fbecef?auto=format&fit=crop&q=80&w=1920');
    background-size: cover;
    background-position: center;
    filter: brightness(0.18) saturate(0.6);
}
.gallery-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(4,12,20,0.4) 0%, rgba(4,12,20,0.92) 100%);
}
.gallery-hero-content {
    position: relative;
    z-index: 2;
}
.gallery-hero-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}
.gallery-hero-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    display: inline-block;
    box-shadow: 0 0 10px rgba(212,181,112,0.8);
}
.gallery-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 300;
    color: #fff;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}
.gallery-hero-sub {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: rgba(255,255,255,0.65);
    max-width: 580px;
    margin: 0 auto 32px;
    line-height: 1.8;
    font-weight: 300;
}

/* ── Gallery Mode Tabs ── */
.gallery-mode-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}
.gal-mode-btn {
    padding: 12px 28px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 1px solid rgba(212,181,112,0.25);
    background: rgba(255,255,255,0.04);
    color: rgba(255,255,255,0.60);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.35s ease;
    backdrop-filter: blur(6px);
}
.gal-mode-btn:hover,
.gal-mode-btn.active {
    background: var(--gold);
    color: #040c14;
    border-color: var(--gold);
    box-shadow: 0 6px 20px rgba(212,181,112,0.3);
}

/* ── Section Panel ── */
.gallery-section-panel { min-height: 60vh; }

/* ── Gallery filter row ── */
.gal-filter-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
    padding-top: 20px;
}
.gal-results-count {
    text-align: center;
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: rgba(255,255,255,0.40);
    letter-spacing: 1px;
    margin-bottom: 36px;
}

/* ── Masonry Grid ── */
.masonry-grid {
    columns: 4 280px;
    column-gap: 18px;
}
.masonry-item {
    break-inside: avoid;
    margin-bottom: 18px;
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.masonry-item.hide-item {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.96);
    height: 0;
    overflow: hidden;
    margin: 0;
}
.masonry-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 240px;
    border: 1px solid rgba(255,255,255,0.05);
    background: #081c2d;
    cursor: pointer;
}
.masonry-card.masonry-tall { height: 360px; }
.masonry-card.masonry-wide { height: 200px; }

.masonry-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.4s ease;
    filter: brightness(0.85);
}
.masonry-card:hover img {
    transform: scale(1.08);
    filter: brightness(0.55);
}

/* Masonry overlay */
.masonry-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(4,12,20,0.92) 100%);
    display: flex;
    align-items: flex-end;
    padding: 22px;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.masonry-card:hover .masonry-overlay { opacity: 1; }

.masonry-overlay-content { width: 100%; }
.masonry-category-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #040c14;
    background: var(--gold);
    padding: 3px 10px;
    border-radius: 50px;
    margin-bottom: 8px;
}
.masonry-overlay-content h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 400;
    color: #fff;
    margin: 0 0 4px;
    line-height: 1.3;
}
.masonry-overlay-content p {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: rgba(255,255,255,0.60);
    margin: 0 0 10px;
}
.masonry-zoom-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(212,181,112,0.15);
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 0.85rem;
    transition: all 0.3s;
}
.masonry-zoom-btn:hover {
    background: var(--gold);
    color: #040c14;
}

/* ─── PREMIUM LIGHTBOX ─── */
.prem-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
}
.prem-lightbox.open { display: flex; }
.prem-lb-bg {
    position: absolute;
    inset: 0;
    background: rgba(2,6,12,0.97);
    backdrop-filter: blur(12px);
    cursor: pointer;
}
.prem-lb-shell {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 92vw;
    max-height: 95vh;
    width: 1000px;
}
.prem-lb-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(212,181,112,0.15);
    border: 1px solid rgba(212,181,112,0.4);
    color: var(--gold);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}
.prem-lb-close:hover { background: var(--gold); color: #040c14; }

.prem-lb-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(212,181,112,0.12);
    border: 1px solid rgba(212,181,112,0.3);
    color: var(--gold);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 5;
}
.prem-lb-nav:hover { background: var(--gold); color: #040c14; }
.prem-lb-prev { left: -66px; }
.prem-lb-next { right: -66px; }

.prem-lb-frame {
    position: relative;
    width: 100%;
    max-height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    overflow: hidden;
    background: #000;
    border: 1px solid rgba(212,181,112,0.15);
}
.prem-lb-img {
    max-width: 100%;
    max-height: 65vh;
    object-fit: contain;
    display: block;
    transition: opacity 0.3s ease;
}
.prem-lb-loader {
    position: absolute;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(4,12,20,0.8);
}
.prem-lb-loader.visible { display: flex; }
.prem-lb-spin {
    width: 36px;
    height: 36px;
    border: 3px solid rgba(212,181,112,0.2);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.prem-lb-meta {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 16px 4px 10px;
}
.prem-lb-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: #fff;
    margin: 0 0 4px;
}
.prem-lb-desc {
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: rgba(255,255,255,0.50);
    margin: 0;
}
.prem-lb-counter {
    font-family: var(--font-body);
    font-size: 0.78rem;
    color: var(--gold);
    white-space: nowrap;
    padding-top: 4px;
}

/* Thumbnail strip */
.prem-lb-thumbs {
    display: flex;
    gap: 8px;
    flex-wrap: nowrap;
    overflow-x: auto;
    width: 100%;
    padding: 4px 0 6px;
    scrollbar-width: thin;
    scrollbar-color: rgba(212,181,112,0.3) transparent;
}
.prem-lb-thumb {
    flex-shrink: 0;
    width: 60px;
    height: 44px;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.55;
    transition: all 0.25s;
}
.prem-lb-thumb.active,
.prem-lb-thumb:hover { border-color: var(--gold); opacity: 1; }
.prem-lb-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ─── VIDEO GALLERY ─── */
.vid-featured-card {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(212,181,112,0.2);
    background: #000;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.vid-featured-thumb {
    position: relative;
    height: 480px;
    overflow: hidden;
}
.vid-featured-thumb > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.45);
    transition: transform 0.6s ease;
}
.vid-featured-card:hover .vid-featured-thumb > img { transform: scale(1.04); }
.vid-featured-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
}
.vid-play-ripple {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(212,181,112,0.12);
    animation: rippleOut 2s ease-out infinite;
}
@keyframes rippleOut {
    0%   { transform: scale(0.8); opacity: 0.8; }
    100% { transform: scale(2);   opacity: 0; }
}
.vid-play-btn-large {
    position: relative;
    width: 82px;
    height: 82px;
    border-radius: 50%;
    background: var(--gold);
    border: 3px solid #fff;
    color: #040c14;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 0 40px rgba(212,181,112,0.5);
    transition: all 0.3s;
    padding-left: 4px;
}
.vid-play-btn-large:hover {
    background: #fff;
    transform: scale(1.12);
    box-shadow: 0 0 60px rgba(255,255,255,0.4);
}
.vid-featured-meta {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    background: linear-gradient(transparent, rgba(4,12,20,0.95) 100%);
    text-align: left;
}
.vid-tag {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 8px;
    display: block;
}
.vid-featured-meta h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: #fff;
    margin: 0 0 8px;
}
.vid-featured-meta p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.60);
    margin: 0 0 12px;
    max-width: 560px;
}
.vid-duration {
    font-family: var(--font-body);
    font-size: 0.78rem;
    color: var(--gold);
    letter-spacing: 1px;
}

/* Video cards grid */
.vid-card {
    background: rgba(8,28,45,0.5);
    border: 1px solid rgba(212,181,112,0.15);
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    height: 100%;
}
.vid-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212,181,112,0.4);
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
.vid-thumb-wrap {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #000;
}
.vid-thumb-wrap > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.65);
    transition: transform 0.5s ease, filter 0.4s;
}
.vid-card:hover .vid-thumb-wrap > img {
    transform: scale(1.07);
    filter: brightness(0.45);
}
.vid-thumb-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.vid-play-btn-sm {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(212,181,112,0.9);
    border: 2px solid #fff;
    color: #040c14;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    padding-left: 3px;
}
.vid-card:hover .vid-play-btn-sm {
    background: #fff;
    transform: scale(1.15);
    box-shadow: 0 0 25px rgba(255,255,255,0.3);
}
.vid-dur-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.75);
    color: #fff;
    font-size: 0.72rem;
    padding: 2px 8px;
    border-radius: 4px;
    font-family: var(--font-body);
}
.vid-card-info {
    padding: 18px 20px 20px;
}
.vid-cat-badge {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    display: inline-block;
    margin-bottom: 8px;
}
.vid-card-info h5 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: #fff;
    margin: 0 0 8px;
}
.vid-card-info p {
    font-size: 0.80rem;
    color: rgba(255,255,255,0.50);
    margin: 0;
    line-height: 1.6;
}

/* ── Video Modal Player ── */
.vid-modal {
    position: fixed;
    inset: 0;
    z-index: 99998;
    display: none;
    align-items: center;
    justify-content: center;
}
.vid-modal.open { display: flex; }
.vid-modal-bg {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.97);
    cursor: pointer;
}
.vid-modal-shell {
    position: relative;
    z-index: 2;
    width: 860px;
    max-width: 95vw;
}
.vid-modal-close {
    position: absolute;
    top: -48px;
    right: 0;
    background: rgba(212,181,112,0.15);
    border: 1px solid rgba(212,181,112,0.35);
    color: var(--gold);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}
.vid-modal-close:hover { background: var(--gold); color: #040c14; }
.vid-modal-player {
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(212,181,112,0.2);
}
.vid-modal-player video {
    width: 100%;
    display: block;
    max-height: 75vh;
    background: #000;
}
.vid-modal-meta {
    padding: 14px 4px 0;
}
.vid-modal-meta h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: #fff;
    margin: 0;
}

/* ─── 360° VIRTUAL TOUR ─── */
.tour-room-selector {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}
.tour-room-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 16px 24px;
    background: rgba(8,28,45,0.5);
    border: 1px solid rgba(212,181,112,0.2);
    border-radius: 10px;
    color: rgba(255,255,255,0.55);
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.35s;
    min-width: 110px;
}
.tour-room-btn i { font-size: 1.4rem; color: rgba(212,181,112,0.5); transition: color 0.3s; }
.tour-room-btn:hover,
.tour-room-btn.active {
    border-color: var(--gold);
    background: rgba(212,181,112,0.1);
    color: var(--gold);
    box-shadow: 0 6px 20px rgba(212,181,112,0.15);
}
.tour-room-btn.active i,
.tour-room-btn:hover i { color: var(--gold); }

/* Tour Viewport */
.tour-viewport {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(212,181,112,0.2);
    background: #000;
    box-shadow: 0 20px 60px rgba(0,0,0,0.7);
    height: 520px;
}
.tour-pano-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    cursor: grab;
}
.tour-pano-wrap.dragging { cursor: grabbing; }
.tour-pano-track {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    will-change: transform;
    transition: none;
}
.tour-pano-img {
    height: 100%;
    width: auto;
    display: block;
    user-select: none;
    pointer-events: none;
    filter: brightness(0.8);
}

/* HUD Compass */
.tour-hud-compass {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1.5px solid rgba(212,181,112,0.4);
    background: rgba(4,12,20,0.7);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 10;
}
.tour-compass-needle {
    width: 2px;
    height: 18px;
    background: linear-gradient(180deg, #e74c3c 50%, var(--gold) 50%);
    border-radius: 1px;
    transition: transform 0.3s ease;
}
.tour-compass-label {
    font-family: var(--font-body);
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--gold);
    margin-top: 2px;
}

/* HUD Room Label */
.tour-hud-label {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(4,12,20,0.8);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(212,181,112,0.3);
    border-radius: 6px;
    padding: 8px 14px;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    z-index: 10;
}

/* Drag Hint */
.tour-drag-hint {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(4,12,20,0.75);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 8px 18px;
    font-family: var(--font-body);
    font-size: 0.72rem;
    color: rgba(255,255,255,0.55);
    letter-spacing: 1px;
    z-index: 10;
    animation: fadeHint 3s ease 2s forwards;
    white-space: nowrap;
}
@keyframes fadeHint { to { opacity: 0; pointer-events: none; } }

/* Hotspots */
.tour-hotspot {
    position: absolute;
    width: 28px;
    height: 28px;
    transform: translate(-50%,-50%);
    z-index: 12;
    cursor: pointer;
}
.tour-hotspot-pulse {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(212,181,112,0.3);
    border: 2px solid var(--gold);
    animation: hotspotPulse 2s ease infinite;
}
@keyframes hotspotPulse {
    0%,100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(212,181,112,0.5); }
    50%      { transform: scale(1.15); box-shadow: 0 0 0 8px rgba(212,181,112,0); }
}
.tour-hotspot-tip {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(4,12,20,0.92);
    border: 1px solid rgba(212,181,112,0.35);
    border-radius: 5px;
    padding: 5px 10px;
    font-family: var(--font-body);
    font-size: 0.70rem;
    color: var(--gold);
    white-space: nowrap;
    letter-spacing: 0.5px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s;
}
.tour-hotspot:hover .tour-hotspot-tip { opacity: 1; }

/* Tour Controls Bar */
.tour-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 15;
    background: rgba(4,12,20,0.80);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212,181,112,0.2);
    border-radius: 40px;
    padding: 8px 14px;
}
.tour-ctrl-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(212,181,112,0.2);
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s;
}
.tour-ctrl-btn:hover,
.tour-ctrl-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: #040c14;
}

/* Tour Room Details */
.tour-detail-card {
    display: none;
    background: rgba(8,28,45,0.5);
    border: 1px solid rgba(212,181,112,0.2);
    border-radius: 10px;
    padding: 28px 30px;
    gap: 22px;
}
.tour-detail-card.active { display: flex; align-items: flex-start; }
.tour-detail-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 10px;
    background: rgba(212,181,112,0.1);
    border: 1px solid rgba(212,181,112,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--gold);
}
.tour-detail-card h5 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: #fff;
    margin: 0 0 8px;
}
.tour-detail-card p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    margin: 0 0 14px;
    line-height: 1.7;
}
.tour-detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.tour-detail-tags span {
    font-family: var(--font-body);
    font-size: 0.70rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(212,181,112,0.08);
    border: 1px solid rgba(212,181,112,0.25);
    border-radius: 50px;
    padding: 3px 12px;
}

/* ── Responsive gallery ── */
@media (max-width: 991px) {
    .masonry-grid { columns: 3 220px; }
    .tour-viewport { height: 380px; }
    .vid-featured-thumb { height: 340px; }
    .prem-lb-prev { left: -50px; }
    .prem-lb-next { right: -50px; }
}
@media (max-width: 767px) {
    .masonry-grid { columns: 2 180px; }
    .tour-room-selector { gap: 8px; }
    .tour-room-btn { padding: 12px 16px; min-width: 80px; font-size: 0.70rem; }
    .tour-room-btn i { font-size: 1.1rem; }
    .tour-viewport { height: 280px; }
    .vid-featured-thumb { height: 240px; }
    .prem-lb-prev,.prem-lb-next { display: none; }
    .tour-detail-card { flex-direction: column; }
}
@media (max-width: 480px) {
    .masonry-grid { columns: 1; }
    .gallery-hero-section { padding: 140px 0 70px; }
    .gal-mode-btn { padding: 10px 18px; font-size: 0.75rem; }
}

