/* ═══════════════════════════════════════════════════════════════════════════
   SUNRISE POOL VILLA — Global Stylesheet
   Brand: Navy #122448 · Gold #ba9c6a · Cream #F8F8F8
   Fonts: Cormorant Garamond (serif) + Montserrat (sans)
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── RESET + BASE ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 300;
  color: #122448;
  background: #ffffff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

:root {
  --navy:  #122448;
  --gold:  #ba9c6a;
  --white: #ffffff;
  --cream: #F8F8F8;
  --cream2: #E8E8E8;
  --navy60: rgba(18,36,72,0.6);
  --navy30: rgba(18,36,72,0.3);
  --gold80: rgba(186,156,106,0.8);
}

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

/* ─── TYPOGRAPHY HELPERS ────────────────────────────────────────────────── */
.serif { font-family: 'Cormorant Garamond', Georgia, serif; }
.tracked { letter-spacing: 0.35em; }
.gold-text { color: var(--gold); }
.white-text { color: var(--white); }

/* ─── NAVIGATION ────────────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 5%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.5s, height 0.4s;
}

nav.scrolled {
  background: rgba(18,36,72,0.97);
  backdrop-filter: blur(12px);
  height: 64px;
}

nav.nav-dark {
  background: var(--navy);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  text-decoration: none;
}

.nav-logo .wordmark {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: var(--white);
  line-height: 1;
}

.nav-logo .sub {
  font-size: 8px;
  font-weight: 300;
  letter-spacing: 0.45em;
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.3s;
  text-transform: uppercase;
}

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

.nav-cta {
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.35em;
  color: var(--navy);
  background: var(--gold);
  padding: 10px 22px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.3s, color 0.3s;
}

.nav-cta:hover { background: #d4b882; }

/* ─── HAMBURGER (MOBILE) ───────────────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  width: 24px;
  height: 1px;
  background: var(--white);
  display: block;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(18,36,72,0.98);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.4em;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s;
}

.mobile-menu a:hover { color: var(--gold); }

/* ─── HERO ──────────────────────────────────────────────────────────────── */
.hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 140%;
  background: linear-gradient(to bottom, transparent, rgba(186,156,106,0.12), transparent);
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 35%;
  background: linear-gradient(to top, rgba(9,16,32,0.7), transparent);
}

.hero-water {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, rgba(12,24,50,0.8) 0%, transparent 100%);
  overflow: hidden;
}

.hero-water svg {
  position: absolute;
  bottom: 0;
  width: 100%;
  opacity: 0.18;
}

.hero-frame {
  position: absolute;
  inset: 60px;
  border: 0.6px solid rgba(186,156,106,0.25);
  pointer-events: none;
}

.hero-frame::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px;
  width: 50px; height: 50px;
  border-top: 1.5px solid var(--gold);
  border-left: 1.5px solid var(--gold);
}

.hero-frame::after {
  content: '';
  position: absolute;
  bottom: -1px; right: -1px;
  width: 50px; height: 50px;
  border-bottom: 1.5px solid var(--gold);
  border-right: 1.5px solid var(--gold);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
}

.hero-label {
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.55em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 28px;
  display: block;
}

.hero-wordmark {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(64px, 11vw, 128px);
  font-weight: 400;
  letter-spacing: 0.25em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0;
}

.hero-rule {
  width: clamp(160px, 20vw, 260px);
  height: 0.8px;
  background: var(--gold);
  margin: 22px auto;
}

.hero-subtitle {
  font-size: clamp(11px, 1.5vw, 14px);
  font-weight: 300;
  letter-spacing: 0.6em;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.hero-location {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.hero-scroll span {
  font-size: 8px;
  letter-spacing: 0.45em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
}

.scroll-line {
  width: 0.8px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.6); }
}

/* ─── PAGE HERO (subpages) ──────────────────────────────────────────────── */
.page-hero {
  height: 65vh;
  min-height: 480px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy);
}

.page-hero .hero-bg {
  opacity: 0.5;
}

.page-hero .hero-content {
  position: relative;
  z-index: 2;
}

/* ─── SECTIONS BASE ─────────────────────────────────────────────────────── */
section {
  position: relative;
}

.section-label {
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.55em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 32px;
}

.section-title.white { color: var(--white); }

.section-body {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.07em;
  line-height: 2;
  color: var(--navy60);
  max-width: 520px;
}

.section-body.white { color: rgba(255,255,255,0.65); }

.gold-rule {
  width: 50px;
  height: 0.8px;
  background: var(--gold);
  margin: 28px 0;
}

/* ─── INTRO STRIP ──────────────────────────────────────────────────────── */
.intro-strip {
  background: var(--navy);
  padding: 56px 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.intro-strip .stat {
  text-align: center;
  flex: 0 0 auto;
}

.stat-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 44px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.05em;
  line-height: 1;
}

.stat-label {
  font-size: 9px;
  letter-spacing: 0.45em;
  color: var(--gold);
  margin-top: 8px;
  text-transform: uppercase;
}

.intro-divider {
  width: 0.6px;
  height: 50px;
  background: rgba(186,156,106,0.3);
  flex-shrink: 0;
}

/* ─── STORY / TWO-COLUMN SECTIONS ──────────────────────────────────────── */
.two-col {
  padding: 120px 8%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.two-col.navy-bg { background: var(--navy); }
.two-col.cream-bg { background: var(--cream); }
.two-col.white-bg { background: var(--white); }

.col-image {
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
}

.col-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.col-image-overlay {
  position: absolute;
  inset: 20px;
  border: 0.6px solid rgba(186,156,106,0.3);
  pointer-events: none;
}

.col-image-tag {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--gold);
  padding: 8px 16px;
  font-size: 9px;
  letter-spacing: 0.35em;
  color: var(--white);
  text-transform: uppercase;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 40px;
  text-decoration: none;
}

.text-link span {
  font-size: 10px;
  letter-spacing: 0.35em;
  color: var(--navy);
  text-transform: uppercase;
}

.text-link .line {
  width: 40px;
  height: 0.8px;
  background: var(--gold);
  display: block;
  transition: width 0.3s;
}

.text-link:hover .line { width: 60px; }
.text-link.white span { color: var(--white); }

/* ─── VILLA CARDS ──────────────────────────────────────────────────────── */
.villas-header {
  text-align: center;
  margin-bottom: 72px;
}

.villas-header .section-title { margin-bottom: 20px; }
.villas-header .section-body { margin: 0 auto; text-align: center; }

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

.villa-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.villa-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.villa-card:hover .villa-card-bg { transform: scale(1.05); }

.villa-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9,18,36,0.9) 0%, rgba(9,18,36,0.2) 50%, transparent 100%);
}

.villa-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 36px 32px;
}

.villa-tag {
  font-size: 8px;
  letter-spacing: 0.45em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.villa-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.05em;
  line-height: 1.2;
  margin-bottom: 14px;
}

.villa-detail {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.5);
  border-top: 0.6px solid rgba(186,156,106,0.3);
  padding-top: 14px;
  display: flex;
  justify-content: space-between;
}

.villa-card-inner-frame {
  position: absolute;
  inset: 16px;
  border: 0.5px solid rgba(186,156,106,0.2);
  pointer-events: none;
  transition: border-color 0.4s;
}

.villa-card:hover .villa-card-inner-frame {
  border-color: rgba(186,156,106,0.5);
}

/* ─── POOL FEATURES GRID ──────────────────────────────────────────────── */
.features-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.feature-item {
  padding: 24px 0;
  border-top: 0.6px solid rgba(186,156,106,0.2);
}

.feature-icon-line {
  width: 32px;
  height: 0.8px;
  background: var(--gold);
  margin-bottom: 14px;
}

.feature-name {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.75);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.feature-desc {
  font-size: 11px;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
}

/* Features on light bg */
.feature-item.light .feature-name { color: var(--navy); }
.feature-item.light .feature-desc { color: var(--navy60); }

/* ─── EXPERIENCE CARDS ─────────────────────────────────────────────────── */
.exp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.exp-card {
  background: var(--white);
  padding: 48px 36px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s, background 0.3s;
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.exp-card:hover { border-bottom-color: var(--gold); }

.exp-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 28px;
}

.exp-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 14px;
  letter-spacing: 0.03em;
}

.exp-desc {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--navy60);
  line-height: 1.9;
}

/* ─── GALLERY ──────────────────────────────────────────────────────────── */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 280px 280px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(9,18,36,0);
  transition: background 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover .gallery-overlay {
  background: rgba(9,18,36,0.35);
}

.gallery-caption {
  font-size: 9px;
  letter-spacing: 0.45em;
  color: var(--white);
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.4s;
}

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

/* ─── TESTIMONIAL ──────────────────────────────────────────────────────── */
.testimonial {
  background: var(--navy);
  padding: 120px 8%;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: center;
}

.testimonial-stars {
  font-size: 16px;
  letter-spacing: 6px;
  color: var(--gold);
}

.testimonial-source {
  font-size: 9px;
  letter-spacing: 0.4em;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
}

.testimonial-platform {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
}

.testimonial-quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.testimonial-author {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 0.6px solid rgba(186,156,106,0.2);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.4);
}

/* ─── LOCATION SECTION ─────────────────────────────────────────────────── */
.location-detail {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.location-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.location-item-icon {
  width: 2px;
  height: 40px;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 4px;
}

.location-item-label {
  font-size: 9px;
  letter-spacing: 0.45em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.location-item-value {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--navy);
  letter-spacing: 0.04em;
}

.location-item-value.white { color: var(--white); }

/* ─── BOOKING CTA ──────────────────────────────────────────────────────── */
.booking-cta {
  background: var(--navy);
  padding: 140px 8%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.booking-cta::before {
  content: 'SUNRISE';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 280px;
  font-weight: 400;
  color: rgba(255,255,255,0.025);
  letter-spacing: 0.2em;
  white-space: nowrap;
  pointer-events: none;
}

.booking-cta .section-label { text-align: center; }
.booking-cta .section-title { color: var(--white); margin: 0 auto 20px; max-width: 700px; }
.booking-cta .section-body { color: rgba(255,255,255,0.5); margin: 0 auto 56px; text-align: center; }

.booking-form {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 2px;
  background: rgba(255,255,255,0.05);
  border: 0.6px solid rgba(186,156,106,0.2);
  padding: 4px;
  margin-bottom: 40px;
}

.booking-field {
  display: flex;
  flex-direction: column;
  padding: 16px 24px;
  min-width: 180px;
  background: rgba(255,255,255,0.03);
  border: none;
  cursor: pointer;
}

.booking-field label {
  font-size: 8px;
  letter-spacing: 0.45em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.booking-field span,
.booking-field input,
.booking-field select {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
  background: transparent;
  border: none;
  outline: none;
}

.booking-btn {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.4em;
  padding: 22px 52px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.3s;
  cursor: pointer;
  border: none;
}

.booking-btn:hover { background: #c8a87a; }

.booking-note {
  font-size: 10px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.3);
}

/* ─── CTA BUTTON (general) ─────────────────────────────────────────────── */
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.35em;
  padding: 16px 40px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.3s;
  border: none;
  cursor: pointer;
}

.btn-gold:hover { background: #c8a87a; }

.btn-outline {
  display: inline-block;
  border: 0.8px solid var(--gold);
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.35em;
  padding: 16px 40px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.3s, color 0.3s;
  cursor: pointer;
  background: transparent;
}

.btn-outline:hover { background: var(--gold); color: var(--white); }

/* ─── ICON GRID (amenities) ────────────────────────────────────────────── */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin: 48px 0;
}

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

.icon-item .icon-dot {
  width: 8px;
  height: 8px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.icon-item span {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--navy60);
}

.icon-item.white span { color: rgba(255,255,255,0.6); }

/* ─── KEY DETAILS BAR ──────────────────────────────────────────────────── */
.details-bar {
  background: var(--navy);
  padding: 40px 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.details-bar .detail {
  text-align: center;
}

.details-bar .detail-value {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px;
  color: var(--white);
  letter-spacing: 0.05em;
}

.details-bar .detail-label {
  font-size: 9px;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 4px;
}

.details-bar .bar-divider {
  width: 0.6px;
  height: 40px;
  background: rgba(186,156,106,0.3);
}

/* ─── CONTENT SECTIONS ─────────────────────────────────────────────────── */
.content-section {
  padding: 100px 8%;
}

.content-section.cream-bg { background: var(--cream); }
.content-section.navy-bg { background: var(--navy); }
.content-section.white-bg { background: var(--white); }

.content-section .centered { text-align: center; max-width: 720px; margin: 0 auto; }

/* ─── FAQ ──────────────────────────────────────────────────────────────── */
.faq-list { max-width: 720px; margin: 0 auto; }

.faq-item {
  border-bottom: 0.6px solid rgba(186,156,106,0.2);
  padding: 28px 0;
}

.faq-question {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: '+';
  font-size: 24px;
  color: var(--gold);
  transition: transform 0.3s;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  font-size: 13px;
  letter-spacing: 0.07em;
  line-height: 2;
  color: var(--navy60);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-top: 16px;
}

/* ─── CONTACT FORM ─────────────────────────────────────────────────────── */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 640px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field.full-width { grid-column: span 2; }

.form-field label {
  font-size: 9px;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--navy);
  background: var(--white);
  border: 0.8px solid var(--cream2);
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.3s;
  letter-spacing: 0.05em;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold);
}

.form-field textarea { min-height: 120px; resize: vertical; }

/* ─── FOOTER ────────────────────────────────────────────────────────────── */
footer {
  background: #090f1e;
  padding: 80px 8% 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 0.6px solid rgba(186,156,106,0.15);
  margin-bottom: 40px;
}

.footer-brand .wordmark {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--white);
  display: block;
  margin-bottom: 4px;
}

.footer-brand .rule {
  width: 50px;
  height: 0.6px;
  background: var(--gold);
  margin: 12px 0;
}

.footer-brand .tagline {
  font-size: 10px;
  letter-spacing: 0.35em;
  color: var(--gold);
  margin-bottom: 24px;
  text-transform: uppercase;
}

.footer-brand .desc {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.3);
  line-height: 1.9;
  max-width: 260px;
}

.footer-col h4 {
  font-size: 9px;
  letter-spacing: 0.45em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul a {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col ul a:hover { color: var(--gold); }

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}

.social-icon {
  width: 34px;
  height: 34px;
  border: 0.6px solid rgba(186,156,106,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s;
}

.social-icon:hover {
  border-color: var(--gold);
  background: rgba(186,156,106,0.1);
}

.social-icon svg { width: 14px; height: 14px; }
.social-icon:hover svg path,
.social-icon:hover svg rect,
.social-icon:hover svg circle { stroke: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.2);
}

.footer-bottom .policy-links {
  display: flex;
  gap: 28px;
}

.footer-bottom .policy-links a {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.2);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-bottom .policy-links a:hover { color: var(--gold); }

/* ─── SCROLL ANIMATIONS ────────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up.delay-1 { transition-delay: 0.12s; }
.fade-up.delay-2 { transition-delay: 0.24s; }
.fade-up.delay-3 { transition-delay: 0.36s; }
.fade-up.delay-4 { transition-delay: 0.48s; }

/* ─── VILLA CONFIG TABS ────────────────────────────────────────────────── */
.config-tabs {
  display: flex;
  gap: 2px;
  margin-bottom: 48px;
}

.config-tab {
  flex: 1;
  padding: 24px;
  background: var(--cream);
  border: none;
  cursor: pointer;
  text-align: center;
  transition: background 0.3s;
  font-family: 'Montserrat', sans-serif;
}

.config-tab.active {
  background: var(--navy);
}

.config-tab .tab-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 4px;
}

.config-tab.active .tab-title { color: var(--white); }

.config-tab .tab-detail {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--navy60);
}

.config-tab.active .tab-detail { color: var(--gold); }

/* ─── BOOKING ENGINE PAGE ───────────────────────────────────────────────── */
.booking-engine-section {
  background: var(--white);
  padding: 100px 5% 80px;
}

.booking-engine-intro {
  text-align: center;
  margin-bottom: 64px;
}

.booking-widget-wrap {
  max-width: 1100px;
  margin: 0 auto;
  background: var(--cream);
  border: 1px solid var(--cream2);
  padding: 48px;
  position: relative;
}

.booking-widget-wrap::before {
  content: '';
  position: absolute;
  top: -1px; left: 48px;
  width: 60px;
  height: 2px;
  background: var(--gold);
}

/* ─── SECUREBOOKINGS WIDGET BRAND OVERRIDES ─────────────────────────────── */
/* Override widget fonts to match Montserrat / Cormorant brand system */
.hbe-bws,
.hbe-bws * {
  font-family: 'Montserrat', Arial, sans-serif !important;
  -webkit-font-smoothing: antialiased;
}

/* Headings inside widget → Cormorant Garamond */
.hbe-bws h1,
.hbe-bws h2,
.hbe-bws h3,
.hbe-bws h4,
.hbe-bws .room-name,
.hbe-bws .rate-name {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-weight: 400 !important;
  color: var(--navy) !important;
  letter-spacing: 0.02em !important;
}

/* Primary action buttons → Gold brand colour */
.hbe-bws button,
.hbe-bws input[type="submit"],
.hbe-bws input[type="button"],
.hbe-bws .btn,
.hbe-bws .btn-primary,
.hbe-bws .btn-book,
.hbe-bws .book-btn,
.hbe-bws [class*="btn-primary"],
.hbe-bws [class*="book-button"] {
  background: var(--gold) !important;
  background-color: var(--gold) !important;
  color: var(--white) !important;
  border: none !important;
  border-radius: 0 !important;
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 300 !important;
  font-size: 11px !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  padding: 14px 32px !important;
  cursor: pointer !important;
  transition: background 0.3s, opacity 0.3s !important;
}

.hbe-bws button:hover,
.hbe-bws .btn:hover,
.hbe-bws .btn-primary:hover {
  background: var(--navy) !important;
  background-color: var(--navy) !important;
  opacity: 1 !important;
}

/* Secondary / outline buttons */
.hbe-bws .btn-default,
.hbe-bws .btn-secondary,
.hbe-bws [class*="btn-secondary"] {
  background: transparent !important;
  background-color: transparent !important;
  border: 1px solid var(--navy) !important;
  color: var(--navy) !important;
  border-radius: 0 !important;
  font-weight: 300 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
}

/* Inputs & selects */
.hbe-bws input[type="text"],
.hbe-bws input[type="email"],
.hbe-bws input[type="tel"],
.hbe-bws input[type="number"],
.hbe-bws input[type="date"],
.hbe-bws select,
.hbe-bws textarea {
  border: 1px solid var(--cream2) !important;
  border-radius: 0 !important;
  background: var(--white) !important;
  color: var(--navy) !important;
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 300 !important;
  padding: 10px 14px !important;
}

.hbe-bws input:focus,
.hbe-bws select:focus,
.hbe-bws textarea:focus {
  outline: none !important;
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 2px rgba(186,156,106,0.15) !important;
}

/* Price / rate highlight */
.hbe-bws .price,
.hbe-bws .rate-price,
.hbe-bws .total-price,
.hbe-bws [class*="price"] {
  color: var(--gold) !important;
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-weight: 400 !important;
}

/* Step indicators / progress */
.hbe-bws .step-active,
.hbe-bws .step.active,
.hbe-bws [class*="step-active"] {
  background: var(--gold) !important;
  color: var(--white) !important;
  border-color: var(--gold) !important;
}

/* Nav tabs inside widget */
.hbe-bws .nav-tabs .nav-link.active,
.hbe-bws .nav-pills .nav-link.active {
  background: var(--navy) !important;
  color: var(--white) !important;
  border-radius: 0 !important;
}

/* Checkmarks / selected states */
.hbe-bws .selected,
.hbe-bws .checked,
.hbe-bws [class*="selected"] {
  border-color: var(--gold) !important;
}

/* Remove default widget border-radius wherever applied */
.hbe-bws [class*="card"],
.hbe-bws [class*="panel"],
.hbe-bws [class*="modal"],
.hbe-bws .room-card {
  border-radius: 0 !important;
}

/* Dark card variant for "Why Book Direct" section */
.exp-card-dark {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(186,156,106,0.2);
}

.exp-card-dark:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(186,156,106,0.5);
}

.exp-card-dark .exp-desc {
  color: rgba(255,255,255,0.55);
}

/* ─── GALLERY 5-ITEM LAYOUT ─────────────────────────────────────────────── */
.gallery-5 {
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 360px 300px;
}

.gallery-5 .gallery-item.large {
  grid-column: span 2;
  grid-row: span 1;
}

/* ─── BOOKING FORM DATE / SELECT INPUTS ─────────────────────────────────── */
.booking-field input[type="date"],
.booking-field select {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.08em;
  padding: 6px 0;
  width: 100%;
  cursor: pointer;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  color-scheme: dark;
}

.booking-field input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1) opacity(0.5);
  cursor: pointer;
}

.booking-field select option {
  background: var(--navy);
  color: var(--white);
}

.booking-field input[type="date"]:focus,
.booking-field select:focus {
  border-bottom-color: var(--gold);
}

/* ─── MAP SECTION ────────────────────────────────────────────────────────── */
.map-section {
  background: var(--cream);
  padding: 100px 5% 0;
}

.map-intro {
  text-align: center;
  margin-bottom: 56px;
}

.map-embed {
  position: relative;
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 480px;
  border: none;
  filter: grayscale(20%) contrast(1.05);
}

.map-directions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  margin-bottom: 60px;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
}

.map-directions .line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

.map-directions:hover .line { width: 60px; }

/* ─── REVIEW SECTION ─────────────────────────────────────────────────────── */
.review-section {
  background: var(--navy);
  padding: 100px 5%;
}

.review-inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.review-inner .section-title {
  color: var(--white);
}

.review-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.review-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 28px 52px;
  border: 1px solid rgba(186,156,106,0.35);
  color: var(--white);
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  transition: background 0.3s, border-color 0.3s;
  background: rgba(255,255,255,0.03);
  min-width: 220px;
}

.review-btn-platform {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--gold);
  line-height: 1;
}

.review-btn-action {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s;
}

.review-btn:hover {
  background: rgba(186,156,106,0.12);
  border-color: var(--gold);
}

.review-btn:hover .review-btn-action {
  color: var(--white);
}

/* ─── RESPONSIVE ────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .two-col, .testimonial { grid-template-columns: 1fr; gap: 48px; }
  .villas-grid { grid-template-columns: 1fr 1fr; }
  .exp-grid { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item.large { grid-column: span 1; grid-row: span 1; }
  .gallery-item { min-height: 240px; }
  .gallery-5 { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-5 .gallery-item.large { grid-column: span 2; grid-row: span 1; min-height: 300px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .details-bar { gap: 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full-width { grid-column: span 1; }
  .map-embed iframe { height: 360px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .villas-grid { grid-template-columns: 1fr; }
  .exp-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .booking-form { flex-direction: column; width: 100%; }
  .booking-field { min-width: auto; }
  .gallery-5 { grid-template-columns: 1fr 1fr; }
  .gallery-5 .gallery-item.large { grid-column: span 2; }
  .map-embed iframe { height: 280px; }
  .map-section { padding: 60px 5% 0; }
  .review-buttons { flex-direction: column; align-items: center; }
  .review-btn { width: 100%; max-width: 320px; align-items: center; }
  .review-buttons { flex-direction: column; align-items: center; }
  .intro-strip .intro-divider { display: none; }
  .intro-strip { gap: 32px; }
  .footer-top { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .config-tabs { flex-direction: column; }
  .hero-frame { inset: 20px; }
  .content-section { padding: 60px 5%; }
  .two-col { padding: 60px 5%; }
}
