/* ============================================================
   THE ORCHARD – Central Park
   Premium Landing Page Styles
   ============================================================ */

/* ─── DESIGN TOKENS ──────────────────────────────────────── */
:root {
  --cp-green-900: #071a0e;
  --cp-green-800: #0d2b19;
  --cp-green-700: #1a3c2a;
  --cp-green-600: #2d5a3f;
  --cp-green-500: #3d7a55;

  --cp-gold-500: #c9a96e;
  --cp-gold-400: #d4b87a;
  --cp-gold-300: #e0ca93;

  --cp-cream: #f8f6f1;
  --cp-cream-dark: #eee9de;
  --cp-white: #ffffff;
  --cp-black: #0a0a0a;
  --cp-text: #2c2c2c;
  --cp-text-muted: #6b6b6b;
  --cp-text-light: rgba(255, 255, 255, 0.85);

  --font-display: 'Optima', sans-serif;
  --font-body: 'Optima', sans-serif;

  --section-py: clamp(60px, 8vh, 100px);
  --section-py-mob: 50px;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 50px;

  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.07);
  --shadow-card-hover: 0 16px 48px rgba(0, 0, 0, 0.13);
  --shadow-elevated: 0 24px 64px rgba(0, 0, 0, 0.18);

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition: all 0.45s var(--ease);
  --transition-fast: all 0.22s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--cp-text);
  background: var(--cp-white);
  overflow-x: hidden;
  /* Fix for "up and down" numbers in Optima/Candara */
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum" 1;
}

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

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

/* ─── TYPOGRAPHY ─────────────────────────────────────────── */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--cp-text);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cp-gold-500);
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(24px, 2.5vw, 38px);
  font-weight: 700;
  margin-bottom: 20px;
}

.section-line {
  width: 70px;
  height: 2px;
  background: var(--cp-gold-500);
  margin: 0 auto;
  border-radius: 2px;
}

.section-header p {
  max-width: 600px;
  margin: 20px auto 0;
  color: var(--cp-text-muted);
  font-size: 17px;
}

/* Dark section variant */
.dark-section .section-tag {
  color: var(--cp-gold-400);
}

.dark-section .section-header h2 {
  color: var(--cp-white);
}

.dark-section .section-header p {
  color: var(--cp-text-light);
}

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: clamp(12px, 2vh, 16px) clamp(24px, 3vw, 36px);
  background: var(--cp-gold-500);
  color: var(--cp-green-900);
  font-family: var(--font-body);
  font-size: clamp(12px, 1.2vw, 14px);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.25) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn-gold:hover {
  background: var(--cp-gold-400);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 169, 110, 0.35);
}

.btn-gold:hover::before {
  transform: translateX(100%);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: clamp(12px, 2vh, 16px) clamp(24px, 3vw, 36px);
  background: transparent;
  color: var(--cp-white);
  font-family: var(--font-body);
  font-size: clamp(12px, 1.2vw, 14px);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline:hover {
  border-color: var(--cp-gold-500);
  color: var(--cp-gold-500);
  background: rgba(201, 169, 110, 0.08);
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: clamp(12px, 2vh, 16px) clamp(24px, 3vw, 36px);
  background: var(--cp-green-700);
  color: var(--cp-white);
  font-family: var(--font-body);
  font-size: clamp(12px, 1.2vw, 14px);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition);
}

.btn-dark:hover {
  background: var(--cp-green-600);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(26, 60, 42, 0.35);
  color: var(--cp-white);
}

/* ─── THANK YOU MESSAGE ────────────────────────────────── */
.form-thankyou {
  text-align: center;
  padding: 40px 20px;
  animation: fadeIn 0.8s ease forwards;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  width: 100%;
}

.form-thankyou i {
  font-size: 100px;
  color: #ffcc66 !important;
  /* Brighter gold for better visibility on dark green */
  margin-bottom: 24px;
  display: block;
  opacity: 1 !important;
  line-height: 1;
}

.form-thankyou h4 {
  font-family: var(--font-display);
  color: var(--cp-white);
  font-size: 36px;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.form-thankyou p {
  color: var(--cp-text-light);
  font-size: 20px;
  line-height: 1.6;
  max-width: 320px;
  margin: 0 auto;
  opacity: 1;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

.animate-spin {
  animation: spin 1s linear infinite;
  display: inline-block;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* ─── HEADER / NAV ───────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(7, 26, 14, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-logo-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--cp-white);
  letter-spacing: 1px;
}

.site-logo-text span {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cp-gold-500);
  margin-top: 2px;
}

.header-cta .btn-gold {
  padding: 12px 28px;
  font-size: 12px;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--cp-white);
  font-size: 14px;
  font-weight: 500;
  margin-right: 20px;
}

.header-phone i {
  color: var(--cp-gold-500);
}

/* ─── SECTION 1: HERO ────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: radial-gradient(at 20% 80%, rgba(45, 90, 63, 0.5) 0%, transparent 50%), radial-gradient(at 80% 30%, rgba(201, 169, 110, 0.08) 0%, transparent 40%), radial-gradient(at 60% 60%, rgba(26, 60, 42, 0.3) 0%, transparent 60%), linear-gradient(160deg, rgb(7, 26, 14) 0%, rgb(13, 43, 25) 25%, rgb(26, 60, 42) 50%, rgb(18, 42, 28) 75%, rgb(7, 26, 14) 100%);
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="0.5" fill="rgba(201,169,110,0.08)"/></svg>');
  background-size: 30px 30px;
  opacity: 0.5;
  animation: subtleDrift 30s linear infinite;
}

@keyframes subtleDrift {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(-30px, -30px);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
}

.hero-badge {
  display: inline-block;
  padding: 8px 24px;
  background: rgba(201, 169, 110, 0.12);
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cp-gold-400);
  margin-bottom: 28px;
  animation: fadeInUp 0.8s var(--ease) 0.2s both;
}

.hero-content h1 {
  font-size: clamp(30px, 3.2vw, 48px);
  font-weight: 700;
  color: var(--cp-white);
  line-height: 1.15;
  margin-bottom: 12px;
  animation: fadeInUp 0.8s var(--ease) 0.4s both;
}

.hero-content .hero-sub {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 400;
  color: var(--cp-gold-400);
  margin-bottom: 24px;
  animation: fadeInUp 0.8s var(--ease) 0.5s both;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s var(--ease) 0.6s both;
}

.hero-features p {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: var(--cp-text-light);
  margin: 0;
}

.hero-features p i {
  font-size: 20px;
  color: var(--cp-gold-500);
}

.hero-cta {
  animation: fadeInUp 0.8s var(--ease) 0.7s both;
}

/* Hero Form Card */
.hero-form-card {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 3.5vh, 40px) clamp(20px, 2.8vw, 32px);
  animation: fadeInUp 0.8s var(--ease) 0.5s both;
}

.hero-form-card h3 {
  font-size: clamp(20px, 1.8vw, 24px);
  color: var(--cp-white);
  margin-bottom: 6px;
}

.hero-form-card>p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 28px;
}

.lead-form .form-group {
  margin-bottom: 18px;
}

.lead-form input,
.lead-form select {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  color: var(--cp-white);
  font-family: var(--font-body);
  font-size: 15px;
  transition: var(--transition-fast);
  outline: none;
}

.lead-form input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.lead-form select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="rgba(255,255,255,0.4)" stroke-width="2"><polyline points="6 9 12 15 18 9"/></svg>');
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.lead-form select option {
  background: var(--cp-green-800);
  color: var(--cp-white);
}

.lead-form input:focus,
.lead-form select:focus {
  border-color: var(--cp-gold-500);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
}

.lead-form .btn-submit {
  width: 100%;
  padding: 16px;
  background: var(--cp-gold-500);
  color: var(--cp-green-900);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  margin-top: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lead-form .btn-submit:hover {
  background: var(--cp-gold-400);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 169, 110, 0.3);
}

.otp-group {
  margin-bottom: 18px;
}

.resend-otp {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  color: var(--cp-gold-400);
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  opacity: 0.7;
  transition: var(--transition-fast);
}

.resend-otp:hover {
  opacity: 1;
  text-decoration: underline;
}

/* ─── SECTION 2: THE ORCHARD DIFFERENCE ──────────────────── */
.difference-section {
  padding: var(--section-py) 0;
  background: var(--cp-white);
}

.diff-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.diff-card {
  flex: 0 0 auto;
  width: 380px;
  max-width: 100%;
  text-align: center;
  padding: 44px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.diff-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--cp-gold-500);
  border-radius: 0 0 3px 3px;
  opacity: 0;
  transition: var(--transition);
}

.diff-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: transparent;
}

.diff-card:hover::before {
  opacity: 1;
}

.diff-card-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  background: rgba(26, 60, 42, 0.06);
  border-radius: 16px;
  transition: var(--transition);
}

.diff-card:hover .diff-card-icon {
  background: var(--cp-green-700);
}

.diff-card-icon i {
  font-size: 28px;
  color: var(--cp-green-700);
  transition: var(--transition);
}

.diff-card:hover .diff-card-icon i {
  color: var(--cp-gold-400);
}

.diff-card h4 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* ─── SECTION 3: EXPERIENCE ──────────────────────────────── */
.experience-section {
  padding: var(--section-py) 0;
  background: var(--cp-green-900);
}

.experience-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.exp-card {
  flex: 0 0 auto;
  width: 380px;
  max-width: 100%;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  cursor: pointer;
  cursor: pointer;
  group: true;
}

.exp-card-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s var(--ease);
}

.exp-card:hover .exp-card-img {
  transform: scale(1.08);
}

.exp-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(7, 26, 14, 0.85) 100%);
  transition: var(--transition);
}

.exp-card:hover .exp-card-overlay {
  background: linear-gradient(180deg, transparent 20%, rgba(7, 26, 14, 0.9) 100%);
}

.exp-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
}

.exp-card-content h4 {
  font-size: 20px;
  color: var(--cp-white);
  margin-bottom: 0;
  transform: translateY(0);
  transition: var(--transition);
}

.exp-card-line {
  width: 36px;
  height: 2px;
  background: var(--cp-gold-500);
  margin-top: 12px;
  transition: var(--transition);
  transform-origin: left;
}

.exp-card:hover .exp-card-line {
  width: 56px;
}

/* Mobile horizontal scroll */
@media (max-width: 991.98px) {
  .experience-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .experience-grid::-webkit-scrollbar {
    display: none;
  }

  .exp-card {
    min-width: 280px;
    scroll-snap-align: start;
    aspect-ratio: 3 / 4;
  }
}

/* ─── SECTION 4: AMENITIES ───────────────────────────────── */
.amenities-section {
  padding: var(--section-py) 0;
  background: var(--cp-cream);
}

.amenity-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.amenity-tab-btn {
  padding: 12px 26px;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--cp-text-muted);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.amenity-tab-btn:hover {
  border-color: var(--cp-green-700);
  color: var(--cp-green-700);
}

.amenity-tab-btn.active {
  background: var(--cp-green-700);
  border-color: var(--cp-green-700);
  color: var(--cp-white);
}

.amenity-panel {
  display: none;
}

.amenity-panel.active {
  display: block;
  animation: fadeInUp 0.5s var(--ease);
}

.amenity-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.amenity-item {
  flex: 0 0 auto;
  min-width: 240px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  background: var(--cp-white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: var(--transition);
}

.amenity-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.amenity-item i {
  font-size: 24px;
  color: var(--cp-green-700);
  flex-shrink: 0;
}

.amenity-item span {
  font-size: 15px;
  font-weight: 500;
  color: var(--cp-text);
}

/* ─── SECTION 5: DOWNLOADS ───────────────────────────────── */
.downloads-section {
  padding: var(--section-py) 0;
  background: var(--cp-white);
}

.download-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.download-card {
  flex: 0 0 auto;
  width: 380px;
  max-width: 100%;
  text-align: center;
  padding: 48px 32px;
  border: 2px dashed rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.download-card:hover {
  border-color: var(--cp-gold-500);
  border-style: solid;
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.download-card-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  background: var(--cp-cream);
  border-radius: 50%;
  transition: var(--transition);
}

.download-card:hover .download-card-icon {
  background: var(--cp-green-700);
}

.download-card-icon i {
  font-size: 30px;
  color: var(--cp-green-700);
  transition: var(--transition);
}

.download-card:hover .download-card-icon i {
  color: var(--cp-gold-400);
}

.download-card h4 {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}

.download-card p {
  font-size: 13px;
  color: var(--cp-text-muted);
  margin: 0;
}

.download-card .lock-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 169, 110, 0.12);
  border-radius: 50%;
}

.download-card .lock-badge i {
  font-size: 14px;
  color: var(--cp-gold-500);
}

/* ─── SECTION 6: LOCATION ────────────────────────────────── */
.location-section {
  padding: var(--section-py) 0;
  background: var(--cp-cream);
}

.location-map {
  width: 100%;
  height: 100%;
  min-height: 460px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cp-cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 460px;
  border: none;
}

.location-map-placeholder {
  text-align: center;
  color: var(--cp-text-muted);
}

.location-map-placeholder i {
  font-size: 48px;
  margin-bottom: 12px;
  color: var(--cp-green-600);
}

.location-content {
  padding-left: 50px;
}

.location-content h2 {
  font-size: 38px;
  margin-bottom: 8px;
}

.location-content .loc-subtitle {
  font-size: 16px;
  color: var(--cp-gold-500);
  font-weight: 500;
  margin-bottom: 12px;
}

.location-content .loc-desc {
  color: var(--cp-text-muted);
  margin-bottom: 36px;
  font-size: 15px;
}

.location-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.loc-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: var(--cp-white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: var(--transition);
}

.loc-point:hover {
  box-shadow: var(--shadow-card);
  transform: translateX(4px);
}

.loc-point-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 60, 42, 0.07);
  border-radius: 10px;
  flex-shrink: 0;
}

.loc-point-icon i {
  font-size: 18px;
  color: var(--cp-green-700);
}

.loc-point-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--cp-text);
}

.loc-point-text span {
  display: block;
  font-size: 12px;
  color: var(--cp-text-muted);
  font-weight: 400;
  margin-top: 2px;
}

/* ─── SECTION 7: PRICE & CONVERSION ──────────────────────── */
.price-section {
  padding: var(--section-py) 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(45, 90, 63, 0.4) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(201, 169, 110, 0.06) 0%, transparent 40%),
    linear-gradient(170deg, #071a0e 0%, #0d2b19 40%, #1a3c2a 70%, #071a0e 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.price-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><line x1="0" y1="100" x2="100" y2="0" stroke="rgba(201,169,110,0.03)" stroke-width="0.3"/></svg>');
  background-size: 50px 50px;
}

.price-content {
  position: relative;
  z-index: 1;
}

.price-tag-line {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cp-gold-400);
  margin-bottom: 24px;
  display: block;
}

.price-amount {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  color: var(--cp-gold-500);
  margin-bottom: 12px;
  line-height: 1;
  letter-spacing: -1px;
}

.price-amount .onwards,
.popup-price .onwards {
  font-size: 0.45em;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  vertical-align: middle;
  margin-left: 8px;
  opacity: 0.8;
  display: inline-block;
}

.price-amount-sub {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 44px;
}

.price-ctas {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ─── SECTION 8: TRUST / VIDEO ───────────────────────────── */
.trust-section {
  padding: var(--section-py) 0;
  background: var(--cp-white);
}

.video-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  max-width: 960px;
  margin: 0 auto;
  background: var(--cp-green-900);
  box-shadow: var(--shadow-elevated);
}

.video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 50%, rgba(26, 60, 42, 0.6) 0%, transparent 70%),
    linear-gradient(135deg, #071a0e, #1a3c2a);
  cursor: pointer;
  transition: var(--transition);
}

.video-placeholder:hover {
  background:
    radial-gradient(circle at 50% 50%, rgba(26, 60, 42, 0.3) 0%, transparent 70%),
    linear-gradient(135deg, #0d2b19, #2d5a3f);
}

.video-play-btn {
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cp-gold-500);
  border-radius: 50%;
  margin-bottom: 24px;
  transition: var(--transition);
  position: relative;
}

.video-play-btn::before {
  content: '';
  position: absolute;
  inset: -12px;
  border: 2px solid rgba(201, 169, 110, 0.3);
  border-radius: 50%;
  animation: videoPulse 2s ease-in-out infinite;
}

@keyframes videoPulse {

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

  50% {
    transform: scale(1.15);
    opacity: 0;
  }
}

.video-play-btn i {
  font-size: 32px;
  color: var(--cp-green-900);
  margin-left: 4px;
}

.video-placeholder:hover .video-play-btn {
  transform: scale(1.1);
  box-shadow: 0 0 40px rgba(201, 169, 110, 0.4);
}

.video-title {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--cp-white);
}

.video-title span {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--cp-text-light);
  margin-top: 6px;
  opacity: 0.6;
}

/* ─── SECTION 9: FINAL CTA ──────────────────────────────── */
.final-cta-section {
  padding: 90px 0;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(201, 169, 110, 0.1) 0%, transparent 60%),
    linear-gradient(180deg, #0d2b19, #1a3c2a);
  text-align: center;
}

.final-cta-section h2 {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--cp-white);
  margin-bottom: 40px;
  line-height: 1.2;
}

.final-cta-section .price-ctas {
  margin-bottom: 0;
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  padding: 32px 0;
  background: var(--cp-green-900);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.site-footer p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
}

.site-footer a {
  color: var(--cp-gold-500);
}

/* ─── POPUP LEAD FORM ────────────────────────────────────── */
.lead-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.lead-popup-overlay.show {
  display: flex;
  opacity: 1;
}

.lead-popup {
  display: flex;
  width: 100%;
  max-width: 860px;
  max-height: 90vh;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
  transform: translateY(30px) scale(0.96);
  transition: transform 0.45s var(--ease);
}

.lead-popup-overlay.show .lead-popup {
  transform: translateY(0) scale(1);
}

.lead-popup-visual {
  flex: 1;
  background:
    radial-gradient(circle at 30% 70%, rgba(45, 90, 63, 0.5) 0%, transparent 50%),
    linear-gradient(160deg, #071a0e, #1a3c2a, #0d2b19);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

.lead-popup-visual::before {
  content: '';
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(201, 169, 110, 0.1);
  border-radius: 50%;
}

.lead-popup-visual::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(201, 169, 110, 0.06);
  border-radius: 50%;
}

.popup-visual-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.popup-visual-content .popup-brand {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--cp-gold-500);
  margin-bottom: 12px;
}

.popup-visual-content h2 {
  font-size: 40px;
  color: var(--cp-white);
  margin-bottom: 16px;
  line-height: 1.1;
}

.popup-visual-content .popup-type {
  font-size: 15px;
  color: var(--cp-text-light);
  margin-bottom: 28px;
}

.popup-visual-content .popup-price {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--cp-gold-400);
}

.lead-popup-form-wrap {
  flex: 1;
  background: var(--cp-white);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cp-cream);
  border: none;
  border-radius: 50%;
  font-size: 18px;
  color: var(--cp-text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
}

.popup-close:hover {
  background: var(--cp-green-700);
  color: var(--cp-white);
}

.lead-popup-form-wrap h3 {
  font-size: 26px;
  color: var(--cp-text);
  margin-bottom: 6px;
}

.lead-popup-form-wrap>p {
  color: var(--cp-text-muted);
  font-size: 14px;
  margin-bottom: 28px;
}

/* Light‐theme form for popup */
.lead-form-light .form-group {
  margin-bottom: 16px;
}

.lead-form-light input,
.lead-form-light select {
  width: 100%;
  padding: 14px 18px;
  background: var(--cp-cream);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-md);
  color: var(--cp-text);
  font-family: var(--font-body);
  font-size: 15px;
  transition: var(--transition-fast);
  outline: none;
}

.lead-form-light input::placeholder {
  color: var(--cp-text-muted);
}

.lead-form-light select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  color: var(--cp-text-muted);
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="rgba(0,0,0,0.3)" stroke-width="2"><polyline points="6 9 12 15 18 9"/></svg>');
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.lead-form-light select option {
  color: var(--cp-text);
}

.lead-form-light input:focus,
.lead-form-light select:focus {
  border-color: var(--cp-green-700);
  background: var(--cp-white);
  box-shadow: 0 0 0 3px rgba(26, 60, 42, 0.08);
}

.lead-form-light .btn-submit {
  width: 100%;
  padding: 16px;
  background: var(--cp-green-700);
  color: var(--cp-white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  margin-top: 6px;
}

.lead-form-light .btn-submit:hover {
  background: var(--cp-green-600);
  transform: translateY(-2px);
}

/* ─── FLOATING ACTION BUTTONS ────────────────────────────── */
.floating-actions {
  position: fixed;
  right: 24px;
  bottom: 100px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 900;
}

.floating-btn {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
  color: var(--cp-white);
  font-size: 24px;
}

.floating-btn:hover {
  transform: scale(1.1) translateY(-2px);
  color: var(--cp-white);
}

.whatsapp-btn {
  background: #25D366;
}

.whatsapp-btn:hover {
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.4);
}

.call-btn {
  background: var(--cp-green-700);
}

.call-btn:hover {
  box-shadow: 0 6px 28px rgba(26, 60, 42, 0.4);
}

/* ─── STICKY MOBILE CTA ─────────────────────────────────── */
.sticky-mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 950;
  background: var(--cp-green-900);
  padding: 12px 16px;
  display: none;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(201, 169, 110, 0.2);
}

.sticky-mobile-inner {
  display: flex;
  gap: 10px;
}

.sticky-mobile-cta .btn-schedule {
  flex: 1;
  padding: 14px;
  background: var(--cp-gold-500);
  color: var(--cp-green-900);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  text-align: center;
  transition: var(--transition-fast);
}

.sticky-mobile-cta .btn-call {
  width: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  color: var(--cp-white);
  font-size: 20px;
  cursor: pointer;
  transition: var(--transition-fast);
}

/* ─── SCROLL ANIMATIONS ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

.reveal-delay-5 {
  transition-delay: 0.5s;
}

.reveal-delay-6 {
  transition-delay: 0.6s;
}

/* ─── KEYFRAMES ──────────────────────────────────────────── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ─── THANK YOU STATE ────────────────────────────────────── */
.form-thankyou {
  text-align: center;
  padding: 32px 16px;
}

.form-thankyou i {
  font-size: 56px;
  color: var(--cp-green-600);
  margin-bottom: 16px;
}

.form-thankyou h4 {
  font-size: 22px;
  margin-bottom: 8px;
}

.form-thankyou p {
  color: var(--cp-text-muted);
  font-size: 15px;
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */

/* Tablet */
@media (max-width: 991.98px) {
  :root {
    --section-py: var(--section-py-mob);
  }

  .section-header h2 {
    font-size: 34px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .hero-content {
    padding: 100px 0 40px;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .hero-content .hero-sub {
    font-size: 20px;
  }

  .hero-form-card {
    padding: 32px 28px;
    margin-top: 20px;
  }

  .diff-grid,
  .download-grid {
    gap: 20px;
  }

  .diff-card,
  .download-card {
    width: calc(50% - 10px);
  }

  .location-content {
    padding-left: 0;
    margin-top: 40px;
  }

  .location-content h2 {
    font-size: 30px;
  }

  .price-section h2 {
    font-size: 38px;
  }

  .price-amount {
    font-size: 48px;
  }

  .final-cta-section h2 {
    font-size: 34px;
  }

  /* Popup stacks */
  .lead-popup {
    flex-direction: column;
    max-height: 95vh;
    overflow-y: auto;
  }

  .lead-popup-visual {
    padding: 36px 28px;
    min-height: auto;
  }

  .popup-visual-content h2 {
    font-size: 30px;
  }

  .popup-visual-content .popup-price {
    font-size: 22px;
  }

  .lead-popup-form-wrap {
    padding: 36px 28px;
  }
}

/* Mobile */
@media (max-width: 575.98px) {
  :root {
    --section-py: 56px;
  }

  .section-tag {
    font-size: 11px;
    letter-spacing: 2px;
    margin-bottom: 12px;
  }

  .section-header h2 {
    font-size: 26px;
  }

  .section-header {
    margin-bottom: 32px;
  }

  /* Hero Adjustments */
  .hero-section .row {
    min-height: auto !important;
    /* Override inline style */
    padding: 80px 0 40px;
  }

  .hero-content {
    padding: 0 0 32px;
    text-align: center;
  }

  .hero-badge {
    padding: 6px 18px;
    font-size: 11px;
    margin-bottom: 20px;
  }

  .hero-content h1 {
    font-size: 32px;
    margin-bottom: 16px;
  }

  .hero-content .hero-sub {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .hero-features {
    align-items: center;
    gap: 10px;
    margin-bottom: 32px;
  }

  .hero-features p {
    font-size: 14px;
  }

  .hero-cta {
    display: flex;
    justify-content: center;
    margin-top: 10px;
  }

  .hero-cta .btn-gold {
    padding: 14px 30px;
    font-size: 13px;
    /* width: 100%; */
  }

  .hero-form-card {
    padding: 32px 20px;
    margin-top: 0;
  }

  .hero-form-card h3 {
    font-size: 22px;
  }

  /* Header */
  .header-phone,
  .header-cta {
    display: none;
  }

  .site-logo-text {
    font-size: 18px;
  }

  /* Difference Cards - 2 Column */
  .diff-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .diff-card {
    width: 100%;
    padding: 24px 16px;
    border-radius: var(--radius-md);
  }

  .diff-card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
  }

  .diff-card-icon i {
    font-size: 20px;
  }

  .diff-card h4 {
    font-size: 13px;
    line-height: 1.4;
  }

  /* Experience Section */
  .exp-card {
    min-width: 260px;
    aspect-ratio: 4 / 5;
  }

  /* Amenity Tabs */
  .amenity-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 12px;
    margin-bottom: 32px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-left: -15px;
    margin-right: -15px;
    padding-left: 15px;
    padding-right: 15px;
    cursor: grab;
    user-select: none;
    touch-action: pan-x;
    -webkit-overflow-scrolling: touch;
  }

  .amenity-tabs.dragging {
    cursor: grabbing;
  }

  .amenity-tabs::-webkit-scrollbar {
    display: none;
  }

  .amenity-tab-btn {
    padding: 10px 20px;
    font-size: 12px;
    flex-shrink: 0;
  }

  .amenity-item {
    width: 100%;
    padding: 16px 20px;
  }

  .amenity-item i {
    font-size: 20px;
  }

  /* Download Cards */
  .download-grid {
    gap: 16px;
  }

  .download-card {
    width: 100%;
    padding: 32px 20px;
  }

  /* Location Section */
  .location-map {
    min-height: 280px;
    margin-bottom: 24px;
  }

  .location-map iframe {
    min-height: 280px;
  }

  .location-content h2 {
    font-size: 28px;
  }

  .location-content .loc-desc {
    margin-bottom: 24px;
  }

  .loc-point {
    padding: 14px 16px;
  }

  /* Price Section */
  .price-section h2 {
    font-size: 28px;
  }

  .price-amount {
    font-size: 36px;
  }

  .price-ctas {
    flex-direction: column;
    gap: 12px;
  }

  .price-ctas .btn-gold,
  .price-ctas .btn-outline {
    width: 100%;
    justify-content: center;
  }

  /* Video Section */
  .video-play-btn {
    width: 64px;
    height: 64px;
  }

  .video-play-btn i {
    font-size: 24px;
  }

  .video-title {
    font-size: 15px;
    padding: 0 20px;
    text-align: center;
  }

  /* Final CTA */
  .final-cta-section h2 {
    font-size: 26px;
  }

  /* Popup */
  .lead-popup-visual {
    display: none;
  }

  .lead-popup-form-wrap {
    padding: 32px 20px;
  }

  .lead-popup-form-wrap h3 {
    font-size: 22px;
  }

  /* Floating Actions */
  .floating-actions {
    bottom: 84px;
    right: 12px;
    gap: 10px;
  }

  .floating-btn {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  /* Sticky Mobile Bar */
  .sticky-mobile-cta {
    display: block;
    padding: 10px 12px;
  }

  .sticky-mobile-cta .btn-schedule {
    font-size: 13px;
    padding: 12px;
  }

  .sticky-mobile-cta .btn-call {
    width: 48px;
  }

  body {
    padding-bottom: 68px;
  }
}