/* ==========================================================================
   SKYE INDIA — Master stylesheet
   Brand: Deep teal-blue + warm gold + ivory
   ========================================================================== */

:root {
  --brand-deep: #143E54;
  --brand-deep-soft: #1F5573;
  --brand-gold: #C99B6B;
  --brand-gold-deep: #A87E4F;
  --ivory: #F5EFE3;
  --ivory-warm: #EDE3CD;
  --cream: #FAF6EC;
  --ink: #1B1B1B;
  --ink-soft: #3A3A3A;
  --mute: #8A8275;
  --line: #E2D9C5;
  --white: #FFFFFF;
  --success: #2F7D5B;
  --danger: #9D2B2B;
  --whatsapp: #25D366;

  --font-display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --container: 1280px;
  --gutter-mobile: 24px;
  --gutter-desktop: 48px;

  --shadow-sm: 0 2px 8px rgba(20,62,84,0.06);
  --shadow-md: 0 8px 28px rgba(20,62,84,0.10);
  --shadow-lg: 0 24px 60px rgba(20,62,84,0.12);

  --radius: 2px;
  --easing: cubic-bezier(.2,.8,.2,1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, ul, ol, figure, blockquote, dl, dd { margin: 0; padding: 0; }
ul[role="list"], ol[role="list"] { list-style: none; }
img, picture, video, svg { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; border: 0; background: none; }

/* Base */
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
}
a { color: var(--brand-deep); text-decoration: none; transition: color .2s var(--easing); }
a:hover { color: var(--brand-gold-deep); }

::selection { background: var(--brand-gold); color: var(--white); }

/* Typography */
.eyebrow {
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brand-gold-deep);
  margin-bottom: 1rem;
}
h1, .h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ink);
}
h2, .h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.875rem, 3.5vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.005em;
}
h3, .h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.2;
}
.lead { font-size: 1.125rem; line-height: 1.6; color: var(--ink-soft); max-width: 64ch; }
.lead-lg { font-size: 1.25rem; line-height: 1.55; color: var(--ink-soft); max-width: 56ch; }
.italic { font-style: italic; }
.gold { color: var(--brand-gold-deep); }
.deep { color: var(--brand-deep); }

/* Layout */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter-mobile); }
@media (min-width: 768px) { .container { padding: 0 var(--gutter-desktop); } }

section { padding: 64px 0; }
@media (min-width: 768px) { section { padding: 96px 0; } }

.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: 1fr 1fr; gap: 48px; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .grid-4 { grid-template-columns: repeat(4, 1fr); gap: 32px; }
}

.row-flex { display: flex; flex-wrap: wrap; gap: 24px; align-items: center; }
.split-2 { display: grid; gap: 32px; grid-template-columns: 1fr; }
@media (min-width: 992px) {
  .split-2 { grid-template-columns: 1.05fr 1fr; gap: 80px; align-items: center; }
  .split-2.flip { grid-template-columns: 1fr 1.05fr; }
}

.bg-ivory { background: var(--ivory); }
.bg-warm { background: var(--ivory-warm); }
.bg-cream { background: var(--cream); }
.bg-deep { background: var(--brand-deep); color: var(--cream); }
.bg-deep h1, .bg-deep h2, .bg-deep h3 { color: var(--cream); }
.bg-deep .eyebrow { color: var(--brand-gold); }
.bg-deep .lead, .bg-deep p { color: rgba(245,239,227,0.85); }

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 28px;
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: .04em;
  border-radius: var(--radius);
  transition: transform .25s var(--easing), background .25s var(--easing), color .25s var(--easing), border-color .25s var(--easing);
  border: 1px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary { background: var(--brand-deep); color: var(--ivory); }
.btn-primary:hover { background: var(--brand-deep-soft); color: var(--ivory); transform: translateY(-1px); }
.btn-ghost { border-color: var(--brand-deep); color: var(--brand-deep); }
.btn-ghost:hover { background: var(--brand-deep); color: var(--ivory); }
.btn-ghost-light { border-color: rgba(245,239,227,0.7); color: var(--ivory); }
.btn-ghost-light:hover { background: var(--ivory); color: var(--brand-deep); }
.btn-gold { background: var(--brand-gold); color: var(--white); }
.btn-gold:hover { background: var(--brand-gold-deep); color: var(--white); transform: translateY(-1px); }
.btn-link { color: var(--brand-gold-deep); border-bottom: 1px solid var(--brand-gold); padding: 4px 0; font-weight: 500; }
.btn-link:hover { color: var(--brand-deep); border-color: var(--brand-deep); }

/* Hairlines */
.hairline { width: 48px; height: 1px; background: var(--brand-gold); margin: 16px 0 24px; }
.hairline-center { margin-left: auto; margin-right: auto; }

/* Header */
.utility {
  background: var(--ink);
  color: rgba(245,239,227,0.78);
  font-size: .78rem;
  letter-spacing: .04em;
}
.utility-inner {
  display: none;
  align-items: center;
  justify-content: space-between;
  height: 36px;
}
@media (min-width: 992px) { .utility-inner { display: flex; } }
.utility a { color: rgba(245,239,227,0.85); }
.utility a:hover { color: var(--brand-gold); }
.utility .rera { display: inline-flex; align-items: center; gap: 8px; }
.utility .rera::before {
  content: "";
  width: 6px; height: 6px; background: var(--brand-gold); border-radius: 50%;
}

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(245,239,227,0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s var(--easing);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 500; color: var(--brand-deep);
  letter-spacing: .04em;
}
.brand-mark {
  width: 36px; height: 36px;
  background: var(--brand-deep); color: var(--ivory);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-sans); font-size: .8rem; font-weight: 600; letter-spacing: .04em;
}
.nav-links {
  display: none;
  list-style: none;
  align-items: center;
  gap: 32px;
}
@media (min-width: 992px) { .nav-links { display: flex; } }
.nav-links a {
  color: var(--ink); font-weight: 500; font-size: .92rem; letter-spacing: .03em;
  position: relative; padding: 8px 0;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--brand-gold); transform: scaleX(0); transform-origin: left;
  transition: transform .25s var(--easing);
}
.nav-links a:hover, .nav-links a.active { color: var(--brand-deep); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta { display: none; }
@media (min-width: 992px) { .nav-cta { display: inline-block; } }

.nav-toggle {
  display: inline-flex; flex-direction: column; gap: 5px;
  padding: 8px;
}
@media (min-width: 992px) { .nav-toggle { display: none; } }
.nav-toggle span { width: 22px; height: 1.5px; background: var(--ink); display: block; transition: transform .25s; }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 200;
  background: var(--ivory); padding: 32px 24px;
  transform: translateX(100%); transition: transform .35s var(--easing);
  display: flex; flex-direction: column;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu .close { align-self: flex-end; font-size: 1.5rem; padding: 8px; color: var(--ink); }
.mobile-menu ul { list-style: none; padding: 24px 0; display: flex; flex-direction: column; gap: 16px; }
.mobile-menu a {
  font-family: var(--font-display); font-size: 1.75rem; color: var(--brand-deep); font-weight: 500;
}
/* FIX: mobile menu Enquire button — .mobile-menu a override hata do */
.mobile-menu a.btn-primary {
  font-family: var(--font-sans);
  font-size: .95rem;
  color: var(--ivory);
  display: inline-block;
}
.mobile-menu a.btn-primary:hover { color: var(--ivory); }

/* Hero */
.hero {
  position: relative; min-height: 80vh;
  display: flex; align-items: center;
  background: var(--brand-deep); color: var(--ivory);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: .85;
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,62,84,.55) 0%, rgba(20,62,84,.35) 35%, rgba(20,62,84,.85) 100%);
}
.hero-inner { position: relative; z-index: 2; padding-top: 120px; padding-bottom: 120px; }
.hero h1 { color: var(--ivory); margin-bottom: 24px; max-width: 16ch; }
.hero .lead { color: rgba(245,239,227,.92); max-width: 56ch; margin-bottom: 40px; }
.hero .eyebrow { color: var(--brand-gold); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; }
.hero.center .hero-inner { text-align: center; }
.hero.center h1, .hero.center .lead { margin-left: auto; margin-right: auto; }
.hero.center .hero-ctas { justify-content: center; }

/* Trust strip */
.trust {
  background: var(--cream);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.trust-inner {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0;
  padding: 32px 0;
}
@media (min-width: 768px) { .trust-inner { grid-template-columns: repeat(4, 1fr); } }
.trust-item { text-align: center; padding: 16px; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-item:nth-child(2n) { border-right: 0; }
@media (min-width: 768px) { .trust-item:nth-child(2n) { border-right: 1px solid var(--line); } .trust-item:last-child { border-right: 0; } }
.trust-item .num { font-family: var(--font-display); font-size: 2rem; color: var(--brand-deep); display: block; }
.trust-item .label { font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--mute); }

/* Cards */
.card {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 32px;
  transition: transform .3s var(--easing), border-color .3s var(--easing), box-shadow .3s var(--easing);
}
.card:hover { transform: translateY(-3px); border-color: var(--brand-gold); box-shadow: var(--shadow-md); }
.card .num {
  display: inline-block;
  font-family: var(--font-display); font-size: 2.5rem; color: var(--brand-gold-deep);
  margin-bottom: 8px; line-height: 1;
}
.card h3 { margin-bottom: 12px; color: var(--brand-deep); }
.card p { color: var(--ink-soft); font-size: .98rem; }

/* Pillar tiles (deep ground) */
.pillars { background: var(--brand-deep); color: var(--ivory); }
.pillar {
  padding: 40px;
  border: 1px solid rgba(201,155,107,0.25);
  background: rgba(255,255,255,0.02);
}
.pillar h3 { color: var(--brand-gold); font-family: var(--font-display); margin-bottom: 16px; }
.pillar p { color: rgba(245,239,227,.85); }

/* Feature project block */
.feature-project { background: var(--ivory-warm); }
.feature-project img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0 24px; }
.tag {
  font-size: .75rem; letter-spacing: .08em; text-transform: uppercase;
  background: var(--cream); border: 1px solid var(--line); color: var(--ink-soft);
  padding: 6px 12px; border-radius: 999px;
}

/* Highlight grid (icons) */
.icon-grid { display: grid; gap: 24px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 768px) { .icon-grid { grid-template-columns: repeat(4, 1fr); } }
.icon-tile {
  text-align: center; padding: 24px 16px;
  background: var(--cream); border: 1px solid var(--line);
}
.icon-tile svg { width: 36px; height: 36px; margin: 0 auto 12px; color: var(--brand-deep); }
.icon-tile span { font-size: .92rem; color: var(--ink); }

/* Distance table */
.dist-table { width: 100%; border-collapse: collapse; background: var(--cream); }
.dist-table th, .dist-table td { padding: 14px 20px; text-align: left; border-bottom: 1px solid var(--line); }
.dist-table th { font-weight: 600; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: var(--mute); background: var(--ivory-warm); }
.dist-table td.num-col { font-family: var(--font-display); font-size: 1.1rem; color: var(--brand-deep); width: 25%; }

/* Forms */
.form { background: var(--cream); border: 1px solid var(--line); padding: 40px; }
.form-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; color: var(--mute); font-weight: 500; }
.field input, .field select, .field textarea {
  background: transparent;
  border: 0; border-bottom: 1px solid var(--line);
  padding: 10px 0; font-size: 1rem;
  transition: border-color .25s var(--easing);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0; border-color: var(--brand-gold);
}
.field textarea { min-height: 100px; resize: vertical; }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: .85rem; color: var(--mute); }
.consent input { margin-top: 4px; }
.form-row { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; margin-top: 16px; justify-content: space-between; }

/* FAQ */
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
.faq summary {
  cursor: pointer; list-style: none;
  font-family: var(--font-display); font-size: 1.25rem; color: var(--brand-deep);
  display: flex; justify-content: space-between; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--brand-gold); font-size: 1.5rem; transition: transform .25s var(--easing); }
.faq details[open] summary::after { content: "−"; }
.faq details p { margin-top: 12px; color: var(--ink-soft); }

/* Footer pre-CTA */
.pre-cta { background: var(--brand-deep); color: var(--ivory); text-align: center; padding: 96px 0; }
.pre-cta h2 { color: var(--ivory); margin-bottom: 24px; }
.pre-cta p { color: rgba(245,239,227,.85); max-width: 56ch; margin: 0 auto 32px; }
.pre-cta .ctas { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* Footer */
footer.site-footer { background: var(--ink); color: rgba(245,239,227,.7); padding: 80px 0 40px; }
.footer-grid {
  display: grid; gap: 40px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.4fr repeat(3, 1fr); } }
.site-footer h4 {
  font-family: var(--font-sans); font-size: .82rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--brand-gold); margin-bottom: 20px; font-weight: 600;
}
.site-footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.site-footer a { color: rgba(245,239,227,.78); font-size: .92rem; }
.site-footer a:hover { color: var(--brand-gold); }
.footer-brand { font-family: var(--font-display); font-size: 1.75rem; color: var(--cream); margin-bottom: 16px; }
.footer-bottom {
  margin-top: 56px; padding-top: 24px; border-top: 1px solid rgba(245,239,227,.1);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px;
  font-size: .8rem; color: rgba(245,239,227,.55);
}

/* WhatsApp floating */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 95;
  background: var(--whatsapp); color: white;
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(37,211,102,.35);
  transition: transform .25s var(--easing);
}
.wa-float:hover { transform: scale(1.06); color: white; }
.wa-float svg { width: 28px; height: 28px; }

/* Mobile sticky bar */
.mobile-sticky {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: var(--brand-deep); display: flex;
  border-top: 1px solid rgba(255,255,255,.08);
}
@media (min-width: 768px) { .mobile-sticky { display: none; } }
.mobile-sticky a {
  flex: 1; padding: 14px 8px; text-align: center;
  color: var(--ivory); font-size: .85rem; letter-spacing: .04em;
  border-right: 1px solid rgba(255,255,255,.08);
}
.mobile-sticky a:last-child { border-right: 0; background: var(--brand-gold); color: var(--white); font-weight: 600; }
.mobile-sticky a:hover { color: var(--ivory); background: var(--brand-deep-soft); }

/* Sub-nav (AERIUM section anchor nav) */
.sub-nav {
  position: sticky; top: 72px; z-index: 50;
  background: var(--ivory); border-bottom: 1px solid var(--line);
  font-size: .88rem;
}
.sub-nav-inner {
  display: flex; gap: 28px; overflow-x: auto;
  padding: 16px var(--gutter-mobile); white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.sub-nav-inner::-webkit-scrollbar { display: none; }
@media (min-width: 768px) { .sub-nav-inner { padding: 16px var(--gutter-desktop); justify-content: center; } }
.sub-nav a { color: var(--ink-soft); font-weight: 500; }
.sub-nav a:hover, .sub-nav a.active { color: var(--brand-deep); }

/* Quick-glance bar */
.quick-glance {
  background: var(--ivory-warm);
  padding: 24px 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.quick-glance-inner {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0;
  text-align: center;
}
@media (min-width: 768px) { .quick-glance-inner { grid-template-columns: repeat(4, 1fr); } }
.qg-item { padding: 12px; border-right: 1px solid var(--line); }
.qg-item:last-child { border-right: 0; }
.qg-item:nth-child(2n) { border-right: 0; }
@media (min-width: 768px) { .qg-item:nth-child(2n) { border-right: 1px solid var(--line); } .qg-item:last-child { border-right: 0; } }
.qg-item strong { display: block; font-family: var(--font-display); font-size: 1.25rem; color: var(--brand-deep); }
.qg-item span { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--mute); }

/* Breadcrumbs */
.crumbs { font-size: .82rem; color: var(--mute); padding: 24px 0 0; }
.crumbs a { color: var(--mute); }
.crumbs a:hover { color: var(--brand-deep); }
.crumbs span { margin: 0 8px; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(12px); transition: opacity .8s var(--easing), transform .8s var(--easing); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* Utilities */
.center { text-align: center; }
.mb-1 { margin-bottom: 8px; } .mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; } .mb-6 { margin-bottom: 48px; } .mb-8 { margin-bottom: 64px; }
.mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mt-4 { margin-top: 32px; }
.full-img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.rounded { border-radius: var(--radius); overflow: hidden; }

/* Floor plan layout */
.plan-block { padding: 64px 0; border-bottom: 1px solid var(--line); }
.plan-block:last-child { border-bottom: 0; }
.plan-grid { display: grid; gap: 32px; grid-template-columns: 1fr; }
@media (min-width: 992px) { .plan-grid { grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; } }
.spec-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--line); }
.spec-list dt { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--mute); }
.spec-list dd { font-family: var(--font-display); font-size: 1.1rem; color: var(--brand-deep); margin: 0; }

/* Newsletter strip */
.newsletter { padding: 64px 0; }
.newsletter-inner { background: var(--cream); border: 1px solid var(--line); padding: 48px; text-align: center; }
.newsletter form { display: flex; gap: 12px; max-width: 480px; margin: 24px auto 0; flex-wrap: wrap; }
.newsletter input { flex: 1; min-width: 200px; padding: 14px 20px; border: 1px solid var(--line); background: var(--white); }
.newsletter input:focus { outline: 0; border-color: var(--brand-gold); }

/* Form alert */
.alert { padding: 14px 18px; margin-bottom: 16px; border: 1px solid; font-size: .9rem; }
.alert-success { color: var(--success); border-color: var(--success); background: rgba(47,125,91,.06); }
.alert-error { color: var(--danger); border-color: var(--danger); background: rgba(157,43,43,.06); }

/* Print-safe */
@media print {
  .site-header, .mobile-sticky, .wa-float, .pre-cta { display: none; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* Logo */
.site-logo { max-height: 48px; width: auto; display: block; }

/* ==========================================================================
   MOBILE FIXES — max-width: 767px
   ========================================================================== */
@media (max-width: 767px) {

  /* Logo — nav 72px hai, 52px sahi balance hai */
  .site-logo { max-height: 52px; }

  /* Hero text left padding — jahan container class nahi hai hero-inner par */
  .hero-inner:not(.container) {
    padding-left: var(--gutter-mobile);
    padding-right: var(--gutter-mobile);
  }

  /* WA float — mobile sticky bar mein WA already hai, overlap rokne ke liye hide */
  .wa-float { display: none; }

  /* Body bottom padding — mobile sticky bar ke neeche content chup na jaye */
  body { padding-bottom: 56px; }

  /* Hero padding — 120px bahut zyada tha mobile par */
  .hero-inner { padding-top: 72px; padding-bottom: 72px; }

  /* Form padding — tight screens ke liye */
  .form { padding: 24px; }

  /* Newsletter form — column layout aur full-width button */
  .newsletter-inner { padding: 32px 20px; }
  .newsletter form { flex-direction: column; }
  .newsletter form .btn { width: 100%; text-align: center; }

  /* Mobile menu Enquire button — .mobile-menu a ka override theek karo */
  .mobile-menu a.btn-primary {
    font-family: var(--font-sans);
    font-size: .95rem;
    color: var(--ivory);
    display: inline-block;
    margin-top: 8px;
  }
  .mobile-menu a.btn-primary:hover { color: var(--ivory); }

  /* H1 font size mobile par reduce karo — 40px bahut bada tha */
  h1, .h1 { font-size: clamp(1.75rem, 7vw, 2.25rem); }

  /* Feature section inline margin-left button fix */
  .feature-project .btn { margin-left: 0 !important; }
  .feature-project .hero-ctas,
  .feature-project > div > div { gap: 12px; }

  /* pre-cta section padding reduce */
  .pre-cta { padding: 64px 0; }

  /* Footer padding reduce */
  footer.site-footer { padding: 56px 0 40px; }
}
