/*
Theme Name: Kalyani Living Tree
Theme URI: https://kalyanilivingtree.net.in/
Description: Premium WordPress theme for Kalyani Living Tree — Aerospace Park, Bangalore
Version: 2.0.0
*/

/* ================================================================
   GOOGLE FONTS
   ================================================================ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

/* ================================================================
   DESIGN TOKENS — LIGHT ELEGANT THEME
   ================================================================ */
:root {
  /* Greens — used sparingly as accent */
  --green:        #2d6a4f;
  --green-light:  #52b788;
  --green-pale:   #f0f7f4;
  --green-mist:   #e8f4ef;

  /* Neutrals — primary palette */
  --white:        #ffffff;
  --off-white:    #fafaf8;
  --cream:        #f6f4f0;
  --warm-grey:    #f0ede8;
  --border:       #e8e4de;
  --border-light: #f0ede8;

  /* Text */
  --text-dark:    #1c1c1a;
  --text-mid:     #4a4845;
  --text-light:   #8a8680;
  --text-xlight:  #b5b0aa;

  /* Gold accent */
  --gold:         #b8924a;
  --gold-light:   #d4aa6a;
  --gold-pale:    #fdf5e8;

  /* Shadows — very soft */
  --shadow-xs:    0 1px 4px rgba(0,0,0,.04);
  --shadow-sm:    0 2px 12px rgba(0,0,0,.06);
  --shadow-md:    0 6px 28px rgba(0,0,0,.08);
  --shadow-lg:    0 16px 60px rgba(0,0,0,.10);

  /* Radii */
  --r:            8px;
  --r-lg:         16px;
  --r-xl:         24px;

  /* Fonts */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  --header-h:     72px;
  --transition:   .25s cubic-bezier(.4,0,.2,1);
}

/* ================================================================
   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-dark);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); }
input, textarea, select { font-family: var(--font-body); }

/* ================================================================
   LAYOUT
   ================================================================ */
.wrap    { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.wrap-md { max-width: 940px;  margin: 0 auto; padding: 0 24px; }
.wrap-sm { max-width: 720px;  margin: 0 auto; padding: 0 24px; }
.sec     { padding: 80px 0; }
.sec-sm  { padding: 52px 0; }
.sec-alt { background: var(--off-white); }
.sec-cream { background: var(--cream); }
.center  { text-align: center; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.three-col { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }

/* ================================================================
   TYPOGRAPHY
   ================================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600; line-height: 1.2;
  color: var(--text-dark);
}
h1 { font-size: clamp(2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); }
h4 { font-size: 1rem; }
p  { font-size: .94rem; line-height: 1.8; color: var(--text-mid); }

.sec-label {
  display: inline-block;
  font-size: .68rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--green); margin-bottom: 10px;
}
.sec-divider {
  width: 40px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 14px auto 24px;
}
.sec-divider.left { margin-left: 0; }
.sec-desc { color: var(--text-light); max-width: 560px; margin: 0 auto; font-size: .92rem; }

/* ================================================================
   BUTTONS — light, refined
   ================================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 12px 26px;
  font-size: .8rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
  border-radius: 4px; border: 1.5px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold); color: #fff; border-color: var(--gold);
}
.btn-gold:hover { background: #a07a38; border-color: #a07a38; }

.btn-outline {
  background: transparent; color: var(--green); border-color: var(--green);
}
.btn-outline:hover { background: var(--green); color: #fff; }

.btn-dark {
  background: var(--text-dark); color: #fff; border-color: var(--text-dark);
}
.btn-dark:hover { background: #333; }

.btn-white {
  background: #fff; color: var(--text-dark); border-color: #fff;
}
.btn-white:hover { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }

.btn-outline-white {
  background: transparent; color: #fff; border-color: rgba(255,255,255,.5);
}
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.8); }

.btn-wa { background: #25d366; color: #fff; border-color: #25d366; }
.btn-wa:hover { background: #1da851; border-color: #1da851; }

.btn-ghost {
  background: transparent; color: var(--text-mid); border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--green); color: var(--green); }

.btn-lg { padding: 15px 34px; font-size: .85rem; }
.btn-sm { padding: 8px 18px; font-size: .72rem; }

/* ================================================================
   SITE HEADER — bright, minimal
   ================================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-h);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
}
.header-inner {
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.site-logo {
  display: flex; align-items: center; gap: 11px;
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 600;
  color: var(--text-dark); line-height: 1.15;
}
.logo-leaf {
  width: 36px; height: 36px;
  background: var(--green-pale);
  border: 1.5px solid var(--green-mist);
  border-radius: 50% 50% 50% 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--green); font-size: .85rem;
}
.site-logo span { color: var(--gold); }
.logo-sub { font-size: .6rem; font-weight: 400; letter-spacing: .12em; text-transform: uppercase; color: var(--text-xlight); font-family: var(--font-body); }
/* ── Text-only logo title ───────────────────────────────────── */
.site-logo-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.15;
  letter-spacing: -.01em;
}
.site-logo:hover .site-logo-title { color: var(--green); }

/* ── Home nav item — acts like a normal link but has dropdown ── */
.nav-home {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ── Remove inbound bar Quick Links label (hidden via CSS) ───── */
.inbound-bar-label { display: none; }

/* ── Popup header — no leaf icon ─────────────────────────────── */
.popup-header { margin-bottom: 18px; }

.site-nav { display: flex; align-items: center; gap: 2px; }
.nav-link {
  display: flex; align-items: center; gap: 4px;
  padding: 7px 12px;
  font-size: .78rem; font-weight: 500; letter-spacing: .03em;
  color: var(--text-mid); border-radius: var(--r);
  transition: var(--transition);
}
.nav-link:hover { color: var(--green); background: var(--green-pale); }
.nav-link i { font-size: .6rem; transition: var(--transition); }
.nav-item { position: relative; }
.nav-item:hover .nav-link i { transform: rotate(180deg); }
.dropdown {
  position: absolute; top: calc(100% + 6px); left: 0;
  min-width: 210px; background: #fff;
  border: 1px solid var(--border); border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg); padding: 6px;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: var(--transition);
}
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: block; padding: 8px 12px;
  font-size: .78rem; color: var(--text-mid); border-radius: var(--r);
  transition: var(--transition);
}
.dropdown a:hover { background: var(--green-pale); color: var(--green); }
.header-cta { display: flex; align-items: center; gap: 8px; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--text-dark); border-radius: 2px; transition: var(--transition);
}

/* ================================================================
   MOBILE NAV
   ================================================================ */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: #fff; padding: calc(var(--header-h) + 20px) 20px 20px;
  flex-direction: column; gap: 2px; overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block; padding: 11px 14px; font-size: .88rem; font-weight: 500;
  border-radius: var(--r); color: var(--text-dark); transition: var(--transition);
}
.mobile-nav a:hover { background: var(--green-pale); color: var(--green); }
.mobile-nav-divider { height: 1px; background: var(--border); margin: 6px 0; }
.mobile-nav-label { font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; color: var(--text-xlight); padding: 4px 14px; }

/* ================================================================
   HERO SLIDER
   ================================================================ */
.hero-section {
  position: relative; overflow: hidden;
  height: 100vh; min-height: 580px; max-height: 860px;
  margin-top: var(--header-h);
}
.hero-track { position: relative; height: 100%; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .9s ease; }
.hero-slide.active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(20,40,30,.68) 0%, rgba(20,40,30,.38) 55%, rgba(20,40,30,.15) 100%);
}
.hero-content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 7%;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .68rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.75); margin-bottom: 14px;
}
.hero-eyebrow::before { content:''; width: 28px; height: 1px; background: var(--gold); display: block; }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 4.4rem);
  font-weight: 600; line-height: 1.08; color: #fff;
  margin-bottom: 14px;
  max-width: 700px;
}
.hero-title em { color: var(--gold-light); font-style: italic; }
.hero-sub {
  font-size: clamp(.85rem, 1.4vw, 1rem);
  color: rgba(255,255,255,.75); margin-bottom: 32px;
  max-width: 500px; line-height: 1.75;
}
.hero-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-arrows {
  position: absolute; bottom: 32px; right: 40px; display: flex; gap: 6px;
}
.hero-arr {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.12); color: #fff;
  border: 1px solid rgba(255,255,255,.25); transition: var(--transition);
}
.hero-arr:hover { background: var(--gold); border-color: var(--gold); }
.hero-dots {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 5px;
}
.hero-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(255,255,255,.35); border: none; padding: 0; transition: var(--transition);
}
.hero-dot.active { background: var(--gold); width: 18px; border-radius: 3px; }
.hero-stats {
  position: absolute; bottom: 0; left: 0; right: 0;
  display: flex; background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px); border-top: 1px solid var(--border);
}
.hero-stat { flex: 1; padding: 16px 20px; text-align: center; border-right: 1px solid var(--border); }
.hero-stat:last-child { border-right: none; }
.hero-stat .n { display: block; font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; color: var(--green); }
.hero-stat .l { display: block; font-size: .68rem; color: var(--text-light); text-transform: uppercase; letter-spacing: .08em; margin-top: 2px; }

/* ================================================================
   FLOATING & MOBILE BAR
   ================================================================ */
.float-btns {
  position: fixed; bottom: 24px; right: 20px;
  display: flex; flex-direction: column; gap: 8px; z-index: 990;
}
.float-btn {
  width: 48px; height: 48px; border-radius: 50%; border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; box-shadow: var(--shadow-md); transition: var(--transition);
}
.float-btn:hover { transform: scale(1.1); }
.float-btn-wa   { background: #25d366; color: #fff; }
.float-btn-call { background: var(--gold); color: #fff; }
.float-btn-top  { background: var(--text-dark); color: #fff; opacity: 0; pointer-events: none; }
.float-btn-top.visible { opacity: 1; pointer-events: auto; }
.mobile-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 990;
  background: #fff; border-top: 1px solid var(--border);
  padding: 10px 14px; gap: 8px; box-shadow: 0 -4px 20px rgba(0,0,0,.08);
}
.mobile-bar .btn { flex: 1; justify-content: center; font-size: .75rem; }

/* ================================================================
   PAGE HERO — light version
   ================================================================ */
.page-hero {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  padding: calc(var(--header-h) + 44px) 0 44px;
  position: relative;
}
.page-hero h1 { color: var(--text-dark); font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 8px; }
.page-hero p  { color: var(--text-light); font-size: .9rem; }
.page-hero-accent {
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--green), var(--gold));
}

/* ================================================================
   BREADCRUMB
   ================================================================ */
.breadcrumb {
  background: #fff; padding: 9px 0;
  font-size: .75rem; color: var(--text-light);
  border-bottom: 1px solid var(--border);
}
.breadcrumb a { color: var(--green); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { margin: 0 5px; color: var(--text-xlight); }

/* ================================================================
   INBOUND QUICK-NAV
   ================================================================ */
.inbound-bar {
  background: #fff; border-bottom: 1px solid var(--border);
  padding: 8px 0; position: sticky; top: var(--header-h); z-index: 80;
  box-shadow: 0 1px 0 var(--border);
}
.inbound-bar-inner { display: flex; gap: 4px; align-items: center; flex-wrap: wrap; }
.inbound-bar a {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: .72rem; font-weight: 500;
  color: var(--text-light); background: var(--off-white);
  border: 1px solid var(--border); border-radius: 20px; padding: 4px 11px;
  transition: var(--transition);
}
.inbound-bar a:hover { background: var(--green-pale); color: var(--green); border-color: var(--green-mist); }

/* ================================================================
   SECTION COMPONENTS
   ================================================================ */

/* Highlight / specs table */
.highlight-table { width: 100%; border-collapse: collapse; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.highlight-table tr { border-bottom: 1px solid var(--border); }
.highlight-table tr:last-child { border-bottom: none; }
.highlight-table tr:nth-child(even) { background: var(--off-white); }
.highlight-table tr:first-child { background: var(--green-pale); }
.highlight-table td { padding: 12px 18px; font-size: .86rem; background: #fff; }
.highlight-table tr:nth-child(even) td { background: var(--off-white); }
.highlight-table td:first-child { font-weight: 600; color: var(--green); width: 42%; border-right: 1px solid var(--border); }
.highlight-table td:last-child { color: var(--text-mid); }

/* Price table */
.price-table { width: 100%; border-collapse: collapse; box-shadow: var(--shadow-sm); border-radius: var(--r-lg); overflow: hidden; }
.price-table thead { background: var(--text-dark); }
.price-table thead th { padding: 13px 16px; font-size: .72rem; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; color: rgba(255,255,255,.7); text-align: left; }
.price-table thead th:first-child { color: #fff; }
.price-table tbody tr { border-bottom: 1px solid var(--border); background: #fff; transition: var(--transition); }
.price-table tbody tr:nth-child(even) { background: var(--off-white); }
.price-table tbody tr:hover { background: var(--green-pale); }
.price-table td { padding: 13px 16px; font-size: .86rem; color: var(--text-mid); }
.price-table td:first-child { font-weight: 600; color: var(--text-dark); }

/* Stat cards */
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.stat-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 24px 16px; text-align: center; box-shadow: var(--shadow-xs); transition: var(--transition);
}
.stat-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-2px); border-color: var(--green-light); }
.stat-card .n { display: block; font-family: var(--font-display); font-size: 2rem; font-weight: 600; color: var(--green); }
.stat-card .l { display: block; font-size: .7rem; color: var(--text-light); text-transform: uppercase; letter-spacing: .08em; margin-top: 4px; }

/* Amenity cards */
.amenity-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 20px 16px; display: flex; gap: 12px; align-items: flex-start;
  transition: var(--transition);
}
.amenity-card:hover { border-color: var(--green-light); box-shadow: var(--shadow-xs); }
.amenity-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--green-pale); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--green); font-size: .9rem;
}
.amenity-card h4 { font-size: .86rem; font-family: var(--font-body); font-weight: 600; color: var(--text-dark); margin-bottom: 2px; }
.amenity-card p  { font-size: .76rem; color: var(--text-light); margin: 0; line-height: 1.5; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); grid-auto-rows: 220px; gap: 8px; }
.gallery-item { border-radius: var(--r); overflow: hidden; position: relative; cursor: pointer; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.35);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.3rem;
  opacity: 0; transition: var(--transition);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.9);
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.lightbox.open { display: flex; }
.lb-close { position: absolute; top: 18px; right: 22px; background: none; border: none; color: #fff; font-size: 1.6rem; line-height: 1; }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.1); color: #fff; border: none; width: 44px; height: 44px; border-radius: 50%; font-size: .9rem; transition: var(--transition); }
.lb-nav:hover { background: var(--gold); }
.lb-prev { left: 14px; }
.lb-next { right: 14px; }
#lb-img { max-width: 88vw; max-height: 84vh; border-radius: var(--r); }

/* Floor plan tabs */
.fp-tabs { display: flex; gap: 4px; flex-wrap: wrap; margin-bottom: 24px; }
.fp-tab { padding: 8px 18px; background: #fff; border: 1.5px solid var(--border); border-radius: 20px; font-size: .78rem; font-weight: 600; color: var(--text-light); transition: var(--transition); }
.fp-tab.active, .fp-tab:hover { background: var(--green); color: #fff; border-color: var(--green); }
.fp-panel { display: none; }
.fp-panel.active { display: grid; grid-template-columns: repeat(auto-fill,minmax(260px,1fr)); gap: 18px; }
.fp-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; transition: var(--transition); }
.fp-card:hover { box-shadow: var(--shadow-sm); border-color: var(--green-light); }
.fp-card img { width: 100%; height: 200px; object-fit: cover; }
.fp-card-body { padding: 14px 16px; }
.fp-card-body h4 { font-size: .88rem; font-family: var(--font-body); font-weight: 600; margin-bottom: 3px; }
.fp-card-body p  { font-size: .78rem; color: var(--text-light); margin: 0; }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question { width: 100%; background: none; border: none; display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 17px 0; font-size: .92rem; font-weight: 600; color: var(--text-dark); text-align: left; }
.faq-icon { color: var(--green); font-size: .8rem; flex-shrink: 0; transition: var(--transition); }
.faq-question.open .faq-icon { transform: rotate(45deg); color: var(--gold); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-answer-inner { padding: 0 0 16px; font-size: .88rem; color: var(--text-mid); line-height: 1.8; }

/* Contact / enquiry form */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group.full { grid-column: span 2; }
.form-group label { font-size: .74rem; font-weight: 600; color: var(--text-dark); letter-spacing: .02em; }
.form-group input,
.form-group textarea,
.form-group select {
  padding: 11px 13px; border: 1.5px solid var(--border); border-radius: var(--r);
  font-size: .86rem; color: var(--text-dark); background: #fff; transition: var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { outline: none; border-color: var(--green-light); box-shadow: 0 0 0 3px rgba(82,183,136,.1); }
.form-group textarea { min-height: 100px; resize: vertical; }
.consent-row { display: flex; align-items: flex-start; gap: 10px; font-size: .78rem; color: var(--text-light); }
.consent-row input[type=checkbox] { width: 15px; height: 15px; margin-top: 2px; flex-shrink: 0; accent-color: var(--green); }

/* Location cards */
.location-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(190px,1fr)); gap: 10px; }
.loc-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r); padding: 13px 14px; display: flex; gap: 10px; align-items: flex-start; }
.loc-card i { color: var(--green); margin-top: 3px; font-size: .88rem; flex-shrink: 0; }
.loc-card h4 { font-size: .82rem; font-family: var(--font-body); font-weight: 600; margin-bottom: 1px; color: var(--text-dark); }
.loc-card p  { font-size: .74rem; color: var(--text-light); margin: 0; }

/* Legal */
.legal-content { max-width: 800px; margin: 0 auto; font-size: .93rem; line-height: 1.9; }
.legal-content h2 { margin: 30px 0 10px; font-size: 1.2rem; color: var(--green); }
.legal-content ul { list-style: disc; padding-left: 20px; margin-bottom: 1rem; }
.legal-content li { color: var(--text-mid); margin-bottom: 3px; }

/* Inline anchor links — natural looking */
a.inline-link { color: var(--green); text-decoration: none; border-bottom: 1px solid rgba(45,106,79,.2); transition: var(--transition); }
a.inline-link:hover { color: var(--gold); border-bottom-color: var(--gold); }

/* ================================================================
   POPUP / MODAL
   ================================================================ */
.popup-overlay {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,.45);
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.popup-overlay.open { display: flex; }
.popup-box {
  background: #fff; border-radius: var(--r-xl); padding: 36px 32px;
  width: 100%; max-width: 500px; position: relative;
  box-shadow: var(--shadow-lg);
  animation: popIn .28s ease;
}
@keyframes popIn { from { opacity: 0; transform: scale(.95) translateY(16px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.popup-close { position: absolute; top: 14px; right: 16px; background: none; border: none; font-size: 1.3rem; color: var(--text-xlight); transition: var(--transition); }
.popup-close:hover { color: var(--text-dark); }
.popup-header { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.popup-title { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; color: var(--text-dark); }
.popup-sub { font-size: .8rem; color: var(--text-light); }

/* ================================================================
   FOOTER — light, warm
   ================================================================ */
.site-footer { background: var(--text-dark); color: rgba(255,255,255,.65); }
.footer-top { padding: 56px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr; gap: 44px; }
.footer-logo { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: #fff; margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.footer-logo span { color: var(--gold); }
.footer-tagline { font-size: .82rem; color: rgba(255,255,255,.45); margin-bottom: 18px; line-height: 1.75; }
.footer-contact a { display: flex; align-items: center; gap: 7px; font-size: .82rem; color: rgba(255,255,255,.55); margin-bottom: 7px; transition: var(--transition); }
.footer-contact a:hover { color: var(--gold); }
.footer-heading { font-size: .68rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 14px; }
.footer-links { display: flex; flex-direction: column; gap: 7px; }
.footer-links a { font-size: .82rem; color: rgba(255,255,255,.5); transition: var(--transition); }
.footer-links a:hover { color: var(--gold-light); padding-left: 3px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding: 18px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: .75rem; }
.footer-disc { background: rgba(0,0,0,.2); border-top: 1px solid rgba(255,255,255,.04); padding: 16px 0; font-size: .71rem; color: rgba(255,255,255,.3); line-height: 1.7; }

/* ================================================================
   VIDEO SECTION
   ================================================================ */
.video-section { background: var(--off-white); }

/* ================================================================
   REVEAL ANIMATIONS
   ================================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .site-footer [style*="grid-template-columns:1.8fr"] { grid-template-columns: 1fr 1fr !important; }
  .two-col { grid-template-columns: 1fr; }
  .three-col { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root { --header-h: 62px; }
  .sec { padding: 52px 0; }
  .site-nav, .header-cta .btn:not(.btn-enquire) { display: none; }
  .hamburger { display: flex; }
  .float-btns { display: none; }
  .mobile-bar { display: flex; }
  .hero-stats { display: none; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 170px; }
  .gallery-item.wide { grid-column: span 1; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .site-footer [style*="grid-template-columns:1.8fr"] { grid-template-columns: 1fr !important; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .three-col { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { justify-content: center; }
  .popup-box { padding: 28px 20px; }
}
@media print {
  .site-header, .mobile-bar, .float-btns, #back-top, .popup-overlay { display: none !important; }
  body { padding: 0 !important; }
}

/* ================================================================
   v3 ADDITIONS
   ================================================================ */

/* ── Hero title — Narrow elegant font ───────────────────────── */
.hero-title {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  letter-spacing: -.01em;
}

/* ── Remove underlines from inline links ─────────────────────── */
a.inline-link {
  color: var(--green);
  text-decoration: none;
  border-bottom: none;
  font-weight: 500;
}
a.inline-link:hover { color: var(--gold); }

/* ── Header phone number ─────────────────────────────────────── */
.header-phone {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .8rem; font-weight: 600; color: var(--text-dark);
  padding: 7px 12px;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  transition: var(--transition);
  white-space: nowrap;
}
.header-phone:hover { border-color: var(--green); color: var(--green); }
.header-phone i { font-size: .75rem; color: var(--green); }
@media (max-width: 1100px) { .header-phone span { display: none; } }
@media (max-width: 768px)  { .header-phone { display: none; } }

/* ── WhatsApp circle (mobile only — above bottom bar) ───────── */
.wa-circle {
  display: none;
  position: fixed; bottom: 72px; right: 16px; z-index: 991;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25d366; color: #fff;
  align-items: center; justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  transition: var(--transition);
}
.wa-circle:hover { background: #1da851; transform: scale(1.08); }
@media (max-width: 768px) { .wa-circle { display: flex; } }

/* ── Popup auto-close success state ─────────────────────────── */
.popup-success {
  text-align: center; padding: 24px 0 8px;
}
.popup-success-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--green-pale); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin: 0 auto 14px;
}

/* ── Price table on front page ───────────────────────────────── */
.price-table-fp { width: 100%; border-collapse: collapse; box-shadow: var(--shadow-sm); border-radius: var(--r-lg); overflow: hidden; margin-top: 4px; }
.price-table-fp thead { background: var(--text-dark); }
.price-table-fp thead th { padding: 12px 14px; font-size: .7rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.6); text-align: left; }
.price-table-fp thead th:first-child { color: #fff; }
.price-table-fp tbody tr { border-bottom: 1px solid var(--border); background: #fff; transition: var(--transition); }
.price-table-fp tbody tr:nth-child(even) { background: var(--off-white); }
.price-table-fp tbody tr:hover { background: var(--green-pale); }
.price-table-fp td { padding: 12px 14px; font-size: .84rem; color: var(--text-mid); vertical-align: middle; }
.price-table-fp td:first-child { font-weight: 600; color: var(--text-dark); }

/* ── Mobile footer bottom bar ────────────────────────────────── */
@media (max-width: 768px) {
  .mobile-bar { display: flex; padding: 8px 12px; gap: 8px; }
  .mobile-bar .btn { flex: 1; justify-content: center; font-size: .78rem; padding: 11px 10px; }
}
@media (min-width: 769px) {
  .mobile-bar { display: none !important; }
  .wa-circle  { display: none !important; }
}

/* ── Floor plan gallery grid ─────────────────────────────────── */
.fp-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 768px) { .fp-gallery-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .fp-gallery-grid { grid-template-columns: 1fr; } }

.fp-gallery-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
  transition: var(--transition);
}
.fp-gallery-card:hover { box-shadow: var(--shadow-md); border-color: var(--green-light); }
.fp-gallery-card .fp-img-wrap {
  height: 200px; background: var(--off-white);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative; cursor: pointer;
}
.fp-gallery-card .fp-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.fp-gallery-card .fp-img-wrap:hover img { transform: scale(1.04); }
.fp-gallery-card .fp-img-wrap .fp-placeholder {
  display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--text-xlight);
}
.fp-gallery-card .fp-img-wrap .fp-placeholder i { font-size: 2rem; }
.fp-gallery-card .fp-img-wrap .fp-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,.3);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.3rem; opacity: 0; transition: var(--transition);
}
.fp-gallery-card .fp-img-wrap:hover .fp-overlay { opacity: 1; }
.fp-gallery-card .fp-card-info { padding: 12px 14px; }
.fp-gallery-card .fp-card-info h4 { font-size: .86rem; font-family: var(--font-body); font-weight: 600; margin-bottom: 3px; }
.fp-gallery-card .fp-card-info p  { font-size: .76rem; color: var(--text-light); margin: 0; }

/* ── Remove footer quick info column ─────────────────────────── */
.footer-quick-info { display: none !important; }

/* Hide logo-leaf in site header (text-only logo) */
.site-logo .logo-leaf { display: none; }

/* ── Inbound bar: hidden everywhere (removed per client request) ── */
.inbound-bar { display: none !important; }

/* ================================================================
   SUB-PAGE HERO SLIDER — Elegant 560px
   ================================================================ */
.klt-page-slider {
  max-height: 560px !important;
  min-height: 380px;
  margin-top: var(--header-h);
}
.klt-page-slider .hero-title {
  font-size: clamp(2rem, 4.5vw, 3.8rem);
}
.klt-page-slider .hero-content {
  padding: 0 7%;
  max-width: 700px;
}
.klt-page-slider .hero-overlay {
  background: linear-gradient(
    110deg,
    rgba(20,40,30,.72) 0%,
    rgba(20,40,30,.42) 55%,
    rgba(20,40,30,.18) 100%
  );
}
.klt-page-slider .hero-sub {
  font-size: clamp(.82rem, 1.3vw, .96rem);
  max-width: 480px;
}
.klt-page-slider .hero-arr {
  width: 36px; height: 36px; font-size: .85rem;
}
.klt-page-slider .hero-dots {
  bottom: 18px;
}
.klt-page-slider .hero-stat { display: none; } /* no stats bar on sub-pages */
@media (max-width: 768px) {
  .klt-page-slider { max-height: 420px !important; min-height: 320px; }
  .klt-page-slider .hero-title { font-size: clamp(1.6rem, 6vw, 2.4rem); }
  .klt-page-slider .hero-content { padding: 0 5%; }
}

/* ================================================================
   FLOOR PLAN IMAGES — 100% clear, popup trigger
   ================================================================ */

/* Remove any gallery-item dark overlay from fp cards */
.fp-gallery-card .fp-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;    /* show full floor plan, not cropped */
  background: #fff;
  padding: 8px;
  display: block;
  opacity: 1 !important;  /* always 100% visible */
  filter: none !important;
}

/* Popup hint overlay — visible on hover only */
.fp-gallery-card .fp-popup-trigger .fp-overlay,
.fp-gallery-card .fp-popup-trigger.fp-img-wrap .fp-overlay {
  background: rgba(45,106,79,.65);
  opacity: 0;
  transition: opacity .25s ease;
}
.fp-gallery-card .fp-popup-trigger:hover .fp-overlay { opacity: 1; }

/* Cursor */
.fp-popup-trigger { cursor: pointer; }

/* Ensure gallery overlay does NOT affect floor plan cards */
.fp-gallery-card .gallery-item-overlay { display: none; }

/* Override any inherited gallery-item darkness */
.fp-img-wrap.gallery-item img,
.fp-img-wrap.fp-popup-trigger img {
  opacity: 1 !important;
}

/* ================================================================
   POPUP — Thank you / success state elegant styling
   ================================================================ */
.popup-success {
  padding: 20px 0 8px;
  text-align: center;
  animation: fadeInUp .4s ease;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.popup-success-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--green-pale);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  color: var(--green);
  font-size: 1.6rem;
}
.popup-success h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.popup-success p { color: var(--text-light); font-size: .88rem; margin: 0; }
