/* ============================================================
   style.css – Deen Dayal Jan Awas Yojana, Haryana  (FIXED)
   ============================================================ */

/* ══════════════════════════════════════════════════════════
   1. CSS VARIABLES
══════════════════════════════════════════════════════════ */
:root {
  --clr-navy:      #0d2d5e;
  --clr-navy-dark: #091f45;
  --clr-orange:    #e87c23;
  --clr-red:       #e03535;
  --clr-green:     #2d8f3f;
  --clr-gold:      #f4a01c;
  --clr-bg:        #f5f7fa;
  --clr-white:     #ffffff;
  --clr-text:      #1e293b;
  --clr-muted:     #64748b;
  --clr-border:    #dde3ec;

  --font-main:  'Noto Sans', sans-serif;
  --font-hindi: 'Tiro Devanagari Hindi', serif;

  --radius-sm: 10px;
  --radius-md: 8px;
  --radius-lg: 14px;

  --shadow-sm: 0 1px 4px rgba(0,0,0,.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,.12);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.16);

  --container: 1200px;
  --header-h:  70px;
  --transition: .25s ease;
}

/* ══════════════════════════════════════════════════════════
   2. RESET / BASE
══════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth;overflow-x: hidden !important; }
body {
  font-family: var(--font-main);
  color: var(--clr-text);
  line-height: 1.65;
  /* background: var(--clr-bg); */
  overflow-x: hidden !important;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ══════════════════════════════════════════════════════════
   3. LAYOUT
══════════════════════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ══════════════════════════════════════════════════════════
   4. TYPOGRAPHY HELPERS
══════════════════════════════════════════════════════════ */
.section-title {
  font-size: .92rem;
  font-weight: 800;
  color: var(--clr-navy);
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  padding-bottom: .6rem;
  border-bottom: 2px solid var(--clr-border);
}
/* All numbered section headings (1. 2. 3. 4. 5.) unified style */
.tab-panel .section-title:not(.section-title--center):not(.section-title--red) {
  font-size: .92rem;
  font-weight: 800;
  color: var(--clr-navy);
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: .5rem 0 .5rem .75rem;
  border-bottom: none;
  border-left: 3px solid var(--clr-navy);
  margin-bottom: 1.2rem;
}
.section-title--center { text-align: center; }
.section-title--red {
  color: var(--clr-red);
  border-color: transparent;
  border-bottom: none;
  font-size: 1.2rem;
  letter-spacing: .06em;
}

/* ══════════════════════════════════════════════════════════
   5. BUTTONS
══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .6rem 1.4rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .9rem;
  transition: opacity var(--transition), transform var(--transition), background var(--transition), box-shadow var(--transition);
  white-space: nowrap;
justify-content: center;

}



.btn--price {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem 1.5rem;
  font-size: .9rem;
  font-weight: 600;
  color: #ffffff !important;
  background: linear-gradient(
    135deg,
    #1a3a6b 0%,
    #0d2d5e 60%,
    #1a5c2e 100%
  ) !important;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(13,45,94,.35);
  transition: box-shadow .3s ease, transform .3s ease;
}

/* shimmer sweep */
.btn--price::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,.28) 50%,
    transparent 100%
  );
  animation: price-shimmer 2.4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes price-shimmer {
  0%   { left: -100%; }
  55%  { left: 160%; }
  100% { left: 160%; }
}

/* rupee icon pulse */
.btn--price i {
  display: inline-block;
  animation: rupee-pulse 2.4s ease-in-out infinite;
}
@keyframes rupee-pulse {
  0%, 100% { transform: scale(1);    opacity: 1; }
  50%       { transform: scale(1.25); opacity: .75; }
}

/* hover lift */
.btn--price:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13,45,94,.45);
}

.btn:hover { opacity: .88; transform: translateY(-1px); }

/* ── Apply Now Button ── */
.btn--apply {
  position: relative;
  background: var(--clr-green);
  color: var(--clr-white);
  padding: .55rem 1.4rem;
  font-size: .88rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  border: 2px solid var(--clr-green);
  overflow: visible;
  z-index: 0;
  width: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: .03em;
  flex: 0 0 auto;
  white-space: nowrap;
  max-width: 160px;
}

/* Sidebar apply button – full width */
.project-sidebar .btn--apply {
  width: 100%;
  max-width: 100%;
  flex: 1 1 auto;
  padding: .75rem 1.8rem;
  font-size: 1rem;
}
.btn--apply::before,
.btn--apply::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: calc(var(--radius-md) + 4px);
  border: 2px solid var(--clr-green);
  opacity: 0;
  animation: apply-ring 2s ease-out infinite;
  pointer-events: none;
}
.btn--apply::after { animation-delay: 1s; }
@keyframes apply-ring {
  0%   { inset: -2px; opacity: .8; border-color: var(--clr-green); }
  100% { inset: -14px; opacity: 0; border-color: transparent; }
}
.btn--apply:hover {
  background: #236b30;
  border-color: #236b30;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45,143,63,.4);
  opacity: 1;
}

/* Closed/Expired state */
.btn--apply.is-closed {
  background: var(--clr-red);
  border-color: var(--clr-red);
  cursor: not-allowed;
  pointer-events: none;
}
.btn--apply.is-closed::before,
.btn--apply.is-closed::after {
  border-color: var(--clr-red);
  animation: apply-ring-red 2s ease-out infinite;
}
.btn--apply.is-closed::after { animation-delay: 1s; }
@keyframes apply-ring-red {
  0%   { inset: -2px; opacity: .8; border-color: var(--clr-red); }
  100% { inset: -14px; opacity: 0; border-color: transparent; }
}

.btn--price {
  background: #f0f4ff;
  color: var(--clr-navy);
  border: 1.5px solid #c3d0f0;
  margin-top: 1rem;
}
.btn--dark       { background: var(--clr-navy); color: var(--clr-white); }
.btn--block      { display: flex; justify-content: center; margin-top: .75rem; }
.btn--primary    { background: var(--clr-orange); color: var(--clr-white); }
.btn--outline-white {
  border: 2px solid var(--clr-white);
  color: var(--clr-white);
  padding: .5rem 1.4rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: background var(--transition);
}
.btn--outline-white:hover { background: rgba(255,255,255,.15); }
.btn--full { width: 100%; justify-content: center; }
.btn--desktop-only { flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════
   6. GOV TOP BAR
══════════════════════════════════════════════════════════ */
.gov-bar {
  background: var(--clr-navy-dark);
  color: #a8bcd4;
  font-size: .8rem;
  padding: .45rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.gov-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
}
.gov-bar__contact {
  display: flex;
  align-items: center;
  gap: .4rem;
  color: #a8bcd4;
  font-weight: 500;
  transition: color var(--transition);
  white-space: nowrap;
}
.gov-bar__contact:hover { color: var(--clr-white); }
.gov-bar__contact i { color: var(--clr-gold); font-size: .85rem; flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════
   7. SITE HEADER
══════════════════════════════════════════════════════════ */
.site-header {
  background: var(--clr-white);
  height: var(--header-h);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.header__inner {
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}

/* ── Logo ── */
.logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-shrink: 0;
}
.logo img { width: 48px; height: 48px; object-fit: contain; }
.logo__text { display: flex; flex-direction: column; line-height: 1; }
.logo__hi {
  font-family: var(--font-hindi);
  font-size: .88rem;
  color: var(--clr-navy);
  line-height: 1.35;
}

/* ── Desktop Nav ── */
.main-nav {
  display: flex;
  justify-content: flex-end;
}
.main-nav .nav-list {
  display: flex;
  align-items: center;
  gap: .1rem;
  flex-wrap: nowrap;
}
.nav-link {
  padding: .4rem .6rem;
  font-size: .83rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: .25rem;
  color: var(--clr-text);
  white-space: nowrap;
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover,
.nav-link.active { color: var(--clr-navy); background: #eef2fb; }
.nav-link.active  { font-weight: 700; }
.nav-list__mobile-cta { display: none; }

/* ── Dropdown ── */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  min-width: 190px;
  padding: .35rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 200;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: .45rem 1rem;
  font-size: .86rem;
  color: var(--clr-text);
  transition: background var(--transition), color var(--transition);
}
.dropdown li a:hover { background: #f0f4ff; color: var(--clr-navy); }

/* ── Hamburger ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: .45rem .5rem;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  background: transparent;
  border: 1.5px solid var(--clr-border);
  transition: border-color var(--transition);
}
.hamburger:hover { border-color: var(--clr-navy); }
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--clr-navy);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
  pointer-events: none;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Header Apply Now – constrained width ── */
.btn--desktop-only.btn--apply {
  width: auto;
  max-width: 160px;
  flex: 0 0 auto;
  overflow: hidden;
}
.btn--desktop-only.btn--apply::before,
.btn--desktop-only.btn--apply::after { display: none; }

/* Sidebar Apply Now – full width */
.custombtn.btn--apply,
.apply-now-btn.btn--apply {
  width: 100%;
  max-width: 100%;
  flex: 1 1 auto;
  padding: .75rem 1.8rem;
  font-size: 1rem;
  height: auto;
}

/* ══════════════════════════════════════════════════════════
   8. TICKER BAR
══════════════════════════════════════════════════════════ */
.ticker-bar {
  background: var(--clr-navy);
  color: var(--clr-white);
  font-size: .82rem;
  padding: .5rem 0;
  overflow: hidden;
}
.ticker__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.ticker__label {
  background: var(--clr-orange);
  color: var(--clr-white);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .06em;
  padding: .22rem .65rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  flex-shrink: 0;
}
.maintrack { display: flex; gap: 10px; overflow: hidden; }

.ticker__track { flex: 1; overflow: hidden; }
.ticker__content {
  display: inline-block;
  white-space: nowrap;
  animation: ticker-scroll 20s linear infinite;
}
@keyframes ticker-scroll {
  from { transform: translateX(50%); }
  to   { transform: translateX(-50%); }
}
.ticker__content.paused { animation-play-state: paused; }
.ticker__controls { display: flex; gap: .3rem; flex-shrink: 0; }
.ticker__controls button {
  color: rgba(255,255,255,.7);
  font-size: .75rem;
  width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 3px;
  transition: background var(--transition), color var(--transition);
}
.ticker__controls button:hover { background: rgba(255,255,255,.15); color: var(--clr-white); }

/* ══════════════════════════════════════════════════════════
   9. HERO  (FIXED)
══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
/* FIX: lighter gradient so building shows better on right */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(6,22,60,.88) 0%,
    rgba(6,22,60,.55) 50%,
    rgba(6,22,60,.18) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}
.hero__text { max-width: 580px; }
.hero__eyebrow {
  display: inline-block;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(4px);
  color: #cce0ff;
  font-size: .82rem;
  font-weight: 600;
  padding: .35rem .9rem;
  border-radius: 20px;
  margin-bottom: 1rem;
  letter-spacing: .05em;
  border: 1px solid rgba(255,255,255,.2);
}
.hero__title {
  font-family: var(--font-hindi);
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 800;
  color: var(--clr-white);
  line-height: 1.25;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 16px rgba(0,0,0,.5);
}

/* ══════════════════════════════════════════════════════════
   10. INCLUSIVE STRIP  (FIXED)
══════════════════════════════════════════════════════════ */
.inclusive-strip {
  margin: 2rem 0;
  background: var(--clr-white);
}
.inclusive-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: #fffbf5;
  border: 1.5px solid #e8c99a;
  border-radius: 12px;
  padding: 1.4rem 2rem;
  box-shadow: var(--shadow-sm);
}
.inclusive-strip__left,
.inclusive-strip__right {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 2.5rem;
  flex: 1;
}
/* FIX: border separator centred and consistent */
.inclusive-strip__left {
  border-right: 1.5px solid #e8c99a;
}
.inclusive-strip__left i,
.inclusive-strip__right i {
  font-size: 2rem;
  color: #E07B2A;
  flex-shrink: 0;
}
.highlight-orange {
  color: #E07B2A;
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.3;
}
.textreserved {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--clr-text);
  display: block;
  margin-bottom: .15rem;
}
.sidetext {
  font-size: 1rem;
  font-weight: 500;
  color: var(--clr-text);
  line-height: 1.4;
}

/* ══════════════════════════════════════════════════════════
   11. DATES SECTION  (FIXED)
══════════════════════════════════════════════════════════ */
.dates-section {
  background: var(--clr-white);
  padding: 2rem 0 1.75rem;
  border-bottom: 1px solid var(--clr-border);
}
.dates-row {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin: 1.25rem 0 0;
}
.date-badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .7rem 1.6rem;
  border-radius: var(--radius-sm);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--clr-white);
  box-shadow: var(--shadow-sm);
}
.date-badge__label {
  font-weight: 400;
  font-size: 1rem;
  opacity: .9;
}
.date-badge__value {
  font-weight: 700;
}
.badge--red    { background: var(--clr-red); }
.badge--orange { background: var(--clr-orange); }
.badge--green  { background: var(--clr-green); }

/* ══════════════════════════════════════════════════════════
   12. PROJECT SECTION & TABS  (FIXED)
══════════════════════════════════════════════════════════ */
.project-section {
  background: var(--clr-white);
  padding: 2.5rem 0 3.5rem;
  margin-top: 1.5rem;
}

/* Tabs – FIX bottom border bleed + active styling */
.tabs {
  display: flex;
  gap: .5rem;
  border-bottom: 2.5px solid var(--clr-border);
  margin-bottom: 2rem;
}
.tab {
  flex: 1;
  padding: .9rem 1.5rem;
  font-size: .9rem;
  font-weight: 700;
  color: var(--clr-muted);
  margin-bottom: -2.5px;     /* overlap the border-bottom */
  transition: color var(--transition), border-color var(--transition), background var(--transition);
  letter-spacing: .05em;
  border: 2px solid var(--clr-border);
  border-bottom: 2.5px solid var(--clr-border);
  border-radius: 10px 10px 0 0;
  background: #f8f9fc;
  text-align: center;
}
.tab--active {
  color: var(--clr-white);
  background: var(--clr-navy);
  border-color: var(--clr-navy);
  border-bottom-color: var(--clr-navy);  /* hides the bottom border line */
}
.tab:not(.tab--active):hover {
  color: var(--clr-white);
  background: var(--clr-orange);
  border-color: var(--clr-orange);
}

.tab-panel { display: none; }
.tab-panel--active { display: block; }

/* ══════════════════════════════════════════════════════════
   13. PROJECT DETAILS GRID  (FIXED)
══════════════════════════════════════════════════════════ */
.project-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--clr-border);
  align-items: start;
}
.project-info > .section-title {
  color: var(--clr-navy) !important;
  border-bottom: 2px solid var(--clr-border) !important;
  font-size: 1rem !important;
}

.project-info__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-navy);
  margin-bottom: .4rem;
  line-height: 1.35;
}
.project-info__sub {
  color: var(--clr-muted);
  font-size: .88rem;
  margin-bottom: 1.2rem;
}
.project-meta { display: flex; flex-direction: column; gap: .65rem; }
.project-meta li {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  font-size: .92rem;
  line-height: 1.4;
}
.project-meta li i {
  color: var(--clr-navy);
  width: 18px;
  text-align: center;
  flex-shrink: 0;
  margin-top: .15rem;
}

.badge-inline {
  display: inline-block;
  padding: .15rem .65rem;
  border-radius: 20px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--clr-white);
}
.badge-inline--red { background: var(--clr-red); }

/* Sidebar – FIX: sticky positioning + better spacing */
.project-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}

.doc-links {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.doc-links a {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .875rem;
  color: var(--clr-navy);
  padding: .5rem .75rem;
  transition: background var(--transition);
  border-bottom: 1px solid var(--clr-border);
}
.doc-links a:last-child { border-bottom: none; }
.doc-links a:hover { background: #eef2fb; }
.doc-links a i { color: var(--clr-red); font-size: .95rem; }

/* Two-col grid */
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--clr-border);
}
.two-col-grid > div { display: flex; flex-direction: column; }
.two-col-grid p { font-size: .92rem; line-height: 1.75; color: var(--clr-text); }

/* Section block */
.section-block {
  width: 100%;
  margin: 2.5rem 0;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--clr-border);
}
.section-block:last-child { border-bottom: none; }

/* ══════════════════════════════════════════════════════════
   14. AMENITIES  (FIXED – 9-col, better sizing)
══════════════════════════════════════════════════════════ */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 1.25rem .75rem;
  margin-top: 1.5rem;
}
.amenity-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  text-align: center;
  padding: .75rem .5rem 1rem;
  border-bottom: 2px solid #d4e6d4;
  border-radius: 4px;
}
.amenity-card i {
  font-size: 1.5rem;
  color: #3a7a3a;
  background: linear-gradient(135deg, #e8f4e8, #d0ecd0);
  width: 56px; height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(45,143,63,.15);
}
.amenity-card span {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #2a2a2a;
  line-height: 1.35;
}

/* ══════════════════════════════════════════════════════════
   15. LAYOUT PLAN  (FIXED – equal height panels)
══════════════════════════════════════════════════════════ */
.layout-plan-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
}
.layout-plan-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  border: 1.5px dashed #c8c8c8;
  border-radius: 10px;
  padding: 1.25rem;
  background: #fafafa;
  min-height: 320px;
}
.layout-plan-item img {
  width: 100%;
  flex: 1;
  object-fit: contain;
  object-position: center;
  display: block;
  max-height: 320px;
}
.layout-plan-item span {
  font-size: .88rem;
  font-weight: 700;
  color: var(--clr-navy);
  text-align: center;
  padding-top: .5rem;
  border-top: 1px solid var(--clr-border);
  width: 100%;
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* ══════════════════════════════════════════════════════════
   16. LOCATION ADVANTAGES  (FIXED)
══════════════════════════════════════════════════════════ */
.location-section {
  border-radius: 4px;
  border-bottom: none; /* overrides section-block */
}
.location-section__header {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0;
  border-bottom: none;
  overflow: visible;
}
/* Match location header to same style as other section titles */
.location-section__header .section-title {
  font-size: .92rem !important;
  font-weight: 800 !important;
  color: var(--clr-navy) !important;
  letter-spacing: .07em !important;
  border: none !important;
  border-left: 3px solid var(--clr-navy) !important;
  padding: .5rem 0 .5rem .75rem !important;
  margin: 0 !important;
}
.location-section__num {
  display: none; /* Hide the green number box – heading already says "6. LOCATION ADVANTAGES" */
}
.location-section .section-title { margin: 0; border: none; padding: 0; }

.location-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.location-map-img {
  border: 1px solid #b0c4b0;
  border-radius: 8px;
  overflow: hidden;
  line-height: 0;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.location-map-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 360px;
}

.location-list { display: flex; flex-direction: column; gap: 0; }
.location-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .75rem 1rem;
  border: 1px solid #dde8dd;
  border-top: none;
  background: #fff;
  transition: background .2s;
}
.location-list li:first-child {
  border-top: 1px solid #dde8dd;
  border-radius: 6px 6px 0 0;
}
.location-list li:last-child { border-radius: 0 0 6px 6px; }
.location-list li:hover      { background: #f0f7f0; }
.location-list__icon {
  width: 40px; height: 40px;
  background: #e8f3e8;
  border: 1px solid #b8d8b8;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: #2e6b2e;
  font-size: 1rem;
}
.location-list__text { display: flex; flex-direction: column; gap: .15rem; }
.location-list__text strong {
  font-size: .88rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
}
.location-list__text span {
  font-size: .75rem;
  color: #2e6b2e;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* ══════════════════════════════════════════════════════════
   17. GALLERY  (FULLY FIXED – 7-item masonry grid)
══════════════════════════════════════════════════════════ */
.gallery-section {
  padding: 0 0 2rem;
}
/* Gallery heading — same style as other numbered section headings */
.gallery-section .section-title {
  font-size: .92rem;
  font-weight: 800;
  color: var(--clr-navy);
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: .5rem 0 .5rem .75rem;
  border-bottom: none;
  border-left: 3px solid var(--clr-navy);
  margin-bottom: .5rem;
  text-align: left;
  margin-bottom: 30px;
}
.gallery-section__sub {
  text-align: center;
  color: var(--clr-muted);
  font-size: .95rem;
  margin: -.5rem 0 2rem;
}

/* FIX: Define a clean 3-row grid that accommodates all 7 items */
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 260px 260px 280px;
  gap: 10px;
}

/* Item placement */
.gallery-item:nth-child(1) { grid-column: 1 / 2; grid-row: 1 / 3; } /* tall left */
.gallery-item:nth-child(2) { grid-column: 2 / 3; grid-row: 1 / 2; }
.gallery-item:nth-child(3) { grid-column: 3 / 4; grid-row: 1 / 2; }
.gallery-item:nth-child(4) { grid-column: 2 / 3; grid-row: 2 / 3; }
.gallery-item:nth-child(5) { grid-column: 3 / 4; grid-row: 2 / 3; }
.gallery-item:nth-child(6) { grid-column: 1 / 2; grid-row: 3 / 4; }
.gallery-item:nth-child(7) { grid-column: 2 / 4; grid-row: 3 / 4; } /* wide bottom right */

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: #d8d8d8;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}
.gallery-item:hover img { transform: scale(1.07); }

/* ══════════════════════════════════════════════════════════
   18. PROJECT STATS STRIP  (FIXED)
══════════════════════════════════════════════════════════ */
.stats-strip { padding: 2rem 0 1rem; }
.stats-strip__card {
  background: var(--clr-white);
  border: 1.5px solid #e8d9a0;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 2.25rem 2rem;
  gap: 1rem;
  box-shadow: 0 2px 20px rgba(200,170,80,.1);
}
.stats-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .5rem;
  flex: 1;
  min-width: 130px;
}
.stats-item__icon { font-size: 2.2rem; line-height: 1; margin-bottom: .2rem; }
.stats-item__label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .07em;
  color: var(--clr-navy);
  text-transform: uppercase;
}
.stats-item__value { font-size: .9rem; color: var(--clr-muted); }
.stats-item__divider {
  width: 1px;
  height: 64px;
  background: linear-gradient(to bottom, transparent, #d0c080, transparent);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════
   19. COMING SOON
══════════════════════════════════════════════════════════ */
.coming-soon {
  text-align: center;
  padding: 5rem 2rem;
  color: var(--clr-muted);
  background: #fafbfc;
  border-radius: var(--radius-lg);
  border: 1.5px dashed var(--clr-border);
}
.coming-soon i {
  font-size: 3.5rem;
  color: var(--clr-green);
  margin-bottom: 1.25rem;
  opacity: .7;
}
.coming-soon h3 { font-size: 1.5rem; color: var(--clr-navy); margin-bottom: .6rem; }
.coming-soon p  { margin-bottom: 1.75rem; font-size: .95rem; }

/* ══════════════════════════════════════════════════════════
   20. FOOTER CONTACT BAR
══════════════════════════════════════════════════════════ */

.reracheckfooter{
  background-color: #1a1a1a;
  color: #FFF;
  text-align: center;
  padding: 10px 15px 0px 15px;
}

.reracheckfooter a{
  text-decoration: underline;
}

.footer-contact-bar {
  background: #1a1a1a;
  padding: 2rem 0;
  border-bottom: 1px solid #2e2e2e;
}
.footer-contact-bar__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.footer-contact-card {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  background: #252525;
  border: 1px solid #333;
  border-radius: 10px;
  padding: 1.1rem 1.4rem;
  transition: border-color var(--transition);
}
.footer-contact-card:hover { border-color: var(--clr-gold); }
.footer-contact-card__icon {
  width: 46px; height: 46px;
  background: rgba(244,160,28,.12);
  border: 1px solid rgba(244,160,28,.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  color: var(--clr-gold);
}
.footer-contact-card__label {
  display: block;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: .25rem;
}
.footer-contact-card__value {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: #e8e8e8;
  line-height: 1.3;
  word-break: break-all;
}

/* ══════════════════════════════════════════════════════════
   21. DISCLAIMER BAR
══════════════════════════════════════════════════════════ */
.disclaimer-bar {
  background: #111;
  padding: .85rem 0;
  border-bottom: 1px solid #2a2a2a;
}
.disclaimer-bar p {
  font-size: .75rem;
  color: #777;
  text-align: center;
  line-height: 1.65;
}

/* ══════════════════════════════════════════════════════════
   22. SITE FOOTER BOTTOM BAR
══════════════════════════════════════════════════════════ */
.site-footer {
  background: #0a0a0a;
  padding: 1rem 0;
}
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer__brand-link { text-decoration: none; }
.footer__brand-name { font-size: 1.15rem; font-weight: 800; letter-spacing: .02em; }
.footer__brand-ddjay { color: #e8e8e8; }
.footer__brand-plots { color: var(--clr-gold); }
.footer__copy   { font-size: .8rem;  color: #666; }
.footer__siteby { font-size: .78rem; color: #555; }

/* ══════════════════════════════════════════════════════════
   23. FLOATING ACTION BUTTONS (FAB)
══════════════════════════════════════════════════════════ */
.fab-stack {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .6rem;
  z-index: 1000;
}
.fab {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .65rem 1.25rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.5rem;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
  white-space: nowrap;
  text-decoration: none;
  border: none;
  letter-spacing: 2px;
}
.fab:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,.28); }

.fab--scroll-top {
  background: #333;
  color: var(--clr-white);
  width: 44px; height: 44px;
  padding: 0;
  justify-content: center;
  border-radius: 50%;
  display: none;
}
.fab--scroll-top.visible { display: inline-flex; }

.fab--call    { background: var(--clr-navy); color: var(--clr-white); }
.fab--call i  { font-size: .9rem; }
.fab--enquire { background: var(--clr-orange); color: var(--clr-white); }

/* ══════════════════════════════════════════════════════════
   24. RESPONSIVE – 1024px
══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .amenities-grid { grid-template-columns: repeat(5, 1fr); }
  .nav-link { font-size: .78rem; padding: .35rem .42rem; }
  .btn--desktop-only { font-size: .8rem; padding: .45rem .9rem; }
  .project-grid { grid-template-columns: 1fr 260px; }
}

/* ══════════════════════════════════════════════════════════
   25. RESPONSIVE – 900px (Mobile nav)
══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .hamburger { display: flex; }
  .btn--desktop-only { display: none; }

  .main-nav {
    position: fixed;
    /* top: var(--header-h); */
            top: 130px;
    left: 0; right: 0; bottom: 0;
    background: var(--clr-white);
    box-shadow: var(--shadow-lg);
    padding: 1rem 1.25rem 2rem;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform .3s cubic-bezier(.4,0,.2,1);
    z-index: 998;
  }
  .main-nav.open { transform: translateX(0); }

  .main-nav .nav-list { flex-direction: column; align-items: stretch; gap: .2rem; }
  .nav-link { font-size: .95rem; padding: .7rem .9rem; border-radius: var(--radius-md); }

  .dropdown {
    position: static;
    opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none;
    border-left: 3px solid var(--clr-border);
    margin-left: 1rem; padding: .25rem 0;
    display: none;
    background: transparent; min-width: 0;
  }
  .has-dropdown.open .dropdown { display: block; }
  .dropdown li a { padding: .45rem .75rem; font-size: .9rem; }

  .nav-list__mobile-cta {
    display: block;
    margin-top: 1rem; padding-top: 1rem;
    border-top: 1px solid var(--clr-border);
  }

  /* Layout reflows */
  .project-grid   { grid-template-columns: 1fr; }
  .two-col-grid   { grid-template-columns: 1fr; gap: 2rem; }
  .location-row   { grid-template-columns: 1fr; }
  .footer-contact-bar__grid { grid-template-columns: 1fr; }

  /* Gallery – 2 col on tablet */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px 220px 200px;
  }
  .gallery-item:nth-child(1) { grid-column: 1 / 3; grid-row: 1 / 2; }
  .gallery-item:nth-child(2) { grid-column: 1 / 2; grid-row: 2 / 3; }
  .gallery-item:nth-child(3) { grid-column: 2 / 3; grid-row: 2 / 3; }
  .gallery-item:nth-child(4) { grid-column: 1 / 2; grid-row: 3 / 4; }
  .gallery-item:nth-child(5) { grid-column: 2 / 3; grid-row: 3 / 4; }
  .gallery-item:nth-child(6) { grid-column: 1 / 2; grid-row: 4 / 5; }
  .gallery-item:nth-child(7) { grid-column: 2 / 3; grid-row: 4 / 5; }

  .stats-strip__card { gap: 1.5rem; padding: 1.5rem 1rem; flex-wrap: wrap; }
  .stats-item__divider { display: none; }
  .stats-item { min-width: calc(50% - 1.5rem); }

  /* Sidebar loses sticky on mobile */
  .project-sidebar { position: static; }
}

/* ══════════════════════════════════════════════════════════
   26. RESPONSIVE – 600px
══════════════════════════════════════════════════════════ */
@media (max-width: 600px) {
  .highlight-orange { font-size: 1rem; }
  .textreserved     { font-size: 1rem; }

  .gov-bar__inner { flex-direction: column;align-items: center; gap: .3rem; }
  .gov-bar__contact span { font-size: .77rem; }

  .logo img  { width: 40px; height: 40px; }
  .logo__hi  { font-size: .8rem; }

  .hero { min-height: 340px; }
  .hero__content { flex-direction: column; align-items: flex-start; padding: 2rem 1rem; }
  .hero__title   { font-size: 1.7rem; }

  .inclusive-strip__inner { flex-direction: column; align-items: flex-start; gap: 1rem; padding: 1.25rem; }
  .inclusive-strip__left {
    border-right: none;
    border-bottom: 1.5px solid #e8c99a;
    padding: 0 0 1rem;
    width: 100%;
  }
  .inclusive-strip__right { padding: .5rem 0 0; }

  .dates-row  { flex-direction: column; align-items: center; }
  .date-badge { width: 100%; max-width: 340px; justify-content: center; }

  .amenities-grid { grid-template-columns: repeat(3, 1fr); }
  .layout-plan-grid { grid-template-columns: 1fr; }

  /* Gallery – single column on small mobile */
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: unset;
    gap: 8px;
  }
  .gallery-item:nth-child(n) {
    grid-column: 1 / 2 !important;
    grid-row: unset !important;
    height: 210px;
  }

  .stats-strip__card { padding: 1.5rem 1rem; gap: .75rem; }
  .stats-item { min-width: 100%; padding: .75rem 0; border-bottom: 1px solid var(--clr-border); }
  .stats-item:last-child { border-bottom: none; }

  .footer__bottom-inner { flex-direction: column; text-align: center; gap: .5rem; }
  .footer-contact-card__value { font-size: .8rem; }

  .fab-stack { bottom: 1rem; right: 1rem; }
  .fab { font-size: .48rem; padding: .55rem 1rem; }

.header__inner {
    display: flex !important;
    justify-content: space-between;
}

.ticker__inner{
  flex-direction: column;

}

.ticker__content {
  display: inline-block;
  white-space: nowrap;
  animation: ticker-scroll 24s linear infinite;
}

/* .maintrack { display: flex; gap: 10px; flex-direction: column; } */

}

/* ══════════════════════════════════════════════════════════
   27. RESPONSIVE – 380px
══════════════════════════════════════════════════════════ */
@media (max-width: 380px) {
  .logo__text          { display: none; }
  .gov-bar__contact span { display: none; }
  .amenities-grid      { grid-template-columns: repeat(3, 1fr); }

  .stats-item { min-width: 100%; }

  .gallery-item:nth-child(n) { height: 180px; }
}



.banks-section {
    padding: 40px 0;
}

.banks-banner-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}


/* ═══════════════════════════════════════════
   SPECIFICATIONS SECTION
═══════════════════════════════════════════ */
.spec-section {
    margin: 2.5rem 0;
}

.spec-tables {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 1.5rem;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    font-size: 0.88rem;
}

/* Orange header row */
.spec-table thead tr {
    background: #f07340;
}

.spec-table thead th {
    padding: 0.75rem 1.1rem;
    text-align: left;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.spec-table thead th:first-child {
    width: 220px;
}

/* Body rows */
.spec-table tbody tr {
    border-bottom: 1px solid #eeeeee;
    transition: background 0.15s;
}

.spec-table tbody tr:last-child {
    border-bottom: none;
}

.spec-table tbody tr:hover {
    background: #fff8f5;
}

.spec-key {
    padding: 0.8rem 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    width: 220px;
    vertical-align: top;
    border-right: 1px solid #eeeeee;
    background: #fafafa;
}

.spec-val {
    padding: 0.8rem 1.1rem;
    color: #444;
    line-height: 1.65;
    vertical-align: top;
}

/* ── RESPONSIVE ── */
@media (max-width: 700px) {
    .spec-table thead th:first-child,
    .spec-key {
        width: 130px;
    }

    .spec-key,
    .spec-val {
        padding: 0.65rem 0.75rem;
        font-size: 0.82rem;
    }
}

@media (max-width: 500px) {
    .spec-table {
        display: block;
    }

    .spec-table thead,
    .spec-table tbody,
    .spec-table tr {
        display: block;
    }

    .spec-table thead tr {
        border-radius: 0;
    }

    .spec-table thead th:last-child {
        display: none;
    }

    .spec-table tr {
        display: flex;
        flex-direction: column;
        border-bottom: 1px solid #eee;
    }

    .spec-key {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #f0e8e4;
        background: #fff4f0;
        color: #f07340;
    }

    .spec-val {
        width: 100%;
    }
}