/* ============================================================
   GOLF CITY PROJECT PAGE — projectstyles.css
   Cynosure Realty
   ============================================================ */

/* ── DESIGN TOKENS ── */
:root {
  --navy:          #0f2137;
  --navy-mid:      #152d4a;
  --navy-light:    #1e3d5c;
  --gold:          #c9a84c;
  --gold-hover:    #b8942e;
  --gold-pale:     #f7f0dc;
  --gold-alpha:    rgba(201, 168, 76, 0.12);
  --gold-border:   rgba(201, 168, 76, 0.30);
  --green:         #1e7a46;
  --green-pale:    rgba(30, 122, 70, 0.10);
  --white:         #ffffff;
  --cream:         #fafaf7;
  --grey-50:       #f6f5f2;
  --grey-100:      #eeece8;
  --grey-200:      #e0ddd7;
  --grey-400:      #a8a39a;
  --grey-600:      #6b6660;
  --grey-800:      #2e2b27;
  --text:          #1c1a17;
  --text-2:        #4a4540;
  --text-3:        #7a7268;
  --border:        #e4e0d9;
  --shadow-sm:     0 1px 3px rgba(15, 33, 55, 0.06), 0 1px 2px rgba(15, 33, 55, 0.04);
  --shadow-md:     0 4px 16px rgba(15, 33, 55, 0.10), 0 2px 6px rgba(15, 33, 55, 0.06);
  --shadow-lg:     0 12px 40px rgba(15, 33, 55, 0.14), 0 4px 12px rgba(15, 33, 55, 0.08);
  --shadow-xl:     0 24px 64px rgba(15, 33, 55, 0.18);
  --radius-sm:     6px;
  --radius-md:     10px;
  --radius-lg:     16px;
  --radius-xl:     24px;
  --font-display:   "geist", sans-serif;
  --font-body:      "geist", sans-serif;
  --max-w:         1180px;
  --section-py:    96px;
}

/* ── RESET ── */
*, *::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);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { font-family: var(--font-body); cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }


/* ── UTILITY ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 700;
  line-height: 1.10;
  letter-spacing: -0.5px;
  color: var(--navy);
  margin-bottom: 14px;
}

.section-sub {
  font-size: 17px;
  color: var(--text-3);
  line-height: 1.75;
  max-width: 600px;
}

.divider {
  border: none;
  border-top: 1px solid var(--border);
}

/* Fade-up animation */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up.delay-1 { transition-delay: 0.10s; }
.fade-up.delay-2 { transition-delay: 0.20s; }
.fade-up.delay-3 { transition-delay: 0.30s; }
.fade-up.delay-4 { transition-delay: 0.40s; }
.fade-up.delay-5 { transition-delay: 0.50s; }


/* ============================================================
   PROJECT HERO
   ============================================================ */
.project-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

/* Fallback gradient when image absent */
.hero-bg-fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #0a1a2e 0%, #12304f 45%, #0f3d25 100%);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(10, 20, 35, 0.25) 0%,
    rgba(10, 20, 35, 0.50) 40%,
    rgba(10, 20, 35, 0.88) 100%
  );
}

/* decorative grid lines */
.hero-grid-lines {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 80px 0 80px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: flex-end;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-alpha);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-tag-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.3; transform: scale(0.6); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 7.5vw, 96px);
  font-weight: 700;
  color: var(--white);
  line-height: 0.95;
  letter-spacing: -2px;
  margin-bottom: 8px;
}

.hero-title-sub {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 30px);
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0;
  margin-bottom: 28px;
  line-height: 1;
}

.hero-location {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 20px;
}

.hero-location svg { color: var(--gold); flex-shrink: 0; }

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,0.88);
  font-size: 13px;
  font-weight: 500;
  padding: 9px 16px;
  border-radius: 100px;
}

.hero-badge svg { color: var(--gold); flex-shrink: 0; }
.hero-badge strong { color: var(--gold); }

/* Hero right — quick stats card */
.hero-stats-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(18px);
  border-radius: var(--radius-lg);
  padding: 28px;
  min-width: 240px;
  flex-shrink: 0;
}

.hero-stats-card-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  padding-bottom: 12px;
}

.hero-stat-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.hero-stat-row:last-child { border-bottom: none; padding-bottom: 0; }

.hero-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  text-align: right;
}

.hero-stat-value.gold { color: var(--gold); }

.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: float 2.5s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, rgba(201,168,76,0.8), transparent);
}


/* ============================================================
   QUICK FACTS BAR
   ============================================================ */
.facts-bar {
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.facts-bar-inner {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.fact-cell {
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.07);
  transition: background 0.2s;
}

.fact-cell:last-child { border-right: none; }
.fact-cell:hover { background: rgba(255,255,255,0.03); }

.fact-num {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 5px;
}

.fact-num sup {
  font-size: 14px;
  font-family: var(--font-body);
  font-weight: 600;
  vertical-align: super;
}

.fact-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
}


/* ============================================================
   OVERVIEW SECTION
   ============================================================ */
.overview-section {
  padding: var(--section-py) 0;
}

.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.overview-text p {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.85;
  margin-bottom: 18px;
}

.overview-cta-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--gold);
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
  background: var(--gold-hover);
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s, background 0.2s;
}

.btn-outline:hover {
  border-color: var(--gold);
  background: var(--gold-alpha);
  color: var(--gold-hover);
}

/* Landmarks panel */
.landmarks-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.landmarks-panel-header {
  background: var(--navy);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.landmarks-panel-header span {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.02em;
}

.landmark-list {
  padding: 8px;
}

.landmark-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: background 0.15s;
}

.landmark-item:hover { background: var(--grey-50); }

.landmark-pip {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.landmark-sep {
  height: 1px;
  background: var(--border);
  margin: 0 16px;
}

/* Title badge */
.title-badge {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--green-pale);
  border: 1px solid rgba(30, 122, 70, 0.20);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-top: 16px;
}

.title-badge-icon {
  width: 36px;
  height: 36px;
  background: var(--green);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.title-badge-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 3px;
}

.title-badge-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}

.title-badge-sub {
  font-size: 12px;
  color: var(--text-3);
  margin-top: 2px;
}


/* ============================================================
   SITE GALLERY
   ============================================================ */
.gallery-section {
  padding-bottom: var(--section-py);
}

.gallery-header {
  margin-bottom: 36px;
}

.gallery-main-grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  grid-template-rows: 340px 220px;
  gap: 10px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.g-item {
  position: relative;
  overflow: hidden;
  background: var(--grey-100);
  display: flex;
  align-items: center;
  justify-content: center;
}

.g-item.span-col { grid-column: span 1; }
.g-item.span-row { grid-row: span 2; }
.g-item.span-2c  { grid-column: span 2; }

.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.g-item:hover img { transform: scale(1.05); }

.g-placeholder {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--grey-400);
  font-size: 12px;
  text-align: center;
  padding: 20px;
  pointer-events: none;
}

.g-placeholder svg { opacity: 0.25; }

.g-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px 14px;
  background: linear-gradient(transparent, rgba(10,20,35,0.70));
  color: rgba(255,255,255,0.88);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* Gallery thumbs row */
.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 10px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.g-thumb {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
  background: var(--grey-100);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: var(--radius-sm);
}

.g-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.g-thumb:hover img { transform: scale(1.08); }

.g-thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,20,35,0.0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
  transition: background 0.25s;
}

.g-thumb:hover .g-thumb-overlay { background: rgba(10,20,35,0.35); }


/* ============================================================
   PRICING SECTION
   ============================================================ */
.pricing-section {
  padding: var(--section-py) 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

/* decorative shape */
.pricing-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.pricing-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30,122,70,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.pricing-section .section-eyebrow { color: var(--gold); }
.pricing-section .section-title   { color: var(--white); }
.pricing-section .section-sub     { color: rgba(255,255,255,0.55); }

.pricing-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.pricing-note {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  text-align: right;
  max-width: 260px;
  line-height: 1.7;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
}

.price-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
  position: relative;
  overflow: hidden;
}

.price-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(201,168,76,0.35);
  transform: translateY(-3px);
}

.price-card.highlighted {
  background: rgba(201,168,76,0.09);
  border-color: rgba(201,168,76,0.40);
}

.price-card.highlighted::after {
  content: 'Popular';
  position: absolute;
  top: 14px;
  right: -24px;
  background: var(--gold);
  color: var(--navy);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 32px;
  transform: rotate(35deg);
}

.price-card-size {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.price-card-amount {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -1px;
}

.price-card-unit {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}

.price-card-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 16px 0;
}

.price-card-type {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.80);
  margin-bottom: 6px;
  line-height: 1.35;
}

.price-card-beds {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: rgba(255,255,255,0.40);
  margin-bottom: 20px;
}

.price-card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 11px;
  border: 1px solid rgba(201,168,76,0.40);
  border-radius: var(--radius-sm);
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.price-card-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

/* Pricing total banner */
.pricing-total-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  padding: 22px 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.ptb-label {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
}

.ptb-value {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
}

.ptb-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.08);
}

.ptb-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
  border-radius: var(--radius-sm);
  transition: background 0.2s, transform 0.15s;
}

.ptb-cta:hover {
  background: var(--gold-hover);
  transform: translateY(-1px);
}


/* ============================================================
   AMENITIES SECTION
   ============================================================ */
.amenities-section {
  padding: var(--section-py) 0;
  background: var(--grey-50);
}

#amenities .section-title,
#amenities .section-sub {
  color: var(--navy);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.amenity-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
}

.amenity-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.amenity-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--gold-alpha);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 16px;
  transition: background 0.2s;
}

.amenity-card:hover .amenity-icon-wrap {
  background: var(--gold-pale);
}

.amenity-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 7px;
}

.amenity-card p {
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.70;
}

/* Special highlight card */
.amenity-card.accent {
  background: var(--navy);
  border-color: var(--navy);
}

.amenity-card.accent .amenity-icon-wrap {
  background: rgba(201,168,76,0.15);
}

.amenity-card.accent h4 { color: var(--white); }
.amenity-card.accent p  { color: rgba(255,255,255,0.55); }


/* ============================================================
   FLOOR PLANS SECTION
   ============================================================ */
.plans-section {
  padding: var(--section-py) 0;
}

.plans-tabs {
  display: flex;
  gap: 4px;
  background: var(--grey-100);
  border-radius: 100px;
  padding: 4px;
  width: fit-content;
  margin: 32px 0 40px;
}

.plan-tab {
  padding: 9px 22px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-3);
  background: transparent;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.plan-tab.active {
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}

.plan-tab:hover:not(.active) { color: var(--navy); }

.plan-panel {
  display: none;
}

.plan-panel.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.plan-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--grey-100);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
}

.plan-img-wrap img {
  width: 100%;
  height: 100%;
}

.plan-img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--grey-400);
  font-size: 13px;
  text-align: center;
  padding: 32px;
}

.plan-img-placeholder svg { opacity: 0.20; }

.plan-img-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--navy);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
}

.plan-details-size {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -1px;
}

.plan-details-unit {
  font-size: 13px;
  color: var(--text-3);
  margin-bottom: 20px;
}

.plan-details h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 14px;
}

.plan-details p {
  font-size: 15px;
  color: var(--text-3);
  line-height: 1.80;
  margin-bottom: 24px;
}

.plan-spec-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.plan-spec-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-2);
}

.plan-spec-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.plan-price-line {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  margin-top: 8px;
}

.plan-price-label {
  font-size: 12px;
  color: var(--text-3);
  font-weight: 500;
}

.plan-price-value {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
}

/* Masterplan card */
.masterplan-card {
  background: var(--navy);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 60px;
  box-shadow: var(--shadow-xl);
}

.masterplan-img {
  aspect-ratio: auto;
  min-height: 380px;
  background: var(--navy-mid);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.masterplan-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.masterplan-img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.25);
  font-size: 13px;
  text-align: center;
  padding: 40px;
}

.masterplan-img-placeholder svg { opacity: 0.2; }

.masterplan-info {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.masterplan-info .section-eyebrow { color: var(--gold); margin-bottom: 8px; }

.masterplan-info h3 {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 14px;
}

.masterplan-info p {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.80;
  margin-bottom: 28px;
}

.masterplan-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}

.m-stat {
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-md);
  padding: 16px;
}

.m-stat-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.m-stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}


/* ============================================================
   LOCATION / MAP SECTION
   ============================================================ */
.location-section {
  padding: var(--section-py) 0;
  background: var(--grey-50);
}

#location .section-title,
#location .section-sub {
  color: var(--navy);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}

.location-info p {
  font-size: 15px;
  color: var(--text-3);
  line-height: 1.80;
  margin-bottom: 24px;
}

.map-open-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  background: var(--gold);
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: background 0.2s, transform 0.15s;
  margin-bottom: 28px;
}

.map-open-btn:hover {
  background: var(--gold-hover);
  transform: translateY(-1px);
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.loc-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 13px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 14px;
}

.loc-detail-row svg {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.loc-detail-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 2px;
}

.loc-detail-value {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}

/* Map frame */
.map-frame-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  background: var(--grey-100);
}

.map-frame-wrap iframe {
  display: block;
  width: 100%;
  height: 440px;
  border: none;
  filter: saturate(0.85);
}

.map-fallback {
  height: 440px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--grey-400);
  text-align: center;
  padding: 32px;
}

.map-fallback svg { opacity: 0.2; }

.map-fallback a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}

.map-fallback p {
  font-size: 13px;
  color: var(--grey-400);
  max-width: 240px;
  line-height: 1.6;
}


/* ============================================================
   PAYMENT PLAN SECTION
   ============================================================ */
.payment-section {
  padding: var(--section-py) 0;
}

.payment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

.payment-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: box-shadow 0.25s, border-color 0.25s;
}

.payment-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.payment-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--gold-alpha);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.payment-card-headline {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -1px;
  margin-bottom: 4px;
}

.payment-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.payment-card p {
  font-size: 14px;
  color: var(--text-3);
  line-height: 1.75;
}

.payment-process {
  background: var(--grey-50);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.process-step {
  padding: 0 20px;
  border-right: 1px solid var(--border);
  position: relative;
  text-align: center;
}

.process-step:first-child { padding-left: 0; }
.process-step:last-child  { border-right: none; padding-right: 0; }

.process-step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.process-step h5 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.process-step p {
  font-size: 12px;
  color: var(--text-3);
  line-height: 1.60;
}


/* ============================================================
   PROJECT CTA BANNER
   ============================================================ */
.project-cta-section {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--navy) 0%, #122840 50%, #0d2e1a 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.project-cta-section::before {
  content: 'GOLF CITY';
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 200px;
  font-weight: 700;
  color: rgba(255,255,255,0.025);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -4px;
  line-height: 1;
}

.project-cta-section::before {
  content: 'BUY NOW!';
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 200px;
  font-weight: 700;
  color: rgba(255,255,255,0.025);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -4px;
  line-height: 1;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.cta-inner p {
  font-size: 17px;
  color: rgba(255,255,255,0.60);
  line-height: 1.75;
  margin-bottom: 40px;
}

.cta-btn-group {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: var(--gold);
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: background 0.2s, transform 0.15s;
}

.btn-cta-gold:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
}

.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: transparent;
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  border: 1.5px solid rgba(255,255,255,0.30);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s, background 0.2s;
}

.btn-cta-outline:hover {
  border-color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.05);
}

.cta-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.cta-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: rgba(255,255,255,0.40);
}

.cta-trust-item svg { color: var(--gold); }


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1060px) {
  :root { --section-py: 72px; }
  .container { padding: 0 28px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-stats-card { display: none; }
  .overview-grid { grid-template-columns: 1fr; gap: 48px; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .plan-panel.active { grid-template-columns: 1fr; }
  .masterplan-card { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .facts-bar-inner { grid-template-columns: repeat(3, 1fr); }
  .facts-bar-inner .fact-cell:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.07); }
  .facts-bar-inner .fact-cell:nth-child(5) { border-top: 1px solid rgba(255,255,255,0.07); border-right: none; }
  .payment-process { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .process-step { border-right: none; border-bottom: 1px solid var(--border); padding-bottom: 24px; }
  .process-step:nth-child(even) { padding-bottom: 0; border-bottom: none; }
}

@media (max-width: 768px) {
  :root { --section-py: 56px; }
  .container { padding: 0 20px; }
  .hero-title { letter-spacing: -1px; }
  .project-hero { min-height: 85vh; }
  .hero-content { padding: 60px 0; }
  .gallery-main-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 200px;
  }
  .g-item.span-row { grid-row: auto; }
  .gallery-thumbs { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .facts-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .amenities-grid { grid-template-columns: 1fr; }
  .plans-tabs { overflow-x: auto; max-width: 100%; padding: 4px; }
  .masterplan-info { padding: 32px 24px; }
  .masterplan-stats { grid-template-columns: 1fr 1fr; }
  .payment-grid { grid-template-columns: 1fr; }
  .payment-process { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid var(--border); padding-bottom: 20px; }
  .process-step:last-child { border-bottom: none; padding-bottom: 0; }
}

@media (max-width: 480px) {
  .hero-badges { gap: 8px; }
  .hero-badge { font-size: 12px; padding: 7px 12px; }
  .pricing-total-banner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .ptb-divider { display: none; }
  .gallery-main-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .g-item { aspect-ratio: 16/9; }
  .gallery-thumbs { grid-template-columns: repeat(2, 1fr); }
  .masterplan-stats { grid-template-columns: 1fr; }
  .facts-bar-inner { grid-template-columns: 1fr 1fr; }
  .cta-btn-group { flex-direction: column; align-items: center; }
  .btn-cta-gold, .btn-cta-outline { width: 100%; justify-content: center; }
}