/* ═══════════════════════════════════════════════════════════
   INFINITY MALL & RESIDENCE — style.css
   Full Light Theme — Luxury / Radisson Blu inspired
═══════════════════════════════════════════════════════════ */

/* ─── CSS VARIABLES ─── */
:root {
  --gold:        #174a53;
  --gold-light:  #1e6270;
  --gold-dark:   #0f3038;
  --gold-pale:   #eaf2f3;
  --gold-thin:   rgba(23,74,83,0.12);

  --dark:        #174a53;
  --dark-2:      #0f3038;
  --dark-3:      #1e6270;

  --white:       #ffffff;
  --cream:       #faf7f2;
  --cream-2:     #f3ede2;

  --text:        #1a1710;
  --text-mid:    #4a4540;
  --text-light:  #7a746a;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', sans-serif;

  --nav-h:       80px;
  --topbar-h:    40px;
  --transition:  0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-gold: 0 4px 30px rgba(23,74,83,0.22);
  --shadow-soft: 0 8px 40px rgba(0,0,0,0.08);
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { max-width: 1260px; margin: 0 auto; padding: 0 2rem; }
.section-pad { padding: 100px 0; }

/* ─── TYPOGRAPHY ─── */
.section-tag {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
  line-height: 1.3;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; color: var(--gold); font-weight: 400; }
.section-title.light { color: var(--white); }
.section-tag.light { color: var(--gold-light); }
.section-sub { font-size: 0.95rem; color: var(--text-light); max-width: 500px; margin: 0 auto; line-height: 1.8; }
.section-sub.light { color: rgba(255,255,255,0.45); }
.section-header.center { text-align: center; margin-bottom: 4rem; }
.section-header.center .section-sub { margin: 0 auto; }

/* ─── BUTTONS ─── */
.btn-gold {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 2.4rem;
  background: var(--gold); color: var(--white);
  font-family: var(--font-body); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  border: none; cursor: pointer; transition: var(--transition);
}
.btn-gold span, .btn-gold i { position: relative; z-index: 1; }
.btn-gold:hover { box-shadow: var(--shadow-gold); background: var(--gold-dark); }
.btn-gold.full-width { width: 100%; justify-content: center; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 2.4rem; background: transparent; color: var(--white);
  font-family: var(--font-body); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.5); cursor: pointer; transition: var(--transition);
}
.btn-outline:hover { border-color: var(--gold-light); color: var(--gold-light); }

.btn-outline.btn-light {
  color: var(--text); border-color: rgba(0,0,0,0.12);
}
.btn-outline.btn-light:hover {
  border-color: var(--gold); color: var(--gold);
}

.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.85rem 2rem; background: #25D366; color: var(--white);
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.05em; margin-top: 1.5rem; transition: var(--transition);
}
.btn-whatsapp:hover { background: #1da851; box-shadow: 0 4px 20px rgba(37,211,102,0.3); }
.btn-whatsapp i { font-size: 1.2rem; }



/* ─── NAVBAR — centered logo split layout ─── */
.navbar {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: transparent;
  border-bottom: none;
}

.navbar.scrolled {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;
  box-shadow: none;
}
.nav-inner {
  max-width: 1400px; margin: 0 auto; padding: 0 2rem;
  height: 100%; display: flex; align-items: center; gap: 1rem;
  position: relative;
}

/* Center logo */
.nav-logo-center { 
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  flex-shrink: 0; 
}
.nav-logo-center img { height: 44px; width: auto; }

/* Left + right link groups */
.nav-links { display: flex; align-items: center; gap: 0; }
.nav-links-left { flex: 1; justify-content: flex-start; }
.nav-links-right { flex: 1; justify-content: flex-end; }

.nav-links li { position: relative; }
.nav-links a {
  display: block; padding: 0.5rem 0.9rem;
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.9); transition: color 0.3s; white-space: nowrap;
}
.nav-links a:hover { color: var(--gold-light); }

.navbar.scrolled .nav-links a { color: var(--text-mid); }
.navbar.scrolled .nav-links a:hover { color: var(--gold); }
.navbar.scrolled .nav-links a.active { color: var(--text-mid); }

.nav-links .fa-chevron-down { font-size: 0.6rem; margin-left: 0.2rem; }

/* Dropdowns */
.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white); border: 1px solid rgba(23,74,83,0.15);
  border-top: 2px solid var(--gold); min-width: 190px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: var(--transition); z-index: 100;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}
.dropdown-menu-right { left: auto; right: 0; }
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu li a {
  padding: 0.7rem 1.2rem; font-size: 0.75rem;
  border-bottom: 1px solid rgba(0,0,0,0.04); color: var(--text-mid);
}
.dropdown-menu li:last-child a { border-bottom: none; }
.dropdown-menu li a:hover { color: var(--gold); background: var(--gold-pale); }

/* CTA group */
.nav-cta-group {
  display: flex; align-items: center; gap: 0.6rem;
  flex-shrink: 0; margin-left: 1rem;
}
.nav-btn-live {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.45rem 1rem; background: #e53935; color: var(--white);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
  border-radius: 999px; white-space: nowrap; transition: var(--transition);
}
.nav-btn-live:hover { background: #c62828; }
.nav-btn-live i { font-size: 0.55rem; }

.nav-btn-call {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.45rem 1.1rem;
  border: 1.5px solid rgba(255,255,255,0.7); color: var(--white);
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em;
  border-radius: 999px; white-space: nowrap; transition: var(--transition);
}
.nav-btn-call:hover { border-color: var(--gold-light); color: var(--gold-light); }
.navbar.scrolled .nav-btn-call {
  border-color: rgba(0,0,0,0.25); color: var(--text);
}
.navbar.scrolled .nav-btn-call:hover { border-color: var(--gold); color: var(--gold); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: var(--transition); }
.navbar.scrolled .hamburger span { background: var(--text); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─── HERO — full viewport, no text, video controls ─── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex; align-items: flex-end; justify-content: center;
  overflow: hidden;
  padding-bottom: 2.5rem;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg video, .hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(10,8,4,0.20) 0%,
    rgba(10,8,4,0.10) 50%,
    rgba(10,8,4,0.45) 100%);
  z-index: 1;
}

/* Video controls */
.hero-video-controls {
  position: relative; z-index: 2;
  display: flex; align-items: center; gap: 0.6rem;
}
.hvc-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.18);
  border: 1.5px solid rgba(255,255,255,0.45);
  color: var(--white); font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; backdrop-filter: blur(6px);
  transition: var(--transition);
}
.hvc-btn:hover { background: rgba(255,255,255,0.32); border-color: rgba(255,255,255,0.8); }
.hvc-play { width: 52px; height: 52px; font-size: 1rem; }

/* ─── HERO FORM CARD ─── */
.hero-form-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 100%;
  display: none; /* hidden by default, shown after 2s via JS */
  justify-content: center;
  padding: 0 1rem;
}

.hero-form-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  width: 420px;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  overflow: hidden;
}

.hero-form-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.2rem 0.7rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.hero-form-header h3 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
}

.hero-form-close {
  background: none;
  border: none;
  font-size: 1.1rem;
  color: var(--text-light);
  cursor: pointer;
  padding: 0.2rem;
  line-height: 1;
  transition: color 0.3s;
}
.hero-form-close:hover { color: var(--text); }

.hero-form-body {
  padding: 0.8rem 1.2rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Field */
.hf-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.hf-field label {
  font-size: 0.75rem;
  font-weight: 500;
  color: #ffffff;
}
.hf-field input,
.hf-field select {
  width: 100%;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: #ffffff;
  background: rgba(255,255,255,0.15);
  outline: none;
  transition: border-color 0.3s;
  appearance: none;
  -webkit-appearance: none;
}
.hf-field input:focus,
.hf-field select:focus {
  border-color: var(--gold);
}

/* Select wrapper */
.hf-select-wrap {
  position: relative;
}
.hf-select-wrap select { padding-right: 2rem; cursor: pointer; }
.hf-select-icon {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.7rem;
  color: var(--text-light);
  pointer-events: none;
}

.hf-field select option {
  background: #1a1a1a;
  color: #ffffff;
}

/* Submit button */
.hf-submit {
  margin-top: 0.2rem;
  padding: 0.65rem 2.5rem 0.65rem 1.6rem;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 6px 10px 10px 6px;
  clip-path: polygon(0% 0%, 100% 0%, 85% 100%, 0% 100%);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  cursor: pointer;
  align-self: flex-start;
  transition: background 0.3s;
}
.hf-submit:hover { background: var(--gold-dark); }

/* Responsive */
@media (max-width: 1100px) {
  .hero-form-card { width: 340px; }
}
@media (max-width: 900px) {
  .hero-form-wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .hero {
    height: 100vh;
    min-height: 600px;
  }
  .hero-form-card { width: 100%; max-width: 340px; }
}
@media (max-width: 480px) {
  .hero-form-card { width: calc(100vw - 2rem); max-width: 340px; }
  .hero-form-wrap { padding: 0 1rem; }
}

/* ─── ABOUT — white ─── */
.about { background: var(--white); }

/* ── Row 1 grid ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding-bottom: 3rem;
}

/* ── Left text ── */
.about-main-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.about-subtitle {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.2rem;
  letter-spacing: 0.02em;
}

.about-body {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 2rem;
  max-width: 480px;
}

/* CTA button */
.btn-interested {
  display: inline-flex;
  align-items: center;
  padding: 0.9rem 2.5rem 0.9rem 1.8rem;
  background: var(--gold);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  border-radius: 6px 10px 10px 6px;
  clip-path: polygon(0% 0%, 100% 0%, 85% 100%, 0% 100%);
}
.btn-interested:hover { background: var(--gold-dark); }

/* ── Right images ── */
.about-images {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 0.75rem;
  align-items: stretch;
  position: relative;
}

.about-img-sm,
.about-img-lg {
  overflow: hidden;
  position: relative;
}

.about-img-sm { height: 360px; }
.about-img-lg { height: 420px; }

.about-img-sm img,
.about-img-lg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: none;
  transition: filter 0.5s ease, transform 0.6s ease;
  display: block;
}

.about-img-sm:hover img,
.about-img-lg:hover img {
  filter: grayscale(0%) contrast(1);
  transform: scale(1.04);
}

/* Decorative 4-pointed star */
.about-star {
  position: absolute;
  font-size: 2.2rem;
  color: var(--text);
  line-height: 1;
  pointer-events: none;
}
.about-star-top { top: -1rem; right: -1rem; }

/* ── Divider with center star ── */
.about-divider {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 1rem 0 2.5rem;
}
.about-divider-line {
  flex: 1;
  height: 1px;
  background: rgba(0,0,0,0.12);
}
.about-divider-star {
  font-size: 1.8rem;
  color: var(--text);
  padding: 0 0.5rem;
  line-height: 1;
  transform: translateY(-2px);
}

/* ── Pricing strip ── */
.about-pricing-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding: 1rem 0 0.5rem;
}

.about-price-item { display: flex; flex-direction: column; gap: 0.2rem; }

.about-price-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.about-price-label {
  font-size: 0.85rem;
  color: var(--text-light);
}

.about-price-type {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* Vertical divider between price items */
.about-price-divider {
  width: 1px;
  height: 60px;
  background: rgba(0,0,0,0.12);
}

/* Right CTA: link + arrow circle */
.about-price-cta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.2rem;
}

.about-price-link {
  font-size: 0.85rem;
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
  line-height: 1.5;
  transition: color 0.3s;
}
.about-price-link:hover { color: var(--gold); }

.about-arrow-circle {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--text); font-size: 0.9rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.about-arrow-circle:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-pricing-row {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .about-price-divider { display: none; }
  .about-price-cta { justify-content: flex-start; }
}

@media (max-width: 768px) {
  .about-images { grid-template-columns: 1fr; }
  .about-img-sm { display: none; }
  .about-img-lg { height: 280px; }
  .about-pricing-row { grid-template-columns: 1fr; }
  .about-price-num { font-size: 2rem; }
}


/* ─── PLANS — 3 column dark ─── */
.plans { background: var(--dark); padding: 0; }

.plans-bg-wrap {
  position: relative;
  background: url('images/price_planbg.jfif') center center / cover no-repeat;
  min-height: 580px;
  display: flex;
  align-items: stretch;
}

.plans-overlay {
  position: absolute; inset: 0;
  background: rgba(8,7,5,0.78);
}

.plans-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 0;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
}

/* ── LEFT column ── */
.plans-left {
  padding-right: 3rem;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.plans-swipe-badge {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 2rem;
}
.plans-badge-dot {
  background: var(--text);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
}
.plans-badge-text {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.75);
  padding: 0.4rem 1rem;
  letter-spacing: 0.05em;
}

.plans-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.plans-hero-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.85;
  max-width: 340px;
}

/* ── CENTER column ── */
.plans-center {
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.plans-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 4px;
}

.plans-video-poster {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.65);
}

.plans-coming-soon {
  position: absolute;
  bottom: 1.5rem; left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
}

.plans-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.7);
  background: rgba(0,0,0,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 0.9rem;
  padding-left: 3px;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.plans-play-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translate(-50%, -50%) scale(1.1);
}

/* ── RIGHT column ── */
.plans-right {
  padding-left: 3rem;
  border-left: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
}

.plans-right-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
  padding-bottom: 1rem;
}

.plans-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.2rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
}
.plans-item:last-child { border-bottom: 1px solid rgba(255,255,255,0.1); }
.plans-item:hover { padding-left: 0.4rem; }
.plans-item:hover .plans-item-title { color: var(--gold-light); }
.plans-item:hover .plans-arrow { color: var(--gold-light); transform: translateX(4px); }

.plans-item-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-bottom: 0.25rem;
}

.plans-item-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.88);
  line-height: 1.3;
  transition: color 0.3s;
  margin: 0;
}

.plans-arrow {
  font-size: 1rem;
  color: rgba(255,255,255,0.4);
  flex-shrink: 0;
  transition: color 0.3s, transform 0.3s;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .plans-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .plans-left {
    border-right: none;
    padding-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 2rem;
  }
  .plans-right {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 2rem;
  }
  .plans-center { padding: 0; }
  .plans-video-wrap { aspect-ratio: 16/9; }
}

@media (max-width: 768px) {
  .plans-hero-title { font-size: 2.2rem; }
  .plans-right-title { font-size: 1.8rem; }
  .plans-item-title { font-size: 1rem; }
}

/* ─── NEWS — cream ─── */
.news { background: var(--cream); }

.news .section-header {
  border-bottom: 1px solid rgba(23,74,83,0.18);
  padding-bottom: 2.5rem;
  margin-bottom: 3rem;
}

.news-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem;
}

.news-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
}

.news-card-featured {
  grid-row: 1 / 3;
  min-height: 560px;
}

.news-card-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.news-card:hover .news-card-bg { transform: scale(1.06); }

.news-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(5,4,2,0.90) 0%,
    rgba(5,4,2,0.35) 55%,
    rgba(5,4,2,0.05) 100%
  );
  transition: opacity 0.4s;
}
.news-card:hover::after { opacity: 0.95; }

.news-card-content {
  position: relative; z-index: 2;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.news-meta {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  font-weight: 500;
}

.news-pill {
  display: inline-flex;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  align-self: flex-start;
}

.news-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.3;
  margin: 0;
}
.news-card-featured h3 { font-size: 1.85rem; }

.news-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.75;
  margin: 0;
}

.news-read-more {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
  margin-top: 0.25rem;
}
.news-read-more i { transition: transform 0.3s; }
.news-card:hover .news-read-more { opacity: 1; transform: translateY(0); }
.news-card:hover .news-read-more i { transform: translateX(4px); }

@media (max-width: 1024px) {
  .news-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .news-card-featured {
    grid-row: auto;
    grid-column: 1 / 3;
    min-height: 400px;
  }
}
@media (max-width: 768px) {
  .news-grid { grid-template-columns: 1fr; }
  .news-card-featured { grid-column: auto; min-height: 360px; }
  .news-card { min-height: 260px; }
  .news-card-featured h3 { font-size: 1.5rem; }
}

.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; margin-bottom: 2.5rem; }
.af-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.83rem; font-weight: 500; color: var(--text-mid); }
.af-item i { color: var(--gold); font-size: 0.8rem; }

/* ─── AMENITIES ─── */
.amenities { background: var(--white); }

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 3rem 1rem;
  margin-top: 1rem;
}

.amenity-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  text-align: center;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  cursor: default;
}
.amenity-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.amenity-item i {
  font-size: 2.4rem;
  color: var(--gold);
  transition: color 0.3s, transform 0.3s;
  line-height: 1;
}
.amenity-item:hover i {
  color: var(--gold);
  transform: translateY(-4px);
}

.amenity-item span {
  font-size: 0.78rem;
  color: var(--text-mid);
  line-height: 1.4;
  font-weight: 400;
  max-width: 90px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .amenities-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
  .amenities-grid { grid-template-columns: repeat(4, 1fr); gap: 1.8rem 0.5rem; }
  .amenity-item i { font-size: 2rem; }
}
@media (max-width: 480px) {
  .amenities-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 360px) {
  .amenities-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 0.5rem; }
}

/* ─── FEATURES — white ─── */
.features { background: var(--white); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: 300px 300px; gap: 5px; }
.feature-card { position: relative; overflow: hidden; cursor: pointer; }
.feature-card.large { grid-row: 1 / 3; }
.feature-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.feature-card:hover img { transform: scale(1.07); }
.feature-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,8,4,0.78) 0%, rgba(10,8,4,0.05) 60%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 1.5rem; transition: var(--transition);
}
.feature-overlay h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: var(--white); margin-bottom: 0.25rem; }
.feature-overlay p { font-size: 0.75rem; color: var(--gold-light); letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500; }
.feature-card.large .feature-overlay h3 { font-size: 1.8rem; }


/* ─── TIMELINE ─── */
.timeline-section { background: var(--white); }

.tl-crane-layout {
  display: grid;
  grid-template-columns: 350px 500px 350px;
  gap: 0;
  align-items: center;
  margin-top: 1rem;
  justify-content: center;
  column-gap: -100px;
}

/* ── Side panels ── */
.tl-side {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.tl-side-left {
  align-items: flex-start;
  width: 350px;
  padding-top: 390px;
  justify-self: end;
  transform: translateX(110px);
}
.tl-side-right {
  align-items: flex-start;
  margin-left: -80px;
  padding-top: 180px;
  width: 350px;
}

.tl-side-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 0.5rem;
}

.tl-video-thumb {
  position: relative;
  display: block;
  width: 80%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--dark-3);
}
.tl-video-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.tl-video-thumb:hover img { transform: scale(1.04); }
.tl-thumb-fallback { background: #1a1a1a; }

.tl-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.8);
  background: rgba(0,0,0,0.35);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 0.9rem;
  padding-left: 3px;
  transition: var(--transition);
}
.tl-video-thumb:hover .tl-play-btn {
  background: var(--gold);
  border-color: var(--gold);
}


/* ── Center column ── */
.tl-center {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 550px;
  width: 500px;
}

/* Crane — smaller, left-aligned */
.tl-crane-img {
  position: absolute;
  left: 0;
  top: -100px;
  width: auto;
  height: 700px;
  object-fit: contain;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
}

/* Milestones — close to tower */
.tl-milestones-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-left: 130px;
  display: flex;
  flex-direction: column;
  margin-top: 100px;
}

.tl-milestones-wrap::before {
  display: none;
}

.tl-milestone {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
  padding: 1.5rem 0 1.5rem 1rem;
  position: relative;
  border-bottom: none;
}
.tl-milestone:last-child { border-bottom: none; }

.tl-milestone::before {
  display: none;
}

/* Year */
.tl-milestone-year {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}
.tl-milestone[data-status="active"] .tl-milestone-year { color: var(--text); }
.tl-milestone[data-status="past"] .tl-milestone-year {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(0,0,0,0.2);
}
.tl-milestone[data-status="done"] .tl-milestone-year {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(23,74,83,0.45);
}

.tl-milestone-info { padding-top: 0.1rem; }
.tl-milestone-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mid);
}
.tl-milestone[data-status="active"] .tl-milestone-label { color: var(--gold-dark); }
.tl-milestone-info p {
  font-size: 0.75rem;
  color: var(--text-light);
  line-height: 1.5;
  margin: 0;
}

.btn-angled {
  border-radius: 6px 10px 10px 6px;
  clip-path: polygon(0% 0%, 100% 0%, 85% 100%, 0% 100%);
  padding: 0.65rem 2.5rem 0.65rem 1.6rem;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .tl-crane-layout { grid-template-columns: 1fr; gap: 3rem; align-items: start; }
  .tl-side-left {
    padding-top: 0;
    transform: none;
    width: 100%;
    order: 2;
  }
  .tl-side-right {
    padding-top: 0;
    margin-left: 0;
    width: 100%;
    order: 3;
  }
  .tl-center { width: 100%; max-width: 380px; margin: 0 auto; order: 1; }
}
@media (max-width: 768px) {
  .tl-crane-img { height: 480px; top: -80px; }
  .tl-milestones-wrap { padding-left: 70px; margin-top: 90px; }
  .tl-milestone-year { font-size: 1.8rem; }
}

/* ─── LOCATION ─── */
.location { background: var(--white); }

/* ── 2x2 bordered grid ── */
.loc-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  border: 1px solid rgba(0,0,0,0.1);
  margin-top: 2rem;
}

/* ── Corner + markers ── */
.loc-corner {
  position: absolute;
  font-size: 1.2rem;
  color: var(--text);
  font-weight: 300;
  line-height: 1;
  z-index: 2;
}
.loc-corner-tl { top: -0.7rem; left: -0.7rem; }
.loc-corner-tr { top: -0.7rem; right: -0.7rem; }
.loc-corner-bl { bottom: -0.7rem; left: -0.7rem; }
.loc-corner-br { bottom: -0.7rem; right: -0.7rem; }
.loc-corner-mid {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* ── Individual cells ── */
.loc-cell {
  padding: 2.5rem;
  position: relative;
}
.loc-cell-tl {
  border-right: 1px solid rgba(0,0,0,0.1);
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.loc-cell-tr {
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.loc-cell-bl {
  border-right: 1px solid rgba(0,0,0,0.1);
}

/* ── TOP LEFT: circles ── */
.loc-circles {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  justify-content: center;
  padding: 1rem 0;
}

.loc-circle-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.loc-circle {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(23,74,83,0.2);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.loc-circle:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 30px rgba(23,74,83,0.2);
}
.loc-circle img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

.loc-circle-item span {
  font-size: 0.75rem;
  color: var(--text-light);
  line-height: 1.45;
  font-weight: 400;
}

/* ── TOP RIGHT: heading + list ── */
.loc-cell-tr {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.loc-heading {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 1.5rem;
}

.loc-attractions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.loc-attr-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: var(--text-mid);
}
.loc-attr-item i {
  color: var(--gold);
  font-size: 0.8rem;
  flex-shrink: 0;
  width: 16px;
}

/* ── BOTTOM LEFT: tagline + map ── */
.loc-cell-bl {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.loc-tagline {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.loc-tagline-icon {
  font-size: 2rem;
  color: var(--text);
  flex-shrink: 0;
}

.loc-tagline p {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  margin: 0;
}

.loc-map {
  flex: 1;
  min-height: 200px;
  overflow: hidden;
  border-radius: 4px;
}
.loc-map iframe {
  width: 100%; height: 100%;
  min-height: 200px;
  border: none;
  filter: saturate(0.8) contrast(1.05);
  display: block;
}

/* ── BOTTOM RIGHT: large image ── */
.loc-cell-br { padding: 0; overflow: hidden; }

.loc-large-img {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 280px;
}

.loc-large-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.loc-large-img:hover img { transform: scale(1.04); }

.loc-img-pill {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  background: rgba(255,255,255,0.92);
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  backdrop-filter: blur(4px);
}
.loc-img-pill i { color: var(--gold); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .loc-grid { grid-template-columns: 1fr; }
  .loc-cell-tl,
  .loc-cell-tr,
  .loc-cell-bl { border-right: none; }
  .loc-cell-tl,
  .loc-cell-tr,
  .loc-cell-bl {
    border-bottom: 1px solid rgba(0,0,0,0.1);
  }
  .loc-corner-mid { display: none; }
  .loc-large-img { min-height: 240px; }
}

@media (max-width: 768px) {
  .loc-cell { padding: 1.5rem; }
  .loc-circles { gap: 1rem; }
  .loc-circle { width: 85px; height: 85px; }
  .loc-heading { font-size: 1.2rem; }
  .loc-tagline p { font-size: 1.1rem; }
}

@media (max-width: 480px) {
  .loc-circles { flex-wrap: wrap; justify-content: center; }
}

/* ─── PARTNERS — cream ─── */
.partners { background: var(--cream); }

.partners-track-wrapper {
  overflow: hidden;
  position: relative;
  padding: 1rem 0 1.5rem;
}
.partners-track-wrapper::before,
.partners-track-wrapper::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none;
}
.partners-track-wrapper::before { left: 0; background: linear-gradient(to right, var(--cream), transparent); }
.partners-track-wrapper::after  { right: 0; background: linear-gradient(to left, var(--cream), transparent); }

.partners-track {
  display: flex;
  gap: 1.5rem;
  align-items: stretch;
  animation: marquee 35s linear infinite;
  width: max-content;
}
.partners-track:hover { animation-play-state: paused; }

.partners-track img {
  height: 140px;
  width: 180px;
  object-fit: contain;
  object-position: center;
  padding: 1.5rem 1.25rem;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  border: 1px solid rgba(0,0,0,0.05);
  opacity: 1;
  filter: none;
  transition: box-shadow 0.3s, transform 0.3s;
  flex-shrink: 0;
}
.partners-track img:hover {
  box-shadow: 0 8px 36px rgba(0,0,0,0.12);
  transform: translateY(-4px);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .partners-track img { height: 110px; width: 140px; padding: 1.2rem 1rem; }
}

/* ─── FOOTER — #174a53 ─── */
.footer { background: #174a53; }
.footer-top { padding: 5rem 0 3rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; }
.footer-logo { height: 40px; width: auto; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.footer-logo-text { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: #ffffff; margin-bottom: 1rem; display: block; }
.footer-brand p { font-size: 0.83rem; color: #ffffff; line-height: 1.8; margin-bottom: 1.5rem; max-width: 280px; }
.footer-social { display: flex; gap: 0.6rem; }
.footer-social a {
  width: 36px; height: 36px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center; color: #ffffff; font-size: 0.72rem; transition: var(--transition);
}
.footer-social a:hover { background: rgba(255,255,255,0.2); border-color: #ffffff; color: #ffffff; }
.footer-links-col h4 { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: #ffffff; margin-bottom: 1.2rem; padding-bottom: 0.6rem; border-bottom: 1px solid rgba(255,255,255,0.3); }
.footer-links-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links-col li { font-size: 0.83rem; color: #ffffff; }
.footer-links-col li i { color: #ffffff; font-size: 0.72rem; }
.footer-links-col li a { color: #ffffff; transition: color 0.3s; display: flex; align-items: center; gap: 0.4rem; }
.footer-links-col li a:hover { color: #ffffff; text-decoration: underline; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.3); padding: 1.5rem 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.footer-bottom p { font-size: 0.75rem; color: #ffffff; }
.footer-bottom a { color: #ffffff; }
.footer-bottom a:hover { color: #ffffff; text-decoration: underline; }

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}


/* ─── FLOATING ELEMENTS ─── */
.whatsapp-float {
  position: fixed; bottom: 2rem; right: 2rem; width: 56px; height: 56px;
  background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.4rem; z-index: 999; box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: var(--transition); animation: pulse-whatsapp 2.5s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.5); }
@keyframes pulse-whatsapp { 0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.35); } 50% { box-shadow: 0 4px 28px rgba(37,211,102,0.6); } }

.back-to-top {
  position: fixed; bottom: 2rem; left: 2rem; width: 44px; height: 44px;
  background: var(--gold); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 0.85rem; z-index: 999; opacity: 0; visibility: hidden; transition: var(--transition);
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--gold-dark); transform: translateY(-3px); }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── LAUNCH SECTION ─── */
.launch { background: var(--white); }

.launch-eyebrow {
  display: block;
  font-size: 0.82rem;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}
.launch-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--text);
  text-align: center;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.launch-sub {
  font-size: 0.88rem;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 3rem;
}

.launch-layout {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.launch-price-tl { grid-column: 1; grid-row: 1; justify-content: flex-end; align-self: start; }
.launch-price-tr { grid-column: 3; grid-row: 1; justify-content: flex-start; align-self: start; }
.launch-circle-wrap { grid-column: 2; grid-row: 1 / 3; align-self: center; }
.launch-price-bl { grid-column: 1; grid-row: 2; justify-content: flex-end; align-self: end; }
.launch-price-br { grid-column: 3; grid-row: 2; justify-content: flex-start; align-self: end; }

.launch-price-left {
  align-items: flex-end;
  justify-content: flex-end;
  margin-top: auto;
  align-self: flex-end;
}

.launch-price-right {
  align-items: flex-start;
  justify-content: flex-start;
  align-self: flex-start;
}

.launch-circle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.launch-circle {
  width: 420px;
  height: 420px;
  border-radius: 50%;
  overflow: hidden;
  border: 8px solid rgba(23,74,83,0.15);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  flex-shrink: 0;
}

.launch-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}
.launch-circle:hover img { transform: scale(1.05); }

.launch-price-block {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.launch-price-left { justify-content: flex-end; }
.launch-price-right { justify-content: flex-start; }

.launch-price-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(23,74,83,0.1);
  border: 2px solid rgba(23,74,83,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.launch-price-icon i {
  font-size: 1.8rem;
  color: var(--gold);
}
.launch-price-block:hover .launch-price-icon {
  background: var(--gold);
  border-color: var(--gold);
}
.launch-price-block:hover .launch-price-icon i {
  color: var(--white);
}

.launch-price-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.launch-price-num {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.launch-price-label {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.4;
}

.launch-book-btn {
  display: inline-block;
  margin-top: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}
.launch-book-btn:hover { color: var(--gold); }

.launch-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.08);
  max-width: 400px;
  margin: 0 auto;
}

.launch-cta-link {
  font-size: 0.88rem;
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
  line-height: 1.6;
  text-align: right;
  transition: color 0.3s;
}
.launch-cta-link:hover { color: var(--gold); }

.launch-arrow-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.launch-arrow-circle:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

@media (max-width: 1024px) {
  .launch-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .launch-circle { width: 320px; height: 320px; }
  .launch-circle-wrap { order: -1; }
  .launch-price-left,
  .launch-price-right { justify-content: center; }
}

@media (max-width: 768px) {
  .launch-circle { width: 260px; height: 260px; }
  .launch-price-num { font-size: 1.6rem; }
  .launch-price-icon { width: 64px; height: 64px; }
  .launch-price-icon i { font-size: 1.4rem; }
}

/* ─── VIDEO LIGHTBOX ─── */
.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.video-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.video-lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.92);
  cursor: pointer;
}

.video-lightbox-content {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 960px;
}

.video-lightbox-close {
  position: absolute;
  top: -3rem;
  right: 0;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.3s;
  line-height: 1;
}
.video-lightbox-close:hover { color: var(--gold-light); }

.video-lightbox-frame {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: #000;
}
.video-lightbox-frame iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE FIXES — mobile content clipping & centering
═══════════════════════════════════════════════════════════ */

/* ── Prevent any section from creating horizontal scroll ── */
section, footer, nav {
  max-width: 100vw;
  overflow-x: hidden;
}

/* ─── GLOBAL RESPONSIVE ─── */
@media (max-width: 768px) {
  :root { --nav-h: 70px; --topbar-h: 36px; }
  .section-pad { padding: 70px 0; }
  .topbar-inner span:not(:last-child) { display: none; }
  .nav-links-left, .nav-links-right, .nav-cta-group { display: none; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }
  .dropdown-menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    background: var(--cream); border: none; border-left: 2px solid var(--gold);
    margin-left: 2rem; box-shadow: none;
  }
  .features-grid { grid-template-columns: 1fr; }
  .features-grid .feature-card.large { grid-row: auto; }
  .about-features { grid-template-columns: 1fr; }

  /* Mobile nav drawer */
  .nav-links.open {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: var(--white); flex-direction: column;
    padding: 1rem 0 2rem; gap: 0; display: flex;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border-top: 2px solid var(--gold);
    z-index: 999;
    overflow-y: auto;
    max-height: calc(100vh - var(--nav-h));
  }
  .nav-links.open a { padding: 0.9rem 2rem; color: var(--text-mid); border-bottom: 1px solid rgba(0,0,0,0.04); }
}

@media (max-width: 480px) {
  /* Tighter container padding on small screens */
  .container { padding: 0 1rem; }
  .section-pad { padding: 50px 0; }

  .hero-title { font-size: clamp(2.5rem, 12vw, 4rem); }
  .hero-actions { flex-direction: column; align-items: center; }
  .partners-track img { height: 60px; }

  /* Plans bg-wrap must not overflow */
  .plans-bg-wrap { overflow-x: hidden; }

  /* Features grid single col */
  .features-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .feature-card { min-height: 220px; }
  .feature-card.large { grid-row: auto; }

  /* Timeline — prevent fixed widths from overflowing */
  .tl-center { width: 100%; min-height: unset; }
  .tl-crane-img { height: 360px; top: -60px; }
  .tl-milestones-wrap { padding-left: 55px; margin-top: 70px; }
  .tl-milestone-year { font-size: 1.5rem; }
  .tl-side-left, .tl-side-right { width: 100%; }
  .tl-video-thumb { width: 100%; }

  /* Launch circle shrinks further */
  .launch-circle { width: 200px; height: 200px; }
  .launch-price-block { flex-direction: column; align-items: center; text-align: center; }
  .launch-price-left, .launch-price-right { justify-content: center; }

  /* About pricing stacks cleanly */
  .about-pricing-row { grid-template-columns: 1fr; gap: 1.2rem; }
  .about-price-cta { justify-content: flex-start; }

  /* Location cells full width */
  .loc-cell { padding: 1.2rem; }
  .loc-circles { gap: 0.8rem; }
  .loc-circle { width: 72px; height: 72px; }

  /* Footer bottom wraps */
  .footer-bottom .container { flex-direction: column; align-items: flex-start; gap: 0.3rem; }
}

/* ── Extra-small safety net (360px and below) ── */
@media (max-width: 360px) {
  .container { padding: 0 0.75rem; }
  .hero-form-card { width: calc(100vw - 1.5rem); }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 0.5rem; }
  .loc-circles { flex-direction: column; align-items: center; }
}















/* ═══════════════════════════════════════════════════════════
   ADDITIONS — paste these at the very bottom of style.css
═══════════════════════════════════════════════════════════ */

/* ─── ACTIVE NAV LINK — highlights current page ─── */
.nav-links a.active {
  color: var(--gold-light) !important;
}
/* When scrolled, active link turns dark */
.navbar.scrolled .nav-links a.active {
  color: var(--gold) !important;
  border-color: var(--gold);
}

/* ─── PAGE HERO — used on About, Plans, Contact, Amenities ─── */
/* Replaces the full-video hero on inner pages with a compact banner */
.page-hero {
  position: relative;
  height: 340px;
  display: flex;
  align-items: flex-end;
  background: url('images/hero-bg.jpg') center center / cover no-repeat;
  margin-top: var(--nav-h); /* pushes content below fixed navbar */
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 8, 4, 0.35) 0%,
    rgba(10, 8, 4, 0.65) 100%
  );
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  padding-bottom: 3rem;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin: 0;
}

/* Each inner page can override the hero background image: */
.page-hero.about-hero    { background-image: url('images/mall-exterior.jpg'); }
.page-hero.plans-hero    { background-image: url('images/price_planbg.jfif'); }
.page-hero.amenities-hero{ background-image: url('images/rooftop.png'); }
.page-hero.contact-hero  { background-image: url('images/courtyard.jpg'); }

@media (max-width: 768px) {
  .page-hero { height: 240px; }
  .page-hero-title { font-size: 2.2rem; }
}

@media (max-width: 480px) {
  .page-hero { height: 200px; }
  .page-hero-inner { padding-bottom: 1.5rem; }
}


/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE STYLES — add at bottom of style.css
═══════════════════════════════════════════════════════════ */

/* ─── NAVBAR — transparent, hero shows through ─── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: transparent;
  border-bottom: none;
}
.navbar.scrolled {
  background: rgba(10,8,4,0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: none;
  box-shadow: none;
}

/* ─── PAGE HERO — text bottom-left ─── */
.page-hero {
  position: relative;
  height: 480px;
  display: flex;
  align-items: flex-end;
  background: url('images/mall-exterior.jpg') center center / cover no-repeat;
  margin-top: 0;
  padding-top: 0;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,8,4,0.15) 0%,
    rgba(10,8,4,0.72) 100%
  );
}
.page-hero-inner {
  position: relative;
  z-index: 2;
  padding-bottom: 3.5rem;
  text-align: left;
  width: 100%;
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin: 0;
}
.page-hero .section-tag.light {
  text-align: left;
  display: block;
  color: rgba(255,255,255,0.7);
}

/* Per-page hero background images */
.page-hero.about-hero    { background-image: url('images/mall-exterior.jpg'); }
.page-hero.plans-hero    { background-image: url('images/price_planbg.jfif'); }
.page-hero.amenities-hero{ background-image: url('images/rooftop.png'); }
.page-hero.contact-hero  { background-image: url('images/courtyard.jpg'); }

/* hero overlaps navbar — no gap */
.hero-no-margin {
  margin-top: 0;
  padding-top: var(--nav-h);
  height: 480px;
}

@media (max-width: 768px) {
  .page-hero,
  .hero-no-margin { height: 320px; }
  .page-hero-title { font-size: 2.4rem; }
  .page-hero-inner { padding-bottom: 2rem; }
}
@media (max-width: 480px) {
  .page-hero,
  .hero-no-margin { height: 260px; }
  .page-hero-title { font-size: 1.9rem; }
  .page-hero-inner { padding-bottom: 1.5rem; }
}

/* ─── ACTIVE NAV LINK ─── */
.nav-links a.active { color: var(--gold-light) !important; }
.navbar.scrolled .nav-links a.active { color: var(--gold-light) !important; }

/* scrolled nav links go light since bg is dark */
.navbar.scrolled .nav-links a { color: rgba(255,255,255,0.85); }
.navbar.scrolled .nav-links a:hover { color: var(--gold-light); }
.navbar.scrolled .nav-btn-call {
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}
.navbar.scrolled .nav-btn-call:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}
.navbar.scrolled .hamburger span { background: var(--white); }

/* ─── ABOUT INTRO — text LEFT, image RIGHT ─── */
.abt-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.abt-intro-grid .abt-intro-text   { order: 1; }
.abt-intro-grid .abt-intro-img-wrap { order: 2; }

.abt-body {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 1.2rem;
}

/* Mission / Vision label */
.abt-mv-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  margin-top: 1.8rem;
}
.abt-mv-bar {
  display: block;
  width: 4px;
  height: 2rem;
  background: var(--gold);
  flex-shrink: 0;
}
.abt-mv-title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--text);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* Right image with L-shaped gold corner borders */
.abt-intro-img-wrap {
  position: relative;
  height: 620px;
  overflow: visible;
}
.abt-intro-img-wrap img {
  width: 90%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
  margin-left: auto;
}
.abt-img-accent-top {
  position: absolute;
  top: -18px;
  right: -10px;
  width: 55%;
  height: 55%;
  border-top: 4px solid var(--gold);
  border-right: 4px solid var(--gold);
  z-index: 0;
  pointer-events: none;
}
.abt-img-accent-left {
  position: absolute;
  bottom: -18px;
  left: 0;
  width: 45%;
  height: 45%;
  border-bottom: 4px solid var(--gold);
  border-left: 4px solid var(--gold);
  z-index: 0;
  pointer-events: none;
}
.abt-img-bottom-bar {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 55%;
  height: 5px;
  background: var(--gold);
  z-index: 2;
}

@media (max-width: 1024px) {
  .abt-intro-grid { grid-template-columns: 1fr; gap: 3rem; }
  .abt-intro-img-wrap { height: 400px; }
  .abt-intro-img-wrap img { width: 100%; }
}
@media (max-width: 480px) {
  .abt-intro-img-wrap { height: 260px; }
  .abt-img-accent-top,
  .abt-img-accent-left,
  .abt-img-bottom-bar { display: none; }
}

/* ─── LEADERSHIP ─── */

/* 
  1st, 3rd, 5th — normal:   text LEFT  | image RIGHT
  2nd, 4th      — reversed: image LEFT | text RIGHT
*/
.abt-leader-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.abt-leader-row-reverse {
  direction: rtl;
}
.abt-leader-row-reverse > * {
  direction: ltr;
}

/* Text */
.abt-leader-text {
  padding-top: 3rem;
}
.abt-leader-name {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.3rem;
  line-height: 1.1;
}
.abt-leader-role {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: block;
}
.abt-leader-points {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin: 1.2rem 0;
}
.abt-lp-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.5;
}
.abt-lp-item i {
  color: var(--gold);
  font-size: 0.7rem;
  margin-top: 4px;
  flex-shrink: 0;
}

/* Image wrap —
   padding creates visible space for accent block.
   Photo sits inside, accent block peeks out behind.
*/
.abt-leader-img-wrap {
  position: relative;
  height: 350px;
  padding: 0;
}
.abt-leader-row-reverse .abt-leader-img-wrap {
  padding: 0;
}
.abt-leader-img-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  background: #f5f0e8;
}





/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .abt-leader-row {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .abt-leader-row-reverse { direction: ltr; }
  .abt-leader-text { padding-top: 0; }
  .abt-leader-img-wrap {
    height: 320px;
    padding-top: 40px;
    padding-right: 40px;
  }
  .abt-leader-row-reverse .abt-leader-img-wrap {
    padding-right: 0;
    padding-left: 40px;
  }
  .abt-leader-row-reverse .abt-leader-img-wrap::after {
    left: 40px;
  }
}
@media (max-width: 768px) {
  .abt-leader-row { gap: 2rem; }
  .abt-leader-img-wrap { height: 280px; }
  .abt-leader-name { font-size: 1.5rem; }
}
@media (max-width: 480px) {
  .abt-leader-img-wrap { padding: 0; height: 240px; }
  .abt-leader-row-reverse .abt-leader-img-wrap { padding: 0; }
  .abt-leader-img-accent { display: none; }
  .abt-leader-img-wrap::after { display: none; }
}







/* ═══════════════════════════════════════════════════════════
   CONTACT PAGE — add at bottom of style.css
═══════════════════════════════════════════════════════════ */

/* ─── ROW 2: CONTACT GRID — 8/4 split ─── */
.contact-section { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* ─── LEFT: FORM ─── */
.contact-form-wrap {
  background: var(--white);
}

.contact-form-header {
  margin-bottom: 2.5rem;
}

.contact-form-sub {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-top: -0.5rem;
  max-width: 520px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

/* Two-column row inside form */
.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}

.cf-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.cf-field-full {
  grid-column: 1 / -1;
}

.cf-field label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
}

.cf-field label span {
  color: var(--gold);
  margin-left: 2px;
}

.cf-field input,
.cf-field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: 0;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  appearance: none;
  -webkit-appearance: none;
  resize: vertical;
}

.cf-field input::placeholder,
.cf-field textarea::placeholder {
  color: var(--text-light);
  font-size: 0.85rem;
}

.cf-field input:focus,
.cf-field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-thin);
}

.cf-field textarea {
  min-height: 160px;
  line-height: 1.7;
}

/* Result message */
#cf-result {
  font-size: 0.85rem;
  padding: 0.9rem 1.2rem;
  border-radius: 3px;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.cf-result-success {
  background: rgba(23,74,83,0.08);
  color: var(--gold-dark);
  border-left: 3px solid var(--gold);
}

.cf-result-error {
  background: rgba(220,50,50,0.07);
  color: #c0392b;
  border-left: 3px solid #c0392b;
}

/* Submit button */
.cf-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2.8rem 1rem 2rem;
  background: var(--gold);
  color: var(--white);
  border: none;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  align-self: flex-start;
  clip-path: polygon(0% 0%, 100% 0%, 92% 100%, 0% 100%);
  padding-right: 3.5rem;
}
.cf-submit:hover {
  background: var(--gold-dark);
  box-shadow: var(--shadow-gold);
}
.cf-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.cf-submit i { font-size: 0.85rem; }

/* ─── RIGHT: INFO CARDS ─── */
.contact-info-wrap {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}

.contact-info-header {
  margin-bottom: 1.8rem;
}

.contact-info-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 300;
  color: var(--text);
  line-height: 1.2;
  margin: 0;
}
.contact-info-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(0,0,0,0.09);
}

/* Each card */
.ci-card {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.4rem 1.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  transition: background 0.3s;
}
.ci-card:last-of-type { border-bottom: none; }
.ci-card:hover { background: var(--gold-pale); }

.ci-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
  font-size: 0.95rem;
  transition: var(--transition);
}
.ci-card:hover .ci-icon {
  background: var(--gold-dark);
  transform: scale(1.08);
}

.ci-body h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}
.ci-body p {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 0.35rem;
}
.ci-link {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap 0.3s, color 0.3s;
}
.ci-link:hover { gap: 0.6rem; color: var(--gold-dark); }
.ci-link i { font-size: 0.65rem; }
.ci-link-wa { color: #25D366; }
.ci-link-wa:hover { color: #1da851; }

/* Social row */
.ci-social {
  padding: 1.2rem 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.07);
  background: var(--cream);
}
.ci-social-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.8rem;
}
.ci-social-links {
  display: flex;
  gap: 0.6rem;
}
.ci-social-links a {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mid);
  font-size: 0.78rem;
  transition: var(--transition);
}
.ci-social-links a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

/* ─── ROW 3: MAP ─── */
.contact-map-section {
  background: var(--cream);
}

.contact-map-header {
  padding: 4rem 0 2rem;
}

.contact-map-title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.contact-map-title-row .section-title {
  margin-bottom: 0;
}

.contact-map-embed {
  width: 100%;
  height: 480px;
  position: relative;
  overflow: hidden;
}

.contact-map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: saturate(0.85) contrast(1.05);
}

.contact-info-cards {
  background: var(--gold);
  border: none;
}

.ci-card {
  border-bottom-color: rgba(255,255,255,0.15) !important;
}

.ci-card:hover {
  background: rgba(255,255,255,0.12) !important;
}

.ci-icon {
  background: rgba(255,255,255,0.2) !important;
  color: var(--white) !important;
}

.ci-card:hover .ci-icon {
  background: var(--white) !important;
  color: var(--gold) !important;
}

.ci-body h4 {
  color: rgba(255,255,255,0.6) !important;
}

.ci-body p {
  color: var(--white) !important;
}

.ci-link {
  color: rgba(255,255,255,0.8) !important;
}

.ci-link:hover {
  color: var(--white) !important;
}

.ci-link-wa {
  color: rgba(255,255,255,0.8) !important;
}

.ci-social {
  background: rgba(0,0,0,0.12) !important;
  border-top-color: rgba(255,255,255,0.15) !important;
}

.ci-social-label {
  color: rgba(255,255,255,0.6) !important;
}

.ci-social-links a {
  border-color: rgba(255,255,255,0.25) !important;
  color: var(--white) !important;
}

.ci-social-links a:hover {
  background: rgba(255,255,255,0.2) !important;
  border-color: var(--white) !important;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .contact-info-wrap {
    position: static;
  }
  .contact-info-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .ci-card { border-bottom: 1px solid rgba(0,0,0,0.07); }
  .ci-social { grid-column: 1 / -1; border-top: 1px solid rgba(0,0,0,0.07); }
  .contact-map-embed { height: 380px; }
}

@media (max-width: 768px) {
  .cf-row { grid-template-columns: 1fr; }
  .contact-info-cards { grid-template-columns: 1fr; }
  .contact-map-title-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }
  .contact-map-embed { height: 320px; }
  .contact-map-header { padding: 3rem 0 1.5rem; }
}

@media (max-width: 480px) {
  .cf-submit { width: 100%; justify-content: center; clip-path: none; padding: 1rem 2rem; }
  .contact-map-embed { height: 260px; }
}













/* ─── INNER PAGES — navbar stays at top only ─── */
.navbar-static {
  position: absolute !important;
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
}
.navbar-static.scrolled {
  background: transparent !important;
  backdrop-filter: none !important;
}

/* ─── FIX: dropdown was clipped by nav overflow:hidden ─── */
nav {
  overflow: visible !important;
}
.nav-inner {
  overflow: visible !important;
}

