/* ═══════════════════════════════════════════════════════════
   ROF PRAVASA — Luxury Design System
   Colors: Deep Green #0d2818 · Gold #c9a84c · Cream #fdf8f0
   Fonts: Cormorant Garamond (headings) · Inter (body)
═══════════════════════════════════════════════════════════ */

:root {
  --green:        #0d2818;
  --green-mid:    #1a3d26;
  --green-light:  #2a5c3a;
  --gold:         #c9a84c;
  --gold-light:   #e0c06a;
  --gold-dark:    #a8872d;
  --gold-soft:    rgba(201,168,76,0.12);
  --cream:        #fdf8f0;
  --cream-2:      #f5ede0;
  --white:        #ffffff;
  --ink:          #1a1208;
  --body:         #3d3020;
  --muted:        #7a6a50;
  --hairline:     rgba(201,168,76,0.2);
  --hairline-dark:rgba(13,40,24,0.15);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;
  --radius-full:9999px;

  --shadow-sm:  0 2px 8px rgba(13,40,24,0.08);
  --shadow-md:  0 8px 24px rgba(13,40,24,0.12), 0 2px 6px rgba(13,40,24,0.06);
  --shadow-lg:  0 20px 60px rgba(13,40,24,0.16), 0 6px 20px rgba(13,40,24,0.1);
  --shadow-gold:0 8px 32px rgba(201,168,76,0.3);

  --nav-h: 72px;
  --container: 1240px;
}

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

html {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body { min-height: 100vh; overflow-x: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--font-body); cursor: pointer; border: none; background: none; }

/* ─── Skip Link ─── */
.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--gold); color: var(--green);
  padding: 8px 20px; border-radius: var(--radius-md);
  font-weight: 700; z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* ─── Container ─── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 768px) { .container { padding: 0 16px; } }

/* ─── Reveal Animations ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease calc(var(--delay, 0s)), transform 0.7s ease calc(var(--delay, 0s));
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Typography ─── */
.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 12px;
}
.eyebrow-light { color: var(--gold-light); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--green);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-title-light { color: var(--white); }
.section-title-light em { color: var(--gold-light); }

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--body);
  line-height: 1.75;
  max-width: 560px;
}
.section-subtitle-light { color: rgba(255,255,255,0.75); }

.section-header { margin-bottom: 56px; text-align: center; }
.section-header .section-subtitle { margin: 0 auto; }

.section { padding: 100px 0; }
@media (max-width: 768px) { .section { padding: 70px 0; } }

/* ─── Buttons ─── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--gold);
  color: var(--green);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.45);
}
.btn-gold .btn-arrow { transition: transform 0.3s; }
.btn-gold:hover .btn-arrow { transform: translateX(4px); }

.btn-ghost-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 28px;
  background: transparent;
  color: rgba(255,255,255,0.9);
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.3s;
}
.btn-ghost-hero:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}

.btn-gold-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.3s;
}
.btn-gold-outline:hover {
  background: var(--gold-soft);
  transform: translateY(-2px);
}

.btn-submit, .btn-submit-full {
  width: 100%;
  padding: 16px 24px;
  background: var(--gold);
  color: var(--green);
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s;
  margin-top: 8px;
}
.btn-submit:hover, .btn-submit-full:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-enquire-nav {
  padding: 10px 22px;
  background: var(--gold);
  color: var(--green);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: all 0.25s;
  white-space: nowrap;
}
.btn-enquire-nav:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

/* ─── Form Inputs ─── */
.form-input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--hairline-dark);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.form-input::placeholder { color: var(--muted); }
.form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--body);
  margin-bottom: 6px;
}
.form-group { margin-bottom: 14px; }
.form-disclaimer {
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
  margin-top: 12px;
}

/* ─── MODAL ─── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13,40,24,0.8);
  backdrop-filter: blur(6px);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.25s ease;
}
.modal-overlay[hidden] { display: none; }

.modal-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  width: 100%;
  max-width: 480px;
  position: relative;
  box-shadow: var(--shadow-lg);
  animation: slideUp 0.35s cubic-bezier(0.4,0,0.2,1);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--body);
  transition: all 0.2s;
}
.modal-close:hover { background: var(--cream-2); color: var(--green); }

.modal-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 8px;
}
.modal-title {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 500;
  color: var(--green);
  margin-bottom: 6px;
}
.modal-sub {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.form-success {
  text-align: center;
  padding: 30px 0;
}
.success-icon {
  width: 64px; height: 64px;
  background: #dcfce7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: #16a34a;
  margin: 0 auto 16px;
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--green);
  margin-bottom: 8px;
}
.form-success p { color: var(--body); font-size: 0.9375rem; }

@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes slideUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }

/* ─── WhatsApp Float ─── */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 8000;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: #25d366;
  color: var(--white);
  border-radius: var(--radius-full);
  box-shadow: 0 8px 32px rgba(37,211,102,0.45);
  font-size: 0.875rem;
  font-weight: 700;
  transition: all 0.3s;
}
.whatsapp-float:hover {
  background: #1ebe5b;
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(37,211,102,0.55);
}
@media (max-width: 640px) { .whatsapp-label { display: none; } }

/* ─── NAVBAR ─── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 7000;
  height: var(--nav-h);
  background: transparent;
  transition: background 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
}
.navbar.scrolled {
  background: rgba(13,40,24,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(13,40,24,0.2);
}

.nav-container {
  display: flex;
  align-items: center;
  height: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  gap: 32px;
}

.nav-brand { flex-shrink: 0; }
.nav-logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo-img {
  height: 40px;
  width: auto;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo-rof {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
}
.nav-logo-pravasa {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--white);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0 auto;
}
.nav-link {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { width: 100%; }

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

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(13,40,24,0.99);
    flex-direction: column;
    padding: 32px 24px;
    gap: 24px;
    transform: translateY(-120%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
    border-top: 1px solid var(--hairline);
    margin: 0;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
  }
  .nav-hamburger { display: flex; }
  .btn-enquire-nav { display: none; }
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(13,40,24,0.92) 0%, rgba(13,40,24,0.6) 60%, rgba(13,40,24,0.3) 100%),
    linear-gradient(to top, rgba(13,40,24,0.5) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: calc(var(--nav-h) + 60px) 24px 80px;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201,168,76,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(201,168,76,0.35);
  color: var(--gold-light);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:0.5;transform:scale(0.8);} }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
  max-width: 700px;
}
.hero-accent {
  font-style: italic;
  color: var(--gold);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  max-width: 580px;
  margin-bottom: 40px;
}
.hero-br { display: none; }
@media (min-width: 900px) { .hero-br { display: inline; } }

.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: fit-content;
  max-width: 100%;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  padding: 18px 28px;
  gap: 2px;
}
.stat-val {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}
.stat-lbl {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.stat-sep {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
  align-self: center;
}
@media (max-width: 640px) {
  .hero-stats { width: 100%; border-radius: var(--radius-md); }
  .hero-stat { padding: 14px 16px; }
  .stat-sep { display: none; }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px; right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, rgba(201,168,76,0.6), transparent);
  animation: scrollAnim 2.5s ease-in-out infinite;
}
@keyframes scrollAnim {
  0%,100%{transform:scaleY(1);transform-origin:top;}
  50%{transform:scaleY(0.3);transform-origin:top;}
}
@media (max-width: 640px) { .hero-scroll-hint { display: none; } }

/* ─── OVERVIEW ─── */
.overview-section { background: var(--cream); }

.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) {
  .overview-grid { grid-template-columns: 1fr; gap: 48px; }
}

.overview-text .section-title { margin-bottom: 24px; text-align: left; }

.overview-body {
  font-size: 1.0625rem;
  color: var(--body);
  line-height: 1.85;
  margin-bottom: 20px;
}

.overview-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--gold-soft);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--green);
}

.overview-img-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
}
.overview-img-frame img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 4/5;
}
.overview-img-badge {
  position: absolute;
  bottom: -20px; left: -20px;
  background: var(--green);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 3px solid var(--gold);
}
.img-badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}
.img-badge-lbl {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.75);
  margin-top: 4px;
}

/* ─── HIGHLIGHTS ─── */
.highlights-section {
  background: var(--green);
  padding: 80px 0;
}
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--hairline);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--hairline);
}
@media (max-width: 1024px) { .highlights-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .highlights-grid { grid-template-columns: 1fr; } }

.highlight-card {
  background: var(--green);
  padding: 48px 36px;
  text-align: center;
  transition: background 0.3s;
}
.highlight-card:hover { background: var(--green-mid); }

.highlight-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px; height: 72px;
  background: rgba(201,168,76,0.1);
  border-radius: 50%;
  color: var(--gold);
  margin-bottom: 20px;
  border: 1px solid rgba(201,168,76,0.2);
}
.highlight-num {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.highlight-lbl {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.highlight-desc {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* ─── CONFIGURATION ─── */
.config-section { background: var(--cream-2); }

.config-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 48px;
}
@media (max-width: 768px) { .config-grid { grid-template-columns: 1fr; } }

.config-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--hairline-dark);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s, transform 0.3s;
  position: relative;
}
.config-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.config-card-featured {
  border-color: var(--gold);
  box-shadow: 0 4px 24px rgba(201,168,76,0.2);
}
.config-card-featured:hover {
  box-shadow: 0 12px 40px rgba(201,168,76,0.3);
}

.config-featured-label {
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 6px 20px;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.config-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 28px 0;
}
.config-type-badge {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 500;
  color: var(--green);
}
.config-status {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #16a34a;
  background: #dcfce7;
  padding: 5px 12px;
  border-radius: var(--radius-full);
}

.config-card-body { padding: 24px 28px; flex: 1; }

.config-pricing-table { width: 100%; }
.config-row {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr;
  gap: 8px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(201,168,76,0.1);
  font-size: 0.875rem;
  color: var(--body);
  align-items: center;
}
.config-row:last-child { border-bottom: none; }
.config-row-header {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  padding-bottom: 8px;
}
.config-row-featured {
  background: var(--gold-soft);
  border-radius: var(--radius-sm);
  padding: 12px 10px;
  margin: 0 -10px;
}
.config-price {
  font-weight: 700;
  color: var(--green);
  font-size: 0.9375rem;
}
.terrace-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--green);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  margin-left: 6px;
  vertical-align: middle;
}

.btn-config {
  margin: 0 28px 28px;
  padding: 14px 24px;
  border: 1.5px solid var(--green);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: all 0.3s;
}
.btn-config:hover {
  background: var(--green);
  color: var(--gold);
}
.btn-config-gold {
  border-color: var(--gold);
  color: var(--gold-dark);
  background: var(--gold-soft);
}
.btn-config-gold:hover {
  background: var(--gold);
  color: var(--green);
  border-color: var(--gold);
}

/* Payment Plan */
.payment-plan {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px 48px;
  border: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
@media (max-width: 768px) { .payment-plan { padding: 32px 24px; flex-direction: column; align-items: flex-start; } }

.payment-plan-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 24px;
}
.payment-steps {
  display: flex;
  align-items: center;
  gap: 0;
}
.pay-step {
  text-align: center;
  padding: 0 28px;
}
.pay-step-num {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 500;
  color: var(--green);
  line-height: 1;
  margin-bottom: 6px;
}
.pay-step-lbl {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.pay-step-highlight .pay-step-num { color: var(--gold-dark); }
.pay-connector {
  width: 40px; height: 2px;
  background: var(--hairline);
  flex-shrink: 0;
}
.payment-note {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 16px;
}

/* ─── AMENITIES ─── */
.amenities-section {
  position: relative;
  overflow: hidden;
  background: var(--green);
}
.amenities-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 80% at 80% 20%, rgba(201,168,76,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 10% 80%, rgba(26,61,38,0.6) 0%, transparent 50%);
}
.amenities-inner { position: relative; z-index: 1; }

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2px;
  margin-bottom: 48px;
  background: rgba(201,168,76,0.08);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
@media (max-width: 1024px) { .amenities-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 640px) { .amenities-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 360px) { .amenities-grid { grid-template-columns: repeat(2, 1fr); } }

.amenity-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 28px 16px;
  background: rgba(13,40,24,0.6);
  text-align: center;
  transition: background 0.3s;
  cursor: default;
}
.amenity-item:hover { background: rgba(26,61,38,0.8); }

.amenity-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px; height: 60px;
  background: rgba(201,168,76,0.1);
  border-radius: 50%;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.2);
  flex-shrink: 0;
  transition: background 0.3s, border-color 0.3s;
}
.amenity-item:hover .amenity-icon {
  background: rgba(201,168,76,0.2);
  border-color: rgba(201,168,76,0.4);
}

.amenity-item span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  line-height: 1.4;
}
.amenity-item span small {
  display: block;
  font-size: 0.7rem;
  color: var(--gold);
  margin-top: 2px;
}

.amenities-more {
  text-align: center;
  padding-top: 16px;
}
.amenities-more p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
}

/* ─── GALLERY SLIDER ─── */
.gallery-section { background: var(--cream); }

.gallery-slider-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.gallery-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--green);
}

.gallery-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.gallery-slide.active { opacity: 1; }

.artistic-label {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(13,40,24,0.7);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.75rem;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
}

.gallery-arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: rgba(255,255,255,0.9);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 2;
}
.gallery-arrow:hover {
  background: var(--gold);
}
.gallery-arrow:hover svg { fill: #fff; }

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.gallery-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
}
.gallery-dot.active {
  background: var(--gold);
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .gallery-arrow { width: 36px; height: 36px; }
  .gallery-arrow svg { width: 20px; height: 20px; }
  .gallery-slider { aspect-ratio: 4/3; }
}

/* ─── CONNECTIVITY ─── */
.connectivity-section { background: var(--cream-2); }

.connectivity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) {
  .connectivity-grid { grid-template-columns: 1fr; gap: 48px; }
}

.connectivity-text .section-title { text-align: left; }

.connectivity-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 32px;
}
.conn-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--hairline-dark);
}
.conn-item:last-child { border-bottom: none; }
.conn-icon {
  width: 40px; height: 40px;
  background: var(--gold-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  flex-shrink: 0;
  border: 1px solid var(--hairline);
}
.conn-details { display: flex; flex-direction: column; gap: 2px; }
.conn-details strong { font-size: 0.9375rem; color: var(--green); font-weight: 600; }
.conn-details span { font-size: 0.8125rem; color: var(--muted); }

.map-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--hairline);
}
.map-card img {
  width: 100%;
  object-fit: cover;
}

/* ─── WHY ROF ─── */
.why-section { background: var(--cream); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .why-grid { grid-template-columns: 1fr; } }

.why-card {
  background: var(--white);
  border: 1px solid var(--hairline-dark);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}
.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.why-card:hover::after { transform: scaleX(1); }

.why-num {
  position: absolute;
  top: 20px; right: 24px;
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: rgba(201,168,76,0.1);
  line-height: 1;
  pointer-events: none;
}
.why-icon {
  width: 68px; height: 68px;
  background: var(--gold-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  margin-bottom: 24px;
  border: 1px solid var(--hairline);
  transition: background 0.3s;
}
.why-card:hover .why-icon { background: rgba(201,168,76,0.2); }
.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--green);
  margin-bottom: 12px;
}
.why-card p {
  font-size: 0.9375rem;
  color: var(--body);
  line-height: 1.75;
  margin-bottom: 20px;
}
.why-rera {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--muted);
  background: var(--cream);
  padding: 6px 12px;
  border-radius: var(--radius-md);
  border: 1px solid var(--hairline-dark);
  word-break: break-all;
}

/* ─── ENQUIRY SECTION ─── */
.enquiry-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}
.enquiry-bg {
  position: absolute;
  inset: 0;
}
.enquiry-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.enquiry-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,40,24,0.9);
}
.enquiry-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 80px;
  align-items: center;
}
@media (max-width: 1024px) { .enquiry-inner { grid-template-columns: 1fr; gap: 60px; } }

.enquiry-highlights {
  display: flex;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.enquiry-highlights span {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 6px;
}

.enquiry-form-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius-xl);
  padding: 40px;
}
.form-card-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 8px;
}
.form-card-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 24px;
}

.section-enquiry-form .form-input {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.15);
  color: var(--white);
}
.section-enquiry-form .form-input::placeholder { color: rgba(255,255,255,0.4); }
.section-enquiry-form .form-input:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.12);
}
.section-enquiry-form select.form-input option { background: var(--green); color: var(--white); }

.btn-submit-full {
  background: var(--gold);
  color: var(--green);
}

/* ─── FOOTER ─── */
.footer {
  background: var(--green);
  border-top: 1px solid var(--hairline);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 60px;
  padding: 72px 24px 40px;
}
@media (max-width: 1024px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .footer-inner { grid-template-columns: 1fr; gap: 40px; } }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.footer-logo-rof {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  line-height: 1;
}
.footer-logo-pravasa {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--white);
  text-transform: uppercase;
}
.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  font-style: italic;
  margin-bottom: 12px;
}
.footer-location {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}
.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--gold-light);
  font-weight: 600;
  transition: color 0.2s;
}
.footer-contact-link:hover { color: var(--gold); }

.footer-nav h4, .footer-info h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--gold-light); }

.footer-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-details li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.8125rem;
}
.footer-details li span:first-child {
  color: rgba(255,255,255,0.45);
  white-space: nowrap;
}
.footer-details li span:last-child {
  color: rgba(255,255,255,0.8);
  text-align: right;
  font-weight: 500;
}

.footer-bottom {
  border-top: 1px solid rgba(201,168,76,0.12);
  padding: 24px;
}
.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}
.footer-disclaimer {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto;
}
.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}

/* ─── Scrollbar ─── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: rgba(13,40,24,0.25); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(13,40,24,0.45); }

/* ─── Selection ─── */
::selection { background: var(--gold); color: var(--green); }

/* ═══ MOBILE SEO OPTIMIZATIONS ═══ */
@media (max-width: 768px) {
  /* Larger touch targets for mobile */
  .btn-gold,
  .btn-ghost-hero,
  .btn-phone,
  .nav-link,
  .btn-enquire-nav {
    min-height: 48px;
    min-width: 48px;
  }
  
  /* Better readability on mobile */
  .hero-title { font-size: 2.2rem; }
  .section-title { font-size: 1.8rem; }
  .hero-subtitle { font-size: 1rem; line-height: 1.6; }
  .overview-body { font-size: 0.95rem; }
  
  /* Proper spacing for mobile */
  .section { padding: 60px 0; }
  .container { padding: 0 16px; }
  
  /* Avoid layout shifts */
  .hero { min-height: 100svh; }
  .hero-media img { width: 100%; height: 100%; object-fit: cover; }
  
  /* Mobile-friendly forms */
  .form-input {
    font-size: 16px !important; /* Prevents zoom on iOS */
    padding: 14px 16px;
  }
  
  /* Tap targets for carousel */
  .gallery-arrow {
    width: 44px;
    height: 44px;
  }
  
  /* Reduce animations for better performance */
  .reveal {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* ═══ ACCESSIBILITY ═══ */
/* Skip to main content link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--gold);
  color: var(--green);
  padding: 12px 24px;
  border-radius: 0 0 8px 8px;
  z-index: 10000;
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus {
  top: 0;
}

/* Focus styles for keyboard navigation */
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --gold: #b8960c;
    --green: #000000;
    --cream: #ffffff;
    --white: #ffffff;
  }
}

/* ─── Focus Visible ─── */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* ═══ CONVERSION ELEMENTS ═══ */

/* Urgency Bar */
.urgency-bar {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(220,38,38,0.15), rgba(220,38,38,0.08));
  border: 1px solid rgba(220,38,38,0.3);
  padding: 10px 20px;
  border-radius: 50px;
  margin-top: 1.5rem;
  animation: urgencyPulse 2s infinite;
}
@keyframes urgencyPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(220,38,38,0.2); }
  50% { box-shadow: 0 0 0 8px rgba(220,38,38,0); }
}
.urgency-icon { font-size: 1.1rem; }
.urgency-text {
  font-size: 0.85rem;
  color: #fff;
  font-weight: 500;
}
.urgency-text strong { color: #fca5a5; }

/* Phone Button */
.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid rgba(255,255,255,0.5);
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}
.btn-phone:hover {
  border-color: #22c55e;
  background: #22c55e;
  color: #fff;
}

/* Trust Strip */
.trust-strip {
  display: flex;
  gap: 24px;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Sticky Mobile CTA Bar */
.sticky-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--green);
  border-top: 2px solid var(--gold);
  padding: 10px 16px;
  z-index: 999;
  justify-content: space-between;
  gap: 8px;
}
.sticky-call,
.sticky-enquire,
.sticky-whatsapp {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 8px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}
.sticky-call {
  background: #22c55e;
  color: #fff;
}
.sticky-enquire {
  background: var(--gold);
  color: #fff;
}
.sticky-whatsapp {
  background: #25D366;
  color: #fff;
}
.sticky-call:active,
.sticky-enquire:active,
.sticky-whatsapp:active {
  transform: scale(0.95);
}

@media (max-width: 768px) {
  .sticky-cta-bar { display: flex; }
  body { padding-bottom: 70px; }
  .whatsapp-float { bottom: 80px; }
  .trust-strip { gap: 16px; }
  .trust-item { font-size: 0.65rem; }
  .urgency-bar { padding: 8px 16px; }
  .urgency-text { font-size: 0.75rem; }
}

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 9999;
  transition: width 0.1s;
}

/* Smooth reveal for lazy images */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.4s ease;
}
img[loading="lazy"].loaded,
img[loading="lazy"]:not([src=""]) {
  opacity: 1;
}
