/* =========================================================
   Kornerstone — Complete CSS (Final v7)
   All requested changes implemented
   ========================================================= */

/* ---------- Fonts ---------- */
@font-face {
  font-family: "ProductSans-Regular";
  src: url("../assets/fonts/ProductSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ProductSans-Bold";
  src: url("../assets/fonts/ProductSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Wondar-Quason";
  src: url("../assets/fonts/Wondar-Quason.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ---------- Theme Variables ---------- */
:root {
  --brand: #b8a090;
  --brand-700: #a58775;
  --ink: #232323;
  --muted: #5a5a5a;
  --white: #ffffff;
  --shadow-sm: 0 8px 28px rgba(0, 0, 0, 0.09);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
  --blur: saturate(140%) blur(10px);
  --nav-height: 72px;
}

/* ---------- Reset ---------- */
* {
  box-sizing: border-box;
}
html, body {
  margin: 0;
  padding: 0;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  font: inherit;
  cursor: pointer;
}
body {
  font-family: "ProductSans-Regular", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  line-height: 1.6;
  background: radial-gradient(1200px 700px at 10% 0%, #ffffff 10%, #fbf8f6 60%, #ffffff 100%);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ---------- Decorative Background ---------- */
.bg-orb {
  position: fixed;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(184,160,144,.18), rgba(184,160,144,.06) 55%, transparent 75%);
  filter: blur(14px);
  z-index: -3;
  animation: floatY 14s ease-in-out infinite;
  pointer-events: none;
}
.bg-orb-a { left: -6%; top: 4%; animation-duration: 16s; }
.bg-orb-b { right: -8%; bottom: -10vh; animation-duration: 18s; }

@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(rgba(0,0,0,.025) 1px, transparent 1px),
    radial-gradient(rgba(0,0,0,.018) 1px, transparent 1px);
  background-size: 20px 20px, 30px 30px;
  background-position: 0 0, 6px 6px;
  opacity: .48;
  z-index: -4;
  pointer-events: none;
  mix-blend-mode: multiply;
}

/* ---------- Layout Utilities ---------- */
.container { width: min(1180px, 96%); margin-inline: auto; padding: 0 12px; }
.section { padding: 72px 0; }
.flex-center-col { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.center-btn { display: flex; justify-content: center; margin-top: 12px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 24px;
  padding: 10px 18px;
  font-weight: 700;
  letter-spacing: .3px;
  transition: all .18s ease;
}
.btn-outline {
  border: 1.5px solid var(--brand);
  color: var(--brand);
  background: transparent;
  box-shadow: 0 2px 10px rgba(184,160,144,.12);
  padding: 8px 14px;
}
.btn-outline:hover { background: var(--brand); color: #fff; }
.btn-solid {
  background: var(--brand);
  color: #fff;
  border: 1.5px solid var(--brand);
  box-shadow: 0 12px 28px rgba(168,138,116,.12);
}
.btn-text {
  color: var(--ink);
  background: transparent;
  border: 1.5px solid transparent;
  padding: 8px 14px;
}
.btn-shimmer {
  position: relative;
  overflow: hidden;
  background: var(--brand);
  color: #fff;
  border: 1.5px solid var(--brand);
  box-shadow: var(--shadow-sm);
}
.btn-shimmer::before {
  content: "";
  position: absolute;
  inset: 0% auto 0 -140%;
  width: 45%;
  transform: skewX(-20deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.45), transparent);
  animation: shimmer 2.6s infinite;
}
@keyframes shimmer {
  0% { transform: translateX(0) skewX(-20deg);}
  60%,100% { transform: translateX(360%) skewX(-20deg);}
}
.btn.full { width: 100%; }

/* Glass style button (Talk to an Expert) */
.btn-glass {
  background: var(--brand);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(10px);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.btn-glass::before {
  content: "";
  position: absolute;
  top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.6), transparent);
  transform: skewX(-20deg);
  animation: shine 3s infinite;
}
@keyframes shine {
  0% { left: -75%; }
  100% { left: 125%; }
}

/* ---------- Navbar ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 40px;
  background: rgba(255,255,255,.9);
  backdrop-filter: var(--blur);
  border-bottom: 1px solid rgba(184,160,144,.18);
  box-shadow: 0 8px 26px rgba(0,0,0,.06);
  height: var(--nav-height);
  margin-bottom: -20px;
}
.nav-left, .nav-right { width: 170px; display: flex; align-items: center; gap: 10px; }
.nav-center { flex: 1; display: flex; justify-content: center; align-items: center; }
.nav-logo { height: 44px; }
.nav-logo-left { display: none; }
.nav-logo-center { display: block; }

@media (max-width:920px){
  .navbar { padding: 10px 18px; }
  .nav-logo-left { display: block; height: 38px; }
  .nav-logo-center { display: none; }
  .nav-right .btn-outline { padding: 6px 10px; font-size: 13px; border-radius: 18px; height: 34px !important; line-height: 34px !important; padding: 0 16px !important; }
}

/* ---------- Hero ---------- */
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}
.hero-copy { display: flex; flex-direction: column; justify-content: center; }
.headline {
  font-family: "Wondar-Quason", serif;
  font-size: 46px;
  color: var(--brand);
  margin: 0;
  letter-spacing: 2px;
}
.subhead { color: #333; font-size: 16px; max-width: 720px; margin: 10px 0 18px; }
.hero-art { position: relative; z-index: 1; display: flex; align-items: center; justify-content: center; width: 100%; }
.hero-art img {
  width: 100%;
  border-radius: 14px;
  box-shadow: var(--shadow);
  object-fit: cover;
  position: relative;
  z-index: 2;
}
.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px dashed rgba(184,160,144,.45);
  pointer-events: none;
  z-index: 1;
}

.ring-1 { width: 82%; height: 82%; top: 9%; left: 9%; animation: spin 20s linear infinite; }
.ring-2 { width: 58%; height: 58%; top: 21%; left: 21%; animation: spin 26s linear infinite reverse; }
.ring-3 { width: 95%; height: 95%; top: 2.5%; left: 2.5%; border: 1.5px dashed rgba(184,160,144,.3); animation: spin 32s linear infinite; }
.ring-4 { width: 45%; height: 45%; top: 27.5%; left: 27.5%; border: 1.5px dashed rgba(184,160,144,.25); animation: spin 18s linear infinite reverse; }

@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width:980px){
  .hero-inner { display: flex; flex-direction: column; align-items: center; gap: 16px; padding-top: 10px; }
  .headline { font-size: 32px; text-align: center; order: 1; }
  .hero-art { order: 2; width: 95%; }
  .subhead { order: 3; text-align: center; font-size: 15px; }
  .hero-cta { order: 4; display: flex; gap: 10px; justify-content: center; }
}

.hero {
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

.bg-orb {
  position: fixed;
  z-index: 0;
}

.navbar {
  z-index: 10;
}

/* ---------- Section Titles ---------- */
.section-title {
  font-family: "Wondar-Quason", serif;
  font-size: 34px;
  color: var(--brand);
  text-align: center;
  margin: 0;
  letter-spacing: 1.6px;
}

/* Underline for section titles (e.g. Why Choose Kornerstone, What We Offer) */
.section-title::after {
  content: "";
  display: block;
  width: 120px;
  height: 3px;
  margin: 12px auto 0;   /* more breathing room below title */
  background: linear-gradient(to right, var(--brand), transparent);
  border-radius: 2px;
}

/* Underline for hero headline (Our Services) */
.headline::after {
  content: "";
  display: block;
  width: 120px;
  height: 3px;
  margin: 0px 0 10px;      /* closer to text */
  margin-left: 0;        /* aligned left instead of centered */
  background: linear-gradient(to right, var(--brand), transparent);
  border-radius: 2px;
}

/* =====================================
   WHAT WE DO – Redevelopment Slide Cards
   Ultra Premium | Brand Aligned
   ===================================== */

/* Force vertical stacking for this section */
#what-we-do {
  flex-direction: column;
}

/* Grid layout */
.redevelopment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
  width: 100%;
}

/* Card */
.redevelopment-card {
  position: relative;
  height: 420px;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.16);
}

/* Image */
.redevelopment-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay base – premium brand gradient */
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(184, 160, 144, 0.96),
    rgba(165, 135, 117, 0.96)
  );
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.55s ease, opacity 0.45s ease;
  opacity: 0;
}

/* Direction control */
.slide-right .slide-overlay {
  transform: translateX(100%);
}

.slide-left .slide-overlay {
  transform: translateX(-100%);
}

/* Hover */
.redevelopment-card:hover .slide-overlay {
  transform: translateX(0);
  opacity: 1;
}

/* Content */
.slide-content {
  padding: 42px 46px;
}

.slide-content h3 {
  font-family: "Wondar-Quason", serif;
  font-size: 26px;
  margin-bottom: 18px;
  letter-spacing: 1.4px;
  color: #ffffff;
}

/* List */
.slide-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.slide-content ul li {
  position: relative;
  padding-left: 26px;
  font-size: 15.5px;
  line-height: 1.7;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.95);
}

/* Custom premium bullet */
.slide-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.18);
}

/* =========================
   Mobile – No Hover Needed
   ========================= */

@media (max-width: 768px) {

  .redevelopment-grid {
    grid-template-columns: 1fr;
  }

  .redevelopment-card {
    height: auto;
  }

  .redevelopment-card img {
    height: 240px;
  }

  .slide-overlay {
    position: relative;
    transform: none !important;
    opacity: 1;
  }

  .slide-content {
    padding: 26px 22px;
    text-align: left;
  }

  .slide-content h3 {
    font-size: 22px;
    margin-bottom: 14px;
    text-align: left;
  }

  .slide-content ul li {
    font-size: 14.5px;
    line-height: 1.65;
  }

}

/* ---------- Services Section ---------- */
.services-section {
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 36px;
  padding-bottom: 36px;
}
.services-intro-text { max-width: 1100px; text-align: center; color: var(--muted); margin: 0 0 8px; }
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 22px;
  margin-bottom: 15px;
  width: 100%;
  align-items: stretch;
}
@media (max-width:1100px){ .card-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width:640px){ .card-grid{ grid-template-columns: 1fr; } }

.feature-card {
  background: linear-gradient(180deg, rgba(255,255,255,.86), rgba(251,248,246,.88));
  border-radius: 14px;
  padding: 26px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(184,160,144,.12);
  transition: transform .35s cubic-bezier(.2,.9,.2,1), box-shadow .35s ease, opacity .45s ease;
  transform: translateY(0);
  opacity: 1;
}
.feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.feature-icon {
  width: 64px; height: 64px;
  border-radius: 12px;
  display: grid; place-items: center;
  margin-bottom: 12px;
  background: radial-gradient(circle at 30% 30%, rgba(184,160,144,.16), rgba(184,160,144,.05));
  transition: transform .28s ease;
}
.feature-icon img { width: 40px; height: 40px; transition: transform .28s ease; }
.feature-card:hover .feature-icon img { transform: scale(1.14); }
.feature-card h3 { margin: 6px 0 6px; font-size: 18px; letter-spacing: .8px; }
.feature-card p { margin: 0; color: var(--muted); font-size: 14px; }

/* ---------- What We Offer ---------- */
.what-we-offer { scroll-margin-top: 40px; }
.offer-block {
  display: flex; gap: 36px; align-items: center;
  margin: 56px 0;
  opacity: 0; transform: translateY(18px);
  transition: all .7s cubic-bezier(.2,.9,.2,1);
}
.offer-block.reverse { flex-direction: row-reverse; }
.offer-copy { flex: 1 1 50%; text-align: left; }
.offer-copy h3 { margin: 0 0 10px; font-size: 22px; letter-spacing: .8px; }
.offer-copy p { margin: 0; color: var(--muted); line-height: 1.6; }
.offer-media { flex: 1 1 50%; display: flex; align-items: center; justify-content: center; }
.media-wrap {
  width: 100%; height: 280px; overflow: hidden;
  border-radius: 12px; box-shadow: var(--shadow);
}
.media-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.9,.2,1);
}
.media-wrap:hover img { transform: scale(1.06); }

@media (max-width:1100px){ .media-wrap{ height: 300px; } }
@media (max-width:800px){
  .offer-block, .offer-block.reverse { flex-direction: column; }
  .offer-copy { text-align: center; }
  .media-wrap { height: 220px; }
}

/* Reduce top gap before "Why Choose Kornerstone" title */
#what-we-offer {
  padding-top: 35px; /* reduce from default 72px */
}

#what-we-offer .section-title {
  margin-top: 0;
}



/* ---------- Stats ---------- */
.stats {
  background: linear-gradient(135deg, #b8a090 0%, #a88976 100%);
  color: #fff;
  border-radius: 12px;
  padding: 50px;
  margin: 20px 0;
}
.stats .section-title { color: #fff; }
.stats-grid {
  display: flex; gap: 36px; justify-content: center;
  flex-wrap: wrap; align-items: center; letter-spacing: 1.2px;
}
.stat { text-align: center; min-width: 150px; }
.stat-num { font-weight: 800; font-size: 52px; line-height: 1; }
.stat-label { margin-top: 8px; font-size: 16px; }

/* Underline for section titles inside Track Record */
.stats .section-title::after {
  background: linear-gradient(to right, #fff, transparent); /* white underline */
  margin: 0px auto 20px;  /* reduce gap between title & underline */
}

/* ---------- CTA ---------- */
.cta { margin: 20px 0; padding: 36px 0; border-radius: 12px; background: transparent; }
.cta-copy { max-width: 760px; margin: 8px auto 18px; color: #3a2f29; text-align: center; }

/* ---------- Footer ---------- */
.footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  padding: 20px;
  background: #fff;
  border-top: 1px solid rgba(184,160,144,.18);
  box-shadow: 0 -6px 18px rgba(0,0,0,.04);
  text-align: center;
}
.footer-col, .footer-brand { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.footer a { font-size: 14px; }
.footer p { margin: 0; color: #555; font-size: 13px; }
.footer-logo { height: 42px; }
.footer .socials {
  display: flex;
  gap: 12px;   /* spacing between icons */
  justify-content: center;
  align-items: center;
}
.footer .socials img { width: 22px; height: 22px; }
.rera { font-weight: 700; }

/* ---------- Enquiry Modal ---------- */
.enquiry-modal {
  position: fixed; inset: 0;
  display: none; place-items: center;
  background: rgba(0,0,0,.55);
  z-index: 60;
}
.enquiry-modal.active { display: grid; }
.enquiry-content {
  width: min(92vw,420px);
  background: #fff;
  border-radius: 12px;
  padding: 22px;
  border: 1.5px solid rgba(184,160,144,.48);
  box-shadow: var(--shadow);
  position: relative;
}
.enquiry-close {
  position: absolute; top: 10px; right: 10px;
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: #f5f2f0; color: var(--brand);
  border: none; cursor: pointer;
  transition: transform .18s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,.06);
}
.enquiry-close:hover { background: var(--brand); color: #fff; transform: rotate(90deg); }

.enquiry-content h2 {
  margin: 0 0 12px;
  color: var(--brand);
  font-family: "ProductSans-Bold";
  text-align: center;
}
.contact-form {
  display: flex; flex-direction: column; gap: 6px;
  font-family: "ProductSans-Regular";
  font-size: 15px;
}
.contact-form label {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #222;
  margin-top: 8px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 8px;
  border: none;
  border-bottom: 1.5px solid #ccc;
  font-size: 16px; /* >=16px to prevent zoom on mobile */
  font-family: "ProductSans-Regular";
  outline: none;
  background: transparent;
  resize: none;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--brand);
  box-shadow: none;
}

#btn {
  display: block;
  margin: 12px auto 0;   /* ✅ centers the button horizontally */
  padding: 10px 18px;
  border: none;
  background: var(--brand);
  color: #fff;
  border-radius: 40px;
  font-weight: 700;
  width: 50%;            /* stays half-width */
  position: relative;
  overflow: hidden;
  font-size: 15px;
}

#btn:hover { transform: translateY(-1px); }
.check-box {
  width: 40px; height: 40px;
  border-radius: 25px;
  background: var(--brand);
  position: absolute;
  top: 50%; right: 10px;
  transform: translateY(-50%);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
}
#btn.active .check-box { opacity: 1; transition: .6s; }
svg path {
  stroke-width: 3; stroke: #fff;
  stroke-dasharray: 34; stroke-dashoffset: 34;
  stroke-linecap: round;
}
#btn.active svg path { stroke-dashoffset: 0; transition: .8s; transition-delay: .5s; }
.form-hint { font-size: 13px; color: #2f6f2f; min-height: 0px; margin-top: 0px; }

/* ---------- Reveal ---------- */
.reveal-up { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal-fade { opacity: 0; transition: opacity .7s ease; }
.reveal-slide { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal-up.show, .reveal-fade.show, .reveal-slide.show { opacity: 1; transform: none; }
.delay-1 { transition-delay: .12s !important; }
.delay-2 { transition-delay: .24s !important; }
.delay-3 { transition-delay: .36s !important; }

/* ---------- Responsive ---------- */
@media (max-width:980px){
  .section { padding: 40px 0; }
  .headline { font-size: 32px; letter-spacing: 1.6px; }
  .section-title { font-size: 26px; letter-spacing: 1.2px; }
  .feature-card h3 { font-size: 17px; }
  .feature-card p { font-size: 15px; }
  .stat-num { font-size: 40px; }
  .stat-label { font-size: 15px; }
  .media-wrap { height: 220px; }
  .container, .hero-inner, .card-grid, .offer-copy { text-align: center; }
  .offer-copy { order: 2; }
  .offer-media { order: 1; }
  .hero-art img { max-width: 98%; }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .bg-orb, .hero-ring, .btn-shimmer::before, .btn-glass::before,
  .reveal-up, .reveal-fade, .reveal-slide {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ===== Our Track Record title override ===== */
.stats .section-title.light {
  color: #fff !important;            /* make text white */
  letter-spacing: 3px !important;    /* increase spacing */
  font-weight: 700 !important;
  font-size: 34px !important;        /* adjust if too small */
  text-align: center;
}

.stats .section-title.light::after {
  content: "";
  display: block;
  width: 120px;
  height: 3px;
  margin: 0px auto 20px !important;     /* reduce gap */
  background: linear-gradient(to right, #fff, transparent) !important;
  border-radius: 2px;
}

/* CTA section title underline spacing */
.cta .section-title::after {
  margin: 0px auto 20px !important;  /* tighter gap */
}

/* ==========================
   📱 Mobile Adjustments (Final Clean)
   ========================== */
@media (max-width: 768px) {

  /* 1) NAVBAR */
  .nav-logo-left { height: 32px; width: auto; max-width: 180px; }
  .nav-right { justify-content: flex-end; margin-right: 10px; }
  .nav-right .btn-outline {
    height: 34px; line-height: 34px;
    font-size: 14px; padding: 0 16px;
    display: flex; align-items: center; justify-content: center;
  }

  /* 2) HERO — full width + correct order */
  .hero-inner {
    display: grid !important;
    grid-template-columns: 1fr;
    grid-template-areas:
      "headline"
      "hero-art"
      "subhead"
      "hero-cta";
    width: 100%;
  }
  .hero-copy { display: contents; }
  .headline { grid-area: headline; text-align: center; }
  .headline::after { margin: 8px auto 20px; }
  .hero-art { grid-area: hero-art; margin: 12px 0; width: 100%; }
  .hero-art img { width: 90%; max-width: 100%; height: auto; display: block; }
  .subhead { grid-area: subhead; font-size: 15px; padding: 0 8px; text-align: center; }
  .hero-cta { grid-area: hero-cta; display: flex; gap: 8px; justify-content: center; }
  .hero-cta .btn { font-size: 14px; padding: 8px 14px; }

  /* 3) WHY CHOOSE — smaller button */
  .services-bottom .btn { font-size: 14px; padding: 8px 14px; height: 36px; }

  /* 4) WHAT WE OFFER — enforce Header → Image → Description */
  .offer-block,
  .offer-block.reverse {
    display: grid !important;
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "media"
      "desc";
    text-align: center;
    align-items: start;
    row-gap: 6px;
  }
  .offer-copy { display: contents !important; }
  .offer-copy h3 {
    grid-area: title; font-size: 18px;
    margin: 0 0 4px !important;
  }
  .offer-media {
    grid-area: media; width: 100%;
    margin: 0 0 4px !important;
  }
  .offer-copy p {
    grid-area: desc; font-size: 14px;
    margin: 0 0 10px !important;
  }

  /* 5) FOOTER — stack + white background */
  .footer {
    display: flex !important;
    flex-direction: column;
    text-align: center;
    gap: 16px;
    background: #fff !important;
    color: #000 !important;
    position: relative !important;
    z-index: 9999 !important;
    box-shadow: 0 -6px 18px rgba(0,0,0,0.04) !important;
  }
  .footer-brand { order: 1 !important; margin-bottom: 12px; }
  .footer-col:last-of-type { order: 2 !important; margin-bottom: 12px; }
  .footer-col:first-of-type { order: 3 !important; }
  .footer::before, .footer::after { content: none !important; }
  .footer a, .footer p, .footer span, .footer div, .footer li { color: #000 !important; }
  .footer .socials img { filter: none !important; opacity: 1 !important; }

  /* GLOBAL: buttons + typography */
  .btn, .btn-outline, .btn-solid, .btn-glass, .btn-text {
    font-size: 14px; height: 36px; padding: 8px 16px;
  }
  .section-title { font-size: 22px; }
  .subhead, .services-intro-text, .offer-copy p { font-size: 14px; }

  /* TRACK RECORD heading */
  section.stats h2.section-title.light.reveal-up {
    font-size: 26px !important;
    line-height: 1.25 !important;
    letter-spacing: 0.1em !important; /* ≈2.6px at 26px font size */
    margin-bottom: 10px !important;
  }
  section.stats h2.section-title.light.reveal-up::after {
    width: 80px !important; height: 3px !important; margin-top: 8px !important;
  }

  /* Underline spacing adjustments */
  section.offer .section-title::after {
    margin-top: 6px !important; margin-bottom: 6px !important;
  }
  section.cta .section-title::after {
    margin-top: 14px !important; margin-bottom: 16px !important;
  }

  /* LIGHTER BACKGROUND */
  html, body {
    background: linear-gradient(180deg,#ffffff 0%,#fefefe 40%,#fcfcfc 100%) !important;
    background-color: #ffffff !important;
    background-attachment: scroll !important;
  }
  body::before { content: none !important; }
  .bg-orb, .bg-grid { display: none !important; }
}

/* Extra small phones */
@media (max-width: 480px) {
  section.stats h2.section-title.light.reveal-up {
    font-size: 24px !important;
    letter-spacing: 0.1em !important;
  }
  section.stats h2.section-title.light.reveal-up::after {
    width: 64px !important;
  }
}

/* 📱 Mobile: Enquiry Modal (Final Polished Version) */
@media (max-width: 768px) {

  /* Overlay with stronger blur, hidden by default */
  .enquiry-modal {
    position: fixed !important;
    inset: 0;
    display: none; /* hidden by default */
    align-items: center;
    justify-content: center;
    padding: 16px;
    z-index: 99999 !important;            /* above footer/header */
    backdrop-filter: blur(12px) !important;
    background: rgba(0, 0, 0, 0.45) !important;
    transition: opacity 0.3s ease;
  }

  /* Show modal when active */
  .enquiry-modal.active {
    display: flex !important;
  }

  /* Modal content box */
  .enquiry-modal .enquiry-content {
    width: 94% !important;                /* ✅ wider than before */
    max-width: 420px !important;          /* more natural width */
    padding: 20px 18px !important;
    border-radius: 14px !important;
    background: #ffffff !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1) !important;
    position: relative;
    max-height: calc(100vh - 60px) !important;
    overflow-y: auto !important;
  }

  /* Close (X) button with round bg + animation */
  .enquiry-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease, background 0.25s ease;
    cursor: pointer;
  }
  .enquiry-close:hover {
    transform: rotate(90deg);
    background: rgba(0,0,0,0.15);
  }
  .enquiry-close svg {
    stroke: #000;
    width: 16px;
    height: 16px;
  }

  /* Heading */
  .enquiry-content h2 {
    font-size: 22px;
    margin: 0 0 16px;
    text-align: center;
    font-weight: 600;
    color: #232323;
  }

  /* Form styling */
  .contact-form {
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .contact-form label {
    font-size: 14px;                       /* ✅ bigger than placeholder */
    margin-bottom: 0px;
    font-weight: 600;
    color: #333;
  }

  /* Inputs and textarea with underline style */
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    font-size: 16px;                       /* ✅ no iOS zoom */
    padding: 8px 6px;
    margin-bottom: 5px;
    border: none;
    border-bottom: 2px solid #ddd;         /* ✅ underline style */
    background: transparent;
    border-radius: 0 0 6px 6px;            /* slight curve at ends */
    transition: border-color 0.25s ease;
  }
  .contact-form input:focus,
  .contact-form textarea:focus {
    outline: none;
    border-bottom-color: var(--brand, #b8a090);
  }

  /* Message field → single line */
  .contact-form textarea {
    height: 35px !important;
    resize: none;
  }

  /* Submit button with tick animation */
  .contact-form button {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px;
    font-size: 15px;
    height: 42px;
    padding: 0 28px;
    border-radius: 40px;                   /* pill button */
    margin: 14px auto 0 auto;
    background: var(--brand, #b8a090);
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.2s ease;
  }
  .contact-form button:hover {
    background: var(--brand-700, #a58775);
    transform: translateY(-1px);
  }

  /* ✅ tick animation preserved */
  .contact-form button .check-box svg path {
    stroke: #fff;
    stroke-width: 3;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    transition: stroke-dashoffset 0.35s ease;
  }
  .contact-form button.success .check-box svg path {
    stroke-dashoffset: 0;
  }

  /* Hint text */
  .contact-form .form-hint {
    font-size: 12px;
    margin-top: 8px;
    margin-bottom: -5px;
    text-align: center;
    color: #666;
  }
  
    /* Mobile-friendly X animation on active modal */
  .enquiry-modal.active .enquiry-close {
    transform: rotate(0deg); /* reset default */
    transition: transform 0.25s ease, background 0.25s ease;
  }

  .enquiry-close:active {
    transform: rotate(90deg);
  }

}

@media (max-width: 768px) {
  .hero {
    margin-top: 50px !important;   /* space from navbar */
    margin-bottom: 50px !important; /* bottom gap */
    padding: 0 !important;
    min-height: auto !important;
  }

  .hero-inner {
    margin: 0 !important;
    padding: 0 !important;
    display: grid !important;
    grid-template-columns: 1fr;
    grid-template-areas:
      "headline"
      "hero-art"
      "subhead"
      "hero-cta";
    gap: 16px !important; /* space between grid items */
  }

  .headline {
    margin-bottom: 8px !important;
  }

  .headline::after {
    margin: 6px auto 16px !important; /* extra spacing below headline */
  }

  .hero-art {
    margin: 10px 0 !important; /* more space around image */
  }

  .subhead {
    margin-bottom: 16px !important; /* space before CTA */
    padding: 0 12px !important;
  }

  .hero-cta {
    gap: 10px !important; /* button spacing */
  }
}

/* =====================================
   Redevelopment Landscape – Info Cards
   ===================================== */

.landscape-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin: 26px 0;
  width: 100%;
}

.landscape-card {
  background: rgba(184, 160, 144, 0.12);
  border: 1px solid rgba(184, 160, 144, 0.25);
  border-radius: 12px;
  padding: 18px 16px;
  text-align: center;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.landscape-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

/* Subtle hover polish */
.landscape-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
}

/* =========================
   Tablet & Mobile
   ========================= */

@media (max-width: 1024px) {
  .landscape-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .landscape-cards {
    grid-template-columns: 1fr;
  }

  .landscape-card {
    text-align: center;
    padding: 16px;
  }

  .landscape-card p {
    font-size: 14px;
  }

  .landscape-card:hover {
    transform: none;
    box-shadow: none;
  }
}

/* =====================================
   Independent Advisor – Editorial Section
   ===================================== */

.independent-advisor-editorial {
  padding-top: 20px;
}

.independent-advisor-editorial .advisor-editorial-content {
  max-width: 920px;
  margin: 0 auto;
}

.independent-advisor-editorial .section-title {
  margin-bottom: 22px;
}

/* Insight Highlight */
.advisor-insight-box {
  margin: 28px 0;
  padding: 22px 26px;
  border-left: 4px solid var(--brand);
  background: rgba(184, 160, 144, 0.10);
}

.advisor-insight-box p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--muted);
}

/* CTA Group */
.advisor-cta-group {
  display: flex;
  gap: 16px;
  margin-top: 36px;
  justify-content: center;
}

/* Ensure Primary Button is Visible on Editorial Section */

.independent-advisor-editorial .btn-primary {
  background: var(--brand);
  border-color: var(--brand);
  color: #ffffff;
}

.independent-advisor-editorial .btn-primary:hover {
  background: rgba(165, 135, 117, 0.95);
  border-color: rgba(165, 135, 117, 0.95);
}


/* =====================================
   Secondary Button Tone – Developer CTA
   ===================================== */

.btn-secondary-tone {
  background: rgba(184, 160, 144, 0.85);
  border-color: rgba(184, 160, 144, 0.85);
  color: #ffffff;
}

.btn-secondary-tone:hover {
  background: rgba(165, 135, 117, 0.95);
  border-color: rgba(165, 135, 117, 0.95);
}

/* =========================
   Mobile
   ========================= */

@media (max-width: 768px) {

  .advisor-cta-group {
    flex-direction: column;
  }

  .advisor-insight-box {
    padding: 18px 20px;
  }

}


/* =====================================
   Our Role in Redevelopment in Mumbai
   ===================================== */

.redevelopment-role {
  padding-top: 32px;
}

/* Intro narrative */
.redevelopment-role-intro {
  max-width: 960px;
  margin: 0 auto 42px;
  text-align: center;
}

.redevelopment-role-intro p {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 18px;
}

/* Advisory pillars */
.redevelopment-role-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Pillar */
.pillar {
  background: rgba(184, 160, 144, 0.10);
  border: 1px solid rgba(184, 160, 144, 0.30);
  padding: 26px 24px;
  text-align: center;
}

.pillar h4 {
  font-size: 16px;
  margin-bottom: 10px;
  color: var(--text);
}

.pillar p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--muted);
}

/* =========================
   Mobile
   ========================= */

@media (max-width: 768px) {

  .redevelopment-role {
    padding-top: 22px;
  }

  .redevelopment-role-intro {
    margin-bottom: 28px;
  }

  .redevelopment-role-intro p {
    font-size: 15px;
    text-align: center;
  }

  .redevelopment-role-pillars {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pillar {
    text-align: center;
    padding: 22px 20px;
  }

}

/* =====================================
   Redevelopment Process Roadmap – Mumbai
   ===================================== */

.redevelopment-roadmap {
  padding-top: 36px;
}

/* Intro */
.roadmap-intro {
  max-width: 960px;
  margin: 0 auto 44px;
  text-align: center;
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--muted);
}

/* Steps container */
.roadmap-steps {
  max-width: 920px;
  margin: 0 auto;
}

/* Individual step */
.roadmap-step {
  display: flex;
  align-items: flex-start;
  gap: 26px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(184, 160, 144, 0.25);
}

/* Step index */
.step-index {
  font-size: 28px;
  font-weight: 500;
  color: var(--brand);
  min-width: 60px;

  line-height: 1;
  padding-top: 4px;
}

/* Step content */
.step-content h4 {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.1;
  margin: 0 0 8px;
  color: var(--brand);
}

.step-content p {
  font-size: 14.8px;
  line-height: 1.65;
  color: var(--muted);
}

/* Disclaimer */
.roadmap-disclaimer {
  max-width: 860px;
  margin: 44px auto 0;
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

/* Add spacing after title underline for Roadmap section */
.redevelopment-roadmap .section-title {
  margin-bottom: 26px;
}

.roadmap-step {
  display: flex;
  align-items: baseline;
  gap: 26px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(184, 160, 144, 0.25);
}


/* =========================
   Mobile
   ========================= */


@media (max-width: 768px) {

  .roadmap-step {
    align-items: center;
    text-align: center;
    padding: 24px 0;
  }

  .step-index {
    font-size: 32px;
    min-width: auto;
    padding-top: 0;
    margin-bottom: 6px;
  }

  .step-content h4 {
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 10px;
  }

  .step-content p {
    font-size: 14.8px;
    line-height: 1.6;
    text-align: center;
  }

}

/* =====================================
   Legal & Compliance Checklist – Mumbai
   ===================================== */

.redevelopment-legal-checklist {
  padding-top: 38px;
}

/* Desktop: add breathing space after underline (Legal Checklist only) */
@media (min-width: 769px) {

  .redevelopment-legal-checklist .section-title::after {
    margin-bottom: 22px;
  }

}


/* Intro */
.legal-intro {
  max-width: 920px;
  margin: 0 auto 40px;
  text-align: center;
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--muted);
}

/* Checklist layout */
.legal-checklist-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* Column */
.legal-checklist-column {
  background: rgba(184, 160, 144, 0.08);
  border: 1px solid rgba(184, 160, 144, 0.30);
  padding: 26px 24px;
}

.legal-checklist-column h4 {
  font-size: 16px;
  margin-bottom: 14px;
  color: var(--text);
  text-align: center;
}

.legal-checklist-column ul {
  padding-left: 18px;
}

.legal-checklist-column ul li {
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 10px;
  color: var(--muted);
}

/* Disclaimer */
.legal-disclaimer {
  max-width: 860px;
  margin: 42px auto 0;
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

/* =========================
   Mobile
   ========================= */

@media (max-width: 768px) {

  /* Section title — keep desktop styling, just add spacing */
  .redevelopment-legal-checklist .section-title {
    text-align: center;
  }

  /* Gap after underline */
  .redevelopment-legal-checklist .section-title::after {
    margin-bottom: 18px;
  }

  /* Intro paragraph centered */
  .legal-intro {
    text-align: center;
    margin-bottom: 26px;
  }

  /* Stack checklist cards */
  .legal-checklist-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Card container */
  .legal-checklist-column {
    padding: 22px 22px;
    border-radius: 14px;
    background: linear-gradient(
      180deg,
      rgba(255,255,255,0.92),
      rgba(251,248,246,0.95)
    );
    border: 1px solid rgba(184,160,144,0.22);
    box-shadow: 0 14px 36px rgba(0,0,0,0.10);
  }

  /* Card header — SAME as desktop, just centered */
  .legal-checklist-column h4 {
    text-align: center;
    margin-bottom: 14px;
  }

  /* Reset list */
  .legal-checklist-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  /* Pointers — left aligned */
  .legal-checklist-column ul li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.65;
    color: var(--muted);
    text-align: left;
  }

  /* Premium bullet */
  .legal-checklist-column ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand);
    box-shadow: 0 0 0 4px rgba(184,160,144,0.22);
  }

  /* Disclaimer centered */
  .legal-disclaimer {
    text-align: center;
    margin-top: 28px;
    font-size: 13.5px;
    color: var(--muted);
  }

}

/* ===============================
   Redevelopment FAQ – Accordion
   =============================== */

.faq-wrapper {
  max-width: 900px;
  margin: 40px auto 0;
}

.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding: 18px 0;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-size: 16px;
  font-weight: 500;
  color: #2f2f2f;
  cursor: pointer;
  position: relative;
  padding-right: 36px;
  line-height: 1.55;
}

/* Plus / minus icon */
.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  font-size: 20px;
  font-weight: 400;
  color: var(--brand);
  transition: transform 0.35s ease, opacity 0.25s ease;
  opacity: 0.9;
}

/* Active = minus */
.faq-item.active .faq-question::after {
  content: "−";
  transform: translateY(-50%) rotate(180deg);
}

/* Answer */
.faq-answer {
  height: 0;
  overflow: hidden;
  transition: height 0.4s cubic-bezier(0.4,0,0.2,1);
}

.faq-answer p {
  margin: 14px 0 0 7px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  text-align: left;
}

/* Perfect horizontal alignment between question & answer */
.faq-answer {
  padding-right: 36px;   /* match question padding */
}

/* Reduce gap above FAQ section */
.redevelopment-faq-section {
  padding-top: 32px;   /* was ~60px */
}

/* Desktop hover only */
@media (hover: hover) and (pointer: fine) {
  .faq-question:hover {
    color: var(--brand);
  }
}

@media (max-width: 768px) {
  .faq-question {
    font-size: 14px;     /* reduced from ~15–16px */
    line-height: 1.5;
  }
}

/* =====================================
   FINAL CTA – Redevelopment in Mumbai
   ===================================== */

.redevelopment-final-cta {
  text-align: center;
  padding: 80px 0;
}

.cta-intro-text {
  max-width: 760px;
  margin: 26px auto 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
}

.cta-action-group {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 18px;
}

/* =========================
   Mobile – Clean & Centered
   ========================= */

@media (max-width: 768px) {

  .cta-intro-text {
    font-size: 15px;
  }

  .cta-action-group {
    flex-direction: column;
    gap: 14px;
  }

}


/* Minimal aesthetic scrollbar for enquiry modal */
.enquiry-content::-webkit-scrollbar {
    width: 6px; /* Thin scrollbar */
}

.enquiry-content::-webkit-scrollbar-button {
    display: none; /* Remove arrows */
}

.enquiry-content::-webkit-scrollbar-track {
    background: transparent; /* Remove the track completely */
}

.enquiry-content::-webkit-scrollbar-thumb {
    background-color: #b8a090a2; /* Accent color */
    border-radius: 3px; /* Rounded edges */
    transition: background 0.3s;
}

.enquiry-content::-webkit-scrollbar-thumb:hover {
    background-color: #b8a090a6; /* Darker shade on hover */
}

/* Firefox support */
.enquiry-content {
    scrollbar-width: thin;
    scrollbar-color: #b8a090a2 transparent;
}

/* Apply brand font */
.contact-form label,
.contact-form input,
.contact-form select,
.contact-form textarea {
    font-family: 'Montserrat', sans-serif; /* Replace with your brand font */
    color: #333; /* Keep readable */
    font-size: 14px; 
}

/* Style the select input */
.contact-form select {
    appearance: none; /* Remove default arrow */
    -webkit-appearance: none;
    -moz-appearance: none;
    background: #fff; /* White background */
    border: 1px solid #b8a090; /* Brand border */
    border-radius: 6px;
    padding: 10px 40px 10px 12px; /* Space for custom arrow */
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    transition: border 0.3s, box-shadow 0.3s;
}

/* Hover & focus effects */
.contact-form select:hover,
.contact-form select:focus {
    border-color: #a1897b; /* Slightly darker brand shade */
    box-shadow: 0 0 5px rgba(184, 160, 144, 0.3);
    outline: none;
}

/* Custom dropdown arrow using pseudo-element */
.contact-form select {
    position: relative;
}
.contact-form select::after {
    content: "▼"; /* Simple arrow */
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #b8a090;
    font-size: 12px;
}

/* Make all select dropdowns full width */
.contact-form select {
    width: 100%;           /* Full width */
    box-sizing: border-box; /* Include padding/border in width */
    padding: 10px 40px 10px 12px; /* Maintain space for custom arrow */
    border-radius: 6px;
    border: 1px solid #b8a090; /* Brand color */
    background: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    transition: border 0.3s, box-shadow 0.3s;
    margin-bottom: 12px;
}


/* Hover & focus effect */
.contact-form select:hover,
.contact-form select:focus {
    border-color: #a1897b;
    box-shadow: 0 0 5px rgba(184, 160, 144, 0.3);
    outline: none;
}

/* Custom arrow for select */
.contact-form select::after {
    content: "▼";
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #b8a090;
    font-size: 12px;
}

/* Enquiry form – space between label and input/select */
.contact-form label {
  margin-bottom: 6px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  margin-top: 4px;
}


/* Adjust vertical spacing in conditional questions only */
.conditional-questions select,
.conditional-questions input {
    margin-bottom: 16px; /* space after each field */
}

/* =====================================
   Global Reveal Animation Standard
   ===================================== */

.reveal-up,
.reveal-fade,
.reveal-slide {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease-out,
    transform 0.7s ease-out;
  will-change: transform, opacity;
}

/* Fade-only */
.reveal-fade {
  transform: none;
}

/* Slide sections (used in offer blocks) */
.reveal-slide {
  transform: translateX(40px);
}

/* Active state (JS adds this) */
.reveal-up.is-visible,
.reveal-fade.is-visible,
.reveal-slide.is-visible {
  opacity: 1;
  transform: none;
}

/* Delays */
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }

/* Mobile: reduce motion */
@media (max-width: 768px) {
  .reveal-up,
  .reveal-fade,
  .reveal-slide {
    transform: none;
    transition-duration: 0.45s;
  }
}

/* =========================
   📱 Mobile spacing refinements
   ========================= */
@media (max-width: 768px) {

  /* 1️⃣ Reduce gap above "What We Do" (between 1st & 2nd sections) */
  #what-we-do {
    padding-top: 20px;   /* was visually too large */
  }

  /* 2️⃣ Reduce gap between image and titles in "What We Do" cards */
  .slide-content {
    padding-top: 18px !important;   /* reduce top padding */
  }

  .slide-content h3 {
    margin-top: 0 !important;
    margin-bottom: 12px !important;
  }

  /* 3️⃣ Buttons should NOT be full width on mobile */
  .btn.full {
    width: auto !important;
    padding-left: 20px;
    padding-right: 20px;
  }

  /* Ensure CTA button container doesn’t stretch */
  .center-btn {
    align-items: center;
  }

  /* 4️⃣ Reduce gap above "Request a Call" */
  .services-bottom {
    margin-top: 12px !important;   /* tighter spacing */
  }

}

/* =========================
   📱 FORCE buttons to text-width (Mobile)
   ========================= */
@media (max-width: 768px) {

  /* Stop parent containers from stretching children */
  .hero-cta,
  .center-btn,
  .advisor-cta-group,
  .services-bottom {
    align-items: center !important;
  }

  /* Force buttons to shrink to content */
  .hero-cta a.btn,
  .center-btn a.btn,
  .advisor-cta-group a.btn,
  .services-bottom a.btn,
  a.btn,
  button.btn {
    width: fit-content !important;
    min-width: unset !important;
    max-width: none !important;
    display: inline-flex !important;
  }

}

@media (max-width: 768px) {
  html,
  body {
    overflow-x: hidden !important;
  }
}

@media (max-width: 768px) {
  .enquiry-content {
    max-height: 80vh;
  }
}


