/* =============================================
   YatraMasti – Luxury Hotel & Resort Website
   style.css
   ============================================= */

/* Logo text adapts to header state */
.header:not(.scrolled) .logo svg tspan:first-child { fill: #FFFFFF !important; }
.header:not(.scrolled) .logo svg text > tspan:first-child { fill: #FFFFFF !important; }
.header:not(.scrolled) .logo svg text { fill: #FFFFFF !important; }
/* Tagline text in SVG */
.header:not(.scrolled) .logo svg text[y="36"] { fill: rgba(255,255,255,0.55) !important; }

/* ---- CSS Variables ---- */
:root {
  --primary:     #0F172A;
  --gold:        #C8A96B;
  --gold-light:  #E2C98A;
  --accent:      #EAB308;
  --white:       #FFFFFF;
  --off-white:   #F8F7F4;
  --text-dark:   #1E293B;
  --text-mid:    #475569;
  --text-light:  #94A3B8;
  --border:      #E2E8F0;
  --shadow-sm:   0 2px 8px rgba(15,23,42,0.08);
  --shadow-md:   0 8px 32px rgba(15,23,42,0.12);
  --shadow-lg:   0 20px 60px rgba(15,23,42,0.18);
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --header-h:    80px;
  --transition:  0.35s cubic-bezier(0.4,0,0.2,1);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* ---- Utility ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-header { text-align: center; margin-bottom: 56px; }

/* ---- Animations ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes scrollLine {
  0%   { height: 0; opacity: 1; }
  100% { height: 40px; opacity: 0; }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.08); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

.fade-up    { opacity: 0; }
.fade-left  { opacity: 0; }
.fade-right { opacity: 0; }

.fade-up.in-view    { animation: fadeUp   0.7s var(--transition) both; animation-delay: var(--d, 0s); }
.fade-left.in-view  { animation: fadeLeft 0.7s var(--transition) both; animation-delay: var(--d, 0s); }
.fade-right.in-view { animation: fadeRight 0.7s var(--transition) both; animation-delay: var(--d, 0s); }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background var(--transition), box-shadow var(--transition), height var(--transition);
}
.header.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
  height: 68px;
}
.header-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}
.logo { flex-shrink: 0; display: flex; align-items: center; }
.nav { margin-left: auto; }
.nav-list { display: flex; gap: 8px; align-items: center; }
.nav-link {
  padding: 8px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--white);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  position: relative;
}
.header.scrolled .nav-link { color: var(--text-dark); }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }
.nav-link:hover { color: var(--gold); }
.header.scrolled .nav-link:hover { color: var(--gold); }

.btn-booknow {
  padding: 10px 22px;
  background: var(--gold);
  color: var(--primary) !important;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
  letter-spacing: 0.02em;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  flex-shrink: 0;
}
.btn-booknow:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(200,169,107,0.35);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.header.scrolled .hamburger span { background: var(--primary); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: var(--white);
  padding: 24px 32px 32px;
  box-shadow: var(--shadow-lg);
  transform: translateY(-110%);
  transition: transform var(--transition);
  z-index: 999;
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-link {
  display: block;
  padding: 12px 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.mobile-link:hover { color: var(--gold); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  will-change: transform;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
  transition: transform 0.1s linear;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15,23,42,0.75) 0%,
    rgba(15,23,42,0.5) 50%,
    rgba(15,23,42,0.35) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 780px;
  padding: 0 24px;
  padding-top: var(--header-h);
}
.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid rgba(200,169,107,0.5);
  border-radius: 100px;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--gold-light);
  margin-bottom: 24px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 20px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.82);
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--gold);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  border-radius: var(--radius-sm);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,169,107,0.4);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  border: 1.5px solid rgba(255,255,255,0.6);
  color: var(--white);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(6px);
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}
.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(200,169,107,0.12);
  transform: translateY(-2px);
}

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.trust-item { display: flex; flex-direction: column; align-items: center; }
.trust-item strong { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: var(--gold-light); }
.trust-item span { font-size: 0.75rem; color: rgba(255,255,255,0.7); letter-spacing: 0.05em; }
.trust-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.25); }

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.scroll-line {
  width: 1px;
  height: 0;
  background: var(--gold);
  animation: scrollLine 1.5s ease-in-out infinite;
}
.scroll-text {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
}

/* ============================================================
   BOOKING SEARCH
   ============================================================ */
.booking-section {
  background: var(--white);
  padding: 0 0 72px;
  position: relative;
  z-index: 10;
}
.booking-card {
  max-width: 1100px;
  margin: -60px auto 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.booking-tabs {
  display: flex;
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
}
.tab-btn {
  flex: 1;
  padding: 16px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-mid);
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}
.tab-btn.active,
.tab-btn:hover {
  color: var(--primary);
  border-bottom-color: var(--gold);
  background: var(--white);
}

.booking-form {
  display: grid;
  grid-template-columns: 2fr 1.4fr 1.4fr 1.2fr auto;
  gap: 1px;
  background: var(--border);
}
.field-group {
  background: var(--white);
  padding: 18px 24px;
  position: relative;
}
.field-group label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.field-group label svg { stroke: var(--gold); }
.field-group input,
.field-group select {
  width: 100%;
  border: none;
  outline: none;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: transparent;
  padding: 0;
}
.field-group input::placeholder { color: var(--text-light); }
.field-group select { appearance: none; cursor: pointer; }

.destination-suggestions {
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: var(--white);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: var(--shadow-md);
  z-index: 50;
  max-height: 200px;
  overflow-y: auto;
}
.suggestion-item {
  padding: 12px 24px;
  font-size: 0.9rem;
  cursor: pointer;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), color var(--transition);
}
.suggestion-item:hover { background: var(--off-white); color: var(--gold); }

.btn-search {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 36px;
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: background var(--transition);
  min-width: 140px;
  border-radius: 0 0 var(--radius-lg) 0;
}
.btn-search:hover { background: var(--gold); color: var(--primary); }

/* ============================================================
   ABOUT
   ============================================================ */
.about-section { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-images { position: relative; min-height: 500px; overflow: visible; padding-bottom: 24px; }
.about-img-main {
  width: 78%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; height: 480px; object-fit: cover; transition: transform 0.6s ease; }
.about-img-main:hover img { transform: scale(1.04); }

.about-img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 52%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about-img-accent img { width: 100%; height: 220px; object-fit: cover; }

.about-badge-card {
  position: absolute;
  bottom: -20px;
  left: -16px;
  background: var(--gold);
  color: var(--primary);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
  z-index: 3;
}
.badge-number { display: block; font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; line-height: 1; }
.badge-label  { display: block; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.06em; margin-top: 4px; }

.about-content { padding-top: 20px; }
.about-text { font-size: 1rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 1.2rem; }

.counters {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.counter-item { text-align: left; }
.counter-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.counter-plus { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--gold); }
.counter-label { display: block; font-size: 0.8rem; font-weight: 500; color: var(--text-mid); margin-top: 4px; letter-spacing: 0.03em; }

/* ============================================================
   PROPERTIES
   ============================================================ */
.properties-section { background: var(--off-white); }

.filter-bar {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 8px 22px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-mid);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  background: var(--white);
  transition: all var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.properties-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  perspective: 1200px;
}
.property-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.property-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.property-card.hidden { display: none; }

.card-img-wrap {
  position: relative;
  overflow: hidden;
  height: 210px;
}
.card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.property-card:hover .card-img-wrap img { transform: scale(1.06); }

.card-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--gold);
  color: var(--primary);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.card-badge.new { background: var(--primary); color: var(--white); }

.card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,23,42,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.property-card:hover .card-overlay { opacity: 1; }
.card-quick-view {
  padding: 10px 22px;
  border: 1.5px solid rgba(255,255,255,0.8);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: background var(--transition), border-color var(--transition);
}
.card-quick-view:hover { background: var(--gold); border-color: var(--gold); color: var(--primary); }

.card-body { padding: 18px; }
.card-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 12px; }
.card-name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.card-location {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.78rem;
  color: var(--text-mid);
}
.card-rating {
  display: flex;
  align-items: center;
  gap: 3px;
  background: var(--off-white);
  padding: 4px 8px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  flex-shrink: 0;
}

.card-amenities {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 1rem;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.card-footer { display: flex; align-items: center; justify-content: space-between; }
.card-price { display: flex; align-items: baseline; gap: 3px; }
.price-from { font-size: 0.7rem; color: var(--text-light); }
.card-price strong { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--primary); }
.price-night { font-size: 0.72rem; color: var(--text-light); }

.btn-card {
  padding: 8px 16px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: background var(--transition), transform var(--transition);
}
.btn-card:hover { background: var(--gold); color: var(--primary); transform: scale(1.03); }

.view-all-wrap { text-align: center; margin-top: 48px; }

/* ============================================================
   DESTINATIONS
   ============================================================ */
.destinations-section { background: var(--white); }
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 260px;
  gap: 16px;
}
.dest-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: block;
}
.dest-large {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}
.dest-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.dest-card:hover img { transform: scale(1.07); }

.dest-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 22px 18px;
  background: linear-gradient(to top, rgba(15,23,42,0.85) 0%, transparent 100%);
  transition: padding var(--transition);
}
.dest-card:hover .dest-overlay { padding-bottom: 24px; }
.dest-name { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--white); }
.dest-props {
  font-size: 0.78rem;
  color: var(--gold-light);
  margin-top: 2px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity var(--transition), transform var(--transition);
}
.dest-card:hover .dest-props { opacity: 1; transform: translateY(0); }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section { background: var(--primary); }
.why-section .section-label { color: var(--gold); }
.why-section .section-title { color: var(--white); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.why-card:hover {
  background: rgba(200,169,107,0.1);
  border-color: var(--gold);
  transform: translateY(-4px);
}
.why-icon {
  width: 72px; height: 72px;
  background: rgba(200,169,107,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: background var(--transition);
}
.why-card:hover .why-icon { background: rgba(200,169,107,0.22); }
.why-card h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.why-card p  { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.7; }

/* ============================================================
   AMENITIES
   ============================================================ */
.amenities-section { background: var(--off-white); }
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.amenity-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.amenity-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--gold);
}
.amenity-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
}
.amenity-item h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}
.amenity-item p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.7; }

/* ============================================================
   VIDEO SECTION
   ============================================================ */
.video-section {
  position: relative;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.video-bg { position: absolute; inset: 0; }
.video-bg img { width: 100%; height: 100%; object-fit: cover; }
.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,23,42,0.65);
}
.video-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 560px;
  padding: 0 24px;
}
.video-content .section-title { color: var(--white); }

.play-btn {
  width: 76px; height: 76px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  animation: pulse 2.5s ease-in-out infinite;
  transition: background var(--transition), transform var(--transition);
  box-shadow: 0 0 0 12px rgba(200,169,107,0.2), 0 0 0 24px rgba(200,169,107,0.1);
}
.play-btn:hover {
  background: var(--gold-light);
  transform: scale(1.1);
  animation: none;
}

/* Video Modal */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-modal[hidden] { display: none; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
}
.modal-content {
  position: relative;
  width: min(800px, 90vw);
  border-radius: var(--radius-md);
  overflow: hidden;
  z-index: 1;
}
.modal-close {
  position: absolute;
  top: 12px; right: 12px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  transition: background var(--transition);
}
.modal-close:hover { background: var(--gold); }
.video-placeholder {
  background: var(--primary);
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 1.4rem;
  gap: 8px;
}
.video-placeholder small { font-size: 0.85rem; color: var(--text-light); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--white); overflow: hidden; }
.testimonials-slider { position: relative; overflow: hidden; padding: 8px 4px 8px; margin: 0 -4px; }
.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.55s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}
.testimonial-card {
  flex: 0 0 calc(33.333% - 16px);
  background: linear-gradient(135deg, rgba(248,247,244,0.9) 0%, rgba(255,255,255,0.95) 100%);
  border: 1px solid rgba(200,169,107,0.2);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(15,23,42,0.06), inset 0 1px 0 rgba(255,255,255,0.8);
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
  transform: translateY(-4px);
}
.testi-stars { font-size: 1.2rem; color: var(--accent); letter-spacing: 2px; margin-bottom: 16px; }
.testi-quote {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 24px;
}
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 46px; height: 46px;
  background: var(--gold);
  color: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 0.95rem; font-weight: 600; color: var(--primary); }
.testi-author span  { font-size: 0.78rem; color: var(--text-light); }

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}
.slider-btn {
  width: 44px; height: 44px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-mid);
  transition: all var(--transition);
}
.slider-btn:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }
.slider-dots { display: flex; gap: 8px; }
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background var(--transition), width var(--transition);
  border: none;
}
.slider-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-section { background: var(--off-white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.07); }

.gallery-item.g-tall { grid-row: span 2; }
.gallery-item.g-wide { grid-column: span 2; }

.gallery-hover {
  position: absolute;
  inset: 0;
  background: rgba(15,23,42,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-hover { opacity: 1; }
.gallery-hover span {
  padding: 8px 20px;
  border: 1.5px solid rgba(255,255,255,0.8);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  letter-spacing: 0.05em;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox[hidden] { display: none; }
.lightbox-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(10px);
}
.lightbox-content {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  display: flex;
  align-items: center;
  gap: 16px;
}
.lightbox-img {
  max-height: 80vh;
  max-width: 80vw;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: -50px; right: 0;
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.lightbox-close:hover { background: var(--gold); }
.lightbox-nav {
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition);
}
.lightbox-nav:hover { background: var(--gold); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { background: var(--white); }
.faq-container { max-width: 800px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  text-align: left;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  background: var(--white);
  transition: color var(--transition), background var(--transition);
}
.faq-question:hover,
.faq-question[aria-expanded="true"] { color: var(--gold); background: rgba(200,169,107,0.04); }
.faq-icon { flex-shrink: 0; transition: transform var(--transition); stroke: var(--text-mid); }
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
  stroke: var(--gold);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer.open { max-height: 300px; }
.faq-answer p {
  padding: 0 28px 22px;
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.8;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section { background: var(--off-white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: start;
}
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.contact-info-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
}
.contact-item svg { flex-shrink: 0; margin-top: 2px; }
.contact-item strong { display: block; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.contact-item p, .contact-item a { font-size: 0.92rem; color: var(--text-mid); line-height: 1.6; }
.contact-item a:hover { color: var(--gold); }

.map-placeholder {
  background: var(--off-white);
  border-radius: var(--radius-md);
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--border);
  margin-top: 8px;
}
.map-inner { text-align: center; color: var(--text-mid); }
.map-inner p { font-size: 0.85rem; margin-top: 8px; }

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}
.form-group label span { color: var(--gold); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: var(--text-dark);
  background: var(--off-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,169,107,0.15);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.btn-full { width: 100%; justify-content: center; }

.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 0.9rem;
  color: #16a34a;
  margin-top: 16px;
}
.form-success[hidden] { display: none; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--primary); color: var(--white); }
.footer-top { padding: 72px 0 48px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}
.footer-about {
  font-size: 0.88rem;
  color: #94A3B8;
  line-height: 1.75;
  margin: 20px 0 24px;
  max-width: 320px;
}
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #94A3B8;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.social-link:hover { background: var(--gold); color: var(--primary); transform: translateY(-2px); }

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: #94A3B8;
  transition: color var(--transition), padding-left var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }

.newsletter-form {
  display: flex;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  background: transparent;
  border: none;
  outline: none;
  color: var(--white);
  font-size: 0.88rem;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form button {
  padding: 12px 16px;
  background: var(--gold);
  color: var(--primary);
  transition: background var(--transition);
}
.newsletter-form button:hover { background: var(--gold-light); }

.footer-trust {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  font-size: 0.75rem;
  color: #64748B;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; color: #64748B; }
.footer-bottom strong { color: var(--gold); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.78rem; color: #64748B; transition: color var(--transition); }
.footer-legal a:hover { color: var(--gold); }

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px; height: 48px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 500;
  transition: background var(--transition), transform var(--transition), opacity var(--transition);
  opacity: 0;
}
.back-to-top:not([hidden]) { opacity: 1; }
.back-to-top:hover { background: var(--gold); transform: translateY(-3px); }
.back-to-top[hidden] { display: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .properties-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .nav, .btn-booknow { display: none; }
  .hamburger { display: flex; }
  .header.scrolled .hamburger span { background: var(--primary); }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-images { min-height: 360px; }
  .about-img-main { width: 90%; }
  .about-img-accent { width: 45%; }

  .properties-grid { grid-template-columns: repeat(2, 1fr); }
  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .dest-large { grid-column: span 2; grid-row: auto; height: 260px; }

  .booking-form { grid-template-columns: 1fr 1fr; }
  .btn-search { border-radius: 0; grid-column: 1 / -1; padding: 18px; }

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

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.g-wide { grid-column: span 1; }
}

@media (max-width: 640px) {
  :root { --header-h: 64px; }
  .section { padding: 64px 0; }

  .hero-title { font-size: clamp(2.2rem, 10vw, 3.5rem); }
  .booking-card { margin: -30px 16px 0; border-radius: var(--radius-md); }
  .booking-form { grid-template-columns: 1fr; }
  .field-group { border-bottom: 1px solid var(--border); }

  .properties-grid { grid-template-columns: 1fr; }
  .destinations-grid { grid-template-columns: 1fr; }
  .dest-large { grid-column: span 1; }

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

  .testimonials-track .testimonial-card { flex: 0 0 100%; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 8px; }

  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery-item.g-tall { grid-row: span 1; }

  .hero-trust { gap: 20px; }
  .trust-item strong { font-size: 1.4rem; }
  .trust-divider { height: 30px; }
}

@media (max-width: 400px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* Property card 3D preserve */
.property-card { transform-style: preserve-3d; }

/* Section label consistency in dark sections */
.why-section .section-sub,
.why-section .section-label { text-align: center; }

/* Video section label */
.video-content .section-label { display: block; margin-bottom: 0.5rem; }

/* Tablet: 2 testimonial cards visible */
@media (min-width: 641px) and (max-width: 900px) {
  .testimonials-track .testimonial-card { flex: 0 0 calc(50% - 12px); }
}

/* Print */
@media print {
  .header, .booking-section, .back-to-top { display: none; }
  .hero { min-height: auto; height: auto; }
}
