/* ═══════════════════════════════════════════
   ROOT DESIGN TOKENS
═══════════════════════════════════════════ */
:root {
  --gold: #C9A84C;
  --gold-bright: #FFD700;
  --gold-pale: #FFF4DC;
  --gold-dark: #8B6C2A;
  --gold-ultra: #FFD700;
  --maroon: #6B1A1A;
  --maroon-mid: #9B2626;
  --ivory: #FAF6ED;
  --ivory-2: #F2EAD8;
  --cream: #EDE0C4;
  --charcoal: #1C1209;
  --deep: #0E0904;
  --mid: #2A1E0E;
  --royal-brown: #3E2723;
  --royal-brown-light: #4E342E;
  --teal: #004D40;
  --teal-light: #00695C;
  --text-dark: #1A1208;
  --text-mid: #4A3520;
  --text-muted: #7A6445;
  --white: #FFFFFF;
  --shadow-gold: 0 12px 40px rgba(201, 168, 76, 0.25);
  --shadow-deep: 0 25px 60px rgba(14, 9, 4, 0.5);
  --r: 0px; /* sharp corners for luxury feel */

  /* Elephant Visual Adjustments - Brightened for 3D Effect */
  --elephant-brightness: 0.85;
  --elephant-contrast: 1.2;
  --elephant-saturation: 0.9;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden
}

body {
  background: var(--deep);
  color: var(--ivory);
  font-family: 'Cormorant Garamond', Georgia, serif;
  overflow-x: hidden;
  cursor: default;
  background-image:
    radial-gradient(circle at 100% 0%, rgba(107, 26, 26, 0.1) 0%, transparent 25%),
    radial-gradient(circle at 0% 100%, rgba(201, 168, 76, 0.05) 0%, transparent 25%);
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 4px
}

::-webkit-scrollbar-track {
  background: var(--deep)
}

::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 2px
}

/* ═══════════════════════════════════════════
   LOADING SCREEN
═══════════════════════════════════════════ */
#loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

#loader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none
}

.loader-emblem {
  width: 120px;
  height: 120px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-emblem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--gold);
  box-shadow: 0 0 40px rgba(201, 168, 76, 0.4);
  animation: loaderLogo 2s ease-in-out infinite;
}

@keyframes loaderLogo {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.3)
  }

  50% {
    transform: scale(1.1);
    opacity: 0.8;
    box-shadow: 0 0 50px rgba(201, 168, 76, 0.6)
  }
}

.loader-title {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  animation: pulse 1.5s ease infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 0.4
  }

  50% {
    opacity: 1
  }
}

.loader-sub {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: rgba(201, 168, 76, 0.4);
  font-family: 'Cinzel', serif;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════
   SCROLL PROGRESS
═══════════════════════════════════════════ */
#progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--maroon), var(--gold), var(--gold-bright));
  z-index: 9000;
  transition: width 0.05s linear;
}

/* Royal elephant scroll guide */
.elephant-guide {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 7800;
  width: min(31rem, 33vw);
  min-width: 18rem;
  max-width: 31rem;
  display: block;
  padding: 0;
  pointer-events: none;
}

.elephant-left {
  left: -11.5rem;
}

.elephant-right {
  right: -11.5rem;
  transform: translateY(-50%) scaleX(-1);
}

.elephant-guide-shell {
  position: relative;
  width: 100%;
  display: block;
  overflow: visible;
}


.elephant-guide-art {
  width: 100%;
  height: auto;
  display: block;
  user-select: none;
  pointer-events: none;
  opacity: 1;
  transform: none;
  filter: brightness(var(--elephant-brightness)) contrast(var(--elephant-contrast)) saturate(var(--elephant-saturation)) drop-shadow(0 18px 34px rgba(0, 0, 0, 0.6));
  transition: filter 0.28s ease-out, opacity 0.22s ease-out;
}

/* ═══════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════ */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 8000;
  padding: 1.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
  background: transparent;
}

#nav.scrolled {
  background: var(--charcoal);
  backdrop-filter: blur(25px);
  padding: 1rem 4rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  border-bottom: none;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
}

.nav-logo .logo-text {
  display: none;
}

.logo-img {
  height: 120px;
  width: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.85);
  box-shadow: 0 0 26px rgba(201, 168, 76, 0.3);
  transition: transform 0.4s ease;
}

.nav-logo:hover .logo-img {
  transform: scale(1.1) rotate(5deg)
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 0
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
}

.nav-logo-main {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-logo-sub {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.6rem;
  color: var(--gold-pale);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 246, 237, 0.7);
  text-decoration: none;
  transition: color 0.25s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-links a:hover {
  color: var(--gold)
}

.nav-links a:hover::after {
  transform: scaleX(1)
}

.nav-cta {
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--deep);
  background: var(--gold);
  border: none;
  padding: 0.7rem 1.8rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}

.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-bright);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.nav-cta:hover::before {
  transform: translateX(0)
}

.nav-cta span {
  position: relative;
  z-index: 1
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--gold);
  transition: all 0.3s;
}


.sparkle {
  position: absolute;
  background: white;
  border-radius: 50%;
  pointer-events: none;
  animation: sparkleAnim 1.5s linear infinite;
}

@keyframes sparkleAnim {
  0% {
    transform: scale(0) rotate(0deg);
    opacity: 0;
  }

  50% {
    transform: scale(1) rotate(180deg);
    opacity: 1;
  }

  100% {
    transform: scale(0) rotate(360deg);
    opacity: 0;
  }
}

#hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 3D Scene layers — mimicking the video's depth effect */
.hero-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
}

/* Deepest layer — sky/background */
#layer-bg {
  transform: scale(1.3) translateZ(-3px);
  filter: brightness(0.55) saturate(0.9);
  z-index: 0;
}

#hero-fireworks {
  z-index: 10; /* Move to front for visibility */
  transform: scale(1.1);
  pointer-events: none;
  overflow: hidden;
  mix-blend-mode: screen; /* Additive lighting effect */
}

.firework-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  box-shadow: 0 0 15px var(--fw-color, #fff), 0 0 30px var(--fw-color, #fff);
  background: #fff; /* Core is white for brightness */
  animation: fireworkExplode 1.8s cubic-bezier(0, 0, 0.2, 1) forwards;
}

@keyframes fireworkExplode {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(var(--x), var(--y)) scale(0);
    opacity: 0;
  }
}

/* Palace far layer */
#layer-palace {
  transform: scale(1.15) translateZ(-2px);
  filter: brightness(0.75) saturate(1.1);
  z-index: 1;
}

/* Mid overlay — gradient atmosphere */
#layer-atmo {
  z-index: 2;
  background:
    radial-gradient(ellipse at 50% 60%, rgba(201, 168, 76, 0.12) 0%, transparent 60%),
    linear-gradient(to bottom, rgba(14, 9, 4, 0.3) 0%, rgba(14, 9, 4, 0.05) 40%, rgba(14, 9, 4, 0.7) 75%, rgba(14, 9, 4, 1) 100%);
}

/* Foreground architectural elements */
#layer-fg {
  z-index: 3;
  transform: scale(1.05) translateZ(-1px);
  filter: brightness(0.9);
  mix-blend-mode: multiply;
}



/* Particles / floating lights */
#particles {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  overflow: hidden
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.5) 0%, transparent 70%);
  animation: floatUp linear infinite;
  pointer-events: none;
}

@keyframes floatUp {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0
  }

  15% {
    opacity: 1
  }

  85% {
    opacity: 0.4
  }

  100% {
    transform: translateY(-90vh) scale(0.3);
    opacity: 0
  }
}

/* Sunset birds — Moved back to front */
#hero-birds {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
  perspective: 1000px;
  overflow: hidden;
}

.hero-bird {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  filter: blur(0.15px) drop-shadow(0 2px 10px rgba(0, 0, 0, 0.22));
  animation: birdFlight linear infinite;
}

.hero-bird svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.hero-bird .bird-body {
  fill: rgba(10, 10, 10, 0.9);
}

.hero-bird .bird-wing {
  fill: rgba(0, 0, 0, 0.9);
  transform-box: fill-box;
  transform-origin: center;
  animation: birdWingFlap ease-in-out infinite;
}

.hero-bird .bird-wing.left {
  transform-origin: 100% 65%;
}

.hero-bird .bird-wing.right {
  transform-origin: 0% 65%;
}

@keyframes birdFlight {
  0% {
    opacity: 0;
    transform: translate3d(-20vw, 0, var(--bird-z, 0px)) scale(var(--bird-scale, 1));
  }

  10% {
    opacity: var(--bird-opacity, 0.5);
  }

  90% {
    opacity: var(--bird-opacity, 0.5);
  }

  100% {
    opacity: 0;
    transform: translate3d(120vw, var(--bird-drift, 0), var(--bird-z, 0px)) scale(calc(var(--bird-scale, 1) * 1.2));
  }
}

@keyframes birdWingFlap {

  0%,
  100% {
    transform: rotate(10deg) scaleY(1)
  }

  50% {
    transform: rotate(-14deg) scaleY(0.78)
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 2rem;
  max-width: 1100px;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.5) 0%, transparent 70%);
  padding: 120px 2rem 2rem;
  /* Increased top padding to 120px for gap */
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--gold-bright);
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0;
  animation: fadeUp 0.8s ease 1s forwards;
  text-shadow: 0 0 10px rgba(201, 168, 76, 0.3);
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(3.5rem, 12vw, 8rem);
  font-weight: 900;
  line-height: 0.8;
  /* Compact height */
  letter-spacing: -0.02em;
  /* Compact spacing */
  color: var(--gold);
  text-shadow:
    0 4px 20px rgba(0, 0, 0, 0.8),
    0 0 50px rgba(201, 168, 76, 0.2);
  /* Highlight glow */
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.8s forwards;
  filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.5));
}

.hero-title-2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 4.5vw, 2.8rem);
  font-weight: 300;
  font-style: italic;
  color: var(--ivory-2, #F2EAD8);
  letter-spacing: 0.12em;
  opacity: 0;
  animation: fadeUp 0.9s ease 1s forwards;
  margin: 0 auto 2rem;
  max-width: min(800px, 85%);
  line-height: 1.4;
}

.hero-desc {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 300;
  line-height: 1.8;
  color: rgba(250, 246, 237, 0.7);
  max-width: 600px;
  margin: 0 auto 3rem;
  opacity: 0;
  animation: fadeUp 0.9s ease 1.2s forwards;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s ease 1.4s forwards;
}

.btn-gold {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-bright) 100%);
  color: var(--deep);
  padding: 1.1rem 3.2rem;
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
  font-weight: 700;
}

.btn-gold:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 45px rgba(201, 168, 76, 0.5);
}

.btn-ghost {
  display: inline-block;
  background: transparent;
  border: 1px solid rgba(201, 168, 76, 0.5);
  color: var(--gold);
  padding: 1rem 3rem;
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s;
}

.btn-ghost:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: var(--gold);
}

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

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

/* Scroll indicator */
/* Hero stats bar */

.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  background: rgba(14, 9, 4, 0.8);
  backdrop-filter: blur(20px);
  opacity: 0;
  animation: fadeUp 0.9s ease 2s forwards;
}

.hero-stat {
  padding: 1.5rem 2rem;
  border-right: 1px solid rgba(201, 168, 76, 0.1);
  text-align: center;
}

.hero-stat:last-child {
  border-right: none
}

.hs-num {
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.hs-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: rgba(201, 168, 76, 0.5);
  font-family: 'Cinzel', serif;
  text-transform: uppercase;
  margin-top: 0.3rem;
  display: block;
}

/* ═══════════════════════════════════════════
   MARQUEE STRIP
═══════════════════════════════════════════ */
.marquee-strip {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  padding: 0.9rem 0;
  overflow: hidden;
  position: relative;
  z-index: 5;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.marquee-inner {
  display: flex;
  gap: 0;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 3rem;
  white-space: nowrap;
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: var(--deep);
  text-transform: uppercase;
  font-weight: 700;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
}

.marquee-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--deep);
  opacity: 0.4
}

@keyframes marquee {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* ═══════════════════════════════════════════
   SECTION COMMONS
═══════════════════════════════════════════ */
.section {
  position: relative;
  overflow: hidden
}

.section-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 7rem 4rem
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Cinzel', serif;
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.section-tag::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.section-h {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--charcoal, #1C1209);
  line-height: 1.1;
  letter-spacing: 0.03em;
}

.section-h.light {
  color: var(--gold)
}

.section-sub {
  font-size: 1.15rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.8;
  margin-top: 1rem;
}

.section-sub.light {
  color: rgba(250, 246, 237, 0.65)
}

/* Ornament divider */
.orn {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
}

.orn-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent)
}

.orn-sym {
  font-family: 'Cinzel', serif;
  color: var(--gold);
  font-size: 1rem;
  opacity: 0.6;
  white-space: nowrap;
  letter-spacing: 0.5em;
}

/* ════════ WATERFALL 3D EFFECT ════════ */
.section {
  perspective: 2500px;
  perspective-origin: center top;
  overflow: visible;
}

.section-inner {
  transform-style: preserve-3d;
  will-change: transform, opacity;
  transition: transform 1.5s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 1.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  transform: rotateX(25deg) translateY(100px) translateZ(-200px);
  opacity: 0;
}

.section.in .section-inner {
  transform: rotateX(0deg) translateY(0) translateZ(0);
  opacity: 1;
}

/* Waterfall flow adjustment for reveal animations */
.reveal,
.reveal-l,
.reveal-r {
  transition: all 1.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.in,
.reveal-l.in,
.reveal-r.in {
  transform: none;
  opacity: 1;
}

.delay-1 {
  transition-delay: 0.15s
}

.delay-2 {
  transition-delay: 0.25s
}

.delay-3 {
  transition-delay: 0.35s
}

.delay-4 {
  transition-delay: 0.45s
}

.delay-5 {
  transition-delay: 0.55s
}

/* ═══════════════════════════════════════════
   ABOUT SECTION — LIGHT IVORY
═══════════════════════════════════════════ */
#about {
  background: var(--ivory)
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-img-stack {
  position: relative;
  height: 600px;
}

.about-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: 75%;
  object-fit: cover;
  border: 6px solid var(--white);
  box-shadow: var(--shadow-deep);
}

.about-img-sec {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 65%;
  height: 55%;
  object-fit: cover;
  border: 6px solid var(--white);
  box-shadow: var(--shadow-deep);
}

.about-img-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  background: var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  z-index: 5;
  box-shadow: 0 0 40px rgba(201, 168, 76, 0.5);
}

.badge-num {
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--deep);
  line-height: 1;
}

.badge-text {
  font-family: 'Cinzel', serif;
  font-size: 0.5rem;
  letter-spacing: 0.15em;
  color: var(--deep);
  text-transform: uppercase;
  text-align: center;
}

.about-text {
  padding-left: 1rem
}

.about-text .section-h {
  margin-bottom: 0.5rem
}

.about-lead {
  font-size: 1.2rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.8;
  margin: 1.5rem 0;
}

.about-body {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

.af-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  border-left: 2px solid var(--gold);
  background: rgba(201, 168, 76, 0.04);
}

.af-icon {
  color: var(--gold);
  font-size: 1.1rem;
  margin-top: 0.1rem
}

.af-text h4 {
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  color: var(--text-dark);
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
}

.af-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5
}

/* ═══════════════════════════════════════════
   PROPERTIES SECTION — DARK
═══════════════════════════════════════════ */
#properties {
  background: var(--charcoal);
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(107, 26, 26, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 50%);
}

.prop-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.prop-tabs {
  display: flex;
  gap: 0;
  justify-content: center;
  margin: 2rem 0 3rem;
  border: 1px solid rgba(201, 168, 76, 0.2);
  overflow: hidden;
}

.prop-tab {
  flex: 1;
  padding: 0.8rem 1.5rem;
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: transparent;
  border: none;
  color: rgba(201, 168, 76, 0.5);
  cursor: pointer;
  transition: all 0.3s;
  border-right: 1px solid rgba(201, 168, 76, 0.15);
}

.prop-tab:last-child {
  border-right: none
}

.prop-tab.active,
.prop-tab:hover {
  background: var(--gold);
  color: var(--deep);
}

.prop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(201, 168, 76, 0.1);
}

.prop-card {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
  cursor: pointer;
  group: true;
}

.prop-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s;
  display: block;
  image-rendering: -webkit-optimize-contrast; /* Sharpness for Base64 */
  filter: contrast(1.02) brightness(0.95);
}

.prop-card:hover .prop-img {
  transform: scale(1.1) rotate(1deg);
  filter: brightness(0.6);
}

.prop-card {
  perspective: 1000px;
  transition: transform 0.5s;
}

.prop-card:hover {
  transform: translateY(-10px) rotateX(5deg);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  z-index: 5;
}

.prop-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 9, 4, 0.95) 0%, rgba(14, 9, 4, 0.3) 50%, transparent 100%);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.prop-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: var(--deep);
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
}

.prop-price {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.prop-name {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  color: var(--ivory);
  margin: 0.3rem 0;
  letter-spacing: 0.05em;
}

.prop-loc {
  font-size: 0.82rem;
  color: rgba(250, 246, 237, 0.5);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.prop-specs {
  display: flex;
  gap: 1rem;
  margin-top: 0.8rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  font-size: 0.78rem;
  color: rgba(201, 168, 76, 0.7);
  font-family: 'Cinzel', serif;
  letter-spacing: 0.05em;
}

.prop-spec {
  display: flex;
  align-items: center;
  gap: 0.3rem
}

.prop-detail-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background: var(--gold);
  color: var(--deep);
  padding: 0.7rem 1.5rem;
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease;
  white-space: nowrap;
}

.prop-card:hover .prop-detail-btn {
  transform: translate(-50%, -50%) scale(1)
}

/* ════════ AMENITIES ════════ */
#amenities {
  background: #faf6ed
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.amen-card {
  background: white;
  border: 1px solid rgba(201, 168, 76, 0.15);
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.amen-card:hover {
  background: var(--white);
  border-color: var(--gold);
  transform: translateY(-15px) rotate(1deg);
  box-shadow: 0 25px 50px rgba(201, 168, 76, 0.15);
}

.amen-icon {
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
  display: block
}

.amen-name {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  color: var(--deep);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.amen-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
}



/* ═══════════════════════════════════════════
   WHY DASARA ESTATES — DARK SECTION

═══════════════════════════════════════════ */
#why {
  background: var(--deep);
  background-image: url('');
  /* filled by JS */
  background-size: cover;
  background-position: center;
  position: relative;
}

#why::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14, 9, 4, 0.97) 0%, rgba(14, 9, 4, 0.9) 60%, rgba(107, 26, 26, 0.3) 100%);
}

.why-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.why-feats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.why-card {
  padding: 2rem 1.5rem;
  border: 1px solid rgba(201, 168, 76, 0.15);
  background: rgba(201, 168, 76, 0.03);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, background 0.3s;
}

.why-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.4s;
}

.why-card:hover {
  border-color: rgba(201, 168, 76, 0.4);
  background: rgba(201, 168, 76, 0.06);
}

.why-card:hover::after {
  transform: scaleX(1)
}

.wc-num {
  font-family: 'Cinzel', serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(201, 168, 76, 0.15);
  line-height: 1;
  margin-bottom: 1rem;
  display: block;
}

.wc-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.75rem
}

.wc-title {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.wc-text {
  font-size: 0.9rem;
  color: rgba(250, 246, 237, 0.55);
  line-height: 1.7;
}

.why-text .section-h {
  margin-bottom: 1.5rem
}

.why-text p {
  font-size: 1rem;
  color: rgba(250, 246, 237, 0.6);
  line-height: 1.9;
  margin-bottom: 1.2rem;
}

.why-text .btn-gold {
  margin-top: 1rem;
  display: inline-block
}

/* ═══════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════ */
#testimonials {
  background: var(--ivory-2, #F2EAD8)
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.testi-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 10px 40px rgba(201, 168, 76, 0.08);
  position: relative;
}

.testi-card::before {
  content: '"';
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  line-height: 1;
  color: rgba(201, 168, 76, 0.15);
  font-weight: 700;
}

.testi-text {
  font-size: 1rem;
  font-style: italic;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  color: var(--deep);
  font-weight: 700;
  flex-shrink: 0;
}

.testi-name {
  font-family: 'Cinzel', serif;
  font-size: 0.82rem;
  color: var(--text-dark);
  letter-spacing: 0.06em;
  margin-bottom: 0.2rem;
}

.testi-role {
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.testi-stars {
  color: var(--gold);
  font-size: 0.8rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

/* ═══════════════════════════════════════════
   SERVICES — ROYAL CREAM & BROWN
═══════════════════════════════════════════ */
#services {
  background: var(--cream);
  background-image:
    radial-gradient(circle at 10% 20%, rgba(201, 168, 76, 0.05) 0%, transparent 20%),
    radial-gradient(circle at 90% 80%, rgba(201, 168, 76, 0.05) 0%, transparent 20%);
}

#services .section-h {
  color: var(--royal-brown);
}

#services .section-sub {
  color: var(--text-mid);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.svc-card {
  background: var(--royal-brown);
  padding: 3rem 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.4s;
}

.svc-card:hover {
  background: var(--royal-brown-light);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--gold);
}

.svc-card:hover::before {
  transform: scaleX(1)
}

.svc-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
  transition: transform 0.4s;
}

.svc-card:hover .svc-icon {
  transform: scale(1.1) translateY(-5px);
}

.svc-name {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.svc-text {
  font-size: 0.9rem;
  color: rgba(250, 246, 237, 0.7);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   CTA SECTION — PALACE BG
═══════════════════════════════════════════ */
#cta {
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.4);
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(14, 9, 4, 0.97) 0%,
      rgba(14, 9, 4, 0.85) 50%,
      rgba(14, 9, 4, 0.6) 100%);
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  padding: 6rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  width: 100%;
}

.cta-text h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: 0.03em;
}

.cta-text p {
  font-size: 1.05rem;
  color: rgba(250, 246, 237, 0.7);
  line-height: 1.9;
  margin-bottom: 2rem;
}

.cta-form {
  background: rgba(14, 9, 4, 0.7);
  border: 1px solid rgba(201, 168, 76, 0.2);
  backdrop-filter: blur(20px);
  padding: 2.5rem;
}

.cta-form h3 {
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-bottom: 2rem;
  text-align: center;
}

.form-group {
  margin-bottom: 1rem
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(201, 168, 76, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: var(--ivory);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.25s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(201, 168, 76, 0.35)
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(201, 168, 76, 0.5);
}

.form-group select option {
  background: var(--charcoal)
}

.form-group textarea {
  min-height: 80px;
  resize: vertical
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem
}

.form-submit {
  width: 100%;
  margin-top: 0.5rem;
  background: var(--gold);
  color: var(--deep);
  border: none;
  padding: 1rem;
  cursor: pointer;
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.25s, box-shadow 0.25s;
}

.form-submit:hover {
  background: var(--gold-bright);
  box-shadow: 0 0 30px rgba(201, 168, 76, 0.4);
}

/* ═══════════════════════════════════════════
   TEAM SECTION
═══════════════════════════════════════════ */
#team {
  background: var(--ivory)
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 800px;
  margin: 4rem auto 0;
}

.team-card {
  text-align: center;
}

.team-img-wrap {
  width: 200px;
  height: 200px;
  margin: 0 auto 1.5rem;
  position: relative;
}

.team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  border: 4px solid var(--ivory-2, #F2EAD8);
  box-shadow: var(--shadow-gold);
}

.team-img-wrap::after {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  pointer-events: none;
}

.team-role {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.team-name {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.team-bio {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   CONTACT / FOOTER
═══════════════════════════════════════════ */
#contact {
  background: var(--deep);
  border-top: 1px solid rgba(201, 168, 76, 0.15);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.contact-brand .nav-logo-main {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 0.5rem
}

.contact-brand .nav-logo-sub {
  font-size: 0.7rem;
  display: block;
  margin-bottom: 1.5rem
}

.contact-brand p {
  font-size: 0.9rem;
  color: rgba(250, 246, 237, 0.5);
  line-height: 1.8;
}

.contact-links h4,
.contact-social h4 {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.contact-links ul {
  list-style: none
}

.contact-links li {
  margin-bottom: 0.75rem
}

.contact-links a {
  font-size: 0.88rem;
  color: rgba(250, 246, 237, 0.5);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.25s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-links a::before {
  content: '—';
  color: var(--gold);
  font-size: 0.7rem;
}

.contact-links a:hover {
  color: var(--gold)
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.88rem;
  color: rgba(250, 246, 237, 0.5);
  line-height: 1.6;
}

.ci-icon {
  color: var(--gold);
  font-size: 0.9rem;
  margin-top: 0.1rem;
  flex-shrink: 0
}

.social-row {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem
}

.soc-btn {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.25s;
}

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

.footer-bottom {
  padding-top: 2rem;
  text-align: center;
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: rgba(201, 168, 76, 0.3);
  text-transform: uppercase;
}

.footer-bottom span {
  color: var(--gold)
}

/* ═══════════════════════════════════════════
   FLOATING CONTACT
═══════════════════════════════════════════ */
.floating-contact-actions {
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  z-index: 8500;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.floating-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
  transition: all 0.3s ease;
  position: relative;
}

.floating-action-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.wa-btn {
  background: #25D366
}

.call-btn {
  background: #007AFF
}

.floating-action-btn svg {
  width: 24px;
  height: 24px;
  display: block;
}

.floating-action-btn::before {
  content: attr(aria-label);
  position: absolute;
  right: 70px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 0.4rem 0.8rem;
  font-family: sans-serif;
  font-size: 0.75rem;
  white-space: nowrap;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.floating-action-btn:hover::before {
  opacity: 1;
  transform: translateX(-5px)
}



/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media(max-width:1100px) {
  .section-inner {
    padding: 5rem 2.5rem
  }

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

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

  #nav {
    padding: 1.5rem 2.5rem
  }

  #nav.scrolled {
    padding: 1rem 2.5rem
  }
}

@media(max-width:900px) {
  .logo-img {
    height: 68px;
    width: 68px;
  }

  .elephant-guide {
    top: 65%;
    width: clamp(16rem, 45vw, 20rem);
    min-width: 0;
    max-width: none;
  }

  .elephant-left {
    left: -5rem;
    transform: translateY(-50%);
  }

  .elephant-right {
    right: -5rem;
    transform: translateY(-50%) scaleX(-1);
  }

  .nav-links {
    display: none
  }

  .hamburger {
    display: flex
  }

  .nav-cta {
    display: none
  }

  .about-grid,
  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem
  }

  .about-img-stack {
    height: 400px
  }

  .cta-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 4rem 2rem;
    text-align: center;
  }

  .cta-form {
    padding: 2rem 1.5rem;
  }

  .hero-content {
    padding: 80px 1.5rem 2rem;
  }
}

@media(max-width:600px) {
  #hero-birds {
    top: 2.5rem;
  }

  .logo-img {
    height: 56px;
    width: 56px;
  }

  .elephant-guide {
    top: 70%;
    width: clamp(14rem, 55vw, 18rem);
    min-width: 0;
    max-width: none;
  }

  .elephant-left {
    left: -4.5rem;
    transform: translateY(-50%);
  }

  .elephant-right {
    right: -4.5rem;
    transform: translateY(-50%) scaleX(-1);
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr
  }

  .amenities-grid,
  .services-grid,
  .testi-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1.5rem;
    padding: 1rem 1rem 2.5rem;
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
  }

  .amenities-grid::-webkit-scrollbar,
  .services-grid::-webkit-scrollbar,
  .testi-grid::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
  }

  .amen-card,
  .svc-card,
  .testi-card {
    min-width: 280px;
    flex: 0 0 280px;
    scroll-snap-align: center;
    margin: 0;
  }

  .section-inner {
    padding: 4rem 1.5rem;
    overflow: hidden;
  }

  .prop-grid {
    grid-template-columns: 1fr
  }

  .why-feats {
    grid-template-columns: 1fr
  }

  .about-features {
    grid-template-columns: 1fr
  }

  .floating-contact-actions {
    bottom: 1rem;
    right: 1rem
  }

  .section-inner {
    padding: 4rem 1.5rem
  }

  .hero-content {
    padding: 40px 1rem 2rem;
  }
}

@media(max-width:420px) {
  .elephant-guide {
    top: 72%;
    width: clamp(12rem, 60vw, 16rem);
    min-width: 0;
    max-width: none;
  }

  .elephant-left {
    left: -3.5rem;
    transform: translateY(-50%);
  }

  .elephant-right {
    right: -3.5rem;
    transform: translateY(-50%) scaleX(-1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .elephant-guide-art {
    transition: none;
  }

  .hero-bird,
  .hero-bird .bird-wing {
    animation: none;
  }

  .hero-bird {
    opacity: 0.22;
  }
}

/* Mobile nav overlay */
#mob-nav {
  position: fixed;
  inset: 0;
  z-index: 8500;
  background: rgba(14, 9, 4, 0.98);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

#mob-nav.open {
  display: flex
}

#mob-nav a {
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.1em;
}

.mob-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1.5rem;
  cursor: pointer;
  font-family: 'Cinzel', serif;
}


#_toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(201, 168, 76, 0.95);
  color: var(--deep);
  padding: 1rem 2rem;
  border-radius: 2px;
  z-index: 100000;
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
  font-weight: 700;
}

/* ════════ PROPERTY FILTERS & PAGINATION ════════ */
.prop-filter-bar {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.03);
  padding: 1.5rem;
  border: 1px solid rgba(201, 168, 76, 0.1);
}

.filter-group {
  flex: 1;
  min-width: 250px
}

.filter-group input,
.filter-group select {
  width: 100%;
  background: var(--deep);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--ivory);
  padding: 0.8rem 1rem;
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  outline: none;
  transition: border-color 0.3s;
}

.filter-group input:focus,
.filter-group select:focus {
  border-color: var(--gold)
}

.pagination-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.pg-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: var(--gold);
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s;
}

.pg-btn.active {
  background: var(--gold);
  color: var(--deep);
  border-color: var(--gold)
}

.pg-btn:hover:not(.active) {
  background: rgba(201, 168, 76, 0.1);
  border-color: var(--gold)
}

.pg-btn.side {
  width: auto;
  padding: 0 1rem
}

.prop-tabs {
  justify-content: center;
  margin-bottom: 3rem
}

/* ════════ DETAIL MODAL ════════ */
.detail-modal {
  position: fixed;
  inset: 0;
  background: rgba(13, 9, 5, 0.98);
  z-index: 110000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  backdrop-filter: blur(15px);
  perspective: 2000px;
}

.detail-modal.loading::after {
  content: '';
  position: absolute;
  width: 50px;
  height: 50px;
  border: 3px solid transparent;
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: modalSpin 0.8s linear infinite;
  z-index: 10001;
}

@keyframes modalSpin {
  to {
    transform: rotate(360deg);
  }
}

.detail-content {
  background: var(--deep);
  width: 100%;
  max-width: 1100px;
  max-height: 90vh;
  border: 1px solid var(--gold);
  position: relative;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  transform: rotateY(-35deg) rotateX(10deg) scale(0.7);
  transform-style: preserve-3d;
  opacity: 0;
  transition: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.8);
}

.detail-modal.open .detail-content {
  transform: rotateY(0deg) scale(1);
  opacity: 1;
}

@media (max-width: 850px) {
  .detail-content {
    grid-template-columns: 1fr;
  }
}

.detail-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--gold);
  color: var(--deep);
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.detail-gallery {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.main-preview {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--gold-faded);
}

.thumb-strip {
  display: flex;
  gap: 0.8rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.thumb-strip img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: 0.3s;
}

.thumb-strip img:hover,
.thumb-strip img.active {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.detail-info {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
}

.detail-price {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.detail-name {
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  color: var(--ivory);
  margin-bottom: 1rem;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.meta-box {
  background: rgba(255, 255, 255, 0.05);
  padding: 0.8rem 1.2rem;
  border-radius: 6px;
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.meta-label {
  display: block;
  font-size: 0.7rem;
  color: var(--gold-faded);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.3rem;
}

.meta-val {
  font-weight: 600;
  color: var(--ivory);
}

.detail-actions {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-btn {
  padding: 1rem;
  border-radius: 8px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Cinzel', serif;
  font-weight: 600;
  transition: 0.3s;
}

.btn-wa {
  background: #25d366;
  color: white;
}

.btn-call {
  background: var(--gold);
  color: var(--deep);
}

.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Quick Contact Icons for Card */
.card-contact {
  display: flex;
  gap: 0.8rem;
  margin-left: auto;
}

.mini-contact {
  color: var(--gold);
  text-decoration: none;
  font-size: 1.1rem;
  transition: 0.3s;
}

.mini-contact:hover {
  color: #fff;
  transform: scale(1.2);
}

/* Mobile specific elephant overrides */
@media (max-width: 1024px) {
}