/* ============================================================
   UTKARSHHOME — Master Stylesheet v2.0
   Logo Palette: Orange #E85D04, Dark Orange #C04D00, 
   Light Orange #FF7A2E, Gold-Orange #FF6B00, 
   Charcoal #2D2926, White #FFFFFF
   Fonts: Cormorant Garamond (display) + Outfit (body)
============================================================ */

/* ── CSS Variables (Logo Color Palette) ─────────────────── */
:root {
  /* Primary — Orange from logo */
  --orange:        #E85D04;
  --orange-light:  #FF7A2E;
  --orange-bright: #FF6B00;
  --orange-dark:   #C04D00;
  --orange-deeper: #9A3D00;
  --orange-pale:   #FFF3EC;
  --orange-soft:   #FFE4D0;

  /* Dark / Charcoal from logo */
  --dark:          #2D2926;
  --dark-2:        #3A342F;
  --dark-3:        #4A4340;
  --dark-light:    #5C534E;

  /* Neutral */
  --white:         #FFFFFF;
  --off-white:     #FDF9F7;
  --bg-light:      #F9F5F2;
  --bg-soft:       #F4EFE9;
  --border:        #EAE3DC;
  --border-2:      #D9CFC6;
  --text-dark:     #2D2926;
  --text-body:     #4A4340;
  --text-muted:    #7A6F68;
  --text-light:    #A89890;

  /* Semantic */
  --green:         #15803D;
  --green-bg:      #DCFCE7;
  --red:           #DC2626;
  --red-bg:        #FEE2E2;
  --blue:          #1D4ED8;
  --blue-bg:       #DBEAFE;

  /* Shadows */
  --shadow-xs:     0 1px 4px rgba(45,41,38,.08);
  --shadow-sm:     0 2px 10px rgba(45,41,38,.10);
  --shadow:        0 4px 24px rgba(45,41,38,.12);
  --shadow-lg:     0 12px 48px rgba(45,41,38,.15);
  --shadow-xl:     0 24px 72px rgba(45,41,38,.20);
  --shadow-orange: 0 8px 28px rgba(232,93,4,.30);

  /* Radii */
  --r-sm:  6px;
  --r:     12px;
  --r-lg:  18px;
  --r-xl:  24px;
  --r-2xl: 32px;

  /* Fonts */
  --font-d: 'Cormorant Garamond', Georgia, serif;
  --font-b: 'Outfit', system-ui, sans-serif;

  /* Ease */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout */
  --banner-h: 38px;
  --nav-h:    70px;
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-b);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; transition: color .2s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; font-size: inherit; }
input, select, textarea { font-family: inherit; }
h1,h2,h3,h4,h5,h6 { line-height: 1.15; font-weight: 600; }

/* ── Scrollbar ──────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-light); }
::-webkit-scrollbar-thumb { background: var(--orange-dark); border-radius: 3px; }

/* ── Container ──────────────────────────────────────────── */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}
.container-sm { max-width: 820px; margin: 0 auto; padding: 0 2rem; }

/* ── Utilities ──────────────────────────────────────────── */
.text-center { text-align: center; }
.text-orange { color: var(--orange); }
.text-white  { color: var(--white); }
.d-none      { display: none !important; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* ── Reveal animations ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }


/* ============================================================
   ANNOUNCEMENT BANNER
============================================================ */
.announce-bar {
  height: var(--banner-h);
  background: linear-gradient(90deg, var(--orange-dark), var(--orange), var(--orange-bright));
  color: var(--white);
  overflow: hidden;
  position: relative;
  z-index: 200;
  display: flex;
  align-items: center;
}
.announce-ticker {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: tickerRun 40s linear infinite;
  width: max-content;
}
@keyframes tickerRun {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.announce-item {
  padding: 0 3rem;
  font-size: .8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: .65rem;
  white-space: nowrap;
}
.announce-item::before { content: '●'; font-size: .5rem; opacity: .7; }
.announce-item a {
  background: rgba(255,255,255,.22);
  color: var(--white);
  padding: .12rem .65rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: .72rem;
  transition: background .2s;
  white-space: nowrap;
}
.announce-item a:hover { background: rgba(255,255,255,.38); }
.announce-close-btn {
  position: absolute;
  right: .85rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,.75);
  font-size: 1.1rem;
  z-index: 10;
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: .2s;
  flex-shrink: 0;
}
.announce-close-btn:hover { background: rgba(0,0,0,.2); color: var(--white); }


/* ============================================================
   NAVBAR
============================================================ */
.navbar {
  position: fixed;
  left: 0; right: 0;
  z-index: 999;
  top: var(--banner-h);
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--border);
  transition: top .3s var(--ease), box-shadow .3s, background .3s;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.navbar.scrolled {
  top: 0;
  box-shadow: 0 2px 24px rgba(45,41,38,.12);
  background: #fff;
}
.navbar.no-banner { top: 0; }

.nav-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Logo */
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img { height: 50px; width: auto; object-fit: contain; }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: .1rem;
  flex: 1;
}
.nav-link {
  padding: .45rem .8rem;
  border-radius: var(--r-sm);
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
  transition: all .2s;
  position: relative;
}
.nav-link:hover { color: var(--orange); background: var(--orange-pale); }
.nav-link.active { color: var(--orange); font-weight: 700; }
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px; left: .8rem; right: .8rem;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

/* Dropdown */
.nav-has-dd { position: relative; }
.nav-has-dd .nav-dd {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: .6rem;
  min-width: 220px;
  display: none;
  animation: ddIn .2s var(--ease) both;
  z-index: 100;
}
@keyframes ddIn {
  from { opacity: 0; transform: translateX(-50%) translateY(-8px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.nav-has-dd:hover .nav-dd { display: block; }
.nav-dd a {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .55rem .9rem;
  border-radius: var(--r-sm);
  font-size: .85rem;
  color: var(--text-body);
  transition: .15s;
  font-weight: 400;
}
.nav-dd a:hover { background: var(--orange-pale); color: var(--orange); }
.nav-dd .dd-icon { font-size: 1rem; flex-shrink: 0; }
.nav-dd-divider { height: 1px; background: var(--border); margin: .4rem .3rem; }
.caret { font-size: .68rem; margin-left: 3px; display: inline-block; transition: .2s; }
.nav-has-dd:hover .caret { transform: rotate(180deg); }

/* Nav right */
.nav-right {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-left: auto;
  flex-shrink: 0;
}
.nav-phone-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .83rem;
  font-weight: 700;
  color: var(--orange);
  padding: .42rem .85rem;
  border: 1.5px solid rgba(232,93,4,.3);
  border-radius: var(--r-sm);
  transition: .2s;
  white-space: nowrap;
}
.nav-phone-link:hover { background: var(--orange-pale); border-color: var(--orange); }
.nav-cta-btn {
  padding: .48rem 1.2rem;
  background: var(--orange);
  color: var(--white);
  font-size: .875rem;
  font-weight: 700;
  border-radius: var(--r-sm);
  letter-spacing: .02em;
  transition: all .2s;
  white-space: nowrap;
}
.nav-cta-btn:hover {
  background: var(--orange-dark);
  box-shadow: var(--shadow-orange);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 5px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all .3s;
}
.hamburger.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.is-open span:nth-child(2) { opacity: 0; transform: translateX(-8px); }
.hamburger.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile menu */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 2px solid var(--orange);
  padding: 1rem 1.5rem 1.5rem;
  max-height: 80vh;
  overflow-y: auto;
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a {
  padding: .7rem 0;
  border-bottom: 1px solid var(--border);
  font-size: .93rem;
  font-weight: 500;
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.mobile-nav a:hover { color: var(--orange); }
.mobile-nav .m-divider { height: 1px; background: var(--border); margin: .5rem 0; }
.mobile-nav .m-cta { color: var(--orange) !important; font-weight: 700 !important; border-bottom: none !important; }
.mobile-nav .m-phone { color: var(--orange) !important; font-weight: 700 !important; }


/* ============================================================
   PAGE HERO (inner pages)
============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 40%, #3D1500 100%);
  padding: calc(var(--banner-h) + var(--nav-h) + 2.5rem) 0 3rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(232,93,4,.12), transparent);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232,93,4,.5), transparent);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: var(--font-d);
  font-size: clamp(2rem,4vw,3.2rem);
  font-weight: 600;
  color: var(--white);
  letter-spacing: -.02em;
  margin-bottom: .6rem;
  line-height: 1.1;
}
.page-hero h1 em { font-style: italic; color: var(--orange-light); }
.page-hero p {
  font-size: .97rem;
  color: rgba(255,255,255,.6);
  font-weight: 300;
  max-width: 540px;
  line-height: 1.7;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .75rem;
  color: rgba(255,255,255,.4);
  margin-bottom: .85rem;
}
.breadcrumb a { color: rgba(255,255,255,.55); transition: .15s; }
.breadcrumb a:hover { color: var(--orange-light); }
.breadcrumb-sep { opacity: .4; }


/* ============================================================
   SECTION COMMONS
============================================================ */
.section { padding: 5rem 0; }
.section-alt { background: var(--bg-light); }
.section-dark { background: var(--dark); color: var(--white); }
.section-orange { background: var(--orange); color: var(--white); }
.section-gradient {
  background: linear-gradient(135deg, var(--orange-dark), var(--orange), var(--orange-bright));
  color: var(--white);
}

/* Section labels */
.label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .6rem;
}
.label::before {
  content: '';
  width: 20px; height: 2px;
  background: var(--orange);
  display: block;
  flex-shrink: 0;
}
.label-center {
  justify-content: center;
}
.label-white { color: rgba(255,255,255,.75); }
.label-white::before { background: rgba(255,255,255,.75); }

/* Section title */
.section-title {
  font-family: var(--font-d);
  font-size: clamp(1.85rem,3.5vw,2.75rem);
  font-weight: 600;
  color: var(--dark);
  letter-spacing: -.02em;
  line-height: 1.1;
  margin-bottom: .6rem;
}
.section-title em { font-style: italic; color: var(--orange); }
.section-title.light { color: var(--white); }
.section-title.light em { color: var(--orange-light); }

/* Section subtitle */
.section-sub {
  font-size: .97rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-weight: 300;
  max-width: 520px;
}
.section-sub.light { color: rgba(255,255,255,.6); }

/* Section header row */
.sh-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.link-all {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .85rem;
  font-weight: 700;
  color: var(--orange);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: .2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.link-all:hover { border-color: var(--orange); }


/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: .65rem 1.5rem;
  border-radius: var(--r-sm);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .02em;
  transition: all .25s var(--ease);
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border: 2px solid var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  box-shadow: var(--shadow-orange);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
}
.btn-outline:hover {
  background: var(--orange);
  color: var(--white);
  box-shadow: var(--shadow-orange);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--dark);
  color: var(--white);
  border: 2px solid var(--dark);
}
.btn-dark:hover { background: #000; border-color: #000; }
.btn-white {
  background: var(--white);
  color: var(--orange);
  border: 2px solid var(--white);
}
.btn-white:hover { background: var(--orange-soft); border-color: var(--orange-soft); }
.btn-ghost-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.45);
}
.btn-ghost-white:hover { background: rgba(255,255,255,.12); border-color: var(--white); }
.btn-sm  { padding: .42rem 1rem; font-size: .78rem; }
.btn-lg  { padding: .82rem 2rem; font-size: .97rem; }
.btn-xl  { padding: 1rem 2.5rem; font-size: 1rem; }
.btn-block { width: 100%; }
.btn-wa {
  background: #25D366; color: var(--white); border: 2px solid #25D366;
}
.btn-wa:hover { background: #1EB95A; border-color: #1EB95A; }


/* ============================================================
   PROPERTY CARD
============================================================ */
.prop-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }

.prop-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
  display: flex;
  flex-direction: column;
}
.prop-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(232,93,4,.12), 0 4px 12px rgba(45,41,38,.08);
  border-color: rgba(232,93,4,.3);
}

.prop-img-wrap {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.prop-img-wrap img {
  width: 100%; height: 220px;
  object-fit: cover;
  display: block;
  transition: transform .5s var(--ease);
}
.prop-card:hover .prop-img-wrap img { transform: scale(1.05); }

.prop-badges {
  position: absolute;
  top: .75rem; left: .75rem;
  display: flex; gap: .35rem; flex-wrap: wrap;
  z-index: 2;
}
.badge {
  font-size: .63rem; font-weight: 800;
  letter-spacing: .05em; text-transform: uppercase;
  padding: .22rem .65rem;
  border-radius: var(--r-sm);
  line-height: 1.4;
}
.badge-featured { background: var(--orange); color: var(--white); }
.badge-new      { background: #EF4444; color: var(--white); }
.badge-ready    { background: #15803D; color: var(--white); }
.badge-plot     { background: var(--dark); color: var(--white); }
.badge-luxury   { background: #7C3AED; color: var(--white); }
.badge-rera     { background: rgba(0,0,0,.55); color: var(--white); backdrop-filter: blur(4px); }

.prop-wish {
  position: absolute;
  top: .75rem; right: .75rem;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem;
  color: var(--text-muted);
  box-shadow: var(--shadow-sm);
  transition: .2s;
  cursor: pointer;
  z-index: 2;
  border: none;
}
.prop-wish:hover { background: var(--white); color: var(--orange); transform: scale(1.1); }
.prop-wish.wished { color: var(--orange); }

.prop-body {
  padding: 1.15rem 1.25rem 1.3rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.prop-price {
  font-family: var(--font-d);
  font-size: 1.45rem; font-weight: 700;
  color: var(--orange);
  line-height: 1; margin-bottom: .3rem;
  display: flex; align-items: baseline; gap: .4rem; flex-wrap: wrap;
}
.prop-price-unit {
  font-family: var(--font-b);
  font-size: .72rem; color: var(--text-light); font-weight: 400;
}
.prop-dev   { font-size: .74rem; font-weight: 700; color: var(--orange); margin-bottom: .2rem; }
.prop-name  { font-size: .97rem; font-weight: 700; color: var(--dark); margin-bottom: .28rem; line-height: 1.35; }
.prop-loc {
  display: flex; align-items: center; gap: 4px;
  font-size: .77rem; color: var(--text-muted);
  margin-bottom: .72rem;
}
.prop-loc svg { flex-shrink: 0; color: var(--orange); }

.prop-config {
  display: flex; gap: .3rem; flex-wrap: wrap;
  margin-bottom: .72rem;
}
.config-tag {
  font-size: .7rem; font-weight: 600;
  background: var(--bg-light);
  color: var(--text-muted);
  padding: .2rem .55rem;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
}

.prop-meta {
  display: flex; gap: .4rem; flex-wrap: wrap;
  padding: .55rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: .85rem;
  font-size: .72rem; color: var(--text-muted);
}
.prop-meta span { display: flex; align-items: center; gap: 3px; }

.prop-footer {
  display: flex; align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.rera-badge {
  font-size: .63rem; font-weight: 700;
  color: var(--green);
  display: flex; align-items: center; gap: 3px;
}
.rera-badge::before { content: '✓'; font-weight: 900; }
.btn-view-prop {
  font-size: .75rem; font-weight: 700;
  color: var(--orange);
  border: 1.5px solid rgba(232,93,4,.35);
  padding: .3rem .85rem;
  border-radius: var(--r-sm);
  transition: .2s;
  background: none;
  cursor: pointer;
}
.btn-view-prop:hover { background: var(--orange); color: var(--white); border-color: var(--orange); }

/* Filter pills */
.filter-pills { display: flex; gap: .4rem; flex-wrap: wrap; margin-bottom: 2rem; }
.fp {
  padding: .38rem .9rem;
  border-radius: 100px;
  font-size: .78rem; font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  transition: all .2s;
  cursor: pointer;
  line-height: 1;
}
.fp:hover { color: var(--orange); background: var(--orange-pale); border-color: rgba(232,93,4,.3); }
.fp.active { background: var(--orange); color: var(--white); border-color: var(--orange); }

/* Filter bar */
.filter-bar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.75rem;
  display: flex; align-items: flex-end; gap: 1rem; flex-wrap: wrap;
  box-shadow: var(--shadow-xs);
}
.filter-grp { display: flex; flex-direction: column; gap: .28rem; min-width: 140px; }
.filter-grp label {
  font-size: .67rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-muted);
}
.filter-grp select, .filter-grp input {
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: .52rem .9rem;
  font-size: .875rem; color: var(--dark);
  background: var(--white); appearance: none;
  outline: none; transition: border-color .2s; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath stroke='%237A6F68' stroke-width='1.5' d='m1 1 5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .75rem center;
  padding-right: 2.4rem;
}
.filter-grp select:focus, .filter-grp input:focus { border-color: var(--orange); }
.filter-divider { width: 1px; height: 38px; background: var(--border); flex-shrink: 0; }
.filter-count { font-size: .78rem; color: var(--text-muted); margin-left: auto; white-space: nowrap; }


/* ============================================================
   WHY CARDS
============================================================ */
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }
.why-card {
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.75rem 1.4rem;
  background: var(--white);
  position: relative; overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.why-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-bright));
  transform: scaleX(0); transition: transform .35s var(--ease); transform-origin: left;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(232,93,4,.25); }
.why-card:hover::before { transform: scaleX(1); }
.why-icon {
  width: 52px; height: 52px; border-radius: var(--r);
  background: var(--orange-pale);
  border: 1px solid rgba(232,93,4,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1.15rem;
}
.why-card h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: .5rem; line-height: 1.3; }
.why-card p  { font-size: .84rem; color: var(--text-muted); line-height: 1.65; font-weight: 300; }


/* ============================================================
   TESTIMONIALS
============================================================ */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.testi-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  position: relative; transition: transform .3s, box-shadow .3s, border-color .3s;
}
.testi-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: rgba(232,93,4,.25); }
.testi-card.featured { border-color: rgba(232,93,4,.3); background: var(--orange-pale); }
.testi-quote-mark {
  font-family: Georgia, serif; font-size: 4rem;
  color: var(--orange); opacity: .2;
  position: absolute; top: .75rem; right: 1.25rem; line-height: 1;
}
.testi-stars { color: #F59E0B; font-size: .85rem; letter-spacing: .1em; margin-bottom: .85rem; }
.testi-text { font-size: .88rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 1.25rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: .7rem; }
.testi-av {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; font-weight: 800; color: var(--white); flex-shrink: 0;
  border: 2px solid rgba(232,93,4,.3);
}
.testi-name   { font-size: .88rem; font-weight: 700; color: var(--dark); }
.testi-detail { font-size: .72rem; color: var(--text-muted); }


/* ============================================================
   BLOG CARDS
============================================================ */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.blog-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  display: flex; flex-direction: column; cursor: pointer;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(232,93,4,.25); }
.blog-card img { width: 100%; height: 200px; object-fit: cover; transition: transform .5s; display: block; }
.blog-card:hover img { transform: scale(1.04); }
.blog-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.blog-cat-tag {
  font-size: .67rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--orange); margin-bottom: .5rem;
}
.blog-card-title {
  font-size: .95rem; font-weight: 700; color: var(--dark);
  line-height: 1.4; margin-bottom: .55rem; flex: 1;
}
.blog-card-excerpt { font-size: .82rem; color: var(--text-muted); line-height: 1.65; margin-bottom: .85rem; font-weight: 300; }
.blog-card-meta { font-size: .72rem; color: var(--text-light); display: flex; align-items: center; gap: .4rem; flex-wrap: wrap; }
.dot { width: 3px; height: 3px; border-radius: 50%; background: var(--text-light); display: inline-block; flex-shrink: 0; }

/* Featured blog 2-col */
.blog-feat-row { display: grid; grid-template-columns: 1.6fr 1fr; gap: 1.5rem; margin-bottom: 1.5rem; }
.blog-feat-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden; transition: .3s; cursor: pointer;
}
.blog-feat-card:hover { box-shadow: var(--shadow-lg); border-color: rgba(232,93,4,.25); }
.blog-feat-card img { width: 100%; height: 280px; object-fit: cover; display: block; transition: .5s; }
.blog-feat-card:hover img { transform: scale(1.03); }
.blog-feat-body { padding: 1.5rem; }
.blog-feat-title {
  font-family: var(--font-d); font-size: 1.5rem; font-weight: 600;
  color: var(--dark); line-height: 1.25; margin-bottom: .75rem;
}

/* Blog sidebar list */
.blog-sidebar-list { display: flex; flex-direction: column; gap: .75rem; }
.blog-list-item {
  display: flex; gap: .85rem; align-items: center;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r); padding: .9rem;
  transition: .2s; cursor: pointer;
}
.blog-list-item:hover { border-color: rgba(232,93,4,.3); background: var(--orange-pale); }
.blog-list-img { width: 72px; height: 58px; border-radius: var(--r-sm); object-fit: cover; flex-shrink: 0; display: block; }
.blog-list-cat  { font-size: .63rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--orange); margin-bottom: .2rem; }
.blog-list-title { font-size: .82rem; font-weight: 700; color: var(--dark); line-height: 1.35; margin-bottom: .2rem; }
.blog-list-date  { font-size: .68rem; color: var(--text-light); }


/* ============================================================
   FORMS
============================================================ */
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block; font-size: .78rem; font-weight: 700;
  color: var(--dark); margin-bottom: .38rem; letter-spacing: .02em;
}
.form-control {
  width: 100%; padding: .68rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-size: .9rem; color: var(--dark); background: var(--white);
  outline: none; transition: border-color .2s, box-shadow .2s;
  font-family: var(--font-b);
}
.form-control:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(232,93,4,.1); }
.form-control::placeholder { color: var(--text-light); }
select.form-control {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath stroke='%237A6F68' stroke-width='1.5' d='m1 1 5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .85rem center; padding-right: 2.5rem;
}
textarea.form-control { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-note { font-size: .7rem; color: var(--text-muted); margin-top: .3rem; }


/* ============================================================
   STATS
============================================================ */
.stats-band {
  display: grid; grid-template-columns: repeat(4,1fr);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.stat-cell {
  padding: 2rem 1.5rem; text-align: center;
  border-right: 1px solid var(--border);
}
.stat-cell:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-d); font-size: 2.5rem; font-weight: 700;
  color: var(--orange); line-height: 1; margin-bottom: .3rem;
}
.stat-lbl { font-size: .72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }


/* ============================================================
   CITY CARDS
============================================================ */
.city-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 190px 190px;
  gap: 1rem;
}
.city-card {
  border-radius: var(--r-lg); overflow: hidden;
  position: relative; cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s;
  display: block;
}
.city-card:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }
.city-card:first-child { grid-row: span 2; }
.city-card-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .5s var(--ease);
}
.city-card:hover .city-card-bg { transform: scale(1.06); }
.city-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(30,15,0,.75) 0%, rgba(0,0,0,.05) 60%);
}
.city-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.1rem; }
.city-info h3 {
  font-family: var(--font-d); font-size: 1.25rem; font-weight: 600;
  color: var(--white); line-height: 1; margin-bottom: .2rem;
}
.city-card:first-child .city-info h3 { font-size: 1.8rem; }
.city-info p { font-size: .72rem; color: rgba(255,255,255,.6); }
.city-pill {
  position: absolute; top: .7rem; right: .7rem;
  font-size: .63rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  background: var(--orange); color: var(--white);
  padding: .2rem .6rem; border-radius: var(--r-sm);
}


/* ============================================================
   DEVELOPER CARDS
============================================================ */
.dev-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }
.dev-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r-lg); padding: 1.75rem 1.25rem;
  text-align: center; transition: .3s; cursor: pointer;
}
.dev-card:hover { border-color: rgba(232,93,4,.3); box-shadow: var(--shadow); transform: translateY(-3px); }
.dev-logo-sq {
  width: 68px; height: 68px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: .88rem; font-weight: 900; color: var(--white);
  margin: 0 auto 1rem; letter-spacing: .02em;
}
.dev-name  { font-size: .9rem; font-weight: 700; color: var(--dark); margin-bottom: .2rem; line-height: 1.3; }
.dev-type  { font-size: .72rem; color: var(--text-muted); }
.dev-count { font-size: .7rem; font-weight: 700; color: var(--orange); margin-top: .35rem; }
.dev-city  { font-size: .67rem; color: var(--text-light); margin-top: .12rem; }


/* ============================================================
   TEAM CARD
============================================================ */
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.team-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
  transition: .3s; cursor: pointer;
}
.team-card:hover { box-shadow: var(--shadow-lg); border-color: rgba(232,93,4,.25); transform: translateY(-4px); }
.team-photo {
  height: 200px; position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.team-initial-big {
  font-family: var(--font-d); font-size: 3.5rem; font-weight: 700;
  color: rgba(255,255,255,.85); z-index: 1;
}
.team-photo-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.45), transparent 60%); }
.team-body { padding: 1.1rem 1.25rem; }
.team-name { font-size: .97rem; font-weight: 700; color: var(--dark); margin-bottom: .18rem; }
.team-role { font-size: .76rem; font-weight: 700; color: var(--orange); margin-bottom: .3rem; }
.team-exp  { font-size: .72rem; color: var(--text-muted); }
.team-desc { font-size: .78rem; color: var(--text-muted); line-height: 1.6; margin-top: .5rem; font-weight: 300; }


/* ============================================================
   ENQUIRY FLOATER
============================================================ */
.enq-floater {
  position: fixed; bottom: 5.5rem; right: 1.5rem;
  z-index: 800;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
  width: 320px;
  transform: translateY(16px) scale(.97); opacity: 0;
  transition: all .3s var(--ease);
  pointer-events: none;
}
.enq-floater.open { transform: translateY(0) scale(1); opacity: 1; pointer-events: all; }
.enq-head {
  background: linear-gradient(135deg, var(--orange-dark), var(--orange));
  color: var(--white);
  padding: 1rem 1.25rem;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  display: flex; align-items: flex-start; justify-content: space-between;
}
.enq-head h4 { font-size: .97rem; font-weight: 700; margin-bottom: .15rem; }
.enq-head p  { font-size: .73rem; opacity: .85; }
.enq-close-btn {
  color: rgba(255,255,255,.8); font-size: 1.15rem;
  cursor: pointer; line-height: 1; background: none; border: none;
  transition: .2s; flex-shrink: 0; margin-left: .5rem;
}
.enq-close-btn:hover { color: var(--white); }
.enq-body { padding: 1.1rem 1.25rem 1.3rem; }
.enq-body .form-group { margin-bottom: .72rem; }
.enq-consent { font-size: .69rem; color: var(--text-muted); display: flex; align-items: flex-start; gap: .45rem; margin-bottom: .85rem; }
.enq-consent input[type=checkbox] { margin-top: 2px; accent-color: var(--orange); flex-shrink: 0; }


/* ============================================================
   FLOAT BUTTONS
============================================================ */
.float-btns {
  position: fixed; bottom: 1.75rem; right: 1.5rem;
  display: flex; flex-direction: column; align-items: flex-end;
  gap: .5rem; z-index: 700;
}
.float-btn-row { display: flex; align-items: center; gap: .55rem; }
.float-label-tag {
  background: var(--dark); color: var(--white);
  font-size: .72rem; font-weight: 600;
  padding: .25rem .7rem; border-radius: var(--r-sm);
  white-space: nowrap; opacity: 0; transition: opacity .2s;
}
.float-btn-row:hover .float-label-tag { opacity: 1; }
.float-btn {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; box-shadow: var(--shadow-lg);
  cursor: pointer; transition: all .25s var(--ease);
  text-decoration: none; flex-shrink: 0;
  border: none;
}
.float-btn:hover { transform: scale(1.1); }
.float-wa   { background: #25D366; color: var(--white); animation: pulseGreen 2.5s ease infinite; }
.float-call { background: var(--orange); color: var(--white); animation: pulseOrange 2.5s ease infinite; }
.float-enq  { background: var(--dark); color: var(--white); font-size: 1rem; font-weight: 700; }
@keyframes pulseGreen  { 0%,100%{box-shadow:0 0 0 0 rgba(37,211,102,.4)} 50%{box-shadow:0 0 0 14px rgba(37,211,102,0)} }
@keyframes pulseOrange { 0%,100%{box-shadow:0 0 0 0 rgba(232,93,4,.4)}   50%{box-shadow:0 0 0 14px rgba(232,93,4,0)} }


/* ============================================================
   CAREER / JOBS
============================================================ */
.job-list { display: flex; flex-direction: column; gap: 1rem; }
.job-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r-lg); padding: 1.5rem 1.75rem;
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 1.5rem; transition: .25s; cursor: pointer;
}
.job-card:hover { border-color: rgba(232,93,4,.3); box-shadow: var(--shadow); background: var(--off-white); transform: translateX(4px); }
.job-info { flex: 1; min-width: 0; }
.job-title { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: .38rem; }
.job-meta-row { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: .55rem; }
.job-tag {
  font-size: .67rem; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase; padding: .18rem .6rem;
  border-radius: var(--r-sm); line-height: 1.5;
}
.jt-dept { background: var(--orange-pale); color: var(--orange-dark); }
.jt-loc  { background: #DBEAFE; color: #1D4ED8; }
.jt-type { background: #DCFCE7; color: #15803D; }
.job-desc { font-size: .83rem; color: var(--text-muted); line-height: 1.65; }
.job-action { flex-shrink: 0; display: flex; flex-direction: column; align-items: flex-end; gap: .5rem; }
.job-exp { font-size: .72rem; color: var(--text-muted); white-space: nowrap; }
.job-positions { font-size: .7rem; font-weight: 700; color: var(--orange); }

/* Perk cards */
.perk-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }
.perk-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r-lg); padding: 1.75rem 1.4rem; transition: .3s;
}
.perk-card:hover { box-shadow: var(--shadow); border-color: rgba(232,93,4,.2); transform: translateY(-3px); }
.perk-icon { font-size: 1.75rem; margin-bottom: .85rem; }
.perk-card h3 { font-size: .97rem; font-weight: 700; color: var(--dark); margin-bottom: .45rem; }
.perk-card p  { font-size: .83rem; color: var(--text-muted); line-height: 1.65; font-weight: 300; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: .6rem; }
.faq-item { border: 1.5px solid var(--border); border-radius: var(--r); overflow: hidden; }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: .9rem 1.25rem; cursor: pointer;
  font-size: .9rem; font-weight: 600; color: var(--dark);
  background: var(--white); transition: .2s;
}
.faq-q:hover { background: var(--orange-pale); color: var(--orange); }
.faq-icon { color: var(--orange); font-size: .85rem; transition: transform .25s; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  display: none; padding: .8rem 1.25rem 1rem;
  font-size: .87rem; color: var(--text-muted);
  line-height: 1.7; border-top: 1px solid var(--border);
  background: var(--bg-light);
}
.faq-item.open .faq-a { display: block; }


/* ============================================================
   CONTACT PAGE
============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 3rem; align-items: start; }
.contact-item {
  display: flex; align-items: flex-start; gap: .85rem;
  padding: 1rem 1.1rem;
  background: var(--bg-light); border-radius: var(--r);
  border: 1.5px solid var(--border); margin-bottom: .85rem;
}
.contact-icon-sq {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--orange); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 1.1rem;
}
.contact-lbl { font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: .18rem; }
.contact-val { font-size: .9rem; font-weight: 700; color: var(--dark); }
.contact-val a { color: var(--orange); transition: .15s; }
.contact-val a:hover { color: var(--orange-dark); }

.branch-list { display: flex; flex-direction: column; gap: .5rem; margin-top: 1.25rem; }
.branch-item { border: 1.5px solid var(--border); border-radius: var(--r); overflow: hidden; }
.branch-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: .75rem 1rem; cursor: pointer;
  font-size: .875rem; font-weight: 600; color: var(--dark);
  background: var(--white); transition: .2s;
}
.branch-head:hover { background: var(--orange-pale); color: var(--orange); }
.branch-arrow { color: var(--orange); transition: transform .25s; }
.branch-item.open .branch-arrow { transform: rotate(180deg); }
.branch-body {
  display: none; padding: .7rem 1rem;
  font-size: .82rem; color: var(--text-muted);
  line-height: 1.75; background: var(--bg-light);
  border-top: 1px solid var(--border);
}
.branch-item.open .branch-body { display: block; }
.branch-body a { color: var(--orange); font-weight: 600; font-size: .82rem; }

.contact-form-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r-xl); padding: 2.25rem 2rem;
  box-shadow: var(--shadow);
}
.contact-form-card h3 {
  font-family: var(--font-d); font-size: 1.6rem; font-weight: 600;
  color: var(--dark); margin-bottom: .4rem;
}
.contact-form-card > p { font-size: .87rem; color: var(--text-muted); margin-bottom: 1.75rem; }


/* ============================================================
   ABOUT PAGE
============================================================ */
.founder-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 3.5rem; align-items: start; }
.founder-img-wrap { border-radius: var(--r-xl); overflow: hidden; height: 440px; position: relative; }
.founder-img-bg {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--orange-dark), var(--orange), var(--orange-bright));
  display: flex; align-items: center; justify-content: center;
}
.founder-big-initial {
  font-family: var(--font-d); font-size: 9rem; font-weight: 700;
  color: rgba(255,255,255,.25); user-select: none;
}
.founder-badge-card {
  position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
  background: var(--white); border-radius: var(--r);
  padding: 1rem 1.25rem; box-shadow: var(--shadow-lg);
  display: flex; gap: .85rem; align-items: center;
}
.founder-badge-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--orange); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; flex-shrink: 0;
}
.founder-badge-name { font-size: .9rem; font-weight: 700; color: var(--dark); }
.founder-badge-sub  { font-size: .73rem; color: var(--text-muted); }
.founder-content h2 {
  font-family: var(--font-d); font-size: 2rem; font-weight: 600;
  color: var(--dark); margin-bottom: 1rem; line-height: 1.15;
}
.founder-content blockquote {
  border-left: 3px solid var(--orange);
  padding: .75rem 1.25rem;
  font-family: var(--font-d); font-size: 1.15rem; font-style: italic;
  color: var(--dark);
  background: var(--orange-pale); border-radius: 0 var(--r) var(--r) 0;
  margin: 1.25rem 0; line-height: 1.5;
}
.founder-content p {
  font-size: .92rem; color: var(--text-muted); line-height: 1.85;
  margin-bottom: .85rem; font-weight: 300;
}
.founder-content strong { color: var(--dark); font-weight: 700; }

.vision-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.vision-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r-lg); padding: 2rem 1.75rem;
  transition: .3s; position: relative; overflow: hidden;
}
.vision-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-bright));
  transform: scaleX(0); transition: .35s var(--ease); transform-origin: left;
}
.vision-card:hover { box-shadow: var(--shadow); border-color: rgba(232,93,4,.2); transform: translateY(-3px); }
.vision-card:hover::before { transform: scaleX(1); }
.vision-card-icon { font-size: 2rem; margin-bottom: 1rem; }
.vision-card h3 {
  font-family: var(--font-d); font-size: 1.25rem; font-weight: 600;
  color: var(--dark); margin-bottom: .5rem;
}
.vision-card p { font-size: .88rem; color: var(--text-muted); line-height: 1.7; font-weight: 300; }


/* ============================================================
   PROJECT DETAIL
============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 240px 240px;
  gap: .75rem; border-radius: var(--r-xl); overflow: hidden;
}
.gallery-main { grid-row: span 2; position: relative; }
.gallery-main img, .gallery-thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.gallery-more-overlay {
  position: absolute; inset: 0;
  background: rgba(30,15,0,.55);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: .95rem; font-weight: 700;
  cursor: pointer; transition: .2s;
}
.gallery-more-overlay:hover { background: rgba(30,15,0,.7); }

.detail-table { width: 100%; border-collapse: collapse; }
.detail-table tr { border-bottom: 1px solid var(--border); }
.detail-table tr:last-child { border-bottom: none; }
.detail-table td { padding: .65rem 0; font-size: .88rem; vertical-align: middle; }
.detail-table .d-label { color: var(--text-muted); font-weight: 500; width: 40%; }
.detail-table .d-val   { color: var(--dark); font-weight: 700; text-align: right; }
.amenity-chip {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .38rem .85rem;
  background: var(--bg-light); border: 1.5px solid var(--border);
  border-radius: var(--r-sm); font-size: .77rem; font-weight: 600;
  color: var(--text-muted); margin: .2rem;
}
.amenity-chip::before { content: '✓'; color: var(--green); font-weight: 900; }


/* ============================================================
   TOOLS PAGE (EMI Calculator etc.)
============================================================ */
.tools-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.tool-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r-lg); padding: 2rem 1.75rem;
  transition: .3s; cursor: pointer; text-align: center;
}
.tool-card:hover { box-shadow: var(--shadow); border-color: rgba(232,93,4,.25); transform: translateY(-3px); }
.tool-icon {
  width: 64px; height: 64px; border-radius: var(--r-lg);
  background: var(--orange-pale); border: 1px solid rgba(232,93,4,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.65rem; margin: 0 auto 1.1rem;
}
.tool-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: .5rem; }
.tool-card p  { font-size: .85rem; color: var(--text-muted); line-height: 1.65; font-weight: 300; }

/* Calculator UI */
.calc-wrap {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r-xl); box-shadow: var(--shadow);
  overflow: hidden;
}
.calc-header {
  background: linear-gradient(135deg, var(--orange-dark), var(--orange));
  padding: 1.75rem 2rem; color: var(--white);
}
.calc-header h2 { font-family: var(--font-d); font-size: 1.5rem; font-weight: 600; margin-bottom: .25rem; }
.calc-header p  { font-size: .85rem; opacity: .85; }
.calc-body { padding: 2rem; }
.calc-result {
  background: var(--orange-pale); border: 1.5px solid rgba(232,93,4,.2);
  border-radius: var(--r); padding: 1.5rem; text-align: center; margin-top: 1.5rem;
}
.calc-result-num {
  font-family: var(--font-d); font-size: 2.5rem; font-weight: 700;
  color: var(--orange); line-height: 1; margin-bottom: .25rem;
}
.calc-result-label { font-size: .8rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.range-input { width: 100%; accent-color: var(--orange); margin-top: .5rem; }
.range-labels { display: flex; justify-content: space-between; font-size: .72rem; color: var(--text-muted); margin-top: .25rem; }


/* ============================================================
   FOOTER — centered, complete, consistent across all pages
============================================================ */
.site-footer {
  background: var(--dark);
  color: var(--white);
  padding: 4.5rem 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr 1.8fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

/* Brand col */
.footer-brand {}
.footer-logo-link { display: inline-block; margin-bottom: 1.1rem; }
.footer-logo-link img {
  height: 48px; width: auto;
  /* Keep logo natural colors on dark bg */
  filter: drop-shadow(0 2px 8px rgba(232,93,4,.3));
}
.footer-tagline {
  font-size: .85rem; color: rgba(255,255,255,.5);
  line-height: 1.75; max-width: 275px; font-weight: 300;
  margin-bottom: 1.25rem;
}
.footer-contact-list { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.25rem; }
.footer-contact-list a {
  display: flex; align-items: center; gap: 7px;
  font-size: .84rem; font-weight: 600;
  color: rgba(255,255,255,.6); transition: .15s;
}
.footer-contact-list a:hover { color: var(--orange-light); }
.footer-rera-badge {
  font-size: .7rem; color: rgba(255,255,255,.35);
  background: rgba(255,255,255,.06);
  padding: .38rem .75rem; border-radius: var(--r-sm);
  display: inline-block; margin-bottom: 1.1rem;
}
.footer-social-row { display: flex; gap: .5rem; }
.footer-soc-btn {
  width: 36px; height: 36px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  font-size: .78rem; font-weight: 700;
  color: rgba(255,255,255,.45); transition: .2s;
  text-decoration: none; flex-shrink: 0;
}
.footer-soc-btn:hover { background: var(--orange); border-color: var(--orange); color: var(--white); }

/* Link cols */
.footer-col h4 {
  font-size: .68rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.35);
  margin-bottom: 1.15rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .52rem; }
.footer-col ul li a {
  font-size: .84rem; color: rgba(255,255,255,.52); transition: .15s; line-height: 1.5;
}
.footer-col ul li a:hover { color: var(--orange-light); padding-left: 4px; }

/* Newsletter col */
.footer-nl-col h4 {
  font-size: .68rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.35);
  margin-bottom: .75rem;
}
.footer-nl-col p { font-size: .82rem; color: rgba(255,255,255,.45); line-height: 1.65; margin-bottom: 1rem; font-weight: 300; }
.nl-row { display: flex; flex-direction: column; gap: .5rem; }
.nl-input {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-sm); padding: .65rem .9rem;
  font-size: .85rem; color: var(--white); font-family: var(--font-b); outline: none; transition: .2s;
}
.nl-input:focus { border-color: rgba(232,93,4,.5); background: rgba(232,93,4,.08); }
.nl-input::placeholder { color: rgba(255,255,255,.25); }
.nl-btn {
  background: var(--orange); color: var(--white);
  padding: .65rem; border-radius: var(--r-sm);
  font-size: .82rem; font-weight: 700; letter-spacing: .04em;
  cursor: pointer; border: none; font-family: var(--font-b);
  transition: .2s;
}
.nl-btn:hover { background: var(--orange-bright); }

/* Orange divider line above bottom bar */
.footer-orange-line {
  height: 2px;
  background: linear-gradient(90deg, var(--orange-dark), var(--orange), var(--orange-bright), var(--orange), var(--orange-dark));
}

/* Bottom bar */
.footer-bottom {
  padding: 1.25rem 0;
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 1rem;
  text-align: center;
}
.footer-bottom p { font-size: .73rem; color: rgba(255,255,255,.22); }
.footer-bottom-links {
  display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center;
}
.footer-bottom-links a { font-size: .72rem; color: rgba(255,255,255,.3); transition: .15s; }
.footer-bottom-links a:hover { color: var(--orange-light); }
.footer-bottom-sep { color: rgba(255,255,255,.15); font-size: .72rem; }

/* ── Dev marquee in footer ─── */
.footer-dev-marquee {
  padding: 2rem 0;
  border-top: 1px solid rgba(255,255,255,.06);
  overflow: hidden;
}
.footer-dev-marquee .marquee-label {
  text-align: center; font-size: .65rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.25); margin-bottom: 1.25rem;
}
.marquee-track { display: flex; gap: 0; width: max-content; animation: marqueeRun 30s linear infinite; }
@keyframes marqueeRun { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.marquee-dev-item {
  padding: .5rem 2rem;
  border-right: 1px solid rgba(255,255,255,.07);
  font-size: .82rem; font-weight: 600;
  color: rgba(255,255,255,.3);
  white-space: nowrap; min-width: 160px;
  text-align: center; transition: .2s; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.marquee-dev-item:hover { color: var(--orange-light); }


/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1100px) {
  .prop-grid        { grid-template-columns: repeat(2,1fr); }
  .why-grid         { grid-template-columns: repeat(2,1fr); }
  .footer-inner     { grid-template-columns: 1fr 1fr 1fr; }
  .footer-inner .footer-brand { grid-column: 1 / -1; }
  .blog-grid        { grid-template-columns: repeat(2,1fr); }
  .dev-grid         { grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 900px) {
  .city-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .city-card:first-child { grid-row: span 1; }
  .blog-feat-row { grid-template-columns: 1fr; }
  .founder-grid   { grid-template-columns: 1fr; }
  .contact-grid   { grid-template-columns: 1fr; }
  .tools-grid     { grid-template-columns: 1fr 1fr; }
  .perk-grid      { grid-template-columns: 1fr 1fr; }
  .vision-grid    { grid-template-columns: 1fr; }
  .team-grid      { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 62px; --banner-h: 34px; }
  .nav-links, .nav-right { display: none; }
  .hamburger { display: flex; }
  .prop-grid  { grid-template-columns: 1fr; }
  .why-grid   { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .blog-grid  { grid-template-columns: 1fr; }
  .dev-grid   { grid-template-columns: 1fr 1fr; }
  .form-row   { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: 1fr 1fr; }
  .stat-cell:nth-child(2) { border-right: none; }
  .stat-cell:nth-child(3) { border-right: 1px solid var(--border); }
  .section    { padding: 3.5rem 0; }
  .container  { padding: 0 1.25rem; }
  .enq-floater { width: calc(100vw - 2.5rem); }
  .float-btns { right: 1rem; bottom: 1.25rem; }
  .sh-row     { flex-direction: column; align-items: flex-start; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-inner .footer-brand { grid-column: 1 / -1; }
  .city-grid  { grid-template-columns: 1fr; grid-template-rows: auto; }
  .job-card   { flex-direction: column; }
  .job-action { align-items: flex-start; }
}

@media (max-width: 480px) {
  .why-grid   { grid-template-columns: 1fr; }
  .dev-grid   { grid-template-columns: 1fr 1fr; }
  .perk-grid  { grid-template-columns: 1fr; }
  .team-grid  { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: 1fr 1fr; }
  .tools-grid { grid-template-columns: 1fr; }
  .page-hero  { padding-top: calc(var(--banner-h) + var(--nav-h) + 1.75rem); }
  .filter-bar { flex-direction: column; align-items: stretch; }
  .filter-grp { min-width: 100%; }
  .filter-divider { display: none; }
}
