:root {
  --bg: #f7fafc;
  --surface: #fff;
  --ink: #0b1a2b;
  --muted: #5b6b7c;
  --primary: #0ea5e9;
  --gold: #eab308;
  --ring: rgba(14, 165, 233, 0.35);
  --radius: 16px;
  --shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
  --nav-offset: 84px;
}
@media (max-width: 768px) {
  :root {
    --nav-offset: 96px;
  }
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-offset);
}
[id] {
  scroll-margin-top: var(--nav-offset);
}
body {
  color: var(--ink);
  background: var(--bg);
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Helvetica,
    Arial;
  line-height: 1.6;
}
img {
  border-radius: 14px;
  max-width: 100%;
  display: block;
}
a {
  color: var(--primary);
  text-decoration: none;
}
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 3px solid var(--ring);
  outline-offset: 3px;
  border-radius: 8px;
}
.container {
  width: min(1180px, 92%);
  margin-left: auto;
  margin-right: auto;
}
.grid {
  gap: 24px;
  display: grid;
}
header {
  z-index: 100;
  -webkit-backdrop-filter: saturate(1.2) blur(10px);
  backdrop-filter: saturate(1.2) blur(10px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(2, 6, 23, 0.06);
  position: sticky;
  top: 0;
}
.container.nav {
  flex-direction: column;
  gap: 6px;
  padding: 10px 0;
  display: flex;
}
.brand {
  align-items: center;
  gap: 12px;
  display: flex;
}
.brand-logo {
  background: #fff;
  border-radius: 16px;
  align-items: center;
  justify-items: center;
  width: 52px;
  height: 52px;
  display: grid;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18),
    inset 0 0 0 2px rgba(255, 255, 255, 0.6);
}
.brand-name {
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: linear-gradient(90deg, #0ea5e9, #facc15);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 1.3rem;
  font-weight: 800;
}
.nav-row {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  display: flex;
}
nav ul {
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}
.navlink {
  color: var(--muted);
  border-radius: 10px;
  padding: 8px 12px;
}
.navlink[aria-current="true"],
.navlink:hover {
  color: var(--ink);
  background: rgba(2, 6, 23, 0.06);
}
.header-cta {
  flex-wrap: wrap;
  gap: 10px;
  display: flex;
}
button,
.chip-btn,
.btn {
  min-height: 44px;
}
.btn {
  letter-spacing: 0.2px;
  cursor: pointer;
  color: #3b2f09;
  background: linear-gradient(135deg, #fde68a, #eab308);
  border: none;
  border-radius: 14px;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  font-weight: 700;
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-flex;
  box-shadow: 0 6px 14px rgba(234, 179, 8, 0.35);
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(234, 179, 8, 0.5);
}
.btn.ghost {
  color: var(--ink);
  box-shadow: none;
  background: #fff;
  border: 1px solid rgba(2, 6, 23, 0.15);
}
.btn.ghost:hover {
  background: #f9fafb;
  border-color: rgba(2, 6, 23, 0.25);
}
.btn.accent {
  color: #041018;
  background: linear-gradient(
    135deg,
    #0ea5e9,
    #38bdf8 40%,
    #fde68a 80%,
    #eab308
  );
  box-shadow: 0 6px 14px rgba(14, 165, 233, 0.25),
    0 6px 14px rgba(234, 179, 8, 0.25);
}
.btn.small {
  border-radius: 10px;
  padding: 8px 12px;
}
.hero {
  position: relative;
  overflow: clip;
}
.hero-wrap {
  padding: 28px 0 12px;
}
.hero-grid {
  grid-template-columns: 1.3fr 0.9fr;
  align-items: start;
  gap: 28px;
  display: grid;
}
@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}
.headline {
  margin: 0;
  font-size: max(28px, min(4vw, 48px));
  line-height: 1.12;
}
.sub {
  color: var(--muted);
  margin: 10px 0 16px;
  font-size: max(16px, min(1.6vw, 18px));
}
.hero-media {
  box-shadow: var(--shadow);
  aspect-ratio: 16/9;
  background: radial-gradient(120% 100% at 20% 10%, #e0f2fe 0%, transparent 40%),
    radial-gradient(120% 100% at 80% 90%, #d1fae5 0%, transparent 40%);
  border-radius: 22px;
  position: relative;
  overflow: hidden;
}
.slide {
  object-fit: cover;
  opacity: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.8s;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.slide.active {
  opacity: 1;
}
@media (max-width: 520px) {
  .hero-media {
    aspect-ratio: auto;
    min-height: 220px;
  }
}
.info-badges {
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  padding: 0 18px 18px;
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.badge {
  color: #082032;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(2, 6, 23, 0.08);
  border-radius: 999px;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  font-size: 13.5px;
  display: inline-flex;
}
.hero-nav {
  color: #041018;
  cursor: pointer;
  opacity: 0.95;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(2, 6, 23, 0.12);
  border-radius: 12px;
  align-items: center;
  justify-items: center;
  width: 44px;
  height: 44px;
  font-size: 22px;
  line-height: 1;
  transition: transform 0.15s, box-shadow 0.15s, opacity 0.2s;
  display: grid;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 8px 18px rgba(2, 6, 23, 0.18);
}
.hero-nav:hover {
  transform: translateY(-50%) scale(1.06);
  box-shadow: 0 10px 24px rgba(2, 6, 23, 0.22);
}
.hero-nav.prev {
  left: 10px;
}
.hero-nav.next {
  right: 10px;
}
@media (max-width: 520px) {
  .hero-nav {
    top: auto;
    bottom: 10px;
    transform: none;
  }
  .hero-nav.prev {
    left: 10px;
  }
  .hero-nav.next {
    right: 10px;
  }
}
.hero-media {
  position: relative;
}
.hero-media .hero-progress {
  z-index: 1;
  pointer-events: auto;
  justify-content: center;
  align-items: center;
  gap: 12px;
  display: flex;
  position: absolute;
  bottom: -12px;
  left: 0;
  right: 0;
}
.hero-media.has-progress .info-badges {
  z-index: 2;
  bottom: 1px;
}
.hero-media .hero-progress .seg-btn {
  -ms-appearance: none;
  appearance: none;
  cursor: pointer;
  color: #fff;
  background: 0 0;
  border: none;
  width: max(34px, min(7vw, 56px));
  height: 3px;
  margin: 0;
  padding: 10px 0;
  position: relative;
}
.hero-media .hero-progress .seg-btn:before {
  content: "";
  background: rgba(2, 6, 23, 0.16);
  border-radius: 999px;
  height: 4px;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
}
.hero-media .hero-progress .seg-btn:after {
  content: "";
  transform-origin: 0;
  background: linear-gradient(90deg, #0ea5e9, #eab308);
  border-radius: 999px;
  width: 100%;
  height: 4px;
  transition: transform 0.35s;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) scaleX(0);
}
.hero-media .hero-progress .seg-btn[aria-current="true"]:after {
  transform: translateY(-50%) scaleX(1);
}
.hero-media .hero-progress .seg-btn:focus-visible {
  outline-offset: 4px;
  border-radius: 10px;
  outline: 3px solid rgba(14, 165, 233, 0.35);
}
.form {
  box-shadow: var(--shadow);
  background: #fff;
  border: 1px solid rgba(2, 6, 23, 0.08);
  border-radius: 22px;
  padding: 18px;
}
.form h3 {
  margin: 0 0 10px;
  font-size: 20px;
}
.field {
  gap: 6px;
  margin-top: 10px;
  display: grid;
}
.in {
  background: #fff;
  border: 1px solid rgba(2, 6, 23, 0.12);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 16px;
}
select.in {
  -ms-appearance: none;
  appearance: none;
  background-image: linear-gradient(
      45deg,
      transparent 50%,
      rgba(2, 6, 23, 0.4) 50%
    ),
    linear-gradient(135deg, rgba(2, 6, 23, 0.4) 50%, transparent 50%);
  background-position: calc(100% - 20px) calc(1em + 2px),
    calc(100% - 15px) calc(1em + 2px);
  background-repeat: no-repeat;
  background-size: 5px 5px;
}
.notice {
  margin-top: 8px;
  font-size: 0.95rem;
}
.notice.success {
  color: #0a7a27;
}
.notice.error {
  color: #b00020;
}
.btn[aria-busy="true"] {
  opacity: 0.8;
  pointer-events: none;
  position: relative;
}
.btn[aria-busy="true"]:after {
  content: "";
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-top-color: #fff;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  animation: 0.6s linear infinite spin;
  position: absolute;
  right: 12px;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
section {
  border-top: 1px solid rgba(2, 6, 23, 0.06);
  padding: 54px 0;
}
section.alt {
  background: linear-gradient(#fff, #f9fafb);
}
.section-head {
  text-align: center;
  justify-items: center;
  gap: 10px;
  max-width: 800px;
  margin: 0 auto 30px;
  display: grid;
  position: relative;
}
.section-head:after {
  content: "";
  background: linear-gradient(
    90deg,
    #0ea5e9,
    #38bdf8 40%,
    #fde68a 80%,
    #eab308
  );
  border-radius: 4px;
  width: 60px;
  height: 4px;
  margin-top: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}
.section-eyebrow {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0b1a2b;
  background: linear-gradient(#fff, #f9fafb);
  border: 1px solid rgba(2, 6, 23, 0.08);
  border-radius: 999px;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1;
  display: inline-flex;
}
.section-head h2 {
  background: linear-gradient(90deg, #0b1a2b 0%, #0ea5e9 50%, #eab308 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin: 0;
  font-size: max(26px, min(3.6vw, 40px));
  font-weight: 800;
  line-height: 1.2;
}
.lead {
  color: var(--muted);
  margin: 0 0 14px;
}
.kpis {
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  display: grid;
}
.kpi {
  text-align: center;
  background: #fff;
  border: 1px solid rgba(2, 6, 23, 0.08);
  border-radius: 14px;
  padding: 14px;
}
.kpi strong {
  font-size: 20px;
  display: block;
}
@media (max-width: 900px) {
  .kpis {
    grid-template-columns: repeat(2, 1fr);
  }
}
.why-min .why-stats {
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 18px 0 24px;
  display: grid;
}
.why-min .stat {
  text-align: center;
  background: #fff;
  border: 1px solid rgba(2, 6, 23, 0.08);
  border-radius: 12px;
  align-items: center;
  justify-items: center;
  gap: 4px;
  padding: 14px;
  display: grid;
}
.why-min .s-k {
  background: linear-gradient(90deg, #0ea5e9, #facc15);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 18px;
  font-weight: 800;
}
.why-min .s-l {
  color: var(--muted);
  font-size: 13.5px;
}
.why-min .why-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  display: grid;
}
.why-min .card {
  background: #fff;
  border: 1px solid rgba(2, 6, 23, 0.08);
  border-radius: 14px;
  padding: 16px;
  transition: transform 0.18s, box-shadow 0.18s;
  box-shadow: 0 8px 20px rgba(2, 6, 23, 0.06);
}
.why-min .card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(2, 6, 23, 0.1);
}
.why-min .mini-chart {
  background: #fff;
  border: 1px solid rgba(2, 6, 23, 0.08);
  border-radius: 14px;
  margin-top: 18px;
  padding: 12px;
}
.why-min .mini-chart svg {
  width: 100%;
  height: auto;
  display: block;
}
.why-min .why-cta {
  text-align: center;
  margin-top: 22px;
}
@media (max-width: 980px) {
  .why-min .why-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .why-min {
    padding: 44px 0;
  }
  .why-min .why-stats {
    grid-template-columns: 1fr;
  }
}
#why-invest-in-dholera.wrap {
  --gold: #f59e0b;
  --accent: #0ea5e9;
}
#why-invest-in-dholera {
  background: radial-gradient(
      1200px 600px at 10% -10%,
      rgba(34, 197, 94, 0.1),
      transparent 60%
    ),
    radial-gradient(
      900px 500px at 110% 10%,
      rgba(14, 165, 233, 0.1),
      transparent 60%
    ),
    #f8fafc;
  padding: 72px 20px;
  position: relative;
}
#why-invest-in-dholera .hero {
  text-align: center;
}
#why-invest-in-dholera .badge {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.8rem;
  font-weight: 700;
  display: inline-block;
  box-shadow: 0 8px 24px rgba(2, 6, 23, 0.06);
}
#why-invest-in-dholera .grad {
  background: linear-gradient(90deg, var(--accent), var(--gold));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}
#why-invest-in-dholera .cta {
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 14px;
  display: flex;
}
#why-invest-in-dholera .grid {
  --cols: 3;
  grid-template-columns: repeat(var(--cols), minmax(0, 1fr));
  gap: 18px;
  max-width: 1100px;
  margin: 28px auto 8px;
  display: grid;
}
@media (max-width: 1000px) {
  #why-invest-in-dholera .grid {
    --cols: 2;
  }
}
@media (max-width: 680px) {
  #why-invest-in-dholera .grid {
    --cols: 1;
  }
}
#why-invest-in-dholera .card {
  -webkit-backdrop-filter: saturate(1.2) blur(8px);
  backdrop-filter: saturate(1.2) blur(8px);
  opacity: 0;
  background: linear-gradient(
    rgba(255, 255, 255, 0.85),
    rgba(255, 255, 255, 0.92)
  );
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  padding: 18px;
  transform: translateY(14px);
  box-shadow: 0 14px 34px rgba(2, 6, 23, 0.08);
}
#why-invest-in-dholera .card.reveal {
  opacity: 1;
  transition: opacity 0.6s, transform 0.6s;
  transform: none;
}
#why-invest-in-dholera .icon {
  background: linear-gradient(
    135deg,
    rgba(14, 165, 233, 0.18),
    rgba(34, 197, 94, 0.18)
  );
  border-radius: 12px;
  align-items: center;
  justify-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 10px;
  display: grid;
}
#why-invest-in-dholera h3 {
  margin: 2px 0 6px;
  font-size: 18px;
}
#why-invest-in-dholera .trust {
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 1000px;
  margin: 20px auto 0;
  display: flex;
}
#why-invest-in-dholera .pill {
  color: #334155;
  background: #fff;
  border: 1px dashed rgba(2, 6, 23, 0.18);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 600;
}
.pricing {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  display: grid;
}
.price-card {
  background: #fff;
  border: 1px solid rgba(2, 6, 23, 0.08);
  border-radius: 16px;
  padding: 18px;
}
.price {
  font-size: 26px;
  font-weight: 800;
}
.amen-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  display: grid;
}
.amen {
  background: #fff;
  border: 1px solid rgba(2, 6, 23, 0.08);
  border-radius: 14px;
  align-items: center;
  gap: 12px;
  padding: 12px;
  display: flex;
}
.filterbar {
  flex-wrap: wrap;
  gap: 10px;
  margin: 6px 0 12px;
  display: flex;
}
.chip-btn {
  color: var(--ink);
  cursor: pointer;
  background: #fff;
  border: 1px solid rgba(2, 6, 23, 0.12);
  border-radius: 999px;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  display: inline-flex;
}
.chip-btn[aria-pressed="true"],
.chip-btn:hover {
  background: linear-gradient(135deg, #e0f2fe, #fff);
  border-color: rgba(14, 165, 233, 0.35);
}
.gallery-grid {
  column-count: 3;
  column-gap: 20px;
  margin: 30px 0;
}
@media (max-width: 980px) {
  .gallery-grid {
    column-count: 2;
  }
}
@media (max-width: 600px) {
  .gallery-grid {
    column-count: 1;
  }
}
.gcard {
  background: #fff;
  border-radius: 18px;
  width: 100%;
  margin: 0 0 20px;
  transition: transform 0.3s, box-shadow 0.3s;
  display: inline-block;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}
.gcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
}
.gtags {
  z-index: 3;
  flex-wrap: wrap;
  gap: 6px;
  display: flex;
  position: absolute;
  top: 12px;
  left: 12px;
}
.gtag {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #38bdf8);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 700;
}
.gcap {
  color: #fff;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  opacity: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 700;
  transition: transform 0.3s, opacity 0.3s;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  transform: translateY(40%);
}
.gcard:hover .gcap {
  opacity: 1;
  transform: translateY(0);
}
.gcard img {
  aspect-ratio: 3/2;
  border-radius: 0;
  width: 100%;
  height: auto;
}
#lb-close,
#lb-prev,
#lb-next,
.chip-btn {
  min-width: 44px;
  min-height: 44px;
}
@media (max-width: 520px) {
  #lb-prev,
  #lb-next {
    top: auto;
    bottom: 10px;
    transform: none;
  }
  #lb-prev {
    left: 10px;
  }
  #lb-next {
    right: 10px;
  }
}
.why-us {
  text-align: center;
  background: linear-gradient(135deg, #fefefe 0%, #f9fafb 100%);
  padding: 70px 20px;
}
.why-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  display: grid;
}
.why-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 20px;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}
.why-card .icon {
  color: #0ea5e9;
  margin-bottom: 15px;
  font-size: 2.5rem;
}
.faq {
  background: #fff;
  border: 1px solid rgba(2, 6, 23, 0.08);
  border-radius: 14px;
  overflow: hidden;
}
.faq details {
  border-bottom: 1px solid rgba(2, 6, 23, 0.06);
  padding: 12px 14px;
}
.faq details:last-child {
  border-bottom: none;
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
}
.contact-grid {
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  display: grid;
}
@media (max-width: 980px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
.contact-card {
  background: #fff;
  border: 1px solid rgba(2, 6, 23, 0.08);
  border-radius: 14px;
  padding: 16px;
}
.sticky-cta {
  z-index: 90;
  background: linear-gradient(90deg, #fefce8, #fff);
  border-top: 1px solid rgba(2, 6, 23, 0.08);
  position: sticky;
  bottom: 0;
}
.cta-wrap {
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  display: flex;
}
@media (max-width: 600px) {
  .cta-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}
footer {
  color: #c5d0e6;
  background: #0b1220;
  padding: 44px 0 58px;
}
.footer-grid {
  grid-template-columns: minmax(0, 2fr) repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 20px;
  display: grid;
}
.footer-col {
  min-width: 0;
}
.footer-links a {
  overflow-wrap: anywhere;
}
@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 980px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
footer a {
  color: #e3e8ff;
}
.footer-col h4 {
  color: #fff;
  margin: 0 0 10px;
  font-size: 16px;
}
.footer-links {
  gap: 6px;
  display: grid;
}
.footer-brand {
  align-items: center;
  gap: 12px;
  display: flex;
}
.footer-brand .brand-name {
  color: #fff;
  -webkit-text-fill-color: unset;
  background: 0 0;
}
footer .brand-logo {
  background: #fff;
}
footer .brand-logo svg {
  display: block;
}
dialog::-ms-backdrop {
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  background: rgba(4, 12, 20, 0.55);
}
dialog::backdrop {
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  background: rgba(4, 12, 20, 0.55);
}
dialog#lightbox {
  background: #000;
  border: none;
  border-radius: 18px;
  max-width: 92vw;
  padding: 0;
  box-shadow: 0 18px 48px rgba(2, 6, 23, 0.35);
}
#lightbox img#lightbox-img {
  border-radius: 12px;
  max-width: 90vw;
  max-height: 76vh;
  display: block;
}
#lb-close,
#lb-prev,
#lb-next {
  color: #fff;
  cursor: pointer;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 12px;
  padding: 8px 10px;
}
#lb-close {
  position: absolute;
  top: 8px;
  right: 8px;
}
#lb-prev {
  position: absolute;
  top: 50%;
  left: 8px;
  transform: translateY(-50%);
}
#lb-next {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
}
#lightbox-cap {
  color: #fff;
  margin: 10px 12px 12px;
}
#leadModal {
  background: 0 0;
  border: none;
  border-radius: 20px;
  max-width: min(560px, 92vw);
  padding: 0;
}
#leadModal .lead-card {
  background: radial-gradient(
      120% 120% at 0 0,
      rgba(253, 230, 138, 0.16),
      transparent 40%
    ),
    radial-gradient(
      120% 120% at 100% 100%,
      rgba(14, 165, 233, 0.1),
      transparent 40%
    ),
    #fff;
  border: 1px solid rgba(2, 6, 23, 0.08);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(2, 6, 23, 0.18);
}
#leadModal .lead-close {
  cursor: pointer;
  background: #fff;
  border: 1px solid rgba(2, 6, 23, 0.08);
  border-radius: 12px;
  padding: 6px 10px;
  position: absolute;
  top: 10px;
  right: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}
#leadModal .lead-head {
  background: linear-gradient(#fff, #fdfcf6);
  border-bottom: 2px solid rgba(234, 179, 8, 0.35);
  align-items: center;
  gap: 12px;
  padding: 16px;
  display: flex;
}
#leadModal .lead-mark {
  background: #fff;
  border-radius: 12px;
  align-items: center;
  justify-items: center;
  width: 44px;
  height: 44px;
  display: grid;
  box-shadow: inset 0 0 0 1px rgba(2, 6, 23, 0.06),
    0 6px 14px rgba(0, 0, 0, 0.08);
}
#leadModal .lead-titles h3 {
  margin: 0;
  font-size: 20px;
}
#leadModal .lead-sub {
  color: var(--muted);
  margin: 4px 0 0;
  font-size: 14.5px;
}
#leadModal .lead-form {
  gap: 12px;
  padding: 16px;
  display: grid;
}
#leadModal .f {
  gap: 6px;
  display: grid;
}
#leadModal .lead-cta {
  color: #3b2f09;
  background: linear-gradient(135deg, #fde68a, #eab308);
  border: none;
  border-radius: 14px;
  padding: 12px 20px;
  font-weight: 700;
  box-shadow: 0 6px 14px rgba(234, 179, 8, 0.35);
}
#leadModal .lead-notes {
  color: var(--muted);
  margin: 0;
  font-size: 12.5px;
}
@media (max-width: 480px) {
  .container {
    width: min(1180px, 94%);
  }
  .btn {
    padding: 10px 16px;
  }
}
#thankyouModal {
  background: #fff;
  border: none;
  border-radius: 16px;
  max-width: min(400px, 92vw);
  padding: 0;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.25);
}
#thankyouModal .thank-card {
  text-align: center;
  padding: 24px;
}
#thankyouModal h3 {
  margin-top: 0;
}
.post-wrap {
  padding: 32px 0;
}
.post .breadcrumbs {
  color: var(--muted);
  margin: 8px 0 14px;
  font-size: 0.92rem;
}
.post .breadcrumbs a {
  color: inherit;
}
.post h1 {
  margin: 0.2em 0 0.4em;
  font-size: max(26px, min(3.4vw, 40px));
  font-weight: 800;
  line-height: 1.2;
}
.post .meta {
  color: var(--muted);
  margin: 0 0 12px;
  font-size: 0.95rem;
}
.post .card {
  background: #fff;
  border: 1px solid rgba(2, 6, 23, 0.08);
  border-radius: 14px;
  margin: 16px 0;
  padding: 18px;
  box-shadow: 0 8px 22px rgba(2, 6, 23, 0.06);
}
.post img {
  max-width: 100%;
  height: auto;
  box-shadow: var(--shadow);
  border-radius: 14px;
}
.post h2 {
  margin: 18px 0 8px;
  font-size: max(20px, min(2.2vw, 24px));
}
.post ul,
.post ol {
  padding-left: 20px;
}
.post .faq dt {
  margin-top: 12px;
  font-weight: 700;
}
.post .faq dd {
  margin: 6px 0 14px;
}
.post aside.related ul {
  margin: 0;
  padding-left: 18px;
}

/* =============================
   Enquiry Status Message
============================= */

.notice {
  margin-top: 14px;
  padding: 12px 14px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  border-radius: 6px;
  display: none; /* hidden by default */
}

/* Success */
.notice.success {
  display: block;
  background-color: #eaf7ee;
  color: #1f6f3d;
  border: 1px solid #b9e2c6;
}

/* Error */
.notice.error {
  display: block;
  background-color: #fdeaea;
  color: #a12626;
  border: 1px solid #f3c2c2;
}
