/* ============================================================
   NISARGA LUXURY CO-LIV — Global Stylesheet
   Navy Blue (#0a1628) + Rose Gold (#c59b6d)
   Cormorant Garamond + Outfit
   ============================================================ */

:root {
  --navy: #0a1628;
  --navy-mid: #142035;
  --navy-light: #1e3050;
  --rose-gold: #c59b6d;
  --rose-gold-light: #d9b98a;
  --rose-gold-pale: rgba(197,155,109,0.12);
  --rose-gold-pale2: rgba(197,155,109,0.06);
  --white: #ffffff;
  --off-white: #f8f5f0;
  --text-dark: #0a1628;
  --text-mid: #3a4a5c;
  --text-light: #7a8898;
  --border: rgba(197,155,109,0.2);
  --shadow: 0 8px 40px rgba(10,22,40,0.12);
  --shadow-gold: 0 4px 24px rgba(197,155,109,0.25);
  --radius: 12px;
  --radius-lg: 20px;
  --nav-h: 72px;
}

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

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

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; transition: all 0.2s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ---- CONTAINER ---- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: rgba(10,22,40,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.logo {
  display: flex;
  align-items: center;
  gap: 2px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}
.logo-n {
  color: var(--rose-gold);
  font-size: 1.75rem;
}
.logo-text { color: var(--white); letter-spacing: 0.02em; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--rose-gold); }

.nav-cta {
  padding: 0.5rem 1.25rem !important;
  border: 1.5px solid var(--rose-gold) !important;
  border-radius: 6px;
  color: var(--rose-gold) !important;
  font-weight: 600 !important;
  transition: all 0.2s !important;
}
.nav-cta:hover {
  background: var(--rose-gold) !important;
  color: var(--navy) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  background: var(--rose-gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  border-radius: 8px;
  transition: all 0.25s;
  border: 2px solid var(--rose-gold);
  text-transform: uppercase;
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--rose-gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-secondary {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,0.4);
  transition: all 0.25s;
  text-transform: uppercase;
  white-space: nowrap;
}
.btn-secondary:hover {
  border-color: var(--rose-gold);
  color: var(--rose-gold);
}

.btn-ghost {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  background: transparent;
  color: var(--rose-gold);
  font-weight: 600;
  font-size: 0.9rem;
  border: 1.5px solid var(--rose-gold);
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: all 0.25s;
  white-space: nowrap;
}
.btn-ghost:hover {
  background: var(--rose-gold-pale);
  transform: translateY(-2px);
}

/* ---- SECTION UTILITIES ---- */
.section { padding: 96px 0; }

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 0.75rem;
}

.section-heading {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--navy);
  margin-bottom: 1rem;
  font-weight: 700;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 560px;
  margin-bottom: 2.5rem;
}

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  padding: calc(var(--nav-h) + 64px) 0 64px;
  background: var(--navy);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(197,155,109,0.08) 0%, transparent 70%);
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero .section-label { color: var(--rose-gold); }
.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 1rem;
}
.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  margin: 0 auto;
}

/* ==============================
   HOME PAGE
   ============================== */

/* HERO */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(197,155,109,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 10% 80%, rgba(197,155,109,0.04) 0%, transparent 50%);
}

.hero-bg-layers {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  z-index: 0;
}
.hero-bg-layers .bg-layer {
  position: absolute;
  top: 0;
  height: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0) 100%);
  border-right: 1px solid rgba(255,255,255,0.03);
}
.hero-bg-layers .layer-1 { left: 0; width: 15%; }
.hero-bg-layers .layer-2 { left: 15%; width: 25%; }
.hero-bg-layers .layer-3 { left: 40%; width: 45%; }

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
  align-items: center;
}

/* Video column */
.hero-video-col {
  display: flex;
  justify-content: flex-start;
  padding-left: 10%;
}
.video-frame {
  position: relative;
  width: min(340px, 90vw);
}
.video-placeholder {
  aspect-ratio: 10/18;
  background: linear-gradient(180deg, rgba(20,32,53,0.8) 0%, rgba(20,32,53,0.4) 100%);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  backdrop-filter: blur(10px);
}
.vp-inner {
  text-align: center;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.vp-inner p { 
  font-size: 0.8rem; 
  font-weight: 500; 
  letter-spacing: 0.1em; 
  color: rgba(255,255,255,0.5);
  margin: 0;
}

/* Text column */
.hero-text-col { color: var(--white); padding-right: 5%; }
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 2rem;
  font-weight: 600;
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  background: rgba(255,255,255,0.03);
}
.hero-tag .tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rose-gold);
}
.hero-heading {
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--white);
  letter-spacing: -0.02em;
}
.hero-heading em {
  font-style: italic;
  color: var(--rose-gold);
  font-weight: 600;
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2.5rem;
  max-width: 500px;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.hero-ctas .btn-secondary {
  border-color: rgba(255,255,255,0.15);
  font-weight: 500;
}

.hero-divider {
  border: none;
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin-bottom: 1.5rem;
  max-width: 90%;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  flex-wrap: wrap;
}
.stat { text-align: left; }
.stat-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 600;
  color: var(--rose-gold);
  line-height: 1;
  margin-bottom: 0.25rem;
  text-shadow: 0 4px 10px rgba(10,22,40,0.5);
}
.stat-lbl {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
}

/* ROOMS HIGHLIGHT */
.rooms-highlight { background: var(--off-white); }

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

.room-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(10,22,40,0.08);
  transition: all 0.3s;
  position: relative;
}
.room-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.room-card.featured {
  background: var(--navy);
  border-color: var(--rose-gold);
  color: var(--white);
}
.room-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--rose-gold);
  color: var(--navy);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.room-card-img { padding: 2rem 2rem 1rem; }
.room-img-placeholder {
  width: 64px;
  height: 64px;
  background: var(--rose-gold-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.room-card.featured .room-img-placeholder {
  background: rgba(197,155,109,0.15);
}
.room-card.featured .room-img-placeholder svg path,
.room-card.featured .room-img-placeholder svg rect { stroke: var(--rose-gold); }

.room-card-body { padding: 2.5rem; }
.room-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.room-card.featured .room-title { color: var(--white); }
.room-price {
  font-family: 'Outfit', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--rose-gold);
  margin-bottom: 1rem;
}
.room-card.featured .room-price { color: var(--white); }
.room-price span {
  font-size: 0.9rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  color: var(--text-light);
}
.room-card.featured .room-price span { color: rgba(255,255,255,0.5); }

.room-desc {
  font-size: 0.875rem;
  color: var(--text-mid);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}
.room-card.featured .room-desc { color: rgba(255,255,255,0.65); }

.room-includes {
  margin-bottom: 1.5rem;
}
.room-includes li {
  font-size: 0.8rem;
  color: var(--text-mid);
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(10,22,40,0.05);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.room-card.featured .room-includes li {
  color: rgba(255,255,255,0.6);
  border-bottom-color: rgba(255,255,255,0.08);
}
.room-includes li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--rose-gold);
  flex-shrink: 0;
}

.room-link {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--rose-gold);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.2s;
}
.room-link::after { content: '→'; }
.room-link:hover { gap: 0.75rem; }

/* AMENITIES PREVIEW */
.amenities-preview { background: var(--white); }
.amenities-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.amenity-list { display: flex; flex-direction: column; gap: 1.25rem; }
.amenity-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.amenity-icon {
  width: 44px; height: 44px;
  background: var(--rose-gold-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.amenity-item strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
}
.amenity-item span {
  font-size: 0.8rem;
  color: var(--text-light);
}

.amenities-visual { position: relative; }
.av-main { margin-bottom: 1rem; }
.av-placeholder {
  background: var(--navy);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border: 1px solid var(--border);
}
.av-large { height: 300px; }
.av-placeholder span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.av-small-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.av-small {
  height: 130px;
  background: var(--navy-mid);
}

/* FOOD */
.food-section { background: var(--navy); }
.food-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5rem;
  align-items: center;
}
.food-badge-col { text-align: center; }
.food-badge {
  width: 180px; height: 180px;
  border-radius: 50%;
  border: 2px solid var(--rose-gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.food-badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.5rem;
  color: var(--rose-gold);
  line-height: 1;
  font-weight: 700;
}
.food-badge-lbl {
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.food-types {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}
.food-types span {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border: 1px solid var(--border);
  border-radius: 20px;
  color: rgba(255,255,255,0.6);
}

.food-text .section-heading { color: var(--white); }
.food-text p { color: rgba(255,255,255,0.65); font-size: 1rem; }

.meal-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.meal-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s;
}
.meal-card:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.06);
}
.mc-icon {
  width: 56px; height: 56px;
  background: rgba(197,155,109,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.meal-card h4 {
  color: var(--rose-gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.meal-card span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* POLICIES STRIP */
.policies-strip {
  background: var(--off-white);
  padding: 60px 0;
  border-top: 1px solid rgba(10,22,40,0.06);
}
.policies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.policy-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding: 2.5rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 2px solid var(--rose-gold);
  transition: transform 0.3s, box-shadow 0.3s;
}
.policy-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.policy-item strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
}
.policy-item span {
  font-size: 0.72rem;
  color: var(--text-light);
}

/* ---- POLICY CARDS (Rooms Page Redesigned) ---- */
.policies-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.policy-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  border: 1px solid rgba(10,22,40,0.06);
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.policy-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rose-gold), var(--rose-gold-light));
  opacity: 0;
  transition: opacity 0.3s;
}
.policy-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.policy-card:hover::before { opacity: 1; }
.policy-card-icon {
  width: 60px; height: 60px;
  background: var(--navy);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.policy-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.policy-card-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--rose-gold);
  margin-bottom: 0.75rem;
}
.policy-card p {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.55;
}

/* ---- FOOD TAG BADGES ---- */
.food-tag-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 16px;
  border: 1px solid var(--border);
  border-radius: 24px;
  color: var(--rose-gold);
}

/* CTA BANNER */
.cta-banner {
  background: var(--rose-gold);
  padding: 80px 0;
  border-top: none;
}
.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-banner h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.cta-banner p { color: rgba(10,22,40,0.7); font-weight: 500; }
.cta-banner-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.cta-btn {
  background: var(--navy) !important;
  color: var(--white) !important;
  border-color: var(--navy) !important;
}
.cta-btn:hover {
  background: var(--navy-light) !important;
  box-shadow: 0 4px 15px rgba(10,22,40,0.2) !important;
}

.cta-btn-outline {
  color: var(--navy) !important;
  border-color: var(--navy) !important;
}
.cta-btn-outline:hover {
  background: rgba(10,22,40,0.05) !important;
}

/* ==============================
   ROOMS PAGE
   ============================== */
.rooms-section { background: var(--white); }
.rooms-section .section-sub { max-width: 700px; }

.rooms-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
}

.room-full-card {
  display: grid;
  grid-template-columns: 1fr 2fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(10,22,40,0.1);
  transition: all 0.3s;
}
.room-full-card.rfc-reverse {
  grid-template-columns: 2fr 1fr;
}
.room-full-card:hover { box-shadow: var(--shadow); }

.rfc-img {
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  padding: 2.5rem;
  min-height: 240px;
  position: relative;
}
.rfc-img-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  font-weight: 600;
}
.rfc-type-badge {
  position: absolute;
  top: 16px; left: 16px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy);
  background: var(--rose-gold);
  padding: 4px 10px;
  border-radius: 20px;
}

.rfc-body {
  padding: 2.5rem;
  background: var(--white);
}
.rfc-body .room-type { margin-bottom: 0.25rem; }
.rfc-body .room-price {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}
.rfc-body .room-price span { font-size: 1rem; }
.rfc-desc { color: var(--text-mid); margin-bottom: 1.5rem; font-size: 0.95rem; }
.rfc-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.rfc-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-mid);
}
.rfc-feature::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--rose-gold);
  flex-shrink: 0;
}

.policies-table-section { background: var(--off-white); }
.policies-table-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.policies-table {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(10,22,40,0.08);
}
.policies-table h3 {
  padding: 1.5rem 2rem 1rem;
  font-size: 1.1rem;
  color: var(--navy);
  border-bottom: 1px solid rgba(10,22,40,0.06);
}
.pt-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 2rem;
  border-bottom: 1px solid rgba(10,22,40,0.05);
  gap: 1rem;
}
.pt-row:last-child { border-bottom: none; }
.pt-label {
  font-size: 0.82rem;
  color: var(--text-light);
  font-weight: 500;
}
.pt-value {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  text-align: right;
}

/* ==============================
   AMENITIES PAGE
   ============================== */
.amenities-grid-section { background: var(--white); }

.amenity-full-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.amenity-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  border: 1px solid rgba(10,22,40,0.05);
  transition: all 0.3s;
  text-align: center;
}
.amenity-card:hover {
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.amenity-card-icon {
  width: 56px; height: 56px;
  background: var(--navy);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.amenity-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
  font-family: 'Outfit', sans-serif;
}
.amenity-card p {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.5;
}

.food-full-section { background: var(--navy); }
.food-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.food-card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
}
.food-card-time {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 0.75rem;
}
.food-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--rose-gold);
  margin-bottom: 0.5rem;
}
.food-card p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.food-card-icon {
  width: 64px; height: 64px;
  background: rgba(197,155,109,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1rem auto 0;
}

/* ==============================
   GALLERY PAGE
   ============================== */
.gallery-section { background: var(--white); }
.gallery-intro {
  max-width: 600px;
  margin-bottom: 3rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-item {
  aspect-ratio: 9/16;
  background: var(--navy);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
}
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow); }
.gallery-item-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.gallery-play {
  width: 52px; height: 52px;
  background: rgba(197,155,109,0.15);
  border: 1.5px solid var(--rose-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
}
.gallery-item:hover .gallery-play {
  background: var(--rose-gold);
}
.gallery-item:hover .gallery-play svg polygon { fill: var(--navy); }
.gallery-item-tag {
  position: absolute;
  top: 12px; left: 12px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--rose-gold);
  padding: 3px 9px;
  border-radius: 20px;
}

/* ==============================
   CONTACT PAGE
   ============================== */
.contact-section { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  margin-top: 3rem;
}

.contact-info h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--navy);
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(10,22,40,0.07);
}
.cd-icon {
  width: 40px; height: 40px;
  background: var(--rose-gold-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cd-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}
.cd-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
}
.cd-value a { color: var(--rose-gold); }
.cd-value a:hover { text-decoration: underline; }

.map-embed {
  margin-top: 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  height: 220px;
  border: 1px solid var(--border);
}
.map-embed iframe { width: 100%; height: 100%; border: none; display: block; }

/* FORM */
.enquiry-form {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid rgba(10,22,40,0.06);
}
.enquiry-form h3 {
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.enquiry-form .form-sub {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 1.75rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-mid);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--white);
  border: 1.5px solid rgba(10,22,40,0.1);
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: 'Outfit', sans-serif;
  color: var(--navy);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--rose-gold);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--rose-gold);
  color: var(--navy);
  border: none;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.25s;
  margin-top: 0.5rem;
}
.form-submit:hover {
  background: var(--rose-gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.form-success {
  display: none;
  text-align: center;
  padding: 1.5rem;
  background: rgba(197,155,109,0.1);
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-top: 1rem;
}
.form-success p {
  color: var(--rose-gold);
  font-weight: 600;
  font-size: 0.95rem;
}

/* ==============================
   FOOTER
   ============================== */
.footer {
  background: var(--navy);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  margin-top: 1rem;
  max-width: 300px;
  line-height: 1.7;
}
.footer-brand .logo { margin-bottom: 0; }
.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.footer-social a:hover {
  border-color: var(--rose-gold);
  background: var(--rose-gold-pale);
}
.footer-links h4,
.footer-contact h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--rose-gold);
  margin-bottom: 1.25rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--rose-gold); }
.footer-contact p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.4rem;
}
.footer-contact a {
  color: var(--rose-gold);
  font-weight: 500;
}
.footer-contact a:hover { text-decoration: underline; }
.footer-addr {
  font-size: 0.78rem !important;
  line-height: 1.6 !important;
  color: rgba(255,255,255,0.35) !important;
  margin-top: 0.5rem;
}
.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
}

/* ==============================
   WHATSAPP FLOAT
   ============================== */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all 0.3s;
  animation: wa-pulse 3s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}

@keyframes wa-pulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,0.65); }
}

/* ==============================
   ANIMATIONS
   ============================== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ---- NAVBAR SCROLLED STATE ---- */
.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(10,22,40,0.25);
}

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 1024px) {
  .policies-grid { grid-template-columns: repeat(3, 1fr); }
  .policies-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .amenity-full-grid { grid-template-columns: repeat(3, 1fr); }
  .room-cards { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 768px) {
  .navbar { padding: 0 20px; }
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 2rem;
    gap: 1.25rem;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 2rem 20px;
    text-align: center;
  }
  .hero-video-col { display: none; }
  .hero-stats { justify-content: center; }
  .hero-ctas { justify-content: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }

  .amenities-preview-grid,
  .food-inner,
  .contact-grid,
  .policies-table-inner,
  .cta-banner-inner,
  .room-full-card,
  .room-full-card.rfc-reverse { grid-template-columns: 1fr; }
  .rfc-img { min-height: 160px; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .food-cards { grid-template-columns: 1fr; }
  .amenity-full-grid { grid-template-columns: repeat(2, 1fr); }
  .policies-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .rfc-features { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .policies-grid { grid-template-columns: repeat(2, 1fr); }
  .policies-cards-grid { grid-template-columns: 1fr; }
  .amenity-full-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 1rem; }
}
