/* ============================================================
   Waterfalls Realty — 3D Design System
   Bootstrap 5 + Custom 3D CSS + Glassmorphism + Animations
   ============================================================ */

/* ── Variables ───────────────────────────────────────────────── */
:root {
  --navy:      #060d1e;
  --navy2:     #0a1628;
  --navy3:     #0f1f3d;
  --gold:      #c9a84c;
  --gold2:     #e8c96a;
  --gold3:     #f5dfa0;
  --white:     #ffffff;
  --text:      rgba(255,255,255,0.85);
  --text-muted:rgba(255,255,255,0.45);
  --border:    rgba(255,255,255,0.08);
  --glass-bg:  rgba(255,255,255,0.04);
  --glass-border: rgba(255,255,255,0.10);
  --shadow-3d: 0 20px 60px rgba(0,0,0,0.5), 0 8px 20px rgba(0,0,0,0.3);
  --shadow-gold: 0 0 30px rgba(201,168,76,0.25), 0 8px 20px rgba(0,0,0,0.3);
  --radius:    16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset & Base ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--navy);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }

/* ── Lightbox Button Styles ──────────────────────────────────── */
.lb-close:hover,
.lb-prev:hover,
.lb-next:hover {
  background: rgba(201, 168, 76, 0.3) !important;
  border-color: var(--gold) !important;
  color: var(--gold) !important;
}

.lb-prev:hover {
  left: 15px !important;
}

.lb-next:hover {
  right: 15px !important;
}

/* ── Urgency Strip ───────────────────────────────────────────── */
.urgency-strip {
  background: linear-gradient(90deg, #7f1d1d, #991b1b, #7f1d1d);
  background-size: 200% 100%;
  animation: urgencySlide 4s linear infinite;
  padding: 8px 0;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  position: relative;
  z-index: 1000;
}
.urgency-inner { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; padding: 0 16px; }
.urgency-divider { opacity: 0.4; }
@keyframes urgencySlide { 0%,100%{background-position:0% 50%} 50%{background-position:100% 50%} }

/* ── Navigation ──────────────────────────────────────────────── */
/* ── Navigation ──────────────────────────────────────────────── */
.wr-nav {
  position: sticky;
  top: 0;
  z-index: 10000;
  background: rgba(6,13,30,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  padding: 0 24px;
  transition: var(--transition);
}
.wr-nav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.4); }
.nav-container {
  overflow: visible;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 20px;
}
.nav-brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand-logo { width: 40px; height: 40px; object-fit: contain; display: block; flex-shrink: 0; }
.brand-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 900; font-size: 1.2rem; color: var(--navy);
  box-shadow: 0 4px 15px rgba(201,168,76,0.3);
}
.brand-name { display: block; font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1rem; color: #fff; line-height: 1.1; }
.brand-sub  { display: block; font-size: 0.55rem; letter-spacing: 0.12em; color: var(--gold); text-transform: uppercase; }

/* ── Main Navigation Links ────────────────────────────────────── */
.nav-links { list-style: none; display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 8px 14px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 0; height: 2px; background: var(--gold); border-radius: 2px; transition: width 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a:hover::after, .nav-links a.active::after { width: 60%; }

/* ── Dropdown Menus ──────────────────────────────────────────── */
.nav-item-dropdown { position: relative; }
.nav-link-dropdown {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}
.nav-link-dropdown i {
  font-size: 0.65rem;
  transition: transform 0.3s ease;
}
.nav-item-dropdown:hover .nav-link-dropdown i {
  transform: rotate(180deg);
}
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  list-style: none;
  background: rgba(6,13,30,0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 12px;
  min-width: 200px;
  padding: 8px 0;
  margin: 8px 0 0 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  z-index: 10001;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}
.nav-item-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown li {
  margin: 0;
}
.nav-dropdown a {
  display: block;
  padding: 12px 20px;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
  border-left: 3px solid transparent;
}
.nav-dropdown a:hover {
  background: rgba(201,168,76,0.1);
  color: var(--gold);
  border-left-color: var(--gold);
  padding-left: 22px;
}

/* ── CTA Buttons ─────────────────────────────────────────────── */
.nav-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.btn-wa-nav {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 16px;
  background: rgba(37,211,102,0.12);
  border: 1px solid rgba(37,211,102,0.25);
  border-radius: 8px;
  color: #25d366;
  font-size: 0.82rem;
  font-weight: 600;
  transition: var(--transition);
}
.btn-wa-nav:hover { background: rgba(37,211,102,0.2); color: #25d366; }
.btn-gold-nav {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 18px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  border-radius: 8px;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(201,168,76,0.25);
}
.btn-gold-nav:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(201,168,76,0.4); color: var(--navy); }

/* ── Hamburger Toggle ────────────────────────────────────────── */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 10002;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: #fff; border-radius: 2px; transition: var(--transition);
}

/* ── Section Labels ──────────────────────────────────────────── */
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.65rem; font-weight: 800; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 12px;
}
.section-label::before, .section-label::after {
  content: ''; display: block; width: 30px; height: 1px; background: var(--gold); opacity: 0.5;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.2;
  color: #fff;
  margin-bottom: 16px;
}
.section-title span { color: var(--gold); }
.section-sub { font-size: 1rem; color: var(--text-muted); max-width: 560px; }

/* ── Hero (Video Background) ─────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  perspective: 1000px;
  background: linear-gradient(-45deg, #060d1e, #0a1628, #0f1f3d, #0a1628);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
}
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  display: block;
  visibility: visible;
  opacity: 1;
}
.hero-youtube-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  transform: translate(-50%, -50%);
  border: none;
  pointer-events: none;
  z-index: 0;
}
.hero-animated-bg {
  position: absolute; inset: 0;
  background: linear-gradient(-45deg, #060d1e, #0a1628, #0f1f3d, #0a1628);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  z-index: 0;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(6,13,30,0.88) 0%, rgba(6,13,30,0.65) 50%, rgba(6,13,30,0.75) 100%);
  z-index: 1;
}
/* Animated depth orbs */
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.08; z-index: 1;
  animation: orbFloat 8s ease-in-out infinite;
}
.hero-orb-1 { width: 500px; height: 500px; background: var(--gold); top: -100px; right: -100px; animation-delay: 0s; }
.hero-orb-2 { width: 300px; height: 300px; background: #3b82f6; bottom: 100px; left: -50px; animation-delay: 3s; }
.hero-orb-3 { width: 200px; height: 200px; background: var(--gold2); top: 50%; left: 40%; animation-delay: 5s; }
@keyframes orbFloat { 0%,100%{transform:translateY(0) scale(1)} 50%{transform:translateY(-30px) scale(1.05)} }
.hero-content {
  position: relative; z-index: 2;
  padding: 120px 0 80px;
  width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 30px;
  padding: 6px 16px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease both;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
  animation: fadeInUp 0.9s ease 0.1s both;
}
.hero-title .gold-text { color: var(--gold); display: block; }
.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  max-width: 500px;
  margin-bottom: 32px;
  animation: fadeInUp 0.9s ease 0.2s both;
}
.hero-stats {
  display: flex; gap: 32px; flex-wrap: wrap;
  margin-bottom: 36px;
  animation: fadeInUp 0.9s ease 0.3s both;
}
.hero-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem; color: var(--gold); line-height: 1;
}
.hero-stat-label { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.hero-btns {
  display: flex; gap: 14px; flex-wrap: wrap;
  animation: fadeInUp 0.9s ease 0.4s both;
}
.hero-trust-strip {
  display: flex; gap: 20px; flex-wrap: wrap; margin-top: 40px;
  animation: fadeInUp 0.9s ease 0.5s both;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.75rem; color: rgba(255,255,255,0.55);
}
.trust-item i { color: var(--gold); font-size: 0.85rem; }

/* ── Search Widget ───────────────────────────────────────────── */
.search-widget {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-3d);
  animation: fadeInRight 0.9s ease 0.3s both;
  transform-style: preserve-3d;
}
.search-widget-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700; margin-bottom: 6px;
}
.search-widget-sub { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 20px; }
.search-field-label {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 6px;
  display: flex; align-items: center; gap: 6px;
}
.search-select {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  color: #fff;
  padding: 11px 14px;
  font-size: 0.85rem;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a84c' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  transition: var(--transition);
}
.search-select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.12); }
.search-select option { background: #0a1628; color: #fff; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn-3d-gold {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--navy);
  font-weight: 700; font-size: 0.9rem;
  border-radius: 12px;
  border: none; cursor: pointer;
  box-shadow: 0 6px 20px rgba(201,168,76,0.3), 0 2px 0 rgba(0,0,0,0.2);
  transition: var(--transition);
  transform: translateY(0);
  text-decoration: none;
  white-space: nowrap;
}
.btn-3d-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(201,168,76,0.45), 0 2px 0 rgba(0,0,0,0.2);
  color: var(--navy);
}
.btn-3d-gold:active { transform: translateY(0); }
.btn-3d-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px;
  background: transparent;
  color: #fff;
  font-weight: 600; font-size: 0.9rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.25);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-3d-outline:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.4); color: #fff; transform: translateY(-2px); }
.btn-3d-wa {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  font-weight: 700; font-size: 0.9rem;
  border-radius: 12px;
  border: none; cursor: pointer;
  box-shadow: 0 6px 20px rgba(37,211,102,0.3);
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-3d-wa:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(37,211,102,0.4); color: #fff; }
.btn-sm { padding: 9px 18px !important; font-size: 0.8rem !important; }

/* ── Glass Card ──────────────────────────────────────────────── */
.glass-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  transition: var(--transition);
}
.glass-card:hover { border-color: rgba(201,168,76,0.2); box-shadow: 0 16px 48px rgba(0,0,0,0.35); }

/* ── 3D Property Card ────────────────────────────────────────── */
.prop-card {
  background: rgba(10,22,40,0.8);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  transform-style: preserve-3d;
  perspective: 800px;
  cursor: pointer;
}
.prop-card:hover {
  transform: translateY(-8px) rotateX(2deg);
  border-color: rgba(201,168,76,0.3);
  box-shadow: var(--shadow-gold);
}
.prop-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.prop-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.prop-card:hover .prop-card-img img { transform: scale(1.08); }
.prop-card-badge {
  position: absolute; top: 12px; left: 12px;
  background: rgba(239,68,68,0.9);
  color: #fff; font-size: 0.62rem; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 6px;
  backdrop-filter: blur(4px);
}
.prop-card-badge.gold-badge { background: rgba(201,168,76,0.9); color: var(--navy); }
.prop-card-badge.blue-badge { background: rgba(59,130,246,0.9); }
.prop-card-price {
  position: absolute; bottom: 12px; right: 12px;
  background: rgba(6,13,30,0.9);
  border: 1px solid rgba(201,168,76,0.3);
  backdrop-filter: blur(8px);
  border-radius: 8px;
  padding: 6px 12px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem; color: var(--gold);
}
.prop-card-body { padding: 18px; }
.prop-card-location {
  font-size: 0.7rem; color: var(--gold); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 6px; display: flex; align-items: center; gap: 5px;
}
.prop-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 700; color: #fff;
  margin-bottom: 8px; line-height: 1.3;
}
.prop-card-desc { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 12px; line-height: 1.5; }
.prop-card-specs {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-bottom: 14px;
}
.prop-spec {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.72rem; color: rgba(255,255,255,0.5);
}
.prop-spec i { color: var(--gold); font-size: 0.7rem; }
.prop-card-plan {
  font-size: 0.72rem; color: rgba(255,255,255,0.4);
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 5px;
}
.prop-card-plan i { color: var(--gold); }
.prop-card-actions { display: flex; gap: 8px; }
.prop-card-actions .btn-3d-gold { flex: 1; justify-content: center; padding: 10px 14px; font-size: 0.8rem; border-radius: 8px; }
.prop-card-actions .btn-3d-wa   { padding: 10px 14px; border-radius: 8px; font-size: 0.8rem; }

/* ── Property of the Week ────────────────────────────────────── */
.potw-section { padding: 80px 0; }
.potw-card {
  display: grid; grid-template-columns: 1fr 1fr;
  background: rgba(10,22,40,0.9);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-3d);
}
.potw-img { position: relative; min-height: 400px; }
.potw-img img { width: 100%; height: 100%; object-fit: cover; }
.potw-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 60%, rgba(10,22,40,0.8));
}
.potw-badge {
  position: absolute; top: 20px; left: 20px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--navy); font-size: 0.65rem; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 20px;
  display: flex; align-items: center; gap: 6px;
}
.potw-content { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.potw-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700; color: #fff; margin-bottom: 12px;
}
.potw-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem; color: var(--gold); line-height: 1;
  margin-bottom: 4px;
}
.potw-price-label { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 20px; }
.potw-specs { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.potw-spec-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.82rem; color: rgba(255,255,255,0.65);
}
.potw-spec-item i { color: var(--gold); width: 16px; text-align: center; }
.potw-urgency {
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.2);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.78rem;
  color: #fca5a5;
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 8px;
}
.potw-btns { display: flex; gap: 10px; flex-wrap: wrap; }

/* ── Stats Counter ───────────────────────────────────────────── */
.stats-section { padding: 60px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat-item {
  background: rgba(10,22,40,0.8);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}
.stat-item:hover { background: rgba(201,168,76,0.05); }
.stat-num-big {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem; color: var(--gold); line-height: 1;
  margin-bottom: 6px;
}
.stat-label-big { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }

/* ── Testimonials ────────────────────────────────────────────── */
.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
  transform-style: preserve-3d;
}
.testimonial-card:hover {
  transform: translateY(-6px) rotateX(1deg);
  border-color: rgba(201,168,76,0.2);
  box-shadow: var(--shadow-gold);
}
.testimonial-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 14px; }
.testimonial-text { font-size: 0.88rem; color: rgba(255,255,255,0.7); font-style: italic; line-height: 1.7; margin-bottom: 18px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--navy); font-size: 0.9rem;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 0.88rem; }
.testimonial-role { font-size: 0.72rem; color: var(--text-muted); }

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: rgba(201,168,76,0.2); }
.faq-question {
  padding: 18px 20px;
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer;
  font-weight: 600; font-size: 0.9rem;
  transition: var(--transition);
}
.faq-question:hover { color: var(--gold); }
.faq-icon { color: var(--gold); font-size: 0.8rem; transition: transform 0.3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  padding: 0 20px;
  max-height: 0; overflow: hidden;
  font-size: 0.85rem; color: var(--text-muted); line-height: 1.7;
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 20px 18px; }

/* ── CTA Section ─────────────────────────────────────────────── */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.08) 0%, rgba(6,13,30,0) 100%);
  border-top: 1px solid rgba(201,168,76,0.1);
  border-bottom: 1px solid rgba(201,168,76,0.1);
  text-align: center;
}

/* ── Page Hero (non-homepage) ────────────────────────────────── */
.page-hero {
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(6, 13, 30, 0.85), rgba(10, 22, 40, 0.85)), url('../images/3.jpeg') center/cover no-repeat fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  text-align: center;
}

@media (max-width: 991px) {
  .page-hero {
    padding: 120px 0 80px;
    min-height: 300px;
    background-attachment: scroll; /* Better mobile performance */
  }
  
  .page-hero-content {
    width: 100%;
    padding: 0 20px;
  }

  .breadcrumb-wr {
    justify-content: center;
  }

  .section-title, .section-sub, .section-label {
    text-align: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }

  .row.g-5 {
    text-align: center;
  }

  .d-flex.gap-3.justify-content-center {
    justify-content: center !important;
  }
  
  /* Ensure all containers are properly centered */
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(6, 13, 30, 0.4) 100%);
  z-index: 0;
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 100px;
  background: linear-gradient(to top, var(--navy), transparent);
  z-index: 0;
}
.page-hero-content { position: relative; z-index: 1; }
.breadcrumb-wr { display: flex; align-items: center; gap: 8px; font-size: 0.78rem; color: var(--text-muted); margin-bottom: 16px; }
.breadcrumb-wr a { color: var(--gold); }
.breadcrumb-wr i { font-size: 0.6rem; }
.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700; color: #fff; line-height: 1.15;
}
.page-hero-title span { color: var(--gold); }

/* ── Property Detail ─────────────────────────────────────────── */
.prop-detail-hero {
  position: relative;
  min-height: 70vh;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.prop-detail-hero video, .prop-detail-hero img.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.prop-detail-hero .hero-overlay { background: linear-gradient(to top, rgba(6,13,30,0.95) 0%, rgba(6,13,30,0.5) 60%, rgba(6,13,30,0.3) 100%); }
.prop-detail-hero-content { position: relative; z-index: 2; padding: 40px 0; width: 100%; }
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 6px;
  border-radius: var(--radius);
  overflow: hidden;
  height: 420px;
}
.gallery-main { grid-row: 1 / 3; }
.gallery-main img, .gallery-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease; cursor: pointer;
}
.gallery-main img:hover, .gallery-thumb img:hover { transform: scale(1.03); }
.gallery-more {
  position: relative; overflow: hidden; cursor: pointer;
}
.gallery-more img { width: 100%; height: 100%; object-fit: cover; }
.gallery-more-overlay {
  position: absolute; inset: 0;
  background: rgba(6,13,30,0.7);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 700; color: #fff;
  pointer-events: none;
}
.payment-plan-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}
.payment-plan-card:hover, .payment-plan-card.selected {
  border-color: var(--gold);
  background: rgba(201,168,76,0.06);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(201,168,76,0.15);
}
.plan-popular {
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--navy);
  font-size: 0.6rem; font-weight: 800; letter-spacing: 0.1em;
  padding: 3px 12px; border-radius: 20px; text-transform: uppercase;
}
.plan-name { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }
.plan-price { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; color: var(--gold); line-height: 1; margin-bottom: 4px; }
.plan-monthly { font-size: 0.72rem; color: var(--text-muted); margin-bottom: 12px; }
.plan-features { font-size: 0.75rem; color: rgba(255,255,255,0.55); line-height: 1.8; }
.amenity-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 7px 12px;
  font-size: 0.78rem; color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.amenity-tag:hover { border-color: rgba(201,168,76,0.3); color: var(--gold); }
.amenity-tag i { color: var(--gold); font-size: 0.8rem; }

/* ── Booking Form ────────────────────────────────────────────── */
.booking-card {
  background: rgba(10,22,40,0.95);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-3d);
  position: sticky; top: 90px;
}
.booking-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700; margin-bottom: 4px;
}
.form-field { margin-bottom: 16px; }
.form-label-wr {
  display: block; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); margin-bottom: 6px;
}
.form-input {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: #fff;
  padding: 11px 14px;
  font-size: 0.88rem;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}
.form-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
  background: rgba(255,255,255,0.07);
}
.form-input::placeholder { color: rgba(255,255,255,0.25); }
textarea.form-input { resize: vertical; min-height: 90px; }
.form-secure { font-size: 0.7rem; color: var(--text-muted); text-align: center; margin-top: 10px; display: flex; align-items: center; justify-content: center; gap: 5px; }
.form-secure i { color: var(--gold); }

/* ── Admin Form Cards ────────────────────────────────────────── */
.admin-form-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 24px;
}
.admin-form-card .form-control, .admin-form-card .form-select {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  border-radius: 10px;
  font-size: 0.85rem;
  padding: 10px 14px;
}
.admin-form-card .form-control:focus, .admin-form-card .form-select:focus {
  background: rgba(255,255,255,0.07);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
  color: #fff;
}
.admin-form-card .form-label { font-size: 0.78rem; color: rgba(255,255,255,0.55); margin-bottom: 5px; }
.admin-form-card .form-select option { background: #0a1628; }

/* ── Footer ──────────────────────────────────────────────────── */
.wr-footer { background: #040a14; border-top: 1px solid rgba(201,168,76,0.1); }
.footer-top { padding: 60px 0 40px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-tagline { font-size: 0.82rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.footer-socials a:hover { background: rgba(201,168,76,0.1); border-color: rgba(201,168,76,0.3); color: var(--gold); transform: translateY(-3px); }
.footer-heading { font-family: 'Playfair Display', serif; font-size: 0.95rem; font-weight: 700; color: #fff; margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 0.82rem; color: var(--text-muted); transition: var(--transition); }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact-items { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 0.82rem; color: var(--text-muted); }
.footer-contact-item i { color: var(--gold); margin-top: 2px; width: 16px; flex-shrink: 0; }
.footer-contact-item a { color: var(--text-muted); transition: var(--transition); }
.footer-contact-item a:hover { color: var(--gold); }
.footer-certifications { display: flex; gap: 8px; flex-wrap: wrap; }
.cert-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 0.65rem; color: rgba(255,255,255,0.45);
}
.cert-badge i { color: var(--gold); }
.footer-bottom { padding: 18px 0; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.3); margin: 0; }
.footer-bottom-links { display: flex; gap: 16px; }
.footer-bottom-links a { font-size: 0.75rem; color: rgba(255,255,255,0.3); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--gold); }

/* ── Floating WhatsApp ───────────────────────────────────────── */
.float-wa {
  position: fixed; bottom: 90px; right: 24px; z-index: 9999;
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: #fff;
  box-shadow: 0 6px 25px rgba(37,211,102,0.4);
  animation: waPulse 2.5s ease-in-out infinite;
  transition: var(--transition);
}
.float-wa:hover { transform: scale(1.1); color: #fff; }
.float-wa-tooltip {
  position: absolute; right: 68px; top: 50%; transform: translateY(-50%);
  background: rgba(6,13,30,0.95);
  border: 1px solid rgba(37,211,102,0.3);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 0.75rem; font-weight: 600; color: #fff;
  white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.float-wa:hover .float-wa-tooltip { opacity: 1; }
@keyframes waPulse {
  0%,100% { box-shadow: 0 6px 25px rgba(37,211,102,0.4); }
  50%      { box-shadow: 0 6px 40px rgba(37,211,102,0.7), 0 0 0 12px rgba(37,211,102,0.08); }
}

/* ── Mobile CTA Bar ──────────────────────────────────────────── */
.mobile-cta-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9998;
  display: flex;
  background: rgba(6,13,30,0.98);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 10px 12px;
  gap: 8px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
}
.mobile-cta-wa, .mobile-cta-book {
  flex: 1; display: flex; align-items: center; justify-content: center;
  gap: 6px; padding: 12px; border-radius: 10px;
  font-weight: 700; font-size: 0.82rem; text-decoration: none;
}
.mobile-cta-wa   { background: linear-gradient(135deg, #25d366, #128c7e); color: #fff; }
.mobile-cta-book { background: linear-gradient(135deg, var(--gold), var(--gold2)); color: var(--navy); }

/* ── Animations ──────────────────────────────────────────────── */
@keyframes fadeInUp    { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeInDown  { from{opacity:0;transform:translateY(-20px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeInRight { from{opacity:0;transform:translateX(30px)} to{opacity:1;transform:translateX(0)} }
@keyframes fadeIn      { from{opacity:0} to{opacity:1} }
.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* ── Alert Messages ──────────────────────────────────────────── */
.alert-wr {
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 0.85rem;
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px;
}
.alert-success { background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.25); color: #4ade80; }
.alert-error   { background: rgba(239,68,68,0.1);  border: 1px solid rgba(239,68,68,0.25);  color: #f87171; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 991px) {
  /* Hide desktop navigation */
  .nav-links, .nav-cta {
    display: none !important;
  }

  /* Make the hamburger button always on top */
  .nav-toggle {
    display: flex !important;
    position: relative;
    z-index: 10002;
    background: transparent;
    border: none;
    cursor: pointer;
  }

  /* Note: Mobile menu styles are in navbar-mobile.css */
  /* Prevent body scroll when menu is open */
  body.nav-open {
    overflow: hidden !important;
  }

  /* Rest of your existing responsive rules (keep them) */
  .potw-card { grid-template-columns: 1fr; }
  .potw-img { min-height: 250px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: 250px 120px 120px; height: auto; }
  .gallery-main { grid-row: 1; }
  body { padding-bottom: 70px; }
}

.nav-toggle span {
  background-color: #fff;
  height: 2px;
  width: 24px;
  transition: all 0.3s;
}
/* Optional: animate the toggle when menu is open */
.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* container */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  z-index: 10;
}

/* arrow wrapper */
.scroll-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

/* arrow lines */
.scroll-arrow span {
  display: block;
  width: 18px;
  height: 18px;
  border-bottom: 2px solid #c9a84c;
  border-right: 2px solid #c9a84c;
  transform: rotate(45deg);
  animation: arrowAnim 1.8s infinite;
  opacity: 0;
}

/* staggered animation */
.scroll-arrow span:nth-child(1) {
  animation-delay: 0s;
}
.scroll-arrow span:nth-child(2) {
  animation-delay: 0.2s;
}
.scroll-arrow span:nth-child(3) {
  animation-delay: 0.4s;
}

/* animation */
@keyframes arrowAnim {
  0% {
    opacity: 0;
    transform: rotate(45deg) translate(-10px, -10px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: rotate(45deg) translate(10px, 10px);
  }
}
.prop-card-img {
  position: relative;
  overflow: hidden;
}

.prop-card-img img {
  transition: transform 0.6s ease;
}

.prop-card:hover img {
  transform: scale(1.08);
}

.prop-card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}
.prop-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.animate-on-scroll.show {
  opacity: 1;
  transform: translateY(0);
}
/* ── Premium Preloader ───────────────────────── */
#wr-preloader {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, #0f1f3d, #060d1e 60%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  overflow: hidden;
}

/* animated glow background */
#wr-preloader::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: rgba(201,168,76,0.15);
  filter: blur(120px);
  top: -100px;
  left: -100px;
  animation: floatGlow 6s ease-in-out infinite;
}

@keyframes floatGlow {
  0%,100% { transform: translate(0,0); }
  50% { transform: translate(80px,60px); }
}

/* center container */
.preloader-inner {
  text-align: center;
  color: #fff;
  z-index: 2;
}

/* logo */
.logo-wrap {
  position: relative;
  width: 110px;
  height: 110px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(201,168,76,0.4);
  animation: spin 2.5s linear infinite;
}

.logo-core {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.25), transparent 70%);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
/* text */
.preloader-text {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.preloader-sub {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-top: 12px;
}

/* progress bar */
.preloader-bar {
  width: 180px;
  height: 3px;
  background: rgba(255,255,255,0.1);
  margin: 14px auto;
  border-radius: 50px;
  overflow: hidden;
}

.preloader-progress {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #c9a84c, #e8c96a);
  animation: loadBar 2.2s ease forwards;
}

@keyframes loadBar {
  0% { width: 0%; }
  100% { width: 100%; }
}

/* spin */
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* fade out */
.preloader-hide {
  animation: fadeOut 0.6s ease forwards;
}

@keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}
/* ── CTA Section: 3D Luxury Background ─────────────────────── */
.cta-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  z-index: 1;

  /* Layered background: gradient + image */
  background:
    linear-gradient(135deg, rgba(6,13,30,0.92), rgba(10,22,40,0.95)),
    url('../images/bg/wfr4.jpg') center/cover no-repeat;
}

/* ── Soft Glow Effects (Luxury Lighting) ───────────────────── */
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,215,0,0.12), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(0,180,255,0.10), transparent 40%);
  z-index: 0;
  pointer-events: none;
}

/* ── Glass Layer (Depth Effect) ────────────────────────────── */
.cta-section::after {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(6px);
  background: rgba(255,255,255,0.02);
  z-index: 0;
}

/* ── Content Above Everything ─────────────────────────────── */
.cta-section .container {
  position: relative;
  z-index: 2;
}

/* ── Typography Enhancement ───────────────────────────────── */
.cta-section .section-title {
  color: #fff;
  text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

.cta-section .section-title span {
  color: #FFD700;
  text-shadow: 0 0 12px rgba(255,215,0,0.6);
}

/* ── Subtle Hover Depth (Optional) ─────────────────────────── */
.cta-section:hover {
  transform: translateY(-2px);
  transition: all 0.4s ease;
}

