/* ═══════════════════════════════════════════════
   MAYUR CITY — SHARED STYLESHEET
   ADM Developers
═══════════════════════════════════════════════ */

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

:root {
  --green:   #1A3A2A;
  --green-m: #245238;
  --green-d: #0D1F16;
  --gold:    #C8972A;
  --gold-l:  #E8B84B;
  --cream:   #F8F5EF;
  --dark:    #1C1C1C;
  --mid:     #5A5A5A;
  --light:   #E4DFD4;
  --white:   #FFFFFF;
  --nav-h:   72px;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; }

/* ─── NAVBAR ─── */
nav#mainNav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px;
  background: var(--green);
  transition: background .35s, box-shadow .35s;
}
nav#mainNav.scrolled {
  background: var(--green);
  box-shadow: 0 2px 24px rgba(0,0,0,.4);
}
nav#mainNav.solid { background: var(--green); box-shadow: 0 2px 24px rgba(0,0,0,.4); }

/* Logo */
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-badge {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-weight: 700;
  color: #fff; font-size: 13px; letter-spacing: .04em; flex-shrink: 0;
}
.nav-logo-text { line-height: 1.1; }
.nav-logo-text strong {
  display: block; font-family: 'Playfair Display', serif;
  color: #fff; font-size: 18px; font-weight: 600;
}
.nav-logo-text span {
  font-size: 10px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold-l); font-weight: 300;
}

/* Desktop links */
.nav-center {
  display: flex; align-items: center; gap: 28px; list-style: none;
}
.nav-center a {
  color: rgba(255,255,255,.82); font-size: 12.5px; letter-spacing: .07em;
  text-transform: uppercase; font-weight: 500;
  transition: color .2s; padding: 4px 0; position: relative;
}
.nav-center a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1.5px; background: var(--gold-l); transform: scaleX(0);
  transition: transform .25s; transform-origin: left;
}
.nav-center a:hover { color: #fff; }
.nav-center a:hover::after,
.nav-center a.active::after { transform: scaleX(1); }
.nav-center a.active { color: var(--gold-l); }

/* Right action buttons */
.nav-right { display: flex; align-items: center; gap: 10px; }
.btn-dl {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1.5px solid rgba(255,255,255,.35); color: rgba(255,255,255,.85);
  padding: 7px 14px; font-size: 11px; font-weight: 500;
  letter-spacing: .07em; text-transform: uppercase;
  transition: border-color .2s, background .2s, color .2s; white-space: nowrap;
}
.btn-dl:hover { border-color: var(--gold-l); background: rgba(200,151,42,.15); color: var(--gold-l); }
.btn-dl svg { width: 13px; height: 13px; flex-shrink: 0; }
.btn-enquire {
  background: var(--gold); color: #fff; padding: 9px 20px;
  font-size: 12px; font-weight: 600; letter-spacing: .07em; text-transform: uppercase;
  border: none; cursor: pointer; transition: background .2s; white-space: nowrap;
}
.btn-enquire:hover { background: var(--gold-l); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: transform .3s, opacity .3s, width .3s;
}

/* Mobile drawer */
.mobile-menu {
  display: none;
  position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--green-d);
  z-index: 999;
  flex-direction: column;
  padding: 32px 28px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu ul { list-style: none; margin-bottom: 28px; }
.mobile-menu ul li { border-bottom: 1px solid rgba(255,255,255,.08); }
.mobile-menu ul li a {
  display: block; padding: 16px 0;
  color: rgba(255,255,255,.85); font-size: 17px; font-weight: 400;
  letter-spacing: .05em; transition: color .2s;
}
.mobile-menu ul li a:hover, .mobile-menu ul li a.active { color: var(--gold-l); }
.mobile-dl-group { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.mobile-dl-group .btn-dl { justify-content: center; padding: 13px 20px; font-size: 12px; }
.mobile-menu .btn-enquire { width: 100%; padding: 14px; font-size: 14px; text-align: center; display: block; }

/* Hamburger "X" state */
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── SECTION COMMONS ─── */
section { padding: 96px 5%; }
.section-label {
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 10px; display: block;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 700; color: var(--green); line-height: 1.15; margin-bottom: 14px;
}
.section-desc {
  font-size: 15px; color: var(--mid); line-height: 1.8; max-width: 640px;
}
.divider { width: 52px; height: 3px; background: var(--gold); margin: 18px 0 30px; }

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-block; background: var(--gold); color: #fff;
  padding: 14px 36px; font-size: 13px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  border: none; cursor: pointer;
  transition: background .2s, transform .15s;
}
.btn-primary:hover { background: var(--gold-l); transform: translateY(-2px); }
.btn-outline-g {
  display: inline-block; border: 2px solid var(--green); color: var(--green);
  padding: 13px 34px; font-size: 13px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  transition: background .2s, color .2s;
}
.btn-outline-g:hover { background: var(--green); color: #fff; }

/* ─── HERO COMMONS ─── */
.page-hero {
  position: relative; height: 52vh; min-height: 380px;
  display: flex; align-items: center; overflow: hidden;
  margin-top: var(--nav-h);
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.page-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(10,30,18,.82) 45%, rgba(10,30,18,.4));
}
.page-hero-content {
  position: relative; z-index: 2; padding: 0 7%;
}
.page-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-l); margin-bottom: 14px;
}
.page-hero-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold-l); }
.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 6vw, 72px); font-weight: 700;
  color: #fff; line-height: 1.05; margin-bottom: 16px;
}
.page-hero-title em { color: var(--gold-l); font-style: italic; }
.page-hero-sub { font-size: 15px; color: rgba(255,255,255,.72); max-width: 500px; line-height: 1.7; }

/* breadcrumb */
.breadcrumb {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  background: var(--gold); padding: 10px 7%;
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 500; letter-spacing: .06em;
}
.breadcrumb a { color: rgba(255,255,255,.8); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: #fff; }
.breadcrumb .sep { color: rgba(255,255,255,.5); }

/* ─── STATS BAR ─── */
.stats-bar {
  background: var(--green); display: flex; flex-wrap: wrap;
}
.stat-item {
  flex: 1 1 150px; padding: 36px 20px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.1);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Playfair Display', serif; font-size: 40px;
  font-weight: 700; color: var(--gold-l); display: block;
}
.stat-label { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-top: 4px; }

/* ─── FOOTER ─── */
footer {
  background: var(--green-d); color: rgba(255,255,255,.5);
  padding: 56px 5% 28px;
}
.footer-grid {
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 40px;
}
.footer-brand-name {
  font-family: 'Playfair Display', serif; font-size: 22px; color: #fff; margin-bottom: 4px;
}
.footer-brand-by { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.footer-desc { font-size: 12.5px; line-height: 1.85; color: rgba(255,255,255,.5); }
.footer-col-title { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: #fff; font-weight: 600; margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col ul li { padding: 5px 0; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,.5); transition: color .2s; }
.footer-col ul li a:hover { color: var(--gold-l); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 22px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px; font-size: 11.5px;
}
.footer-rera { color: var(--gold); font-weight: 500; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  nav#mainNav { padding: 0 24px; }
  .nav-center { gap: 18px; }
  .btn-dl { display: none; }
}
@media (max-width: 860px) {
  .nav-center { display: none !important; }
  .btn-enquire.desktop-only { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  #home {
  height: 80vh;
}
}
@media (max-width: 520px) {
  section { padding: 64px 5%; }
  .stat-item { flex: 1 1 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .footer-grid { grid-template-columns: 1fr; }
}
