/* ===== Design Tokens ===== */
:root {
  --gold: #f2a900;
  --gold-light: #fbe9c0;
  --gold-dark: #b9820a;
  --red: #b8592f;
  --red-dark: #92431f;
  --ink: #2a2420;
  --ink-dark: #201b16;
  --ink-soft: #6b6055;
  --cream: #fdf8ee;
  --cream-alt: #f6ecd6;
  --border: #ecdfc0;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(20, 15, 5, 0.08);
  --shadow-lg: 0 20px 50px rgba(20, 15, 5, 0.14);
  --container: 1160px;
  --font-head: "Poppins", sans-serif;
  --font-body: "Inter", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: var(--font-head); margin: 0 0 .5em; color: var(--ink-dark); line-height: 1.2; }
p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; margin: 0; padding: 0; }
svg { fill: currentColor; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink-dark);
  color: #fff;
  padding: 10px 16px;
  z-index: 200;
}
.skip-link:focus { left: 10px; top: 10px; }

.icon { width: 18px; height: 18px; }
.icon-lg { width: 30px; height: 30px; flex-shrink: 0; color: var(--red); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--ink-dark); box-shadow: 0 8px 20px rgba(242, 169, 0, .35); }
.btn-primary:hover { box-shadow: 0 12px 26px rgba(242, 169, 0, .45); }
.btn-whatsapp { background: #fff; color: var(--ink-dark); border: 1.5px solid var(--border); box-shadow: var(--shadow); }
.btn-whatsapp:hover { border-color: var(--gold); box-shadow: var(--shadow-lg); }
.btn-ghost { background: transparent; border: 1.5px solid var(--ink-dark); color: var(--ink-dark); }
.btn-ghost:hover { background: var(--ink-dark); color: #fff; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 248, 238, .92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .2s ease;
}
.site-header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.06); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
}
.brand-logo { height: 48px; width: auto; }
.nav-list {
  display: flex;
  gap: 32px;
}
.nav-link {
  font-weight: 600;
  font-size: .95rem;
  color: var(--ink-dark);
  position: relative;
  padding: 6px 0;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .2s ease;
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 14px; }
.header-call { padding: 10px 18px; font-size: .9rem; }
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none; border: none; cursor: pointer;
}
.menu-toggle span { display: block; height: 2.5px; background: var(--ink-dark); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }

/* ===== Hero ===== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 48px 0 40px;
  background: linear-gradient(180deg, #fffaf0 0%, var(--cream) 60%);
}
.hero-glow {
  position: absolute;
  top: -180px; right: -120px;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242,169,0,.20) 0%, rgba(242,169,0,0) 70%);
  pointer-events: none;
}
.hero-bg {
  position: absolute;
  inset: 0 0 0 auto;
  width: 46%;
  min-width: 340px;
  opacity: .16;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to left, black 55%, transparent 100%);
  mask-image: linear-gradient(to left, black 55%, transparent 100%);
}
.skyline { width: 100%; height: 100%; }
.hero-inner { position: relative; z-index: 1; }
.hero-content { max-width: 700px; }
.eyebrow {
  display: inline-block;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--red);
  background: var(--gold-light);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  font-weight: 800;
}
.hero h1 span { color: var(--red); }
.hero-sub {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 620px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; margin: 24px 0 28px; }
.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  padding-top: 22px;
}
.stat { position: relative; padding-left: 18px; }
.stat::before {
  content: "";
  position: absolute; left: 0; top: 6px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
}
.stat strong { display: block; font-family: var(--font-head); font-size: 1.8rem; color: var(--ink-dark); font-weight: 800; }
.stat span { font-size: .85rem; color: var(--ink-soft); }

/* ===== Section base ===== */
.section { padding: 90px 0; }
.section-alt { background: var(--cream-alt); }
.section-tight-bottom { padding-bottom: 30px; }
.section-tight { padding-top: 30px; }
.section-head { max-width: 680px; margin: 0 auto 50px; text-align: center; }
.section-head h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
.section-sub { color: var(--ink-soft); font-size: 1.05rem; }

/* ===== About ===== */
.about-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; align-items: center; }
.about-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 40px 30px;
  text-align: center;
  border: 1px solid var(--border);
}
.about-logo { margin: 0 auto 18px; max-width: 220px; }
.about-est { font-weight: 600; color: var(--ink-soft); font-size: .9rem; margin: 0; }
.about-content h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.about-points { display: grid; gap: 20px; margin-top: 28px; }
.point { display: flex; gap: 16px; align-items: flex-start; }
.point strong { display: block; color: var(--ink-dark); margin-bottom: 4px; }
.point p { margin: 0; color: var(--ink-soft); font-size: .95rem; }

/* ===== Services ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.service-icon svg { width: 28px; height: 28px; fill: none; stroke: #fff; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { font-size: 1.15rem; }
.service-card p { color: var(--ink-soft); font-size: .95rem; margin: 0; }

/* ===== Spotlight (Rohini Sector 34) ===== */
.spotlight {
  background: var(--cream-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 90px 0;
}
.spotlight-head { max-width: 720px; margin: 0 auto 50px; text-align: center; }
.spotlight-head h2 { font-size: clamp(1.7rem, 3.5vw, 2.3rem); }
.spotlight-sub { color: var(--ink-soft); }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 60px;
}
.benefit {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: var(--shadow);
}
.benefit svg { width: 30px; height: 30px; fill: none; stroke: var(--gold-dark); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; margin-bottom: 12px; }
.benefit h4 { color: var(--ink-dark); font-size: 1.05rem; margin-bottom: 6px; }
.benefit p { color: var(--ink-soft); font-size: .9rem; margin: 0; }

.price-table-wrap {
  background: #fff;
  color: var(--ink);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.price-title { text-align: center; margin-bottom: 8px; color: var(--ink-dark); }
.price-note { text-align: center; color: var(--ink-soft); font-size: .9rem; font-style: italic; margin-bottom: 28px; }
.size-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-bottom: 30px;
}
.size-chip {
  text-align: center;
  background: var(--gold-light);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 10px;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--ink-dark);
}
.size-chip span { display: block; font-family: var(--font-body); font-weight: 500; font-size: .78rem; color: var(--ink-soft); margin-top: 4px; }
.price-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 20px;
  margin-bottom: 30px;
}
.price-features li { position: relative; padding-left: 26px; font-size: .92rem; color: var(--ink-soft); }
.price-features li a, .why-card h3 a { color: inherit; border-bottom: 1px dotted var(--gold-dark); }
.price-features li a:hover, .why-card h3 a:hover { color: var(--gold-dark); }
.price-features li::before {
  content: "";
  position: absolute; left: 0; top: 6px;
  width: 16px; height: 16px;
  background: var(--gold-dark);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") no-repeat center / contain;
}
.price-table-wrap .btn { display: flex; width: fit-content; margin: 0 auto; }

/* ===== Why Us ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  text-align: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 20px;
  box-shadow: var(--shadow);
}
.why-num {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2rem;
  color: var(--gold-dark);
  margin-bottom: 10px;
}
.why-card h3 { font-size: 1.05rem; }
.why-card p { color: var(--ink-soft); font-size: .9rem; margin: 0; }

/* ===== Useful Links ===== */
.resources-card {
  display: flex;
  align-items: center;
  gap: 22px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  box-shadow: var(--shadow);
  max-width: 720px;
  margin: 0 auto;
}
.resources-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--gold-light);
  color: var(--gold-dark);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.resources-icon svg { width: 26px; height: 26px; }
.resources-text { flex: 1; }
.resources-text strong { display: block; color: var(--ink-dark); margin-bottom: 2px; }
.resources-text p { margin: 0; color: var(--ink-soft); font-size: .92rem; }
.resources-card .btn { flex-shrink: 0; }

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 50px;
  align-items: start;
}
.contact-cards { display: grid; gap: 16px; margin: 30px 0; }
.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 20px;
}
.contact-card strong { display: block; color: var(--ink-dark); font-size: .95rem; }
.contact-card a, .contact-card span { color: var(--ink-soft); font-size: .92rem; }
.contact-card a:hover { color: var(--red); }
.contact-buttons { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; }
.map-link { display: inline-block; margin-bottom: 24px; font-size: .9rem; font-weight: 600; color: var(--gold-dark); border-bottom: 1px solid var(--gold-dark); }
.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 380px;
  border: 1px solid var(--border);
}
.contact-map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; }

/* ===== Footer ===== */
.site-footer { background: var(--ink-dark); color: #cabfae; padding: 60px 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-logo { height: 42px; margin-bottom: 14px; border-radius: 6px; }
.footer-brand p { color: #a89d8c; font-size: .9rem; max-width: 280px; }
.footer-links, .footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-links a, .footer-contact a { color: #cabfae; font-size: .92rem; }
.footer-links a:hover, .footer-contact a:hover { color: var(--gold); }
.footer-bottom { text-align: center; padding: 20px 0; font-size: .82rem; color: #8a8072; }

/* ===== Back to top ===== */
.back-to-top {
  position: fixed;
  right: 24px; bottom: 24px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--ink-dark);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  z-index: 90;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top svg { width: 22px; height: 22px; }

/* ===== Blog ===== */
.breadcrumb { font-size: .85rem; color: var(--ink-soft); margin-bottom: 14px; }
.breadcrumb a { color: var(--ink-soft); border-bottom: 1px dotted var(--border); }
.breadcrumb a:hover { color: var(--gold-dark); }
.breadcrumb span { margin: 0 6px; }
.blog-hero { padding-bottom: 20px; }
.blog-title { font-size: clamp(1.9rem, 4vw, 2.8rem); max-width: 780px; }
.blog-meta { display: flex; gap: 8px; flex-wrap: wrap; color: var(--ink-soft); font-size: .88rem; margin-bottom: 18px; }
.blog-lede { max-width: 760px; }

.blog-container { max-width: 800px; }
.blog-article h2 { font-size: 1.5rem; margin-top: 44px; }
.blog-article h2:first-of-type { margin-top: 0; }
.blog-article p { color: var(--ink-soft); font-size: 1.02rem; }
.blog-reasons { margin: 28px 0 8px; grid-template-columns: repeat(2, 1fr); }

.faq-list { display: grid; gap: 16px; margin-top: 22px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--shadow);
}
.faq-item h3 { font-size: 1.05rem; margin-bottom: 8px; }
.faq-item p { margin: 0; }

.blog-cta {
  margin-top: 50px;
  background: var(--cream-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 30px;
  text-align: center;
}
.blog-cta h3 { margin-bottom: 8px; }
.blog-cta-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-top: 18px; }

/* Blog listing */
.blog-card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-card-img { width: 100%; height: 140px; object-fit: contain; background: var(--cream-alt); padding: 20px; }
.blog-card-body { padding: 22px 24px; }
.blog-card-tag {
  display: inline-block;
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}
.blog-card-body h2 { font-size: 1.15rem; }
.blog-card-body p { color: var(--ink-soft); font-size: .92rem; }
.blog-card-link { font-weight: 600; color: var(--gold-dark); font-size: .92rem; }

@media (max-width: 760px) {
  .blog-reasons { grid-template-columns: 1fr; }
  .blog-card-grid { grid-template-columns: 1fr; }
}

/* ===== Scroll reveal ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-media { order: 2; max-width: 340px; margin: 0 auto; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-map { min-height: 320px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .size-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 760px) {
  .nav {
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 12px 24px rgba(0,0,0,.08);
    transform: translateY(-130%);
    opacity: 0;
    transition: transform .25s ease, opacity .25s ease;
  }
  .nav.open { transform: translateY(0); opacity: 1; }
  .nav-list { flex-direction: column; padding: 20px 24px; gap: 18px; }
  .header-call { display: none; }
  .menu-toggle { display: flex; }
  .price-features { grid-template-columns: 1fr 1fr; }
  .resources-card { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .price-features { grid-template-columns: 1fr; }
  .price-table-wrap { padding: 26px 18px; }
  .size-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { padding: 32px 0 32px; }
  .hero-stats { gap: 24px; }
  .hero-bg { width: 60%; min-width: 0; opacity: .12; }
  .hero-glow { width: 320px; height: 320px; top: -120px; right: -100px; }
  .footer-inner { grid-template-columns: 1fr; text-align: left; }
}
