/* ============================================================
   Wolban Short Lets — Main Stylesheet
   Design System: Dark Luxury + Champagne Gold
   ============================================================ */

/* ── 1. CSS Custom Properties (Design Tokens) ─────────────── */
:root {
  /* Backgrounds */
  --bg-base:     #161616;
  --bg-surface:  #1E1E1E;
  --bg-elevated: #272727;
  --bg-card:     #222222;

  /* Brand accent — champagne gold */
  --gold:        #C9A870;
  --gold-light:  #E2C98B;
  --gold-dark:   #A68850;
  --gold-glow:   rgba(201, 168, 112, 0.18);

  /* Text */
  --text-primary:   #F5F3EE;
  --text-secondary: #B8B4AA;
  --text-muted:     #6E6A60;

  /* Borders */
  --border:        rgba(201, 168, 112, 0.12);
  --border-strong: rgba(201, 168, 112, 0.35);

  /* Overlays */
  --overlay-dark:  rgba(10, 10, 10, 0.55);
  --overlay-hero:  rgba(10, 10, 10, 0.38);

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', 'Poppins', sans-serif;

  /* Spacing scale */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;

  /* Border-radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  /* Shadows */
  --shadow-sm:   0 2px 12px rgba(0,0,0,0.35);
  --shadow-md:   0 6px 28px rgba(0,0,0,0.5);
  --shadow-lg:   0 16px 56px rgba(0,0,0,0.65);
  --shadow-gold: 0 4px 24px rgba(201,168,112,0.18);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.18s var(--ease);
  --transition-base: 0.30s var(--ease);
  --transition-slow: 0.50s var(--ease);

  /* Navbar height */
  --navbar-h: 72px;
}

/* ── 2. Reset & Base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.7;
  font-size: 1rem;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition-fast);
}
a:hover { color: var(--gold-light); }

img { display: block; max-width: 100%; height: auto; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-primary);
}

p { color: var(--text-secondary); }
ul { list-style: none; }

/* ── 3. Utility ───────────────────────────────────────────── */
.text-gold   { color: var(--gold) !important; }
.text-white  { color: var(--text-primary) !important; }
.text-light-custom { color: var(--text-secondary) !important; }
.bg-surface  { background-color: var(--bg-surface) !important; }
.bg-elevated { background-color: var(--bg-elevated) !important; }

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
  display: inline-block;
}
.section-title::after {
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  background: var(--gold);
  margin-top: 10px;
  border-radius: 2px;
  transition: width var(--transition-base);
}

.section-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--text-secondary);
  line-height: 1.85;
}

.badge-gold {
  display: inline-block;
  padding: 4px 16px;
  background: var(--gold-glow);
  border: 1px solid var(--border-strong);
  border-radius: 50px;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 1rem;
}

/* ── 4. Buttons ───────────────────────────────────────────── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  background: var(--gold);
  color: #0A0A0A !important;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  border-radius: var(--radius-md);
  border: 2px solid var(--gold);
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition-base), color var(--transition-base),
              transform var(--transition-fast), box-shadow var(--transition-base);
}
.btn-gold:hover {
  background: transparent;
  color: var(--gold) !important;
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 30px;
  background: transparent;
  color: var(--gold) !important;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  border-radius: var(--radius-md);
  border: 2px solid var(--gold);
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition-base), color var(--transition-base),
              transform var(--transition-fast), box-shadow var(--transition-base);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: #0A0A0A !important;
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

/* ── 5. Page Loader ───────────────────────────────────────── */
#page-loader {
  position: fixed;
  inset: 0;
  background: var(--bg-base);
  z-index: 999999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: opacity 0.55s var(--ease), visibility 0.55s;
}
#page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-wordmark {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  color: var(--text-primary);
}
.loader-wordmark span { color: var(--gold); }
.loader-ring {
  width: 38px;
  height: 38px;
  border: 3px solid var(--border);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
}

/* ── 6. Navbar ────────────────────────────────────────────── */
.navbar-custom {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--navbar-h);
  z-index: 9999;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, rgba(22,22,22,0.88) 0%, rgba(22,22,22,0.65) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition-base), box-shadow var(--transition-base),
              border-color var(--transition-base);
}
.navbar-custom.scrolled {
  background: rgba(22,22,22,0.97);
  box-shadow: 0 4px 40px rgba(0,0,0,0.6);
  border-bottom-color: var(--border-strong);
}

.navbar-brand-wolban {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-decoration: none;
}
.navbar-brand-wolban .nb-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  transition: color var(--transition-fast);
}
.navbar-brand-wolban .nb-sub {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-body);
}
.navbar-brand-wolban:hover .nb-name { color: var(--gold); }

.navbar-nav .nav-link {
  color: var(--text-secondary) !important;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 8px 14px !important;
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background var(--transition-fast);
  position: relative;
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: width var(--transition-base);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--text-primary) !important;
  background: var(--gold-glow);
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { width: 55%; }

.navbar-custom .dropdown-menu {
  background: #272727;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  margin-top: 8px;
}
.navbar-custom .dropdown-item {
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  font-size: 0.875rem;
  transition: background var(--transition-fast), color var(--transition-fast);
}
.navbar-custom .dropdown-item:hover {
  background: var(--gold-glow);
  color: var(--gold);
}

.navbar-toggler {
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
  background: transparent;
}
.navbar-toggler:focus { box-shadow: 0 0 0 3px var(--gold-glow); outline: none; }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%23C9A870' stroke-width='2.2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.nav-cta {
  padding: 9px 22px !important;
  background: var(--gold) !important;
  color: #0A0A0A !important;
  border-radius: var(--radius-md) !important;
  font-weight: 700 !important;
  font-size: 0.83rem !important;
  letter-spacing: 0.04em !important;
  margin-left: 10px;
  transition: transform var(--transition-fast), box-shadow var(--transition-base),
              background var(--transition-fast) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-2px) !important;
  box-shadow: var(--shadow-gold) !important;
}

/* ── 7. Hero Carousel ─────────────────────────────────────── */
.hero-wrap {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}
.hero-carousel,
.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
  height: 100%;
}
.hero-carousel .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.72);
}

/* Overlay content */
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--navbar-h) 1.5rem 2rem;  /* top offset = navbar height */
  background: linear-gradient(180deg, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.18) 100%);
}

.hero-content .badge-gold {
  animation: fadeInDown 0.8s var(--ease) both;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 6vw, 5rem);
  font-weight: 700;
  color: #fff;
  text-shadow: 0 4px 32px rgba(0,0,0,0.65);
  margin-bottom: 1rem;
  animation: fadeInUp 0.9s 0.15s var(--ease) both;
  line-height: 1.2;
}
.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  color: rgba(255,255,255,0.88);
  max-width: 540px;
  margin: 0 auto 2.2rem;
  font-weight: 300;
  animation: fadeInUp 0.9s 0.3s var(--ease) both;
  text-shadow: 0 2px 12px rgba(0,0,0,0.55);
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeInUp 0.9s 0.45s var(--ease) both;
}

/* Prev/Next */
.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(6px);
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  opacity: 1;
  transition: background var(--transition-base);
}
.carousel-control-prev { left: 24px; }
.carousel-control-next { right: 24px; }
.carousel-control-prev:hover,
.carousel-control-next:hover { background: var(--gold-glow); border-color: var(--border-strong); }
.carousel-control-prev-icon,
.carousel-control-next-icon { width: 17px; height: 17px; }

/* Indicators */
.carousel-indicators { bottom: 24px; gap: 8px; }
.carousel-indicators [data-bs-target] {
  width: 28px; height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,0.35);
  border: none;
  transition: background var(--transition-base), width var(--transition-base);
}
.carousel-indicators .active { background: var(--gold); width: 48px; }

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 11;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.65);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
  cursor: pointer;
  text-decoration: none;
}
.scroll-hint i { font-size: 1.1rem; }

/* ── 8. Feature Strip ─────────────────────────────────────── */
.feature-strip {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 26px 20px;
  border-right: 1px solid var(--border);
  height: 100%;
}
.feature-item:last-child { border-right: none; }
.feature-item__icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: var(--gold-glow);
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
}
.feature-item h5 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 2px;
  font-family: var(--font-body);
}
.feature-item p {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.4;
}

/* ── 9. Apartment Showcase ────────────────────────────────── */
.apt-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  height: 500px;
  transition: transform var(--transition-base), box-shadow var(--transition-base),
              border-color var(--transition-base);
  display: block;
  text-decoration: none !important;
}
.apt-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-strong);
}
.apt-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.52);
  transition: transform var(--transition-slow), filter var(--transition-base);
}
.apt-card:hover .apt-card__img {
  transform: scale(1.07);
  filter: brightness(0.42);
}
.apt-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem 2rem 2rem;
  background: linear-gradient(0deg, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.45) 55%, transparent 100%);
}
.apt-card__tag {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 6px;
  font-family: var(--font-body);
}
.apt-card__title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: #fff;
  margin-bottom: 10px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.55);
  line-height: 1.2;
}
.apt-card__desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  margin-bottom: 1.4rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--transition-base), transform var(--transition-base);
}
.apt-card:hover .apt-card__desc { opacity: 1; transform: translateY(0); }
.apt-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-body);
}
.apt-card__cta i { transition: transform var(--transition-fast); }
.apt-card:hover .apt-card__cta i { transform: translateX(5px); }

/* ── 10. Why Choose Us (Values) ──────────────────────────── */
.value-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  height: 100%;
  transition: transform var(--transition-base), box-shadow var(--transition-base),
              border-color var(--transition-base);
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
  border-color: var(--border-strong);
}
.value-card__icon {
  width: 64px;
  height: 64px;
  background: var(--gold-glow);
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.value-card__icon i { color: var(--gold); font-size: 1.35rem; }
.value-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
}
.value-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin: 0;
}

/* ── 11. Page Hero (sub-pages) ────────────────────────────── */
.page-hero {
  position: relative;
  height: 48vh;
  min-height: 360px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding-bottom: 3rem;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.38);
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10,10,10,0.85) 100%);
}
.page-hero__content {
  position: relative;
  z-index: 2;
  padding: 0 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.page-hero__tag {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
  font-family: var(--font-body);
}
.page-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #fff;
  text-shadow: 0 3px 20px rgba(0,0,0,0.55);
  line-height: 1.2;
}

/* ── 12. Apartment Detail ─────────────────────────────────── */
.apt-detail {
  padding: var(--space-xl) 0;
  background: var(--bg-surface);
}
.apt-detail h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 1rem;
}
.apt-detail p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}
.apt-main-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.amenities-block { margin-top: 2rem; }
.amenities-block h4 {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 1rem;
}
.amenity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}
.amenity-grid li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-secondary);
}
.amenity-grid li i {
  color: var(--gold);
  font-size: 0.8rem;
  width: 14px;
  flex-shrink: 0;
}

/* Gallery */
.gallery-section {
  padding: var(--space-xl) 0;
  background: var(--bg-base);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  cursor: zoom-in;
  border: 1px solid var(--border);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow), filter var(--transition-base);
}
.gallery-item:hover img { transform: scale(1.06); filter: brightness(0.6); }
.gallery-zoom {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  opacity: 0;
  transition: opacity var(--transition-base);
}
.gallery-item:hover .gallery-zoom { opacity: 1; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0,0,0,0.95);
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.8);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  transition: color var(--transition-fast);
}
.lightbox-close:hover { color: var(--gold); }

/* ── 13. About Page ───────────────────────────────────────── */
.about-detail {
  padding: var(--space-xl) 0;
  background: var(--bg-surface);
}
.about-detail h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  margin-bottom: 0.75rem;
}
.about-detail p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: var(--space-md);
}
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 10px;
}
.about-list li::before {
  content: '';
  display: block;
  width: 7px;
  height: 7px;
  min-width: 7px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 8px;
}

/* ── 14. Custom Video Player ──────────────────────────────── */
.vid-wrap {
  position: relative;
  background: #000;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  user-select: none;
}
.vid-wrap video {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  cursor: pointer;
}
/* Big play overlay */
.vid-big-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  background: rgba(0,0,0,0.28);
  transition: opacity var(--transition-base);
}
.vid-big-play.gone { opacity: 0; pointer-events: none; }
.big-play-btn {
  width: 76px;
  height: 76px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0A0A0A;
  font-size: 1.6rem;
  padding-left: 5px;
  cursor: pointer;
  transition: transform var(--transition-fast), background var(--transition-fast);
  animation: pulse-gold 2.5s infinite;
}
.big-play-btn:hover { transform: scale(1.1); background: var(--gold-light); }

/* Controls bar */
.vid-controls-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
  background: linear-gradient(0deg, rgba(10,10,10,1) 0%, rgba(10,10,10,0.7) 55%, transparent 100%);
  padding: 36px 14px 12px;
  opacity: 0;
  transition: opacity var(--transition-base);
}
.vid-wrap:hover .vid-controls-bar,
.vid-controls-bar.visible { opacity: 1; }

/* Scrubber */
.vid-scrubber {
  height: 4px;
  background: rgba(255,255,255,0.22);
  border-radius: 4px;
  cursor: pointer;
  margin-bottom: 10px;
  position: relative;
  transition: height var(--transition-fast);
}
.vid-scrubber:hover { height: 6px; }
.vid-scrubber-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 4px;
  width: 0%;
  pointer-events: none;
  transition: width 0.1s linear;
}
.vid-scrubber-thumb {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 14px;
  height: 14px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  transition: transform var(--transition-fast);
  left: 0%;
}
.vid-scrubber:hover .vid-scrubber-thumb { transform: translate(-50%, -50%) scale(1); }

/* Buttons row */
.vid-btns {
  display: flex;
  align-items: center;
  gap: 2px;
}
.vid-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  cursor: pointer;
  padding: 5px 8px;
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background var(--transition-fast);
  line-height: 1;
}
.vid-btn:hover { color: var(--gold); background: var(--gold-glow); }
.vid-time {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  margin: 0 6px;
}
.vid-spacer { flex: 1; }
.vid-vol-group {
  display: flex;
  align-items: center;
  gap: 6px;
}
.vid-vol-slider {
  -webkit-appearance: none;
  width: 70px;
  height: 4px;
  background: rgba(255,255,255,0.25);
  border-radius: 4px;
  outline: none;
  cursor: pointer;
}
.vid-vol-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
  cursor: pointer;
}

/* ── 15. Contact Page ─────────────────────────────────────── */
.contact-wrap {
  padding: var(--space-xl) 0;
  background: var(--bg-surface);
}
.contact-info-box {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  height: 100%;
}
.contact-info-box h3 {
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 1.8rem;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.ci-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 1.4rem;
}
.ci-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: var(--gold-glow);
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.9rem;
}
.ci-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 3px;
}
.ci-val {
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.ci-val a {
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}
.ci-val a:hover { color: var(--gold); }
.social-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 0.5rem; }
.social-link {
  width: 44px;
  height: 44px;
  background: var(--gold-glow);
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  transition: background var(--transition-base), color var(--transition-base),
              transform var(--transition-fast), box-shadow var(--transition-base);
}
.social-link:hover {
  background: var(--gold);
  color: #0A0A0A;
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.form-outer {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.form-outer iframe {
  border: none;
  display: block;
  width: 100%;
  min-height: 700px;
  background: #fff;
}

/* ── 16. Footer ───────────────────────────────────────────── */
footer.site-footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding: var(--space-xl) 0 var(--space-lg);
  color: var(--text-muted);
}
.footer-brand .f-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  display: block;
}
.footer-brand .f-sub {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-top: 2px;
  font-family: var(--font-body);
}
.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 260px;
  margin-top: var(--space-sm);
}
.f-heading {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 1.2rem;
}
.f-links { display: flex; flex-direction: column; gap: 8px; }
.f-links a {
  color: var(--text-muted);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}
.f-links a:hover { color: var(--gold); padding-left: 4px; }
.f-links a i { font-size: 0.65rem; opacity: 0.6; }
.f-contact-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.85rem;
  margin-bottom: 10px;
}
.f-contact-row i {
  color: var(--gold);
  font-size: 0.8rem;
  width: 14px;
  margin-top: 3px;
  flex-shrink: 0;
}
.f-contact-row a {
  color: var(--text-muted);
  transition: color var(--transition-fast);
}
.f-contact-row a:hover { color: var(--gold); }
.f-social { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 1rem; }
.f-social a {
  width: 38px;
  height: 38px;
  background: var(--gold-glow);
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.9rem;
  transition: background var(--transition-base), color var(--transition-base),
              transform var(--transition-fast);
}
.f-social a:hover {
  background: var(--gold);
  color: #0A0A0A;
  transform: translateY(-3px);
}
.f-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: var(--space-lg) 0 var(--space-md);
}
.f-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ── 17. Scroll-Reveal ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-l {
  opacity: 0;
  transform: translateX(-26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal-l.visible { opacity: 1; transform: none; }
.reveal-r {
  opacity: 0;
  transform: translateX(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal-r.visible { opacity: 1; transform: none; }
.d1 { transition-delay: 0.10s; }
.d2 { transition-delay: 0.20s; }
.d3 { transition-delay: 0.30s; }
.d4 { transition-delay: 0.40s; }

/* ── 18. Keyframes ────────────────────────────────────────── */
@keyframes fadeInUp   { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:none} }
@keyframes fadeInDown { from{opacity:0;transform:translateY(-16px)} to{opacity:1;transform:none} }
@keyframes bounce {
  0%,100% { transform:translateX(-50%) translateY(0) }
  50%     { transform:translateX(-50%) translateY(8px) }
}
@keyframes pulse-gold {
  0%  { box-shadow:0 0 0 0 rgba(201,168,112,.55) }
  70% { box-shadow:0 0 0 18px rgba(201,168,112,0) }
  100%{ box-shadow:0 0 0 0 rgba(201,168,112,0) }
}
@keyframes spin { to { transform:rotate(360deg) } }

/* ── 19. Responsive ───────────────────────────────────────── */
@media (max-width: 991px) {
  .navbar-custom .navbar-collapse {
    background: rgba(12,12,12,0.98);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-md);
    margin-top: 10px;
    padding: 12px;
  }
  .nav-cta { margin: 8px 0 4px; }
  .feature-item { border-right: none; border-bottom: 1px solid var(--border); }
  .feature-item:last-child { border-bottom: none; }
}
@media (max-width: 768px) {
  :root { --navbar-h: 64px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .apt-main-img { height: 260px; }
  .apt-card { height: 380px; }
  .apt-card__desc { opacity: 1 !important; transform: none !important; }
  .vid-vol-group { display: none; }
  .f-bottom { justify-content: center; text-align: center; }
  .page-hero { height: 40vh; min-height: 280px; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .amenity-grid { grid-template-columns: 1fr; }
  .carousel-control-prev, .carousel-control-next { display: none; }
  .hero-actions { flex-direction: column; align-items: stretch; }
}

/* ── 20. Bootstrap Overrides ──────────────────────────────── */
.container { max-width: 1200px; }
