/* ============================
   CSS Variables & Reset
   ============================ */
:root {
  --gold: #C9A84C;
  --gold-light: #E8C97B;
  --gold-dark: #9A7A2A;
  --dark: #0A0A0A;
  --dark-2: #111111;
  --dark-3: #181818;
  --cream: #F5F0E8;
  --cream-2: #EDE5D8;
  --text: #2A2A2A;
  --text-muted: #6B6B6B;
  --white: #FFFFFF;
  --border: rgba(201, 168, 76, 0.25);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-display: 'Cinzel', serif;
  --font-body: 'DM Sans', sans-serif;
  --transition: cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-gold: 0 8px 32px rgba(201, 168, 76, 0.2);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  width: 100%;
  object-fit: cover;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ============================
   SCROLLBAR
   ============================ */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--dark);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

/* ============================
   SECTION CONTAINER
   ============================ */
.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

.section-label {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 40px;
}

.section-title em {
  font-style: italic;
  color: var(--gold-dark);
}

.section-title.text-center {
  text-align: center;
}

/* ============================
   NAVBAR
   ============================ */
.navbar {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 48px !important;
  transition: all 0.4s var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 48px;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  width: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-image {
  height: 64px;
  width: auto;
  border-radius: 6px;
  object-fit: contain;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.15em;
  color: var(--white);
  line-height: 1;
}

.logo-sub {
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  margin-top: 3px;
  text-transform: uppercase;
}

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

.nav-links a {
  font-size: 13px;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.25s;
}

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

.nav-links .nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 4px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: opacity 0.25s, transform 0.25s;
}

.nav-links .nav-cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ============================
   HERO
   ============================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 120px 100px 80px 48px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.6);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(10, 10, 10, 0.85) 0%,
      rgba(10, 10, 10, 0.6) 50%,
      rgba(10, 10, 10, 0.3) 100%);
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  animation: heroFadeIn 1.2s var(--transition) forwards;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--gold-light);
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  background: rgba(10, 10, 10, 0.35);
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

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

  50% {
    opacity: 0.4;
    transform: scale(0.8);
  }
}

.hero-title {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.title-line {
  display: block;
  font-family: var(--font-serif);
  line-height: 1.05;
}

.title-line--thin {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0.2em;
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}

.title-line--bold {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.7);
  line-height: 1.1;
}

.title-line--accent {
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  margin-top: 8px;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
}

.hero-tagline {
  color: rgba(255, 255, 255, 0.95);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 36px;
  letter-spacing: 0.03em;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.8);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hstat {
  text-align: center;
}

.hstat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
}

.hstat-lbl {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.08em;
  margin-top: 4px;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.hstat-div {
  width: 1px;
  height: 40px;
  background: rgba(201, 168, 76, 0.3);
}

/* HERO FORM */
.hero-form-wrap {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  width: 380px;
  animation: formSlideIn 1.2s 0.4s var(--transition) both;
}

@keyframes formSlideIn {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

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

.form-card {
  background: rgba(255, 255, 255, 0.97);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(201, 168, 76, 0.2);
}

.form-header {
  background: linear-gradient(135deg, var(--dark), #1a1208);
  padding: 28px 32px;
  border-bottom: 2px solid var(--gold);
}

.form-header h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 4px;
}

.form-header p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.05em;
}

.form-body {
  padding: 28px 32px;
}

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

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #E0D9CF;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  background: #FAFAF8;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
  background: var(--white);
}

.input-prefix {
  display: flex;
  align-items: center;
  border: 1.5px solid #E0D9CF;
  border-radius: 8px;
  overflow: hidden;
  background: #FAFAF8;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.input-prefix:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
}

.input-prefix span {
  padding: 12px 12px;
  font-size: 14px;
  color: var(--text-muted);
  background: #F0EDE8;
  border-right: 1px solid #E0D9CF;
  flex-shrink: 0;
}

.input-prefix input {
  border: none;
  border-radius: 0;
  background: transparent;
  flex: 1;
  box-shadow: none !important;
}

.input-prefix input:focus {
  box-shadow: none;
  border: none;
}

.btn-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border: none;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 0.25s, box-shadow 0.25s;
  margin-bottom: 12px;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.4);
}

.form-note {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.6;
}

/* HERO SCROLL INDICATOR */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 9px;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.4);
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollAnim 2s infinite;
}

@keyframes scrollAnim {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  51% {
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* ============================
   OPPORTUNITY BANNER
   ============================ */
.opportunity-banner {
  background: linear-gradient(90deg, var(--dark), #1a1208, var(--dark));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 20px 0;
}

.opp-track {
  overflow: hidden;
  white-space: nowrap;
}

.opp-items {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  animation: marquee 25s linear infinite;
}

.opp-items span {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--gold-light);
  white-space: nowrap;
}

.opp-sep {
  color: var(--gold-dark) !important;
  font-size: 8px !important;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ============================
   OVERVIEW
   ============================ */
.overview-section {
  padding: 120px 0;
  background: var(--cream);
}

.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.overview-text {
  font-size: 16px;
  line-height: 1.9;
  color: #4A4A4A;
  margin-bottom: 20px;
}

.overview-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}

.oh-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.oh-icon {
  color: var(--gold);
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}

.oh-item strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.03em;
}

.oh-item span {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 2px;
}

.overview-image-stack {
  position: relative;
  height: 540px;
}

.ov-img {
  position: absolute;
  border-radius: 12px;
  object-fit: cover;
}

.ov-img-1 {
  width: 78%;
  height: 82%;
  top: 0;
  right: 0;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}

.ov-img-2 {
  width: 48%;
  height: 44%;
  bottom: 0;
  left: 0;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  border: 4px solid var(--cream);
}

.ov-badge-float {
  position: absolute;
  top: 36%;
  left: 14%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 12px;
  padding: 16px 20px;
  text-align: center;
  box-shadow: 0 12px 32px rgba(201, 168, 76, 0.4);
  z-index: 2;
}

.obf-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}

.obf-txt {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
  opacity: 0.7;
  margin-top: 4px;
}

/* ============================
   OFFERINGS
   ============================ */
.offerings-section {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--cream-2) 0%, var(--cream) 100%);
}

.price-tag-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 64px;
}

.price-tag {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 18px 28px;
  text-align: center;
  opacity: 0.65;
}

.price-tag--active {
  background: linear-gradient(135deg, var(--dark), #1a1208);
  border-color: var(--gold);
  opacity: 1;
  box-shadow: var(--shadow-gold);
}

.pt-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.price-tag .pt-label {
  color: var(--text-muted);
}

.price-tag--active .pt-label {
  color: var(--gold);
}

.pt-price {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
}

.price-tag .pt-price {
  color: var(--dark);
}

.price-tag--active .pt-price {
  color: var(--gold-light);
}

.pt-price small {
  font-size: 1rem;
  font-weight: 300;
}

.price-arrow {
  font-size: 1.5rem;
  color: var(--gold);
}

.offerings-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 860px;
  margin: 0 auto;
}

.offering-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #E8E0D5;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  transition: transform 0.4s var(--transition), box-shadow 0.4s var(--transition);
  position: relative;
}

.offering-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.14);
}

.offering-card--premium {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.15);
}

.oc-ribbon {
  position: absolute;
  top: 16px;
  right: -28px;
  background: var(--gold);
  color: var(--dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 5px 40px;
  transform: rotate(45deg);
  transform-origin: center;
  z-index: 2;
}

.oc-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.oc-image img {
  width: 100%;
  height: 100%;
  transition: transform 0.6s var(--transition);
}

.offering-card:hover .oc-image img {
  transform: scale(1.06);
}

.oc-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(10, 10, 10, 0.8);
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.1em;
  padding: 5px 12px;
  border-radius: 4px;
  backdrop-filter: blur(8px);
}

.oc-body {
  padding: 28px;
}

.oc-body h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 16px;
  color: var(--dark);
}

.oc-specs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #F0EAE2;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
}

.spec-icon {
  font-size: 14px;
}

.oc-price {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold-dark);
  margin-bottom: 20px;
}

.oc-price sup {
  font-size: 0.7em;
  color: var(--text-muted);
}

.btn-outline,
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 13px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.25s;
  cursor: pointer;
}

.btn-outline {
  border: 1.5px solid var(--gold);
  color: var(--gold-dark);
  background: transparent;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  border: none;
}

.btn-primary:hover {
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.4);
  transform: translateY(-2px);
}

/* ============================
   WHY INVEST
   ============================ */
.invest-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.invest-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0A0A0A 0%, #1a1208 50%, #0A0A0A 100%);
}

.invest-section .section-container {
  position: relative;
  z-index: 1;
}

.invest-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.invest-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 12px;
  padding: 32px 24px;
  transition: all 0.4s var(--transition);
  position: relative;
  overflow: hidden;
}

.invest-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.4s var(--transition);
}

.invest-card:hover {
  background: rgba(201, 168, 76, 0.06);
  border-color: rgba(201, 168, 76, 0.35);
  transform: translateY(-6px);
}

.invest-card:hover::before {
  transform: scaleX(1);
}

.ic-num {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(201, 168, 76, 0.4);
  margin-bottom: 16px;
}

.ic-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

.invest-card h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 12px;
  line-height: 1.3;
}

.invest-card p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
}

/* ============================
   AMENITIES
   ============================ */
.amenities-section {
  padding: 120px 0;
  background: var(--cream);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 64px;
}

.am-card {
  background: var(--white);
  border-radius: 12px;
  padding: 36px 28px;
  border: 1px solid #EDE5D8;
  transition: all 0.4s var(--transition);
  position: relative;
  overflow: hidden;
}

.am-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  transform: scaleX(0);
  transition: transform 0.4s;
  transform-origin: left;
}

.am-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border-color: var(--gold-light);
}

.am-card:hover::after {
  transform: scaleX(1);
}

.am-icon {
  font-size: 2.4rem;
  margin-bottom: 20px;
  display: block;
}

.am-card h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 12px;
}

.am-card p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-muted);
}

.amenities-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: linear-gradient(135deg, var(--dark), #1a1208);
  border-radius: 16px;
  padding: 48px;
  border: 1px solid var(--border);
}

.af-number {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
}

.af-number sup {
  font-size: 0.4em;
  color: var(--gold);
}

.af-label {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-serif);
  font-style: italic;
}

/* ============================
   LOCATION
   ============================ */
.location-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.loc-image-bg {
  position: absolute;
  inset: 0;
}

.loc-image-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

.loc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(10, 10, 10, 0.7) 0%,
      rgba(10, 10, 10, 0.3) 100%);
}

.location-section .section-container {
  position: relative;
  z-index: 1;
}

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

.loc-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 12px;
  padding: 28px 24px;
  backdrop-filter: blur(10px);
  transition: all 0.3s;
}

.loc-item:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: var(--gold);
  transform: translateY(-4px);
}

.loc-time {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 8px;
  line-height: 1;
}

.loc-place {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

/* ============================
   CONTACT SECTION
   ============================ */
.contact-section {
  padding: 120px 0;
  background: var(--cream-2);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-text {
  font-size: 16px;
  line-height: 1.9;
  color: #4A4A4A;
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.cd-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--text);
}

.cd-icon {
  font-size: 18px;
}

.cd-item a {
  color: var(--gold-dark);
  font-weight: 500;
  transition: color 0.25s;
}

.cd-item a:hover {
  color: var(--gold);
}

.developer-badge {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
}

.db-inner {
  display: flex;
  align-items: center;
  gap: 14px;
}

.db-logo-img {
  height: 48px;
  width: auto;
  border-radius: 8px;
  object-fit: contain;
  flex-shrink: 0;
}

.db-inner strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}

.db-inner span {
  font-size: 12px;
  color: var(--text-muted);
}

.contact-form-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  border: 1px solid #E8E0D5;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.contact-form-card h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid #EDE5D8;
}

.cf-group {
  margin-bottom: 20px;
}

.cf-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 7px;
}

.cf-group input,
.cf-group select,
.cf-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #E0D9CF;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  background: #FAFAF8;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  resize: vertical;
}

.cf-group input:focus,
.cf-group select:focus,
.cf-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
  background: var(--white);
}

/* ============================
   FOOTER
   ============================ */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 64px 48px 40px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-top {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-disc {
  font-size: 12px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.4);
  max-width: 900px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
}

.footer-credit {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
}

.footer-credit strong {
  color: var(--gold-light);
  font-weight: 500;
}

/* ============================
   FLOATING ACTION BUTTONS
   ============================ */
.floating-actions {
  position: fixed;
  right: 28px;
  bottom: 36px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-end;
}

.fab-btn {
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s var(--transition), box-shadow 0.3s var(--transition);
  cursor: pointer;
}

.fab-btn svg {
  width: 24px;
  height: 24px;
}

.fab-call {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.fab-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
}

.fab-btn:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.fab-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  background: rgba(10, 10, 10, 0.92);
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(8px);
  transition: all 0.25s var(--transition);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.fab-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: rgba(10, 10, 10, 0.92);
}

.fab-btn:hover .fab-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ============================
   TOAST
   ============================ */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  background: var(--dark);
  color: var(--white);
  border: 1px solid var(--gold);
  border-radius: 50px;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  z-index: 9999;
  transition: transform 0.5s var(--transition);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

.toast-icon {
  width: 24px;
  height: 24px;
  background: var(--gold);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}

/* ============================
   REVEAL ANIMATION
   ============================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1100px) {
  .invest-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .invest-card:nth-child(4),
  .invest-card:nth-child(5) {
    grid-column: span 1;
  }
}

@media (max-width: 960px) {
  .hero {
    flex-direction: column;
    padding: 140px 32px 80px;
    gap: 48px;
  }

  .hero-form-wrap {
    width: 100%;
    max-width: 480px;
  }

  .overview-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .overview-image-stack {
    height: 360px;
  }

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

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

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

  .offerings-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .section-container {
    padding: 0 24px;
  }

  .navbar {
    padding: 0 24px;
  }

  .hero {
    padding: 140px 24px 80px;
  }

  .footer {
    padding: 36px 24px;
  }
}

@media (max-width: 600px) {
  .hero-stats {
    flex-wrap: wrap;
    gap: 16px;
  }

  .invest-grid {
    grid-template-columns: 1fr;
  }

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

  .location-grid {
    grid-template-columns: 1fr;
  }

  .price-tag-row {
    flex-direction: column;
    align-items: center;
  }

  .price-arrow {
    transform: rotate(90deg);
  }

  .amenities-footer {
    flex-direction: column;
    text-align: center;
  }

  .floating-actions {
    right: 16px;
    bottom: 24px;
  }

  .fab-btn {
    width: 52px;
    height: 52px;
  }
}

/*  */
/* Overlay */
.otp-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Box */
.otp-modal-box {
  background: #f6f1ea;
  padding: 40px;
  border-radius: 20px;
  width: 100%;
  max-width: 420px;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Close */
.otp-close {
  position: absolute;
  top: 15px;
  right: 20px;
  border: none;
  background: none;
  font-size: 18px;
  cursor: pointer;
}

/* Title */
.otp-title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 10px;
}

/* Subtitle */
.otp-subtitle {
  font-size: 14px;
  color: #777;
  margin-bottom: 25px;
}

/* Inputs */
.otp-inputs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.otp-digit {
  width: 50px;
  height: 55px;
  border-radius: 10px;
  border: 1px solid #ddd;
  text-align: center;
  font-size: 18px;
  background: #fff;
}

/* Button */
.otp-btn {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  background: linear-gradient(90deg, #caa84c, #a8832a);
  color: #000;
  font-weight: 500;
  border: none;
  cursor: pointer;
  margin-top: 10px;
}

/* Resend */
.otp-resend {
  margin-top: 15px;
  font-size: 13px;
}

#resendOtpBtn {
  display: none;
  background: none;
  border: none;
  color: #a8832a;
  cursor: pointer;
}



/* footer part2 */
/* Convert top section into 2-column like image */
.footer-top {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}

/* Left + Right width control */
.footer-left,
.footer-right {
  width: 48%;
}

/* Typography upgrade */
.footer-left .footer-label,
.footer-right p {
  font-size: 18px;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.85);
}

/* Highlight labels */
.footer-left span,
.footer-right strong {
  color: #c9a84c;
  font-weight: 600;
}

/* Right alignment like image */
.footer-right {
  text-align: right;
}

/* Center divider (like screenshot) */
.footer-divider {
  height: 1px;
  width: 70%;
  margin: 30px auto;
  background: rgba(255, 255, 255, 0.2);
}

/* Bottom center content */
.footer-inner {
  align-items: center;
  /* override flex start */
  text-align: center;
}

/* Links */
.footer-links {
  font-size: 18px;
  margin-bottom: 10px;
  color: white;
}

.footer-links span {
  color: #c9a84c;
  margin: 0 8px;
}

/* Disclaimer */
.footer-address {
  color: white;
  font-size: 16px;
  margin-bottom: 6px;
}

.footer-disclaimer {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 750px;
}

/* Copy */
.footer-copy {
  font-size: 14px;
}

/* Responsive fix */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
  }

  .footer-left,
  .footer-right {
    width: 100%;
  }

  .footer-right {
    text-align: left;
    margin-top: 20px;
  }
}


.otp-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  /* hidden by default */
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.otp-modal-overlay.active {
  display: flex;
  align-items: center;
  justify-self: center;
}

.otp-modal-box {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  width: 400px;
  max-width: 90%;
}


@media (max-width:450px) {
  .nav-logo {
    gap: 0px;
  }

  .navbar {
    padding: 0 10px !important;

  }
}