/* ═══ GREEN NATURE THEME — MARUTI 7 WONDER CITY ═══
   Palette from reference: maruti-seven-wonder-city.php
   --g1:#1a3d2b  --g2:#2d6a4f  --g3:#52b788
   --g4:#95d5b2  --g5:#d8f3dc  --g6:#f0faf3
   ═══════════════════════════════════════════════ */
:root {
  --cream: #f0faf3;
  --cream2: #e4f5ea;
  --cream3: #d8f3dc;
  --gold: #52b788;
  --gold-dk: #2d6a4f;
  --gold-lt: #95d5b2;
  --ink: #0d1f16;
  --ink2: #2c4a36;
  --ink3: #5a7d67;
  --ink4: #8fad99;
  --white: #ffffff;
  --border: rgba(45, 106, 79, 0.12);
  --border2: rgba(45, 106, 79, 0.28);
  --shadow: 0 2px 30px rgba(13, 31, 22, 0.07);
  --shadow2: 0 12px 60px rgba(13, 31, 22, 0.13);
}

/* scrollbar */
::-webkit-scrollbar-thumb {
  background: #52b788;
}

/* HERO */
.m7-hero {
  position: relative;
  display: flex;
  align-items: center;
  padding: 100px 0 72px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream3) 45%, var(--cream2) 100%);
}

.m7-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 48px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 52px;
  align-items: center;
}

.m7-hero-content {
  animation: m7FadeIn .6s ease both;
}

.m7-hero-video-col {
  animation: m7FadeIn .6s ease .1s both;
}

.m7-video-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--gold-lt);
  font-size: .58rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.m7-video-heading {
  font-family: var(--fd);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.25;
}

.m7-video-frame {
  position: relative;
  aspect-ratio: 16/9;
  min-height: 0;
  contain: layout style paint;
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--border2);
  box-shadow: var(--shadow2);
  background: var(--ink);
}

.m7-video-poster {
  position: absolute;
  inset: 0;
  z-index: 2;
  border: 0;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  background: linear-gradient(145deg, #0d1f16 0%, #1e5631 55%, #2d6a4f 100%);
}

.m7-video-poster::after {
  content: '▶';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(13, 31, 22, .75);
  color: #fff;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .35);
}

.m7-video-frame.is-playing .m7-video-poster {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.m7-video-shield {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 4;
  background: transparent;
  cursor: default;
}

.m7-video-frame.is-playing .m7-video-shield {
  display: block;
  pointer-events: auto;
}

.m7-yt-mount {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.m7-yt-mount,
.m7-yt-mount>div {
  width: 100%;
  height: 100%;
}

.m7-yt-mount iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.m7-video-frame.is-playing .m7-yt-mount iframe {
  opacity: 1;
  pointer-events: none;
}

.m7-video-caption {
  font-size: .68rem;
  color: var(--ink4);
  margin-top: 12px;
  line-height: 1.5;
  text-align: center;
}

.m7-rera-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--gold-lt);
  font-size: .58rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.m7-rera-num {
  background: rgba(82, 183, 136, .18);
  padding: 2px 9px;
  border-radius: 10px;
  font-size: .54rem;
}

.m7-hero h1 {
  font-family: var(--fd);
  font-size: clamp(3.2rem, 5.5vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 10px;
}

.m7-hero h1 em {
  font-style: italic;
  color: var(--gold-dk);
}

.m7-hero-sub {
  font-size: .76rem;
  color: var(--ink4);
  letter-spacing: .5px;
  margin-bottom: 18px;
}

.m7-hero-desc {
  font-size: .84rem;
  line-height: 1.95;
  color: var(--ink2);
  max-width: 500px;
  margin-bottom: 28px;
}

.m7-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.m7-pill {
  padding: 6px 15px;
  border: 1.5px solid rgba(45, 106, 79, .2);
  background: rgba(255, 255, 255, .75);
  font-size: .63rem;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--gold-dk);
  border-radius: 20px;
  font-weight: 500;
}

.m7-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@keyframes m7FadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Scroll reveal: opacity only (translateY causes CLS) */
.rv {
  opacity: 0;
  transform: none;
  transition: opacity .55s ease;
}

.rv.in {
  opacity: 1;
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: contain;
  background: var(--cream3);
  border-radius: var(--r);
  border: 1px solid var(--border);
  display: block;
}

.about-img-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--white);
  border-radius: 10px;
  padding: 16px 22px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--border2);
}

.about-img-badge-icon {
  font-size: 1.8rem;
}

.about-img-badge strong {
  display: block;
  font-family: var(--fd);
  font-size: 1.2rem;
  color: var(--gold-dk);
  line-height: 1;
}

.about-img-badge span {
  font-size: .62rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--ink4);
}

.about-body p {
  font-size: .83rem;
  line-height: 1.95;
  color: var(--ink3);
  margin-bottom: 14px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.chip {
  padding: 7px 16px;
  background: var(--cream3);
  color: var(--gold-dk);
  font-size: .65rem;
  letter-spacing: .8px;
  text-transform: uppercase;
  border-radius: 20px;
  font-weight: 500;
  border: 1px solid rgba(82, 183, 136, .28);
}

/* LOCATION */
.loc-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}

.map-wrap {
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 360px;
  background: var(--cream3);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 360px;
}

.map-wrap.is-loaded {
  background: transparent;
}

.dist-list {
  display: flex;
  flex-direction: column;
}

.di {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.di:last-child {
  border-bottom: none;
}

.di-l {
  display: flex;
  align-items: center;
  gap: 12px;
}

.di-ico {
  font-size: 1.1rem;
  width: 28px;
  text-align: center;
}

.di-name {
  font-size: .8rem;
  font-weight: 500;
  color: var(--ink);
}

.di-type {
  font-size: .63rem;
  color: var(--ink4);
}

.di-km {
  font-family: var(--fd);
  font-size: 1.1rem;
  color: var(--gold-dk);
  font-weight: 600;
  white-space: nowrap;
}

/* WHY BUY GRID */
.why-g {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}

.why-c {
  background: var(--white);
  border-radius: var(--r);
  padding: 30px 26px;
  border: 1.5px solid var(--border);
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.why-c::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dk), var(--gold-lt));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s;
}

.why-c:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.why-c:hover::after {
  transform: scaleX(1);
}

.why-n {
  font-family: var(--fd);
  font-size: 2.5rem;
  color: var(--cream3);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 14px;
}

.why-c h3 {
  font-family: var(--fd);
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--ink);
  font-weight: 600;
}

.why-c p {
  font-size: .74rem;
  line-height: 1.85;
  color: var(--ink3);
}

/* PLOT UNITS */
.units-banner {
  background: linear-gradient(135deg, var(--ink) 0%, #2d6a4f 60%, #1e5631 100%);
  border-radius: 14px;
  padding: 46px 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  color: var(--cream);
  margin-bottom: 36px;
}

.units-banner h3 {
  font-family: var(--fd);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.units-banner p {
  font-size: .8rem;
  line-height: 1.85;
  color: rgba(212, 240, 222, .65);
}

.ub-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.ub-tag {
  background: rgba(82, 183, 136, .12);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: .62rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid rgba(82, 183, 136, .25);
  color: var(--gold-lt);
}

.ub-stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ub-row {
  background: rgba(255, 255, 255, .07);
  border-radius: 8px;
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .1);
}

.ub-row span:first-child {
  font-size: .68rem;
  color: rgba(212, 240, 222, .55);
  letter-spacing: .5px;
}

.ub-row span:last-child {
  font-family: var(--fd);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gold-lt);
}

.sizes-g {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.sz {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 26px 18px;
  text-align: center;
  cursor: pointer;
  transition: all .3s;
  position: relative;
}

.sz.hot {
  border-color: var(--gold);
  background: var(--cream);
}

.sz.hot::after {
  content: 'Popular';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-dk);
  color: #fff;
  font-size: .52rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 10px;
  white-space: nowrap;
  font-weight: 700;
}

.sz:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.sz-n {
  font-family: var(--fd);
  font-size: 1.65rem;
  color: var(--gold-dk);
  font-weight: 700;
  line-height: 1;
}

.sz-u {
  font-size: .62rem;
  color: var(--ink4);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 3px;
}

.sz-d {
  font-size: .66rem;
  color: var(--ink3);
  margin-top: 7px;
  padding-top: 7px;
  border-top: 1px solid var(--border);
}

/* 7 WONDERS THEME */
.wonders-g {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 46px;
}

.wonder-c {
  background: var(--white);
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all .3s;
}

.wonder-c:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.wonder-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: contain;
  background: var(--cream3);
  display: block;
}

.wonder-body {
  padding: 16px 18px;
}

.wonder-name {
  font-family: var(--fd);
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 3px;
  font-weight: 600;
}

.wonder-loc {
  font-size: .63rem;
  color: var(--ink4);
  letter-spacing: .5px;
}

/* AMENITIES */
.am-g {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 46px;
}

.am {
  background: var(--white);
  border-radius: 10px;
  padding: 28px 18px;
  text-align: center;
  border: 1.5px solid var(--border);
  transition: all .3s;
}

.am:hover {
  background: var(--cream2);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.am-ico {
  font-size: 2rem;
  margin-bottom: 10px;
}

.am-t {
  font-size: .72rem;
  font-weight: 500;
  color: var(--ink);
}

/* GALLERY */
.gal-sec {
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 40%, var(--cream2) 100%);
}

.gal-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.gal-sub {
  font-size: .82rem;
  line-height: 1.85;
  color: var(--ink3);
  max-width: 520px;
  margin-top: 14px;
}

.gal-stat {
  text-align: center;
  background: var(--white);
  border: 1.5px solid var(--border2);
  border-radius: 12px;
  padding: 18px 28px;
  box-shadow: var(--shadow);
  min-width: 100px;
}

.gal-stat strong {
  display: block;
  font-family: var(--fd);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-dk);
  line-height: 1;
}

.gal-stat span {
  font-size: .6rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink4);
  margin-top: 4px;
  display: block;
}

.gal-toolbar {
  margin-bottom: 24px;
}

.gal-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.gtab {
  padding: 8px 20px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-size: .65rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink3);
  border-radius: 20px;
  cursor: pointer;
  transition: all .3s;
  font-family: var(--fb);
}

.gtab.on,
.gtab:hover {
  border-color: var(--gold-dk);
  color: var(--gold-dk);
  background: var(--cream2);
}

.gal-hint {
  font-size: .65rem;
  color: var(--ink4);
  letter-spacing: .5px;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
}

.gal-g {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  align-items: stretch;
}

.gal-item {
  grid-column: span 4;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  position: relative;
  background: var(--white);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform .35s cubic-bezier(.22, 1, .36, 1), box-shadow .35s, border-color .35s, opacity .35s;
}

.gal-item.wide {
  grid-column: span 8;
  aspect-ratio: 21/9;
}

.gal-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow2);
  border-color: var(--border2);
}

.gal-item.is-hidden {
  display: none;
}

.gal-cat {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 5px 11px;
  background: rgba(13, 31, 22, .72);
  backdrop-filter: blur(6px);
  color: var(--gold-lt);
  font-size: .54rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border-radius: 20px;
  font-weight: 600;
  border: 1px solid rgba(82, 183, 136, .25);
}

.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--cream3);
  transition: transform .55s cubic-bezier(.22, 1, .36, 1);
  display: block;
  padding: 8px;
  box-sizing: border-box;
}

.gal-item:hover img {
  transform: scale(1.04);
}

.gal-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 31, 22, .82) 0%, rgba(13, 31, 22, .08) 42%, transparent 70%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  pointer-events: none;
  transition: background .35s;
}

.gal-item:hover .gal-item-overlay {
  background: linear-gradient(to top, rgba(13, 31, 22, .9) 0%, rgba(13, 31, 22, .2) 50%, transparent 75%);
}

.gal-zoom {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(.85);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  color: var(--gold-dk);
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s, transform .3s;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .2);
  font-weight: 300;
  line-height: 1;
}

.gal-item:hover .gal-zoom {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.gal-item-label span {
  font-size: .72rem;
  color: #fff;
  letter-spacing: .5px;
  font-weight: 500;
  line-height: 1.35;
  display: block;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .35);
}

.gal-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 24px;
  color: var(--ink4);
  font-size: .82rem;
  display: none;
}

.gal-empty.show {
  display: block;
}

/* MASTERPLAN */
.mp-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}

.mp-img-wrap img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: var(--cream3);
  border-radius: var(--r);
  border: 1px solid var(--border);
  display: block;
}

.mp-body p {
  font-size: .82rem;
  line-height: 1.9;
  color: var(--ink3);
  margin-bottom: 20px;
}

.mp-legend {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mpl {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mpl-dot {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  flex-shrink: 0;
}

.mpl-t {
  font-size: .74rem;
  color: var(--ink2);
}

/* VIRTUAL VISIT BANNER */
.vv-banner {
  background: linear-gradient(135deg, var(--ink) 0%, #2d6a4f 55%, #2e7d4f 100%);
  border-radius: 14px;
  padding: 56px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.vv-banner h2 {
  font-family: var(--fd);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 12px;
}

.vv-banner p {
  font-size: .8rem;
  line-height: 1.85;
  color: rgba(212, 240, 222, .6);
  margin-bottom: 28px;
}

.vv-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.vv-screen {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(82, 183, 136, .2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .25);
}

.vv-screen .m7-video-frame {
  border: 0;
  box-shadow: none;
  border-radius: 0;
}

/* TESTIMONIALS */
.testi-g {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 46px;
}

/* override testi quote color to green */
.testi-quote {
  color: rgba(82, 183, 136, .14);
}

.testi-stars {
  color: #2d6a4f;
}

/* BROCHURE */
.br-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 56px;
  align-items: center;
}

.br-mock {
  background: var(--white);
  border-radius: var(--r);
  aspect-ratio: 3/4;
  border: 2px solid var(--border2);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow2);
}

.br-mock::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--ink), var(--gold));
  z-index: 2;
}

.br-mock-pdf {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
  background: var(--white);
  pointer-events: none;
}

.br-mock-open {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 18px;
  text-decoration: none;
  background: linear-gradient(to top, rgba(13, 31, 22, .72) 0%, rgba(13, 31, 22, .08) 45%, transparent 100%);
  color: #fff;
  font-size: .62rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0;
  transition: opacity .3s;
}

.br-mock:hover .br-mock-open {
  opacity: 1;
}

.br-mock-open span {
  background: var(--gold-dk);
  padding: 8px 16px;
  border-radius: 20px;
}

.br-features {
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.brf {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .77rem;
  color: var(--ink3);
}

.brf-check {
  color: var(--gold-dk);
  font-size: .95rem;
  font-weight: 700;
}

/* FINAL CTA — base styles in main.css; Maruti text uses page theme tokens */
.fcta h2 em {
  color: var(--gold-lt);
}

.fcta .btn-ghost {
  color: var(--gold-lt);
  border-color: rgba(255, 255, 255, .45);
}

.fcta .btn-ghost:hover {
  background: var(--gold-lt);
  color: var(--ink);
  border-color: var(--gold-lt);
}

/* LIGHTBOX */
#lb {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13, 31, 22, .94);
  z-index: 9990;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  backdrop-filter: blur(8px);
}

#lb img {
  max-width: min(92vw, 1200px);
  max-height: 78vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .45);
  border: 1px solid rgba(255, 255, 255, .08);
}

#lb-cap {
  color: rgba(255, 255, 255, .75);
  font-size: .78rem;
  letter-spacing: .3px;
  text-align: center;
  max-width: 560px;
  line-height: 1.5;
  pointer-events: none;
}

#lb-close {
  position: absolute;
  top: 20px;
  right: 24px;
  color: #fff;
  font-size: 1.75rem;
  cursor: pointer;
  line-height: 1;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .15);
  transition: background .25s;
}

#lb-close:hover {
  background: rgba(255, 255, 255, .2);
}

/* STICKY ENQUIRE */
.sticky-enq {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 960;
  background: var(--ink);
  border-top: 2px solid var(--gold);
  padding: 12px 20px calc(12px + env(safe-area-inset-bottom, 0px));
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.22, 1, .36, 1);
  display: none;
}

.sticky-enq.visible {
  transform: translateY(0);
}

.sticky-enq-text {
  font-size: .75rem;
  color: rgba(212, 240, 222, .7);
}

.sticky-enq-text strong {
  color: var(--gold-lt);
  font-family: var(--fd);
  font-size: .95rem;
}

.sticky-enq-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

/* GREEN-SPECIFIC OVERRIDES for shared component classes */
/* Enquiry card header → dark green gradient */
.enq-card-head {
  background: linear-gradient(135deg, var(--ink), #2d6a4f);
}

/* Enquiry card stat numbers */
.enq-stat-n {
  color: var(--gold-dk);
}

/* Enquiry button */
.eb {
  background: var(--gold-dk);
  color: #fff;
}

.eb:hover {
  background: var(--ink);
  color: var(--cream);
}

/* Btn gold → green */
.btn-gold {
  background: var(--gold-dk);
  color: #fff;
}

.btn-gold:hover {
  background: var(--ink);
  color: var(--cream);
  box-shadow: 0 8px 28px rgba(45, 106, 79, .3);
}

/* Btn outline */
.btn-outline {
  border-color: var(--border2);
  color: var(--ink2);
}

.btn-outline:hover {
  border-color: var(--gold-dk);
  color: var(--gold-dk);
}

/* Btn ghost */
.btn-ghost {
  border-color: var(--gold-lt);
  color: var(--gold-lt);
}

.btn-ghost:hover {
  background: var(--gold-lt);
  color: var(--ink);
}

/* Btn white */
.btn-white {
  background: var(--white);
  color: var(--ink);
}

.btn-white:hover {
  background: var(--cream);
}

/* Nav CTA */
.nav-cta {
  background: var(--gold-dk) !important;
  color: #fff !important;
}

.nav-cta:hover {
  background: var(--ink) !important;
}

/* Footer — background from main.css (--footer-deep matches --ink on this page) */
.footer-col-title {
  color: var(--gold-lt);
}

.footer-soc:hover {
  border-color: var(--gold-lt);
  color: var(--gold-lt);
}

.footer-bottom-links a:hover {
  color: var(--gold-lt);
}

.footer-contact-icon {
  color: var(--gold-lt);
}

/* Section tag line */
.sec-tag-line {
  background: var(--gold-dk);
}

.sec-tag span {
  color: var(--gold-dk);
}

/* Section title em */
.sec-title em {
  color: var(--gold-dk);
}

/* Gold bar */
.gold-bar {
  background: var(--gold-dk);
}

/* WhatsApp FAB */
.wa-fab {}

/* RESPONSIVE */
@media(max-width:1024px) {
  .m7-hero-inner {
    padding: 48px 32px 60px;
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .m7-hero {
    padding: 100px 0 60px;
  }

  .m7-hero-video-col {
    order: -1;
  }

  .about-grid,
  .loc-grid,
  .mp-grid,
  .vv-banner,
  .br-grid {
    grid-template-columns: 1fr;
  }

  .gal-item {
    grid-column: span 6;
  }

  .gal-item.wide {
    grid-column: span 12;
    aspect-ratio: 16/9;
  }

  .vv-banner {
    padding: 36px 28px;
  }

  .why-g {
    grid-template-columns: 1fr 1fr;
  }

  .am-g {
    grid-template-columns: 1fr 1fr;
  }

  .wonders-g {
    grid-template-columns: 1fr 1fr;
  }

  .sizes-g {
    grid-template-columns: 1fr 1fr;
  }

  .testi-g {
    grid-template-columns: 1fr;
  }

  .units-banner {
    grid-template-columns: 1fr;
    padding: 32px 26px;
  }

  .about-img-badge {
    left: 0;
  }
}

@media(max-width:768px) {
  .m7-hero-inner {
    padding: 0px 20px 56px;
  }

  .m7-video-label,
  .m7-video-heading {
    display: none;
  }

  .m7-hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .m7-hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

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

  .gal-item,
  .gal-item.wide {
    grid-column: span 1;
    aspect-ratio: 4/3;
  }

  .gal-head {
    align-items: flex-start;
  }

  .gal-hint {
    display: none;
  }

  .why-g {
    grid-template-columns: 1fr;
  }

  .am-g {
    grid-template-columns: 1fr 1fr;
  }

  .wonders-g {
    grid-template-columns: 1fr 1fr;
  }

  .sizes-g {
    grid-template-columns: 1fr 1fr;
  }

}

@media (prefers-reduced-motion: reduce) {

  .m7-hero-content,
  .m7-hero-video-col,
  .rv {
    animation: none;
    opacity: 1;
    transition: none;
  }
}

@media(max-width:480px) {

  .am-g,
  .gal-g,
  .wonders-g,
  .sizes-g {
    grid-template-columns: 1fr;
  }
}

.m7-breadcrumb {
  font-size: .68rem;
  letter-spacing: .5px;
  color: var(--ink4);
  margin-bottom: 18px;
}

.m7-breadcrumb a {
  color: var(--g2);
  text-decoration: none;
}

.m7-breadcrumb a:hover {
  color: var(--gold-dk);
}

.faq-g {
  display: grid;
  gap: 12px;
  max-width: 820px;
  margin: 36px auto 0;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--white);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 24px;
  font-family: var(--fd);
  font-size: 1.05rem;
  color: var(--text);
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  color: var(--g2);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-answer {
  padding: 0 24px 20px;
  font-size: .82rem;
  line-height: 1.9;
  color: var(--text-muted);
}
