/* =============================================
   URBANRISE THIRUMAZHISAI – Marketing Site
   Theme: Navy & Gold, West Chennai Township
   ============================================= */

:root {
  --cream: #f6f7fb;
  --white: #ffffff;
  --warm-50: #eef1f8;
  --warm-100: #e4e9f5;
  --gold: #c8973a;
  --gold-light: #e2b76a;
  --gold-dark: #a87828;
  --brown: #16233f;
  --brown-light: #3a4d73;
  --charcoal: #12203a;
  --charcoal-soft: #182a4a;
  --gray-text: #5c6470;
  --gray-light: #dfe3ea;
  --font-serif: 'Poppins', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --radius: 4px;
  --shadow: 0 4px 24px rgba(22, 35, 63, 0.10);
  --shadow-lg: 0 16px 48px rgba(22, 35, 63, 0.16);
  --transition: all 0.3s ease;
}

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

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

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* =============================================
   TYPOGRAPHY HELPERS
   ============================================= */
.section-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-label.light { color: var(--gold-light); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.18;
  color: var(--charcoal);
  margin-bottom: 1.2rem;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-title.light { color: var(--white); }

.section-sub {
  font-size: 1rem;
  color: var(--gray-text);
  max-width: 600px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.section-sub.light { color: rgba(255,255,255,0.75); }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.btn--gold {
  background: var(--gold);
  color: var(--white);
}
.btn--gold:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,151,58,0.35); }

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.6);
}
.btn--outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

.btn--nav {
  background: var(--gold);
  color: var(--white);
  padding: 0.6rem 1.4rem;
  font-size: 0.8rem;
}
.btn--nav:hover { background: var(--gold-dark); }

.btn--full { width: 100%; justify-content: center; padding: 1rem 2rem; font-size: 0.95rem; }

.btn--outline-dark {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--charcoal);
}
.btn--outline-dark:hover { background: var(--charcoal); color: var(--white); transform: translateY(-2px); }

/* =============================================
   LAYOUT
   ============================================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* =============================================
   NAV
   ============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.4s ease, box-shadow 0.4s ease;
  padding: 0;
}
.nav.scrolled {
  background: rgba(246, 247, 251, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(22,35,63,0.10);
}
.nav.scrolled .nav__links a { color: var(--charcoal); }

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__brand { flex: 1; display: flex; flex-direction: row; align-items: center; gap: 0.75rem; }
.nav__logo {
  display: inline-flex;
  background: rgba(255,255,255,0.95);
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
  transition: var(--transition);
}
.nav__logo img { height: 26px; width: auto; display: block; }
.nav.scrolled .nav__logo { background: transparent; box-shadow: none; padding: 0; }
.nav__codename-wrap {
  display: inline-flex;
  align-items: center;
  background: var(--charcoal);
  padding: 0.3rem 0.65rem;
  border-radius: 6px;
}
.nav__codename { height: 16px; width: auto; display: block; }
.footer__codename { height: 20px; width: auto; display: block; margin-bottom: 0.75rem; }

.nav__links {
  display: flex;
  gap: 2rem;
}
.nav__links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  transition: color 0.25s;
}
.nav__links a:hover { color: var(--gold-light); }
.nav.scrolled .nav__links a:hover { color: var(--gold); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block; width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px; transition: var(--transition);
}
.nav.scrolled .nav__burger span { background: var(--charcoal); }

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--white);
  padding: 1rem 2rem 1.5rem;
  box-shadow: var(--shadow);
}
.nav__mobile a {
  padding: 0.75rem 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--charcoal);
  border-bottom: 1px solid var(--gray-light);
}
.nav__mobile .btn--gold { margin-top: 1rem; text-align: center; justify-content: center; }
.nav__mobile.open { display: flex; }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; }
.hero__video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__carousel { position: relative; width: 100%; height: 100%; }
.hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.hero__slide.active { opacity: 1; }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(14,20,34,0.82) 0%,
    rgba(14,20,34,0.50) 55%,
    rgba(14,20,34,0.28) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  padding-top: 80px;
}
.hero__location {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.06;
  color: var(--white);
  margin-bottom: 1rem;
}
.hero__title em { font-style: italic; color: var(--gold-light); }
.hero__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.80);
  margin-bottom: 2rem;
  letter-spacing: 0.04em;
}
.hero__badges {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.hero__badge {
  display: flex; flex-direction: column;
  border-left: 2px solid var(--gold);
  padding-left: 1rem;
}
.badge__num {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.badge__label {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
}
.hero__ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}
.hero__scroll span {
  display: block;
  width: 1.5px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}
.hero__scroll p {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
@keyframes scrollLine {
  0%, 100% { opacity: 0.6; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.15); }
}

/* =============================================
   OVERVIEW
   ============================================= */
.overview {
  padding: 100px 0;
  background: var(--cream);
}
.overview__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.overview__card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 6px;
  padding: 2rem;
  transition: var(--transition);
}
.overview__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--gold-light);
}
.overview__icon { font-size: 2rem; margin-bottom: 1rem; }
.overview__card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--charcoal);
}
.overview__card p { font-size: 0.9rem; color: var(--gray-text); line-height: 1.7; }

.highlights {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  background: var(--charcoal);
  border-radius: 8px;
  padding: 2.5rem;
}
.highlight {
  display: flex; flex-direction: column;
  align-items: center;
  padding: 0 3rem;
  text-align: center;
  flex: 1;
  min-width: 140px;
}
.highlight__num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.highlight__text {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.highlight__divider {
  width: 1px; height: 48px;
  background: rgba(255,255,255,0.15);
}

/* =============================================
   PROPERTY SPECS
   ============================================= */
.specs {
  margin-top: 4rem;
  text-align: center;
}
.specs__label-top {
  text-align: center;
}
.specs__heading {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 2.5rem;
}

/* Icon cards */
.specs__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 3rem;
  margin-bottom: 2.5rem;
  text-align: left;
}
.specs__card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.specs__card-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  color: var(--gold);
}
.specs__card-icon svg {
  width: 100%;
  height: 100%;
}
.specs__card-body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.specs__card-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
}
.specs__card-value {
  font-size: 0.95rem;
  color: var(--gray-text);
  font-weight: 400;
}

/* Stats bar */
.specs__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0f1f35;
  border-radius: 10px;
  padding: 2rem 2.5rem;
  margin-bottom: 2.5rem;
  gap: 0;
}
.specs__stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}
.specs__stat-num {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.specs__stat-text {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.04em;
}
.specs__stat-sep {
  font-size: 2rem;
  color: rgba(255,255,255,0.2);
  padding: 0 1.5rem;
  font-weight: 300;
  line-height: 1;
  align-self: center;
}

/* Brochure button – centered */
.specs__brochure-wrap {
  display: flex;
  justify-content: center;
}
.specs__brochure {
  gap: 0.6rem;
  padding: 0.9rem 2.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

/* =============================================
   INVESTMENT
   ============================================= */
.investment {
  padding: 60px 0;
  background: var(--charcoal);
}
.investment__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  max-width: 700px;
  margin: 0 auto;
}
.investment__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 200px;
  padding: 0 2rem;
}
.investment__num {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.investment__label {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.investment__divider {
  width: 1px;
  height: 56px;
  background: rgba(255,255,255,0.15);
}
.investment__disclaimer {
  text-align: center;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  margin-top: 1.5rem;
}

@media (max-width: 560px) {
  .investment__grid { flex-direction: column; gap: 1.5rem; }
  .investment__divider { width: 60px; height: 1px; }
}

.growth__label-top {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.growth__grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem 3rem;
  margin-top: 1.25rem;
}
.growth__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 160px;
}
.growth__num {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.growth__label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  max-width: 180px;
}

/* =============================================
   PRESS / IN THE NEWS
   ============================================= */
.press {
  padding: 100px 0;
  background: var(--warm-50);
}
.press__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 3rem 0 2.5rem;
}
.press__card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 8px;
  padding: 1.75rem;
  transition: var(--transition);
}
.press__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--gold-light);
}
.press__icon { font-size: 1.6rem; margin-bottom: 0.85rem; }
.press__headline {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.4;
  margin-bottom: 0.6rem;
}
.press__snippet {
  font-size: 0.85rem;
  color: var(--gray-text);
  line-height: 1.65;
  margin-bottom: 0.85rem;
}
.press__source {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.press__quote {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem 1rem 0;
  border-top: 1px solid var(--gray-light);
}
.press__quote p {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.press__quote cite {
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-dark);
}

@media (max-width: 768px) {
  .press__grid { grid-template-columns: 1fr; }
}

/* =============================================
   PROCESS
   ============================================= */
.process {
  padding: 100px 0;
  background: var(--cream);
}
.process__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.process__step {
  position: relative;
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 8px;
  transition: var(--transition);
}
.process__step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--gold-light);
}
.process__num {
  width: 44px;
  height: 44px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 50%;
}
.process__step h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.6rem;
}
.process__step p {
  font-size: 0.88rem;
  color: var(--gray-text);
  line-height: 1.65;
}

@media (max-width: 768px) {
  .process__grid { grid-template-columns: 1fr; }
}

/* =============================================
   SUSTAINABILITY
   ============================================= */
.sustainability {
  padding: 70px 0;
  background: var(--charcoal-soft);
}
.sustainability__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}
.sustainability-tag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
  padding: 0.6rem 1.1rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* =============================================
   ABOUT / DEVELOPER CREDIBILITY
   ============================================= */
.about {
  padding: 100px 0;
  background: var(--warm-50);
}
.about__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0f1f35;
  border-radius: 10px;
  padding: 2rem 2.5rem;
  gap: 0;
  flex-wrap: wrap;
}
.about__stat {
  flex: 1;
  min-width: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}
.about__stat-num {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.about__stat-text {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.04em;
  text-align: center;
}
.about__stat-sep {
  font-size: 2rem;
  color: rgba(255,255,255,0.2);
  padding: 0 1.5rem;
  font-weight: 300;
  line-height: 1;
  align-self: center;
}

@media (max-width: 768px) {
  .about__stats { flex-wrap: wrap; gap: 1.2rem; padding: 1.5rem; }
  .about__stat-sep { display: none; }
  .about__stat { flex: 0 0 40%; }
}

/* =============================================
   AWARDS & RECOGNITION
   ============================================= */
.awards {
  padding: 100px 0;
  background: var(--charcoal);
}
.awards__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}
.awards__card {
  text-align: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 2rem 1.5rem;
  transition: var(--transition);
}
.awards__card:hover {
  transform: translateY(-4px);
  border-color: rgba(200,151,58,0.4);
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}
.awards__icon { font-size: 1.8rem; margin-bottom: 1rem; }
.awards__title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 0.6rem;
}
.awards__source {
  font-size: 0.75rem;
  color: var(--gold-light);
  letter-spacing: 0.03em;
}

/* =============================================
   FLOOR PLAN
   ============================================= */
.floorplan {
  padding: 100px 0;
  background: var(--warm-50);
}
.floorplan__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.floorplan__card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 10px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: var(--transition);
  position: relative;
}
.floorplan__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-light);
}
.floorplan__card--premium {
  border-color: var(--gold-light);
  background: linear-gradient(135deg, #fbf8f1 0%, #f5ede0 100%);
}
.floorplan__thumb-link {
  position: relative;
  display: block;
  margin: -2rem -2rem 0;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}
.floorplan__thumb {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: left center;
  display: block;
  transition: transform 0.4s ease;
}
.floorplan__thumb-link:hover .floorplan__thumb { transform: scale(1.05); }
.floorplan__thumb-zoom {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(22,35,63,0.55);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.floorplan__thumb-link:hover .floorplan__thumb-zoom { opacity: 1; }
.floorplan__badge {
  display: inline-flex;
  align-self: flex-start;
  background: rgba(200,151,58,0.12);
  border: 1px solid rgba(200,151,58,0.35);
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
}
.floorplan__badge--dark {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--gold-light);
}
.floorplan__type {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.25;
}
.floorplan__details {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}
.floorplan__detail {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--gray-text);
}
.floorplan__detail svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
}
.floorplan__market-price {
  text-decoration: line-through;
  color: var(--gray-text);
  opacity: 0.7;
}
.floorplan__detail--eoi { flex-wrap: wrap; gap: 0.5rem 0.6rem; }
.floorplan__eoi-price {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--charcoal);
}
.floorplan__eoi-tag {
  background: var(--gold);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: 100px;
}
.floorplan__savings {
  display: inline-flex;
  align-self: flex-start;
  background: rgba(200,151,58,0.12);
  border: 1px solid rgba(200,151,58,0.3);
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
}
.floorplan__btn {
  margin-top: 0.5rem;
  width: 100%;
  justify-content: center;
  padding: 0.8rem 1rem;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
}

@media (max-width: 640px) {
  .floorplan__grid { grid-template-columns: 1fr; }
}

/* =============================================
   EOI MODAL
   ============================================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(14, 20, 34, 0.78);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  max-width: 860px;
  max-height: 90vh;
  box-shadow: 0 32px 80px rgba(14,20,34,0.45);
  position: relative;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.35s ease;
}
.modal-overlay.open .modal {
  transform: translateY(0) scale(1);
}
.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  width: 36px;
  height: 36px;
  background: rgba(14,20,34,0.55);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.modal__close:hover { background: var(--gold); }

/* Modal left – image */
.modal__left {
  position: relative;
  min-height: 460px;
}
.modal__left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.modal__left-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,20,34,0.85) 0%, rgba(14,20,34,0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  gap: 0.75rem;
}
.modal__left-brand {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}
.modal__left-brand span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--gold-light);
  font-family: var(--font-sans);
  letter-spacing: 0.06em;
}
.modal__left-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.modal__left-tags span {
  background: rgba(200,151,58,0.25);
  border: 1px solid rgba(200,151,58,0.5);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  letter-spacing: 0.03em;
}

/* Modal right – form */
.modal__right {
  overflow-y: auto;
  max-height: 90vh;
}
.modal__right-inner {
  padding: 2.5rem 2rem;
}
.modal__title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.modal__sub {
  font-size: 0.875rem;
  color: var(--gray-text);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.modal-form .form-group { margin-bottom: 1rem; }
.modal-success {
  display: none;
  text-align: center;
  padding: 2rem 0;
}
.modal-success.show { display: block; }
.modal-success .success__icon {
  width: 56px; height: 56px;
  background: var(--gold);
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.modal-success h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}
.modal-success p { font-size: 0.9rem; color: var(--gray-text); }

@media (max-width: 768px) {
  .specs__cards { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 2rem; }
  .specs__stats { flex-wrap: wrap; gap: 1.2rem; padding: 1.5rem; }
  .specs__stat-sep { display: none; }
  .specs__stat { flex: 0 0 40%; }
}

@media (max-width: 680px) {
  .modal { grid-template-columns: 1fr; }
  .modal__left { min-height: 220px; }
}

@media (max-width: 480px) {
  .specs__cards { grid-template-columns: 1fr; }
  .specs__stat { flex: 0 0 45%; }
}

/* =============================================
   AMENITIES
   ============================================= */
.amenities {
  padding: 100px 0;
  background: var(--charcoal-soft);
}
.amenities__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.amenity-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  overflow: hidden;
  transition: var(--transition);
}
.amenity-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.3); border-color: rgba(200,151,58,0.4); }
.amenity-card img { width: 100%; height: 220px; object-fit: cover; display: block; transition: transform 0.5s ease; }
.amenity-card:hover img { transform: scale(1.04); }
.amenity-card__body { padding: 1.5rem; }
.amenity-card__body h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.amenity-card__body p { font-size: 0.875rem; color: rgba(255,255,255,0.6); line-height: 1.65; }

.amenities__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.amenity-tag {
  background: rgba(200,151,58,0.12);
  border: 1px solid rgba(200,151,58,0.25);
  color: var(--gold-light);
  padding: 0.45rem 1.1rem;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* =============================================
   GALLERY
   ============================================= */
.gallery {
  padding: 100px 0 60px;
  background: var(--cream);
}
.gallery .container { margin-bottom: 3rem; }
.gallery__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 12px;
  padding: 0 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }

.gallery__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(14,20,34,0.8), transparent);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 1.5rem 1rem 0.9rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery__item:hover .gallery__caption { opacity: 1; }

/* =============================================
   LOCATION
   ============================================= */
.location {
  padding: 100px 0;
  background: var(--warm-50);
}
.location__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.location__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(200,151,58,0.12);
  border: 1px solid rgba(200,151,58,0.3);
  color: var(--gold-dark);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.75rem;
}
.location__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin-bottom: 2.25rem;
}
.location__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  transition: var(--transition);
}
.location__item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--gold-light);
}
.location__item-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  background: rgba(200,151,58,0.12);
  border-radius: 50%;
}
.location__item-body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}
.location__item-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.3;
}
.location__item-time {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.location__map {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.location__map-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  background: var(--charcoal);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.5rem 0.9rem;
  border-radius: 100px;
  box-shadow: var(--shadow);
}
.location__addresses {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.location__addresses div {
  font-size: 0.82rem;
  color: var(--gray-text);
  line-height: 1.5;
}
.location__addresses strong { color: var(--charcoal); }
.location__ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.location__map iframe { display: block; }

@media (max-width: 560px) {
  .location__grid { grid-template-columns: 1fr; }
}

/* =============================================
   CONTACT / LEAD FORM
   ============================================= */
.contact {
  padding: 100px 0;
  background: var(--charcoal);
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact__perks {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 2.5rem;
}
.perk {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
}
.perk span {
  display: flex; align-items: center; justify-content: center;
  width: 20px; height: 20px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}
.contact__direct p {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.4rem;
}
.contact__phone {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--gold-light);
  font-weight: 600;
}
.contact__phone:hover { color: var(--gold); }

.lead-form {
  background: var(--white);
  border-radius: 10px;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.lead-form::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
}
.lead-form__banner {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: linear-gradient(135deg, rgba(200,151,58,0.14) 0%, rgba(200,151,58,0.04) 100%);
  border: 1px solid rgba(200,151,58,0.35);
  border-radius: 8px;
  padding: 0.9rem 1.1rem;
  margin-bottom: 1.5rem;
}
.lead-form__banner-icon { font-size: 1.4rem; flex-shrink: 0; }
.lead-form__banner strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--charcoal);
  line-height: 1.2;
}
.lead-form__banner span {
  font-size: 0.8rem;
  color: var(--gray-text);
}
.lead-form__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1rem;
}
.form-row .form-group { margin-bottom: 1.2rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--charcoal);
  background: var(--cream);
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius);
  transition: border-color 0.25s;
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}
.form-group input.error,
.form-group select.error { border-color: #e05c5c; }

.form-group textarea { resize: vertical; min-height: 80px; }
.form-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  text-align: center;
  font-size: 0.75rem;
  color: var(--gray-text);
  margin-top: 0.75rem;
}
.form-note svg { flex-shrink: 0; color: var(--gold); }

.lead-form__success {
  display: none;
  background: var(--white);
  border-radius: 10px;
  padding: 3rem 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.lead-form__success.show { display: block; }
.success__icon {
  width: 60px; height: 60px;
  background: var(--gold);
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
}
.lead-form__success h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}
.lead-form__success p {
  color: var(--gray-text);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

/* =============================================
   CLUBHOUSE / TOWNSHIP BANNER
   ============================================= */
.clubhouse-banner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: linear-gradient(135deg, rgba(200,151,58,0.15) 0%, rgba(200,151,58,0.05) 100%);
  border: 1px solid rgba(200,151,58,0.35);
  border-radius: 10px;
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
}
.clubhouse-banner__icon { font-size: 2.5rem; flex-shrink: 0; }
.clubhouse-banner h4 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.clubhouse-banner p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}
.clubhouse-banner--green {
  background: linear-gradient(135deg, rgba(120,180,120,0.18) 0%, rgba(120,180,120,0.05) 100%);
  border-color: rgba(120,180,120,0.35);
}

/* =============================================
   FAQ
   ============================================= */
.faq {
  padding: 100px 0;
  background: var(--cream);
}
.faq__list {
  max-width: 820px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--gray-light);
  border-radius: 10px;
  overflow: hidden;
}
.faq__item {
  border-bottom: 1px solid var(--gray-light);
}
.faq__item:last-child { border-bottom: none; }

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 1.75rem;
  background: var(--white);
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
  text-align: left;
  transition: background 0.2s, color 0.2s;
}
.faq__question:hover { background: var(--warm-50); }
.faq__question[aria-expanded="true"] {
  background: var(--charcoal);
  color: var(--gold-light);
}
.faq__icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  line-height: 1;
}
.faq__question[aria-expanded="true"] .faq__icon {
  transform: rotate(45deg);
  color: var(--gold-light);
}
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  background: var(--warm-50);
}
.faq__answer.open {
  max-height: 400px;
  padding: 1.25rem 1.75rem 1.5rem;
}
.faq__answer p {
  font-size: 0.9rem;
  color: var(--gray-text);
  line-height: 1.75;
  margin-bottom: 0.5rem;
}
.faq__answer ul {
  list-style: disc;
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: 0.5rem;
}
.faq__answer ul li {
  font-size: 0.875rem;
  color: var(--gray-text);
  line-height: 1.6;
}

/* =============================================
   STICKY MOBILE CTA BAR
   ============================================= */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 998;
  background: var(--charcoal);
  border-top: 1px solid rgba(255,255,255,0.08);
  grid-template-columns: 1fr 1fr 1fr;
  box-shadow: 0 -4px 20px rgba(14,20,34,0.25);
}
.mobile-cta__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  padding: 0.85rem 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: background 0.2s, color 0.2s;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.mobile-cta__btn:last-child { border-right: none; }
.mobile-cta__btn svg { width: 20px; height: 20px; }
.mobile-cta__btn--call:hover,
.mobile-cta__btn--call:active { background: #1a73e8; color: var(--white); }
.mobile-cta__btn--whatsapp { color: #25d366; }
.mobile-cta__btn--whatsapp:hover,
.mobile-cta__btn--whatsapp:active { background: #25d366; color: var(--white); }
.mobile-cta__btn--enquire:hover,
.mobile-cta__btn--enquire:active { background: var(--gold); color: var(--white); }

@media (max-width: 768px) {
  .mobile-cta { display: grid; }
  /* push WhatsApp float up so it doesn't clash with CTA bar */
  .whatsapp-float { bottom: 5.5rem; }
  /* add bottom padding to last section so bar doesn't cover content */
  body { padding-bottom: 64px; }
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--charcoal-soft);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 4rem 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer__logo { margin-bottom: 0.75rem; }
.footer__brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer__links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.25s;
}
.footer__links a:hover { color: var(--gold-light); }
.footer__contact { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__contact p {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 0.25rem;
}
.footer__contact a {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.25s;
}
.footer__contact a:hover { color: var(--gold-light); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.footer__bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}
.footer__rera {
  font-size: 0.78rem !important;
  color: rgba(255,255,255,0.45) !important;
}
.footer__rera strong { color: var(--gold-light); font-weight: 600; }
.footer__disclaimer { font-size: 0.72rem !important; color: rgba(255,255,255,0.2) !important; }

/* =============================================
   SIDE FLOATING CTAs
   ============================================= */
.side-cta {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 996;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.1rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--white);
  cursor: pointer;
  border: none;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}
.side-cta svg { width: 16px; height: 16px; flex-shrink: 0; }
.side-cta--left {
  left: 0;
  background: var(--gold);
  border-radius: 0 8px 8px 0;
}
.side-cta--left:hover { background: var(--gold-dark); padding-left: 1.4rem; }
.side-cta--right {
  right: 0;
  background: var(--charcoal);
  border-radius: 8px 0 0 8px;
}
.side-cta--right:hover { background: var(--charcoal-soft); padding-right: 1.4rem; }

@media (max-width: 900px) {
  .side-cta { display: none; }
}

/* =============================================
   WHATSAPP FLOAT
   ============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #25d366;
  color: var(--white);
  padding: 0.8rem 1.3rem 0.8rem 1rem;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: var(--transition);
  animation: waPulse 2.5s ease-in-out infinite;
}
.whatsapp-float svg { width: 22px; height: 22px; flex-shrink: 0; }
.whatsapp-float:hover {
  transform: scale(1.06) translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.55);
  animation: none;
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.08); }
}

/* =============================================
   ANIMATIONS
   ============================================= */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .contact__inner { grid-template-columns: 1fr; gap: 3rem; }
  .location__inner { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav__links, .btn--nav { display: none; }
  .nav__burger { display: flex; }

  .hero__badges { gap: 1.2rem; }

  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery__item--tall { grid-row: span 1; }
  .gallery__item--wide { grid-column: span 2; }

  .highlights {
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem 1.5rem;
  }
  .highlight__divider { width: 80px; height: 1px; }

  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }

  .whatsapp-float span { display: none; }
  .whatsapp-float { padding: 0.9rem; border-radius: 50%; }
  .whatsapp-float svg { width: 26px; height: 26px; }
}

@media (max-width: 540px) {
  .gallery__grid {
    grid-template-columns: 1fr;
  }
  .gallery__item--wide { grid-column: span 1; }
  .gallery__grid { grid-template-rows: auto; }
  .gallery__item { height: 240px; }

  .hero__ctas { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
}
