/* ==========================================================================
   THE SUKOON STAYS - LUXURY DESIGN SYSTEM & STYLESHEET
   Sector 128, Noida - Premium PG & Corporate Co-Living
   ========================================================================== */

/* --- CSS VARIABLES & TOKENS --- */
:root {
  /* Dark Luxury Theme Palette */
  --bg-dark: #0A0B0F;
  --bg-dark-secondary: #11131A;
  --bg-dark-card: #151822;
  --bg-dark-elevated: #1C202C;
  --border-dark: rgba(212, 175, 55, 0.18);
  --border-dark-subtle: rgba(255, 255, 255, 0.08);

  /* Light Theme Palette (Warm Luxury Cream) */
  --bg-light: #F9F7F2;
  --bg-light-surface: #FFFFFF;
  --bg-light-alt: #F3EFE6;
  --border-light: rgba(197, 168, 109, 0.22);
  --border-light-subtle: rgba(0, 0, 0, 0.06);

  /* Champagne Gold Accent & Gradients */
  --gold-primary: #C5A86D;
  --gold-light: #E6CA85;
  --gold-dark: #9A7B39;
  --gold-shimmer-1: #FFF3C4;
  --gold-gradient: linear-gradient(135deg, #E6CA85 0%, #C5A86D 50%, #A8863E 100%);
  --gold-gradient-hover: linear-gradient(135deg, #F0D99D 0%, #D4AF37 50%, #BA9748 100%);
  --gold-glow: rgba(197, 168, 109, 0.35);

  /* Typography Colors */
  --text-white: #FFFFFF;
  --text-cream: #F1EFE9;
  --text-muted: #9EABB9;
  --text-dark: #12141A;
  --text-dark-secondary: #475569;
  --text-dark-muted: #64748B;

  /* Typography Fonts */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-title: 'Cinzel', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Layout & Spacing */
  --header-height: 96px;
  --container-max: 1440px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.25);
  --shadow-gold: 0 10px 30px rgba(197, 168, 109, 0.2);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- BASE & RESET --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg-dark);
  color: var(--text-cream);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
  font-family: inherit;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 5%;
}

.section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

/* --- ULTRA-LUXURY SHINY HEADING EFFECTS --- */
@keyframes shinySweep {
  0% {
    background-position: 150% 0;
  }

  100% {
    background-position: -150% 0;
  }
}

/* Luminous White & Platinum Shimmer for Dark Backgrounds */
.shiny-text {
  background: linear-gradient(110deg,
      #E2E8F0 0%,
      #94A3B8 25%,
      #FFFFFF 46%,
      #FFFDF5 50%,
      #FFFFFF 54%,
      #94A3B8 75%,
      #E2E8F0 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  animation: shinySweep 3.6s ease-in-out infinite;
  display: inline-block;
}

/* Warm Champagne Gold Shimmer for Hero "NOIDA 128" & Accents */
.shiny-text-gold {
  background: linear-gradient(110deg,
      #C5A86D 0%,
      #9A7B39 25%,
      #F5E6C4 46%,
      #FFFFFF 50%,
      #F5E6C4 54%,
      #9A7B39 75%,
      #C5A86D 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  animation: shinySweep 3.6s ease-in-out infinite;
  display: inline-block;
}

/* Dark Metallic Shimmer for Light Background Sections */
.shiny-text-dark {
  background: linear-gradient(110deg,
      #1E293B 0%,
      #0F172A 25%,
      #C5A86D 46%,
      #FFF4D4 50%,
      #C5A86D 54%,
      #0F172A 75%,
      #1E293B 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  animation: shinySweep 3.6s ease-in-out infinite;
  display: inline-block;
}

/* --- BODY LOADING & PRELOADER --- */
body.loading {
  overflow: hidden !important;
}

body.loading .reveal-hero {
  animation: none !important;
  opacity: 0 !important;
}

.preloader {
  position: fixed;
  inset: 0;
  background-color: #07080B;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.preloader.loaded {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
}

.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  max-width: 90vw;
}

.loader-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-logo-img {
  width: auto;
  max-width: 250px;
  max-height: 175px;
  object-fit: contain;
  filter: drop-shadow(0 0 35px rgba(212, 175, 55, 0.75));
  animation: loaderPulse 1.8s infinite ease-in-out;
}

@keyframes loaderPulse {

  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 20px rgba(197, 168, 109, 0.5));
  }

  50% {
    transform: scale(1.05);
    filter: drop-shadow(0 0 45px rgba(212, 175, 55, 0.9));
  }
}

/* Preloader Luxury Quote */
.loader-quote-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 4px;
  margin-bottom: 2px;
  max-width: 480px;
  padding: 0 16px;
  min-height: 38px;
}

.loader-quote {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 600;
  color: #FFF3C4;
  letter-spacing: 0.5px;
  line-height: 1.3;
  text-shadow: 0 0 18px rgba(212, 175, 55, 0.6);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.quote-mark {
  color: var(--gold-primary);
  font-size: 0.85rem;
  opacity: 0.75;
}

.loader-subtitle {
  font-size: 0.75rem;
  letter-spacing: 3px;
  color: var(--gold-light);
  text-transform: uppercase;
}

.loader-bar-wrap {
  width: 280px;
  height: 5px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 14px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.loader-bar-fill {
  width: 0%;
  height: 100%;
  background: var(--gold-gradient);
  border-radius: 4px;
  box-shadow: 0 0 12px rgba(197, 168, 109, 0.8);
  transition: width 0.05s linear;
}

.loader-status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 280px;
  margin-top: 6px;
}

.loader-status {
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 1.1px;
}

.loader-percentage {
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold-light);
}

/* --- AMBIENT GLOW EFFECTS --- */
.ambient-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
}

.glow-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(197, 168, 109, 0.25) 0%, transparent 70%);
  top: -100px;
  right: -100px;
}

.glow-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(168, 134, 62, 0.15) 0%, transparent 70%);
  bottom: 15%;
  left: -150px;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 28px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transition: var(--transition-smooth);
  z-index: -1;
}

.btn:hover::after {
  left: 100%;
}

.btn-gold {
  background: var(--gold-gradient);
  color: #12141A;
  box-shadow: 0 4px 20px rgba(197, 168, 109, 0.3);
  font-weight: 700;
}

.btn-gold:hover {
  background: var(--gold-gradient-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(197, 168, 109, 0.45);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--gold-primary);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-header {
  padding: 10px 22px;
  font-size: 0.88rem;
  border-radius: var(--radius-sm);
}

/* ==========================================================================
   HEADER / NAVBAR
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(10, 11, 15, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-dark-subtle);
  z-index: 1000;
  transition: var(--transition-normal);
}

.site-header.scrolled {
  height: 80px;
  background: rgba(10, 11, 15, 0.97);
  border-bottom: 1px solid var(--border-dark);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.header-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: var(--transition-fast);
}

.brand-logo-img {
  height: 74px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 12px rgba(197, 168, 109, 0.4));
  transition: transform 0.3s ease, filter 0.3s ease, height 0.3s ease;
}

.site-header.scrolled .brand-logo-img {
  height: 62px;
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 20px rgba(212, 175, 55, 0.75));
}

/* Navigation Links */
.desktop-nav .nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-cream);
  position: relative;
  padding: 6px 0;
  letter-spacing: 0.2px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-primary);
  border-radius: 2px;
  transition: var(--transition-fast);
}

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

.nav-link.active::after,
.nav-link:hover::after {
  width: 100%;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  padding: 0;
}

.mobile-toggle .bar {
  height: 2.5px;
  width: 100%;
  background: var(--gold-light);
  border-radius: 2px;
  transition: var(--transition-fast);
}

/* --- MOBILE DRAWER (LUXURY GLASSMORPHISM & OPTIMIZED UI) --- */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(340px, 86vw);
  height: 100vh;
  height: 100dvh;
  background: linear-gradient(180deg, #131620 0%, #0c0e14 55%, #07080b 100%);
  border-left: 1px solid rgba(197, 168, 109, 0.22);
  box-shadow: -15px 0 50px rgba(0, 0, 0, 0.8), inset 1px 0 0 rgba(255, 255, 255, 0.05);
  z-index: 1100;
  padding: 22px 18px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: auto;
  overflow-x: hidden;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(197, 168, 109, 0.3) transparent;
}

.mobile-drawer::-webkit-scrollbar {
  width: 4px;
}

.mobile-drawer::-webkit-scrollbar-thumb {
  background: rgba(197, 168, 109, 0.3);
  border-radius: 4px;
}

.drawer-glow {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(197, 168, 109, 0.18) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 50%;
  z-index: 0;
}

.mobile-drawer.open {
  right: 0;
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: rgba(5, 6, 9, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(197, 168, 109, 0.15);
  padding-bottom: 16px;
  position: relative;
  z-index: 1;
}

.drawer-brand-logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.drawer-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 10px rgba(197, 168, 109, 0.4));
}

.drawer-badge {
  font-size: 0.62rem;
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--gold-light);
  text-transform: uppercase;
  opacity: 0.85;
}

.close-drawer {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(197, 168, 109, 0.2);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  transition: all 0.25s ease;
}

.close-drawer:hover,
.close-drawer:active {
  color: #FFFFFF;
  background: rgba(197, 168, 109, 0.18);
  border-color: var(--gold-primary);
  transform: rotate(90deg);
}

.drawer-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px 0;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav-links li {
  list-style: none;
  opacity: 0;
  transform: translateX(18px);
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-drawer.open .mobile-nav-links li {
  opacity: 1;
  transform: translateX(0);
  transition-delay: calc(var(--i, 1) * 0.045s + 0.1s);
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.04);
  color: var(--text-cream);
  font-size: 0.96rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.nav-icon-wrap {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(197, 168, 109, 0.08);
  border: 1px solid rgba(197, 168, 109, 0.16);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.nav-text {
  flex: 1;
  letter-spacing: 0.2px;
}

.nav-arrow {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.22);
  transition: all 0.25s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
  background: linear-gradient(90deg, rgba(197, 168, 109, 0.14) 0%, rgba(197, 168, 109, 0.02) 100%);
  border-color: rgba(197, 168, 109, 0.35);
  color: #FFFFFF;
  transform: translateX(4px);
}

.mobile-nav-link:hover .nav-icon-wrap,
.mobile-nav-link:active .nav-icon-wrap {
  background: var(--gold-primary);
  color: #0A0B0F;
  box-shadow: 0 4px 12px rgba(197, 168, 109, 0.35);
}

.mobile-nav-link:hover .nav-arrow,
.mobile-nav-link:active .nav-arrow {
  color: var(--gold-light);
  transform: translateX(3px);
}

/* Active Page Link */
.mobile-nav-link.active {
  background: linear-gradient(90deg, rgba(197, 168, 109, 0.2) 0%, rgba(197, 168, 109, 0.04) 100%);
  border: 1px solid rgba(197, 168, 109, 0.45);
  color: var(--gold-shimmer-1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.mobile-nav-link.active .nav-icon-wrap {
  background: var(--gold-gradient);
  color: #0A0B0F;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(197, 168, 109, 0.4);
}

.mobile-nav-link.active .nav-arrow {
  color: var(--gold-primary);
}

.drawer-highlights {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  padding: 9px 12px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(197, 168, 109, 0.12);
  border-radius: 10px;
}

.highlight-chip {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

.highlight-chip i {
  color: var(--gold-light);
  font-size: 0.7rem;
}

.drawer-footer {
  padding-top: 14px;
  border-top: 1px solid rgba(197, 168, 109, 0.15);
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.drawer-cta-btn {
  height: 46px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(197, 168, 109, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.drawer-contact-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(197, 168, 109, 0.15);
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.drawer-quick-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.drawer-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: all 0.2s ease;
  text-decoration: none;
}

.drawer-action-btn.call-action {
  background: rgba(197, 168, 109, 0.12);
  color: var(--gold-light);
  border: 1px solid rgba(197, 168, 109, 0.25);
}

.drawer-action-btn.call-action:hover,
.drawer-action-btn.call-action:active {
  background: var(--gold-primary);
  color: #0A0B0F;
}

.drawer-action-btn.whatsapp-action {
  background: rgba(37, 211, 102, 0.12);
  color: #25D366;
  border: 1px solid rgba(37, 211, 102, 0.25);
}

.drawer-action-btn.whatsapp-action:hover,
.drawer-action-btn.whatsapp-action:active {
  background: #25D366;
  color: #FFFFFF;
}

.drawer-address-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.74rem;
  color: var(--text-muted);
  line-height: 1.3;
  padding-top: 6px;
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
  text-decoration: none;
  transition: color 0.2s ease;
}

.drawer-address-row i {
  color: var(--gold-primary);
  font-size: 0.78rem;
  flex-shrink: 0;
}

.drawer-address-row:hover,
.drawer-address-row:active {
  color: var(--gold-light);
}

/* ==========================================================================
   HERO SECTION (FULL BACKGROUND WITH LEFT DARK GRADIENT)
   ========================================================================== */
.hero-section {
  min-height: 100vh;
  padding-top: calc(var(--header-height) + 20px);
  padding-bottom: 40px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: var(--bg-dark);
}

/* Sub-Page Hero Banner */
.page-hero-section {
  padding-top: calc(var(--header-height) + 50px);
  padding-bottom: 30px;
  background: linear-gradient(180deg, rgba(17, 19, 26, 0.95) 0%, rgba(10, 11, 15, 1) 100%);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-dark-subtle);
}

/* Fullscreen Background Image & Left Dark Gradient Layer */
.hero-bg-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 85% 35%;
  transform: scale(1);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      #0A0B0F 0%,
      rgba(10, 11, 15, 0.95) 20%,
      rgba(10, 11, 15, 0.85) 38%,
      rgba(10, 11, 15, 0.5) 58%,
      rgba(10, 11, 15, 0.15) 80%,
      transparent 100%),
    linear-gradient(180deg,
      rgba(10, 11, 15, 0.75) 0%,
      transparent 18%,
      transparent 80%,
      #0A0B0F 100%);
}

.hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.hero-content-wrapper {
  max-width: 860px;
  padding-top: 24px;
  padding-bottom: 24px;
}

/* Left Hero Content */
.hero-tagline-wrapper {
  margin-bottom: 18px;
}

.hero-tagline {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--gold-light);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.divider-dot {
  color: rgba(212, 175, 55, 0.4);
}

.hero-title {
  font-family: var(--font-title);
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
}

.hero-subtitle {
  font-size: 1.18rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 28px;
}

.subtitle-highlight {
  color: var(--text-cream);
  font-weight: 500;
}

/* Hero Pill Badges */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 18px;
  background: rgba(18, 20, 28, 0.7);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-cream);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--transition-fast);
}

.hero-badge:hover {
  border-color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.12);
  transform: translateY(-2px);
}

.badge-icon {
  color: var(--gold-primary);
  font-size: 0.95rem;
}

/* Hero CTA Group */
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
}

.btn-hero {
  padding: 14px 32px;
  font-size: 0.98rem;
}

/* Info Card */
.hero-info-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  background: rgba(18, 20, 28, 0.75);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  max-width: 420px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.hero-info-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-2px);
}

.info-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(197, 168, 109, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.info-card-text h4 {
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--text-white);
}

.info-card-text p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --- HERO STATS STRIP (PLACED BELOW PG & CORPORATE CARD) --- */
.hero-stats-card {
  background: rgba(18, 20, 28, 0.85);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  margin-top: 28px;
  width: 100%;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.stat-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(197, 168, 109, 0.1);
  border: 1px solid rgba(197, 168, 109, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-size: 1.3rem;
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.stat-item:hover .stat-icon {
  background: var(--gold-gradient);
  color: #12141A;
  transform: scale(1.08) rotate(5deg);
}

.stat-number {
  display: block;
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.1;
  letter-spacing: 0.5px;
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}

.stat-divider {
  width: 1px;
  height: 45px;
  background: var(--border-dark-subtle);
}

/* ==========================================================================
   OUR ROOMS SECTION (LIGHT WARM THEME)
   ========================================================================== */
.rooms-section {
  background-color: var(--bg-light);
  color: var(--text-dark);
}

.rooms-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.25fr;
  gap: 50px;
  align-items: center;
}

.section-badge {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 8px;
  display: block;
}

.section-title {
  font-family: var(--font-title);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.section-subtitle {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark-secondary);
  margin-bottom: 20px;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-dark-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.rooms-feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 34px;
}

.room-feat {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

.room-feat i {
  color: var(--gold-dark);
  font-size: 0.85rem;
}

/* Rooms Mosaic Layout */
.rooms-mosaic {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 18px;
}

.room-stacked-group {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.room-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow-md);
  cursor: pointer;
}

.room-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.main-room-card {
  height: 420px;
}

.stacked-card {
  height: 201px;
}

.room-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0.92;
  transition: var(--transition-normal);
}

.room-card:hover .room-card-overlay {
  opacity: 1;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.35) 60%, transparent 100%);
}

.room-card:hover .room-card-img {
  transform: scale(1.06);
}

.room-tag {
  align-self: flex-start;
  padding: 4px 12px;
  background: rgba(197, 168, 109, 0.9);
  color: #12141A;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.room-caption-info h4 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 2px;
}

.room-caption-info span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.room-expand-icon {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-size: 0.8rem;
  opacity: 0;
  transform: scale(0.8);
  transition: var(--transition-fast);
}

.room-card:hover .room-expand-icon {
  opacity: 1;
  transform: scale(1);
}

/* ==========================================================================
   AMENITIES & FACILITIES SECTION (LUXURY SPACIOUS LIGHT THEME)
   ========================================================================== */
.amenities-section {
  background-color: var(--bg-light-alt);
  color: var(--text-dark);
  border-top: 1px solid var(--border-light);
  position: relative;
  padding: 80px 0;
}

.amenities-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(circle, rgba(197, 168, 109, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

/* 4 Spacious Category Pillars Grid */
.amenities-pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.amenity-pillar-card {
  background: #FFFFFF;
  border: 1px solid rgba(197, 168, 109, 0.24);
  border-radius: var(--radius-lg);
  padding: 32px 34px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Glossy Champagne Crystal Shine Sweep Overlay */
.amenity-pillar-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -150%;
  width: 70%;
  height: 200%;
  background: linear-gradient(110deg,
      transparent 0%,
      rgba(255, 255, 255, 0.1) 20%,
      rgba(255, 255, 255, 0.75) 45%,
      rgba(212, 175, 55, 0.22) 55%,
      rgba(255, 255, 255, 0.5) 68%,
      transparent 100%);
  transform: rotate(25deg);
  pointer-events: none;
  z-index: 5;
}

.amenity-pillar-card:hover {
  transform: translateY(-8px) scale(1.015);
  border-color: var(--gold-primary);
  box-shadow: 0 20px 45px rgba(197, 168, 109, 0.2), 0 8px 24px rgba(0, 0, 0, 0.06);
}

.amenity-pillar-card:hover::after {
  animation: cardShineSweep 1.8s ease-in-out infinite;
}

@keyframes cardShineSweep {
  0% {
    left: -150%;
  }

  100% {
    left: 220%;
  }
}

.pillar-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.pillar-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(197, 168, 109, 0.12);
  border: 1px solid rgba(197, 168, 109, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 1.35rem;
  flex-shrink: 0;
  transition: transform 0.35s ease, background 0.3s ease, color 0.3s ease;
}

.amenity-pillar-card:hover .pillar-icon {
  background: var(--gold-gradient);
  color: #12141A;
  transform: scale(1.08);
}

.pillar-title-wrap {
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease;
}

.amenity-pillar-card:hover .pillar-title-wrap {
  transform: translateX(6px);
}

.pillar-title {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
  transition: color 0.35s ease;
}

.amenity-pillar-card:hover .pillar-title {
  color: var(--gold-dark);
}

.pillar-subtitle {
  font-size: 0.84rem;
  color: var(--gold-dark);
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-top: 2px;
  transition: color 0.35s ease;
}

.pillar-feature-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.pillar-feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.94rem;
  color: #334155;
  font-weight: 500;
  line-height: 1.4;
  transition: transform 0.35s ease, color 0.35s ease;
}

.pillar-feature-list li i {
  color: #16A34A;
  font-size: 0.95rem;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.35s ease;
}

.amenity-pillar-card:hover .pillar-feature-list li {
  transform: translateX(8px);
  color: #0F172A;
}

.amenity-pillar-card:hover .pillar-feature-list li i {
  transform: scale(1.25);
  color: #15803D;
}

.amenity-pillar-card:hover .pillar-feature-list li:nth-child(1) {
  transition-delay: 0.04s;
}

.amenity-pillar-card:hover .pillar-feature-list li:nth-child(2) {
  transition-delay: 0.08s;
}

.amenity-pillar-card:hover .pillar-feature-list li:nth-child(3) {
  transition-delay: 0.12s;
}

.amenity-pillar-card:hover .pillar-feature-list li:nth-child(4) {
  transition-delay: 0.16s;
}

/* ==========================================================================
   GALLERY SECTION (DARK THEME)
   ========================================================================== */
.gallery-section {
  background-color: #0E1017;
  border-top: 1px solid var(--border-dark-subtle);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px 0;
  box-sizing: border-box;
}

.gallery-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 35px;
}

.section-subtitle-light {
  font-size: 1.15rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-top: 4px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-grid.home-gallery-grid {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-footer-cta {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #000;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition-normal);
}

.gallery-item:hover {
  transform: translateY(-5px);
  border-color: var(--gold-primary);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.gallery-thumb-wrap {
  position: relative;
  height: 290px;
  width: 100%;
  overflow: hidden;
}

.gallery-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.gallery-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 11, 15, 0.75);
  backdrop-filter: blur(3px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: var(--transition-fast);
}

.gallery-hover-overlay i {
  color: var(--gold-light);
  font-size: 1.5rem;
  transform: scale(0.7);
  transition: var(--transition-fast);
}

.gallery-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-white);
  letter-spacing: 0.5px;
}

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

.gallery-item:hover .gallery-hover-overlay i {
  transform: scale(1);
}

/* ==========================================================================
   CALLOUT / BANNER CTA SECTION
   ========================================================================== */
.cta-banner-section {
  padding: 60px 0;
  background: var(--bg-dark);
}

.cta-banner-card {
  background: linear-gradient(135deg, #161822 0%, #101118 100%);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-xl);
  padding: 45px 50px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.cta-banner-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(197, 168, 109, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.cta-tagline {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold-light);
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.cta-heading {
  font-family: var(--font-title);
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
}

.btn-banner {
  padding: 14px 34px;
}

.cta-right-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cta-feature-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

.cta-feature-item:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--border-dark);
  transform: translateX(5px);
}

.cta-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(197, 168, 109, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-size: 1.15rem;
  flex-shrink: 0;
}

.cta-feat-text {
  display: flex;
  flex-direction: column;
}

.cta-feat-text strong {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-white);
}

.cta-feat-text span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================================================
   VIRTUAL VIDEO TOUR SECTION (CINEMATIC DARK)
   ========================================================================== */
.video-tour-section {
  background:
    radial-gradient(900px 480px at 50% -10%, rgba(197, 168, 109, 0.10), transparent 65%),
    linear-gradient(180deg, #0B0D13 0%, #0A0B0F 55%, #0E1017 100%);
  border-top: 1px solid var(--border-dark-subtle);
  color: var(--text-cream);
  padding: 100px 0;
}

.video-tour-section .section-badge {
  color: var(--gold-primary);
}

.video-tour-section .section-header-center {
  max-width: 760px;
}

.video-tour-subtitle {
  color: var(--text-muted);
}

.video-tour-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 55px;
  align-items: center;
}

/* --- Player Column --- */
.video-player-col {
  margin: 0;
}

.video-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
  border: 1px solid var(--border-dark);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
  aspect-ratio: 16 / 9;
  transition: var(--transition-normal);
}

.video-frame:hover {
  border-color: rgba(197, 168, 109, 0.42);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.6), 0 0 44px rgba(197, 168, 109, 0.16);
}

.tour-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}

/* Custom Play Overlay */
.video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: linear-gradient(180deg, rgba(10, 11, 15, 0.42) 0%, rgba(10, 11, 15, 0.72) 100%);
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 3;
}

.video-frame.is-playing .video-play-overlay {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.video-play-btn {
  position: relative;
  width: 88px;
  height: 88px;
  border-radius: var(--radius-full);
  background: var(--gold-gradient);
  color: #12141A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  padding-left: 6px;
  box-shadow: 0 10px 34px rgba(197, 168, 109, 0.45);
  transition: var(--transition-normal);
  z-index: 2;
}

.video-play-overlay:hover .video-play-btn {
  background: var(--gold-gradient-hover);
  transform: scale(1.08);
}

.video-play-overlay:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: -6px;
}

/* Pulsing Ring Behind Play Button */
.video-play-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 88px;
  height: 88px;
  margin: -44px 0 0 -44px;
  border-radius: var(--radius-full);
  border: 2px solid rgba(197, 168, 109, 0.55);
  transform-origin: center;
  animation: videoPulse 2.6s ease-out infinite;
  pointer-events: none;
}

@keyframes videoPulse {
  0% {
    transform: scale(1);
    opacity: 0.75;
  }

  70% {
    transform: scale(1.85);
    opacity: 0;
  }

  100% {
    transform: scale(1.85);
    opacity: 0;
  }
}

.video-play-label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-cream);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}

.video-duration-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 15px;
  border-radius: var(--radius-full);
  background: rgba(10, 11, 15, 0.72);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-dark);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  z-index: 4;
  transition: opacity 0.35s ease;
}

.video-frame.is-playing .video-duration-badge {
  opacity: 0;
  pointer-events: none;
}

.video-caption {
  margin-top: 16px;
  font-size: 0.88rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
}

/* --- Info Column --- */
.video-info-title {
  font-family: var(--font-serif);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 12px;
  line-height: 1.2;
}

.video-info-desc {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.7;
}

.video-points-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.video-point {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-dark-subtle);
  transition: var(--transition-normal);
}

.video-point:hover {
  background: rgba(197, 168, 109, 0.07);
  border-color: var(--border-dark);
  transform: translateX(5px);
}

.video-point-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(197, 168, 109, 0.12);
  border: 1px solid var(--border-dark);
  color: var(--gold-primary);
  font-size: 1.05rem;
}

.video-point-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.video-point-text strong {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-white);
}

.video-point-text span {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.video-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn-video-whatsapp i {
  font-size: 1.15rem;
}

/* ==========================================================================
   WHY CHOOSE SUKOON STAYS SECTION (LIGHT WARM THEME)
   ========================================================================== */
.why-choose-section {
  background-color: var(--bg-light);
  color: var(--text-dark);
}

.section-header-center {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 55px auto;
}

.section-title-center {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.15;
  margin-bottom: 12px;
}

.section-subtitle-center {
  font-size: 1.15rem;
  color: var(--text-dark-secondary);
  font-weight: 500;
}

.why-cards-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.why-card {
  background: var(--bg-light-surface);
  border: 1px solid var(--border-light-subtle);
  border-radius: var(--radius-lg);
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-primary);
  box-shadow: 0 16px 35px rgba(197, 168, 109, 0.2);
}

.why-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(197, 168, 109, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 1.35rem;
  margin-bottom: 20px;
  transition: var(--transition-fast);
}

.why-card:hover .why-card-icon {
  background: var(--gold-gradient);
  color: #12141A;
  transform: scale(1.08);
}

.why-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.why-card-desc {
  font-size: 0.88rem;
  color: var(--text-dark-muted);
  line-height: 1.55;
}

/* ==========================================================================
   CONTACT US SECTION (DARK LUXURY THEME)
   ========================================================================== */
.contact-section {
  background-color: var(--bg-dark);
  position: relative;
  border-top: 1px solid var(--border-dark-subtle);
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(circle, rgba(197, 168, 109, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 40px;
  align-items: flex-start;
}

/* Contact Info Cards (Left Column) */
.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-info-card {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: var(--transition-normal);
}

.contact-info-card:hover {
  border-color: var(--gold-primary);
  transform: translateX(6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3), 0 0 15px rgba(197, 168, 109, 0.12);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(197, 168, 109, 0.12);
  border: 1px solid rgba(197, 168, 109, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.contact-info-card:hover .contact-info-icon {
  background: var(--gold-gradient);
  color: #12141A;
  transform: scale(1.06);
}

.contact-info-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-card-label {
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-light);
}

.contact-card-value {
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--text-white);
  transition: var(--transition-fast);
}

.contact-card-value:hover {
  color: var(--gold-light);
}

.contact-card-address {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-white);
  line-height: 1.4;
}

.contact-card-hint {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.contact-extra-numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  margin-top: 2px;
}

.contact-extra-numbers a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-cream);
  opacity: 0.75;
  transition: var(--transition-fast);
}

.contact-extra-numbers a:hover {
  color: var(--gold-light);
  opacity: 1;
}

/* Contact Form Card (Right Column) */
.contact-form-card {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 38px 36px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.contact-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
}

.form-header {
  margin-bottom: 26px;
}

.form-title {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 6px;
}

.form-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.site-contact-form {
  display: flex;
  flex-direction: column;
}

/* Form Label Details */
.site-contact-form .form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #F8EFE2;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 8px;
  letter-spacing: 0.2px;
}

.req-star {
  color: var(--gold-light);
  font-size: 0.92rem;
  font-weight: 700;
}

.opt-tag {
  color: var(--text-muted);
  font-size: 0.76rem;
  font-weight: 400;
  margin-left: auto;
}

/* Custom Visible Placeholders */
.site-contact-form input::placeholder,
.site-contact-form textarea::placeholder,
.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: rgba(225, 230, 245, 0.48);
  font-weight: 400;
  font-size: 0.88rem;
  opacity: 1;
}

/* Luxury Input Field Styles */
.site-contact-form .input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.site-contact-form .input-with-icon input,
.site-contact-form .input-with-icon select,
.site-contact-form .form-group textarea {
  width: 100%;
  background: rgba(14, 17, 24, 0.85);
  border: 1px solid rgba(197, 168, 109, 0.22);
  border-radius: var(--radius-sm);
  padding: 13px 16px 13px 44px;
  color: var(--text-white);
  font-size: 0.92rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.site-contact-form .form-group textarea {
  padding: 14px 16px;
  resize: vertical;
  min-height: 105px;
  line-height: 1.5;
}

.site-contact-form .input-with-icon i {
  position: absolute;
  left: 16px;
  color: var(--gold-primary);
  font-size: 0.95rem;
  pointer-events: none;
  transition: color 0.25s ease, transform 0.25s ease;
}

/* Custom Select Styling */
.site-contact-form .input-with-icon select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  padding-right: 40px;
}

.select-chevron {
  left: auto !important;
  right: 16px !important;
  color: var(--gold-light) !important;
  font-size: 0.82rem !important;
}

.site-contact-form .input-with-icon select option {
  background: #141722;
  color: #FFFFFF;
  padding: 10px;
}

/* Input Hover & Focus States */
.site-contact-form .input-with-icon input:hover,
.site-contact-form .input-with-icon select:hover,
.site-contact-form .form-group textarea:hover {
  border-color: rgba(197, 168, 109, 0.45);
  background: rgba(19, 23, 33, 0.95);
}

.site-contact-form .input-with-icon input:focus,
.site-contact-form .input-with-icon select:focus,
.site-contact-form .form-group textarea:focus {
  border-color: var(--gold-primary);
  background: rgba(22, 26, 38, 0.98);
  box-shadow: 0 0 0 3.5px rgba(197, 168, 109, 0.22), 0 8px 25px rgba(0, 0, 0, 0.35);
}

.site-contact-form .input-with-icon input:focus+i,
.site-contact-form .input-with-icon:focus-within i:not(.select-chevron) {
  color: var(--gold-light);
  transform: scale(1.1);
}

/* Validation Error Styles */
.form-group.has-error .input-with-icon input,
.form-group.has-error .input-with-icon select,
.form-group.has-error textarea {
  border-color: #EF4444 !important;
  background: rgba(239, 68, 68, 0.05) !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.22) !important;
}

.form-group.has-error .input-with-icon i:not(.select-chevron) {
  color: #F87171 !important;
}

.field-error {
  display: none;
  font-size: 0.78rem;
  color: #FCA5A5;
  font-weight: 500;
  margin-top: 5px;
  align-items: center;
  gap: 5px;
  animation: errorShake 0.35s ease;
}

.form-group.has-error .field-error {
  display: flex;
}

@keyframes errorShake {

  0%,
  100% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-4px);
  }

  75% {
    transform: translateX(4px);
  }
}

.btn-submit-contact {
  margin-top: 24px;
  padding: 15px 28px;
  font-size: 0.98rem;
}

.form-privacy-note {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
}

.form-privacy-note i {
  color: var(--gold-light);
  font-size: 0.85rem;
}

.form-success-msg {
  margin-top: 20px;
  padding: 15px 20px;
  border-radius: var(--radius-sm);
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #86EFAC;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.88rem;
  animation: fadeIn 0.4s ease;
}

.form-success-msg i {
  font-size: 1.4rem;
  color: #4ADE80;
  flex-shrink: 0;
}

.form-success-msg strong {
  color: #F0FDF4;
  font-size: 0.92rem;
}

.form-success-msg p {
  font-size: 0.8rem;
  color: #D1FAE5;
  margin-top: 2px;
}

/* ==========================================================================
   FOOTER SECTION (DARK THEME)
   ========================================================================== */
.site-footer {
  background-color: #07080B;
  border-top: 1px solid var(--border-dark-subtle);
  padding: 80px 0 30px 0;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 36px;
  margin-bottom: 60px;
}

.footer-logo {
  margin-bottom: 20px;
  display: inline-block;
}

.footer-logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 12px rgba(197, 168, 109, 0.4));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.footer-logo:hover .footer-logo-img {
  transform: scale(1.04);
  filter: drop-shadow(0 4px 20px rgba(212, 175, 55, 0.7));
}

.footer-about-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-cream);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.social-icon:hover {
  background: var(--gold-gradient);
  color: #12141A;
  border-color: transparent;
  transform: translateY(-3px);
}

.footer-heading {
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.5px;
  margin-bottom: 22px;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-list a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.footer-links-list a:hover {
  color: var(--gold-primary);
  padding-left: 5px;
}

.footer-contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 22px;
}

.contact-line {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.contact-line a:hover {
  color: var(--gold-light);
}

.contact-icon {
  color: var(--gold-primary);
  font-size: 0.95rem;
  margin-top: 4px;
}

.btn-footer-book {
  padding: 10px 24px;
  font-size: 0.85rem;
}

/* QR Code Block */
.qr-code-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.qr-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.qr-box {
  width: 100px;
  height: 100px;
  background: #FFFFFF;
  padding: 8px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.qr-svg {
  width: 100%;
  height: 100%;
}

.qr-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.3;
}

/* Footer Bottom Bar */
.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.developer-text {
  color: var(--text-muted);
}

.developer-link {
  color: var(--gold-light);
  font-weight: 600;
  transition: var(--transition-fast);
}

.developer-link:hover {
  color: var(--gold-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.love-text {
  display: flex;
  align-items: center;
  gap: 6px;
}

.heart-icon {
  color: #EF4444;
  animation: heartPulse 1.5s infinite;
}

@keyframes heartPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }
}

/* ==========================================================================
   INTERACTIVE MODAL STYLES
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(6, 7, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-dialog {
  width: 100%;
  max-width: 600px;
  transform: translateY(30px) scale(0.95);
  transition: var(--transition-smooth);
}

.modal-backdrop.active .modal-dialog {
  transform: translateY(0) scale(1);
}

.modal-card {
  background: #13151D;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-xl);
  padding: 40px;
  position: relative;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.8);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition-fast);
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--text-white);
  transform: rotate(90deg);
}

.modal-header {
  text-align: center;
  margin-bottom: 28px;
}

.modal-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 14px;
}

.modal-logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 12px rgba(197, 168, 109, 0.45));
}

.modal-title {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.modal-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.booking-form {
  display: flex;
  flex-direction: column;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.mt-3 {
  margin-top: 14px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-cream);
}

.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.input-with-icon i {
  position: absolute;
  left: 14px;
  color: var(--gold-primary);
  font-size: 0.9rem;
  pointer-events: none;
}

.booking-form .input-with-icon input,
.booking-form .input-with-icon select,
.booking-form .form-group textarea {
  width: 100%;
  background: rgba(18, 21, 30, 0.85);
  border: 1px solid rgba(197, 168, 109, 0.25);
  border-radius: var(--radius-sm);
  padding: 13px 16px 13px 44px;
  color: var(--text-white);
  font-size: 0.92rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.booking-form .form-group textarea {
  padding: 14px 16px;
  resize: vertical;
  min-height: 90px;
}

.booking-form .input-with-icon input:hover,
.booking-form .input-with-icon select:hover,
.booking-form .form-group textarea:hover {
  border-color: rgba(197, 168, 109, 0.45);
  background: rgba(22, 26, 38, 0.95);
}

.booking-form .input-with-icon input:focus,
.booking-form .input-with-icon select:focus,
.booking-form .form-group textarea:focus {
  border-color: var(--gold-primary);
  background: rgba(25, 30, 44, 0.98);
  box-shadow: 0 0 0 3.5px rgba(197, 168, 109, 0.22), 0 8px 20px rgba(0, 0, 0, 0.4);
}

.booking-form .input-with-icon select option {
  background: #141722;
  color: #FFFFFF;
  padding: 10px;
}

.btn-submit-modal {
  margin-top: 22px;
  padding: 14px;
  font-size: 1rem;
}

.w-100 {
  width: 100%;
}

.mt-4 {
  margin-top: 20px;
}

/* Modal Success State */
.modal-success-state {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px 10px;
}

.success-icon-wrap {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.15);
  color: #22C55E;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin-bottom: 20px;
  animation: scaleIn 0.4s ease;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* ==========================================================================
   LIGHTBOX MODAL
   ========================================================================== */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(10px);
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #FFF;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.lightbox-close:hover {
  background: var(--gold-primary);
  color: #000;
}

.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFF;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.lightbox-nav-btn:hover {
  background: var(--gold-primary);
  color: #12141A;
}

.prev-btn {
  left: 24px;
}

.next-btn {
  right: 24px;
}

.lightbox-content {
  max-width: 900px;
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img-wrapper {
  max-height: 75vh;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-dark);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.lightbox-img-wrapper img {
  max-height: 75vh;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.lightbox-caption {
  margin-top: 16px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-light);
  text-align: center;
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON
   ========================================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 990;
  transition: var(--transition-normal);
}

.floating-whatsapp:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.55);
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: #11131A;
  color: #FFF;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  border: 1px solid var(--border-dark);
  transition: var(--transition-fast);
}

.floating-whatsapp:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(-5px);
}

/* ==========================================================================
   VIEWPORT SCROLL & HERO ENTRANCE ANIMATIONS
   ========================================================================== */
/* Hero Initial Entrance */
.reveal-hero {
  opacity: 0;
  transform: translateY(35px);
  animation: heroEntrance 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.reveal-hero-img {
  opacity: 0;
  transform: scale(0.92) translateY(30px);
  animation: heroImageEntrance 1.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 {
  animation-delay: 0.15s;
}

.delay-2 {
  animation-delay: 0.3s;
}

.delay-3 {
  animation-delay: 0.45s;
}

.delay-4 {
  animation-delay: 0.6s;
}

.delay-5 {
  animation-delay: 0.75s;
}

.delay-6 {
  animation-delay: 0.9s;
}

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

@keyframes heroImageEntrance {
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Scroll Triggered Reveals */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-on-scroll[data-anim="fade-up"] {
  transform: translateY(40px);
}

.reveal-on-scroll[data-anim="fade-right"] {
  transform: translateX(-40px);
}

.reveal-on-scroll[data-anim="fade-left"] {
  transform: translateX(40px);
}

.reveal-on-scroll[data-anim="scale-up"] {
  transform: scale(0.93) translateY(20px);
}

.reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* Card Reveals (Staggered) */
.reveal-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-card.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1100px) {

  .rooms-grid,
  .amenities-grid,
  .contact-grid,
  .video-tour-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .video-player-col {
    max-width: 860px;
    width: 100%;
    margin: 0 auto;
  }

  .video-info-col {
    max-width: 860px;
    margin: 0 auto;
  }

  .amenities-right-col {
    max-width: 600px;
  }

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

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .why-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .amenities-pillars-grid {
    grid-template-columns: 1fr;
  }

  .hero-gradient-overlay {
    background:
      linear-gradient(180deg,
        rgba(10, 11, 15, 0.94) 0%,
        rgba(10, 11, 15, 0.88) 55%,
        rgba(10, 11, 15, 0.96) 100%);
  }

  .hero-bg-image {
    object-position: 70% center;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 82px;
  }

  .desktop-nav,
  .header-actions .btn-header {
    display: none;
  }

  .brand-logo-img {
    height: 52px;
  }

  .site-header.scrolled .brand-logo-img {
    height: 48px;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero-title {
    font-size: 2.7rem;
  }

  .section-title,
  .section-title-center {
    font-size: 2.4rem;
  }

  .hero-stats-card {
    flex-direction: column;
    gap: 24px;
    padding: 24px;
  }

  .stat-divider {
    width: 100%;
    height: 1px;
  }

  .amenities-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-section {
    min-height: auto;
    padding: 70px 0;
  }

  .gallery-thumb-wrap {
    height: 210px;
  }

  .video-tour-section {
    padding: 70px 0;
  }

  .video-play-btn,
  .video-play-ring {
    width: 68px;
    height: 68px;
    font-size: 1.4rem;
  }

  .video-play-ring {
    margin: -34px 0 0 -34px;
  }

  .video-info-title {
    font-size: 1.75rem;
  }

  .why-cards-grid {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom-bar {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta-group .btn {
    width: 100%;
  }

  .rooms-mosaic {
    grid-template-columns: 1fr;
  }

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

  .main-room-card {
    height: 280px;
  }

  .video-cta-row {
    flex-direction: column;
  }

  .video-cta-row .btn {
    width: 100%;
    justify-content: center;
  }

  .video-play-label {
    font-size: 0.7rem;
    letter-spacing: 1.6px;
  }

  .video-duration-badge {
    top: 12px;
    right: 12px;
    font-size: 0.7rem;
    padding: 6px 12px;
  }
}

/* Respect reduced-motion preference for the play button pulse */
@media (prefers-reduced-motion: reduce) {
  .video-play-ring {
    animation: none;
  }
}

/* ==========================================================================
   ADDITIONAL ABOUT PAGE SECTIONS & CARDS
   ========================================================================== */
.about-mission-section {
  background: var(--bg-dark-secondary);
  border-top: 1px solid var(--border-dark-subtle);
  padding: 100px 0;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.about-value-card {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 38px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.about-value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-gradient);
  opacity: 0;
  transition: var(--transition-fast);
}

.about-value-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-primary);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(197, 168, 109, 0.15);
}

.about-value-card:hover::before {
  opacity: 1;
}

.value-card-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: rgba(197, 168, 109, 0.12);
  border: 1px solid rgba(197, 168, 109, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-size: 1.4rem;
  margin-bottom: 22px;
  transition: var(--transition-normal);
}

.about-value-card:hover .value-card-icon {
  background: var(--gold-gradient);
  color: #12141A;
  transform: scale(1.08);
}

.value-card-title {
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 12px;
}

.value-card-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.about-standards-section {
  background: #0B0D13;
  padding: 100px 0;
  border-top: 1px solid var(--border-dark-subtle);
}

.standards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.standard-box {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-dark-subtle);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: var(--transition-normal);
}

.standard-box:hover {
  border-color: var(--border-dark);
  background: var(--bg-dark-elevated);
  transform: translateX(6px);
}

.standard-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(197, 168, 109, 0.1);
  border: 1px solid rgba(197, 168, 109, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 1.3rem;
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.standard-box:hover .standard-icon {
  background: var(--gold-gradient);
  color: #12141A;
  transform: scale(1.06);
}

.standard-content h4 {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 6px;
}

.standard-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 900px) {

  .about-values-grid,
  .standards-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   TESTIMONIALS SECTION (WARM LUXURY LIGHT CREAM THEME)
   ========================================================================== */
.testimonials-section {
  background-color: #F4F1EA;
  color: var(--text-dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(197, 168, 109, 0.2);
  border-bottom: 1px solid rgba(197, 168, 109, 0.2);
}

.testimonials-slider-container {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 45px;
}

.testimonials-track-wrapper {
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: 10px 0;
}

.testimonials-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.testimonial-slide {
  flex: 0 0 33.333%;
  max-width: 33.333%;
  padding: 10px;
  box-sizing: border-box;
}

@media (max-width: 992px) {
  .testimonial-slide {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 640px) {
  .testimonial-slide {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .testimonials-slider-container {
    padding: 0 15px;
  }
}

.testimonial-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
  transition: var(--transition-normal);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-primary);
  box-shadow: 0 16px 35px rgba(197, 168, 109, 0.22);
}

.testimonial-stars {
  color: #F59E0B;
  font-size: 0.92rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.testimonial-stars .rating-num {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-left: 6px;
}

.testimonial-text {
  font-size: 0.92rem;
  color: #334155;
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 22px;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border-light-subtle);
  padding-top: 16px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #12141A;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(197, 168, 109, 0.3);
}

.author-info h4 {
  font-family: var(--font-title);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.author-info p {
  font-size: 0.78rem;
  color: var(--text-dark-muted);
}

.testimonial-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  color: var(--text-dark);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transition: var(--transition-fast);
  z-index: 25;
  user-select: none;
}

.testimonial-nav-btn:hover {
  background: var(--gold-gradient);
  color: #12141A;
  border-color: transparent;
  transform: translateY(-50%) scale(1.1);
}

.prev-testimonial {
  left: 0;
}

.next-testimonial {
  right: 0;
}

.testimonial-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.testimonial-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(197, 168, 109, 0.3);
  cursor: pointer;
  transition: var(--transition-fast);
}

.testimonial-dots .dot.active {
  background: var(--gold-primary);
  width: 26px;
  border-radius: 10px;
}

/* ==========================================================================
   DEDICATED TESTIMONIALS PAGE STYLES
   ========================================================================== */
.testimonials-page-section {
  background: var(--bg-dark-secondary);
  padding: 80px 0 100px;
}

.testimonial-summary-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.summary-stat-box {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

.summary-stat-box:hover {
  border-color: var(--gold-primary);
  transform: translateY(-4px);
}

.stat-score {
  font-family: var(--font-title);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-score .stat-max {
  font-size: 1.2rem;
  color: var(--text-muted);
}

.stat-stars-row {
  color: #F59E0B;
  font-size: 1rem;
  margin-bottom: 8px;
}

.stat-number {
  font-family: var(--font-title);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 12px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

.testimonials-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.testimonial-page-cta {
  background: linear-gradient(135deg, #1C202C 0%, #11131A 100%);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-xl);
  padding: 50px 40px;
  text-align: center;
  margin-top: 40px;
}

.testimonial-page-cta h3 {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 10px;
}

.testimonial-page-cta p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.testimonial-page-cta .cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

@media (max-width: 992px) {
  .testimonials-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {

  .testimonial-summary-strip,
  .testimonials-page-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-page-cta .cta-btns {
    flex-direction: column;
    width: 100%;
  }

  .testimonial-page-cta .cta-btns .btn {
    width: 100%;
  }
}