:root {
  --yellow: #ffc400;
  --yellow-2: #ffda2a;
  --cream: #fffdf1;
  --orange: #f47700;
  --orange-2: #ff9800;
  --green: #07863f;
  --green-dark: #04562d;
  --purple: #35147d;
  --purple-2: #4b2392;
  --red: #d61515;
  --ink: #231a3e;
  --muted: #6b6254;
  --white: #fff;
  --shadow: 0 18px 42px rgba(73, 47, 0, .16);
  --container: 1320px;
  --header-offset: 106px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-offset);
}

body {
  margin: 0;
  color: var(--ink);
  background: #fffaf0;
  font-family: "Nirmala UI", "Noto Sans Devanagari", Mangal, Arial, sans-serif;
  line-height: 1.45;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

section,
[id] {
  scroll-margin-top: var(--header-offset);
}

.announcement-bar {
  min-height: 34px;
  padding: 6px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  text-align: center;
  color: #fff;
  background: var(--red);
  font-size: 13px;
  font-weight: 800;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(53, 20, 125, .1);
  box-shadow: 0 8px 22px rgba(31, 22, 4, .06);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 250px;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 50%;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-copy strong {
  color: var(--purple);
  font-size: 18px;
}

.brand-copy small {
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 800;
}

.desktop-nav a {
  position: relative;
  padding: 10px 0;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 4px;
  height: 3px;
  border-radius: 99px;
  background: var(--orange);
  transition: right .2s ease;
}

.desktop-nav a:hover::after {
  right: 0;
}

.header-cta {
  padding: 11px 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(244, 119, 0, .25);
  white-space: nowrap;
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 34px 0 54px;
  background:
    radial-gradient(circle at 50% -10%, rgba(255, 255, 255, .76), transparent 28%),
    linear-gradient(180deg, #ffd519 0%, #ffc400 58%, #ffdb2f 100%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, .23);
}

.orb-left {
  width: 420px;
  height: 420px;
  left: -210px;
  top: 170px;
}

.orb-right {
  width: 520px;
  height: 520px;
  right: -260px;
  bottom: -160px;
}

.hero-wrap {
  position: relative;
  z-index: 2;
}

.hero-heading {
  max-width: 950px;
  margin: 0 auto 22px;
  text-align: center;
}

.government-line {
  display: inline-flex;
  padding: 6px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  color: var(--green-dark);
  font-size: 15px;
  font-weight: 900;
}

/* .hero-heading h1 { margin: 8px 0 10px; color: #fff; font-size: clamp(44px, 5vw, 70px); line-height: .95; letter-spacing: -1.8px; font-weight: 1000; text-shadow: -3px -3px 0 var(--purple), 3px -3px 0 var(--purple), -3px 3px 0 var(--purple), 3px 3px 0 var(--purple), 0 6px 0 rgba(255,255,255,.35); } */
.hero-heading h1 {
  margin: 8px 0 10px;
  color: #fff;
  font-size: clamp(44px, 5vw, 70px);
  line-height: 1.25;
  letter-spacing: 0.2px;
  /* line-height: 91px; */
  font-weight: 600;
  text-shadow: 1px 1px 0 var(--purple), 3px -3px 0 var(--purple), 0px 0px 0 var(--purple), 3px 3px 0 var(--purple), 0 6px 0 rgba(255, 255, 255, .35);
}

.hero-heading h1 span {
  white-space: nowrap;
}

.headline-ribbons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.headline-ribbons span {
  display: inline-block;
  width: fit-content;
  padding: 4px 12px;
  color: #fff;
  background: var(--orange);
  border-radius: 9px;
  font-size: 17px;
  font-weight: 900;
}

.headline-ribbons span+span {
  background: #ef8910;
}

.hero-heading>p {
  margin: 9px 0 0;
  color: #2c291d;
  font-weight: 1000;
  font-size: 17px;
}

.hero-columns {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr) 280px;
  align-items: start;
  gap: 18px;
}

.hero-side {
  display: grid;
  gap: 14px;
}

.summary-card,
.panel-card,
.rera-card {
  background: rgba(255, 253, 242, .97);
  border: 2px solid rgba(244, 119, 0, .82);
  border-radius: 20px;
  box-shadow: 0 12px 26px rgba(88, 51, 0, .14);
}

.summary-card {
  padding: 17px;
  text-align: center;
}

.megaphone {
  font-size: 28px;
  line-height: 1;
  margin-bottom: 4px;
}

.date-row span {
  display: block;
  font-size: 15px;
  font-weight: 900;
}

.date-row strong {
  display: block;
  color: var(--red);
  font-size: 24px;
  line-height: 1.18;
}

.card-divider {
  height: 1px;
  margin: 11px 0;
  background: #e9a84b;
}

.orange-label {
  padding: 7px 12px;
  border-radius: 13px;
  background: var(--orange);
  color: #fff;
  font-size: 18px;
  font-weight: 900;
}

.price-card h2 {
  margin: 9px 0 0;
  color: var(--purple);
  font-size: 43px;
  line-height: .95;
  letter-spacing: -1px;
}

.price-card h2 small {
  font-size: 28px;
}

.price-card h2 em {
  font-style: normal;
  font-size: 18px;
}

.price-card h3 {
  margin: 5px 0 10px;
  color: var(--purple);
  font-size: 25px;
}

.price-card p {
  margin: 0;
  padding-top: 10px;
  border-top: 1px solid #e8a24d;
  color: #352f27;
  font-size: 14px;
  font-weight: 800;
}

.discount-card strong {
  display: block;
  margin: -4px -4px 10px;
  padding: 7px 9px;
  border-radius: 12px;
  color: #fff;
  background: var(--green-dark);
  font-size: 20px;
}

.discount-card p {
  margin: 0;
  color: #3d3429;
  font-size: 14px;
  font-weight: 800;
}

.hero-main {
  min-width: 0;
}

.location-panel {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 14px;
  align-items: center;
  padding: 11px 18px 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  border-radius: 18px;
  box-shadow: 0 14px 28px rgba(0, 92, 42, .23);
}

.location-panel>span {
  grid-column: 1/-1;
  text-align: center;
  font-size: 16px;
  font-weight: 900;
}

.location-panel h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1;
  white-space: nowrap;
}

.location-panel p {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}

.location-panel>strong {
  grid-column: 1/-1;
  text-align: center;
  font-size: 13px;
}

.visual-card {
  position: relative;
  overflow: hidden;
  margin-top: 14px;
  min-height: 450px;
  border: 5px solid rgba(255, 255, 255, .72);
  border-radius: 25px;
  background: #dfc242;
  box-shadow: var(--shadow);
}

.visual-card img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  object-position: center;
}

.visual-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(34, 10, 83, .05) 68%, rgba(34, 10, 83, .76) 100%);
}

.visual-message {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  padding: 12px 15px;
  text-align: center;
  color: #fff;
  background: rgba(53, 20, 125, .96);
  border-radius: 17px;
  box-shadow: 0 12px 26px rgba(30, 5, 74, .25);
}

.visual-message p {
  margin: 0;
  font-size: 14px;
  font-weight: 900;
}

.visual-message strong {
  display: block;
  margin-top: 5px;
  color: var(--yellow-2);
  font-size: 13px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border-radius: 999px;
  font-weight: 1000;
  transition: transform .2s ease, box-shadow .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: var(--purple);
  box-shadow: 0 12px 22px rgba(53, 20, 125, .25);
}

.button-light {
  color: var(--green-dark);
  background: #fff;
  border: 2px solid rgba(7, 134, 63, .18);
}

.panel-card {
  overflow: hidden;
}

.panel-card h2 {
  margin: 0;
  padding: 10px 12px;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), #ee8b19);
  font-size: 19px;
}

.features-card ul,
.mini-process ol {
  list-style: none;
  margin: 0;
  padding: 7px 12px 10px;
}

.features-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid #e5b25f;
}

.features-card li:last-child {
  border-bottom: 0;
}

.features-card li>span {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff0a6;
  font-size: 20px;
  font-weight: 1000;
}

.features-card strong {
  display: block;
  color: var(--purple);
  font-size: 16px;
  line-height: 1.15;
}

.features-card small {
  display: block;
  margin-top: 2px;
  color: #393025;
  font-size: 12px;
  font-weight: 800;
}

.mini-process h2 {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
}

.mini-process li {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 0;
  border-bottom: 1px solid #e6b45f;
}

.mini-process li:last-child {
  border-bottom: 0;
}

.mini-process b {
  width: 31px;
  height: 31px;
  flex: 0 0 31px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
}

.mini-process li:nth-child(2) b {
  background: var(--orange);
}

.mini-process li:nth-child(4) b {
  background: #ad2589;
}

.mini-process span {
  font-size: 14px;
  font-weight: 900;
}

.rera-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
}

.rera-card img {
  width: 62px;
  height: 62px;
  object-fit: cover;
}

.rera-card span,
.rera-card strong,
.rera-card small {
  display: block;
}

.rera-card span {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
}

.rera-card strong {
  color: var(--purple);
  font-size: 14px;
}

.rera-card small {
  color: var(--muted);
  font-size: 11px;
}

.allotment-section {
  padding: 58px 0;
  background: #fffdf3;
}

.allotment-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(340px, .65fr);
  align-items: start;
  gap: 24px;
}

.allotment-card {
  padding: 28px;
  background: linear-gradient(145deg, #fff, #fff8d7);
  border: 1px solid rgba(244, 119, 0, .23);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.section-title span {
  color: var(--orange);
  font-weight: 1000;
}

.section-title h2 {
  margin: 3px 0 5px;
  color: var(--purple);
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.08;
}

.section-title p {
  margin: 0;
  color: var(--muted);
}

.process-list {
  display: grid;
  gap: 13px;
  margin-top: 20px;
}

.process-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 13px;
  align-items: start;
}

.process-item>b {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: #fff;
  background: var(--orange);
  box-shadow: 0 10px 18px rgba(244, 119, 0, .2);
}

.process-item:nth-child(2)>b {
  background: var(--green);
}

.process-item:nth-child(3)>b {
  background: var(--purple);
}

.process-item:nth-child(4)>b {
  background: #bd278d;
}

.process-item p {
  margin: 0;
  color: #3d342b;
  font-size: 16px;
  font-weight: 700;
}

.document-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  padding: 13px;
  border-radius: 17px;
  background: #fff0aa;
}

.document-strip strong {
  color: var(--green-dark);
  margin-right: 4px;
}

.document-strip span {
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(244, 119, 0, .25);
  font-size: 12px;
  font-weight: 900;
}

.finance-column {
  display: grid;
  gap: 14px;
}

.loan-card,
.reservation-card,
.bank-card {
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.loan-card {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 20px;
  color: #fff;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
}

.rupee-icon {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--purple);
  background: var(--yellow);
  font-size: 29px;
  font-weight: 1000;
}

.loan-card span {
  font-size: 13px;
  font-weight: 900;
}

.loan-card h3 {
  margin: 3px 0 0;
  font-size: 22px;
  line-height: 1.15;
}

.loan-card p {
  margin: 0;
}

.reservation-card {
  padding: 20px;
  background: linear-gradient(135deg, #fff1bb, #ffd653);
  border: 2px solid var(--orange);
}

.reservation-card strong {
  display: inline-block;
  padding: 6px 12px;
  color: #fff;
  background: var(--orange);
  border-radius: 999px;
}

.reservation-card p {
  margin: 10px 0 0;
  font-weight: 800;
}

.bank-card {
  padding: 20px;
  background: #fff;
  border: 1px solid rgba(53, 20, 125, .12);
}

.bank-card>span {
  display: block;
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 1000;
}

.bank-card h3 {
  margin: 5px 0 0;
  color: var(--purple);
  font-size: 20px;
}

.bank-card h4 {
  margin: 0 0 10px;
  font-size: 13px;
}

.bank-card dl {
  margin: 0;
  display: grid;
  gap: 6px;
}

.bank-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-top: 6px;
  border-top: 1px dashed #d8cfba;
}

.bank-card dt {
  font-weight: 900;
}

.bank-card dd {
  margin: 0;
  text-align: right;
  font-weight: 900;
}

.facilities-section {
  padding: 58px 0 62px;
  background: linear-gradient(180deg, #fff1a8, #ffd427);
}

.centered {
  max-width: 700px;
  margin-inline: auto;
  text-align: center;
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 25px;
}

.facilities-grid article {
  padding: 20px 14px;
  text-align: center;
  background: rgba(255, 255, 255, .93);
  border: 2px solid rgba(244, 119, 0, .2);
  border-radius: 20px;
  box-shadow: 0 13px 25px rgba(92, 62, 0, .12);
}

.facilities-grid i {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 0 auto 9px;
  border-radius: 17px;
  background: #fff2ae;
  font-size: 30px;
  font-style: normal;
}

.facilities-grid h3 {
  margin: 0;
  color: var(--purple);
  font-size: 17px;
}

.facilities-grid p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.contact-section {
  padding: 58px 0;
  color: #fff;
  background: linear-gradient(135deg, var(--purple), #4c2190);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: center;
  gap: 24px;
}

.contact-copy>span {
  display: inline-flex;
  padding: 6px 12px;
  color: var(--purple);
  background: var(--yellow);
  border-radius: 999px;
  font-weight: 1000;
}

.contact-copy h2 {
  margin: 6px 0 7px;
  font-size: clamp(34px, 5vw, 41px);
  line-height: 1.06;
}

.contact-copy p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, .84);
}

.countdown {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
}

.countdown div {
  width: 74px;
  padding: 9px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, .23);
  border-radius: 14px;
  background: rgba(255, 255, 255, .08);
}

.countdown strong {
  display: block;
  color: var(--yellow);
  font-size: 25px;
  line-height: 1;
}

.countdown small {
  font-size: 11px;
}

.contact-card {
  padding: 26px;
  color: var(--ink);
  background: linear-gradient(145deg, #fff, #fff0a8);
  border-radius: 25px;
  box-shadow: 0 22px 45px rgba(19, 4, 46, .32);
}

.contact-card>span {
  color: var(--green-dark);
  font-weight: 1000;
}

.contact-card>a:not(.button) {
  display: block;
  margin-top: 2px;
  color: var(--purple);
  font-size: clamp(34px, 4.5vw, 50px);
  line-height: 1;
  font-weight: 1000;
  letter-spacing: 1px;
}

.contact-card p {
  margin: 14px 0;
  color: #4b4337;
  font-size: 13px;
  font-weight: 800;
}

.button-orange {
  color: #fff;
  background: var(--orange);
}

footer {
  padding: 17px 0;
  color: rgba(255, 255, 255, .74);
  background: #151025;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 15px;
}

.footer-inner p {
  margin: 0;
}

.floating-call {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--green);
  border-radius: 50%;
  font-size: 25px;
  box-shadow: 0 14px 28px rgba(0, 80, 36, .35);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.07);
  }
}

@media (max-width: 1120px) {
  :root {
    --header-offset: 98px;
  }

  .hero-columns {
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .right-side {
    grid-column: 1/-1;
    grid-template-columns: 1.25fr 1fr .75fr;
  }

  .features-card,
  .mini-process,
  .rera-card {
    height: auto;
  }

  .facilities-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 850px) {
  .desktop-nav {
    display: none;
  }

  .brand {
    min-width: 0;
  }

  .hero-columns {
    grid-template-columns: 1fr;
  }

  .hero-main {
    order: 1;
  }

  .left-side {
    order: 2;
    grid-template-columns: repeat(3, 1fr);
  }

  .right-side {
    order: 3;
    grid-column: auto;
    grid-template-columns: 1fr 1fr;
  }

  .rera-card {
    grid-column: 1/-1;
  }

  .allotment-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .facilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  :root {
    --header-offset: 86px;
  }

  .container {
    width: min(100% - 20px, var(--container));
  }

  .announcement-bar {
    font-size: 11px;
    line-height: 1.25;
  }

  .announcement-bar strong {
    display: none;
  }

  .header-inner {
    min-height: 66px;
    gap: 10px;
  }

  .brand img {
    width: 47px;
    height: 47px;
  }

  .brand-copy strong {
    font-size: 14px;
  }

  .brand-copy small {
    font-size: 11px;
  }

  .header-cta {
    padding: 9px 11px;
    font-size: 12px;
  }

  .hero-section {
    padding: 24px 0 40px;
  }

  .hero-heading {
    margin-bottom: 16px;
  }

  .government-line {
    font-size: 12px;
  }

  .hero-heading h1 {
    font-size: clamp(34px, 11.5vw, 48px);
    text-shadow: -2px -2px 0 var(--purple), 2px -2px 0 var(--purple), -2px 2px 0 var(--purple), 2px 2px 0 var(--purple);
  }

  .hero-heading h1 span {
    white-space: normal;
  }

  .headline-ribbons span {
    font-size: 13px;
  }

  .hero-heading>p {
    font-size: 13px;
  }

  .location-panel {
    display: block;
    text-align: center;
    padding: 11px;
  }

  .location-panel h2 {
    font-size: 29px;
    white-space: normal;
  }

  .location-panel p {
    margin: 4px 0;
  }

  .visual-card,
  .visual-card img {
    height: 410px;
    min-height: 410px;
  }

  .visual-card img {
    object-position: 36% center;
  }

  .visual-message {
    left: 9px;
    right: 9px;
    bottom: 9px;
    padding: 10px;
  }

  .visual-message p {
    font-size: 12px;
  }

  .visual-message strong {
    font-size: 11px;
  }

  .left-side,
  .right-side {
    grid-template-columns: 1fr;
  }

  .rera-card {
    grid-column: auto;
  }

  .summary-card {
    padding: 15px;
  }

  .date-card {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 9px;
  }

  .date-card .megaphone {
    display: none;
  }

  .date-card .card-divider {
    width: 1px;
    height: 48px;
    margin: 0;
  }

  .date-row strong {
    font-size: 20px;
  }

  .price-card h2 {
    font-size: 39px;
  }

  .allotment-section,
  .facilities-section,
  .contact-section {
    padding: 44px 0;
  }

  .allotment-card {
    padding: 20px;
  }

  .section-title h2 {
    font-size: 32px;
  }

  .process-item {
    grid-template-columns: 45px 1fr;
  }

  .process-item>b {
    width: 43px;
    height: 43px;
    border-radius: 13px;
  }

  .process-item p {
    font-size: 14px;
  }

  .document-strip {
    align-items: flex-start;
  }

  .document-strip strong {
    width: 100%;
  }

  .facilities-grid {
    gap: 9px;
  }

  .facilities-grid article {
    padding: 15px 8px;
  }

  .facilities-grid i {
    width: 50px;
    height: 50px;
    font-size: 25px;
  }

  .facilities-grid h3 {
    font-size: 14px;
  }

  .facilities-grid p {
    font-size: 11px;
  }

  .contact-copy h2 {
    font-size: 38px;
  }

  .contact-card {
    padding: 20px;
  }

  .contact-card>a:not(.button) {
    font-size: 34px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }

  .floating-call {
    right: 15px;
    bottom: 15px;
  }
}



.important {
  font-size: 34px;
  font-weight: 800;
}

.enquiry-section {
  position: relative;
  overflow: hidden;
  padding: 68px 0;
  background:
    radial-gradient(circle at 8% 18%, rgba(255, 196, 0, .35), transparent 28%),
    radial-gradient(circle at 92% 84%, rgba(7, 134, 63, .16), transparent 30%),
    linear-gradient(135deg, #fffdf3, #fff3bf);
}

.enquiry-section::before,
.enquiry-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.enquiry-section::before {
  width: 260px;
  height: 260px;
  top: -130px;
  right: -90px;
  border: 45px solid rgba(244, 119, 0, .08);
}

.enquiry-section::after {
  width: 190px;
  height: 190px;
  left: -95px;
  bottom: -100px;
  background: rgba(53, 20, 125, .05);
}

.enquiry-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 34px;
  align-items: center;
}

.enquiry-intro {
  padding: 14px 4px;
}

.enquiry-kicker {
  display: inline-flex;
  padding: 7px 13px;
  color: #fff;
  background: var(--orange);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 1000;
  box-shadow: 0 9px 18px rgba(244, 119, 0, .22);
}

.enquiry-intro h2 {
  margin: 14px 0 10px;
  color: var(--purple);
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.06;
}

.enquiry-intro>p {
  max-width: 590px;
  margin: 0;
  color: #574e41;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 700;
}

.enquiry-benefits {
  display: grid;
  gap: 11px;
  margin-top: 24px;
}

.enquiry-benefits>div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(7, 134, 63, .14);
  border-radius: 16px;
  background: rgba(255, 255, 255, .74);
  box-shadow: 0 9px 20px rgba(91, 67, 9, .07);
}

.enquiry-benefits i {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--green);
  border-radius: 50%;
  font-style: normal;
  font-weight: 1000;
}

.enquiry-benefits span {
  display: block;
  min-width: 0;
}

.enquiry-benefits strong {
  display: block;
  color: var(--green-dark);
  font-size: 15px;
}

.enquiry-benefits small {
  display: block;
  margin-top: 1px;
  color: #62594b;
  font-size: 12px;
  font-weight: 700;
}

.enquiry-phone {
  display: inline-flex;
  flex-direction: column;
  margin-top: 22px;
  padding: 12px 17px;
  border-left: 5px solid var(--yellow);
  border-radius: 0 15px 15px 0;
  color: #fff;
  background: var(--purple);
  box-shadow: 0 13px 24px rgba(53, 20, 125, .2);
}

.enquiry-phone span {
  font-size: 12px;
  font-weight: 800;
  opacity: .82;
}

.enquiry-phone a {
  margin-top: 2px;
  color: #fff;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 1000;
  letter-spacing: .5px;
}

.form-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(53, 20, 125, .1);
  border-radius: 28px;
  box-shadow: 0 24px 55px rgba(81, 54, 3, .16);
}

.form-card-heading {
  padding: 20px 25px 17px;
  color: #fff;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
}

.form-card-heading span {
  display: inline-flex;
  padding: 5px 10px;
  color: var(--purple);
  background: var(--yellow);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 1000;
}

.form-card-heading h3 {
  margin: 7px 0 1px;
  font-size: 28px;
  line-height: 1.1;
}

.form-card-heading p {
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: 11px;
}

.plot-enquiry-form {
  padding: 23px 25px 25px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  color: #352d25;
  font-size: 13px;
  font-weight: 900;
}

.form-group label b {
  color: #d71920;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  min-height: 47px;
  padding: 11px 13px;
  color: #271f19;
  background: #fffdf6;
  border: 1.5px solid #e3d8bd;
  border-radius: 12px;
  outline: none;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.form-group textarea {
  min-height: 96px;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(7, 134, 63, .1);
}

.form-group input.is-invalid,
.form-group select.is-invalid,
.form-group textarea.is-invalid {
  border-color: #d71920;
  box-shadow: 0 0 0 4px rgba(215, 25, 32, .08);
}

.consent-check {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 1px 0 16px;
  color: #5b5143;
  font-size: 11px;
  line-height: 1.45;
  font-weight: 700;
  cursor: pointer;
}

.consent-check input {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  margin-top: 1px;
  accent-color: var(--green);
}

.form-submit {
  width: 100%;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 17px;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), #ff9b00);
  border: 0;
  border-radius: 14px;
  box-shadow: 0 13px 24px rgba(244, 119, 0, .26);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(244, 119, 0, .31);
}

.form-submit span {
  font-size: 16px;
  font-weight: 1000;
}

.form-submit small {
  font-size: 11px;
  font-weight: 800;
  opacity: .88;
}

.form-status {
  min-height: 18px;
  margin: 9px 0 0;
  text-align: center;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
}

@media (max-width: 900px) {
  .enquiry-grid {
    grid-template-columns: 1fr;
  }

  .enquiry-intro {
    text-align: center;
  }

  .enquiry-intro>p {
    margin-inline: auto;
  }

  .enquiry-benefits {
    max-width: 650px;
    margin-inline: auto;
    margin-top: 24px;
    text-align: left;
  }
}

@media (max-width: 600px) {
  .enquiry-section {
    padding: 44px 0;
  }

  .enquiry-intro h2 {
    font-size: 36px;
  }

  .enquiry-intro>p {
    font-size: 14px;
    line-height: 1.6;
  }

  .enquiry-phone {
    width: 100%;
    align-items: center;
  }

  .form-card {
    border-radius: 22px;
  }

  .form-card-heading {
    padding: 18px;
  }

  .form-card-heading h3 {
    font-size: 24px;
  }

  .plot-enquiry-form {
    padding: 18px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-submit {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }
}

/* Reload Popup Enquiry Modal */
body.modal-open {
  overflow: hidden;
}

.reload-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(26, 13, 70, 0.68);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.reload-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.reload-modal-dialog {
  position: relative;
  width: min(100%, 460px);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  border: 2px solid rgba(255, 149, 0, 0.85);
  border-radius: 26px;
  background: linear-gradient(145deg, #fffdf4 0%, #fff7d6 100%);
  box-shadow: 0 28px 80px rgba(30, 15, 75, 0.34);
  transform: translateY(22px) scale(0.96);
  transition: transform 0.28s ease;
}

.reload-modal.is-open .reload-modal-dialog {
  transform: translateY(0) scale(1);
}

.reload-modal-head {
  position: relative;
  padding: 30px 66px 22px 26px;
  color: #fff;
  background: linear-gradient(135deg, #3d168d 0%, #5d22a8 100%);
  border-radius: 23px 23px 0 0;
}

.reload-modal-head::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: -14px;
  width: 72px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 196, 0, 0.95);
  filter: blur(18px);
}

.reload-modal-kicker {
  display: inline-block;
  margin-bottom: 7px;
  color: #ffcb16;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.4px;
}

.reload-modal-head h2 {
  margin: 0 0 7px;
  font-size: clamp(25px, 5vw, 34px);
  line-height: 1.15;
}

.reload-modal-head p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  line-height: 1.55;
}

.reload-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.reload-modal-close:hover {
  transform: rotate(90deg);
  background: rgba(255, 255, 255, 0.24);
}

.reload-modal-form {
  display: grid;
  gap: 16px;
  padding: 24px 26px 28px;
}

.reload-modal-field {
  display: grid;
  gap: 7px;
}

.reload-modal-field label {
  color: #27145f;
  font-size: 14px;
  font-weight: 800;
}

.reload-modal-field input,
.reload-modal-field textarea {
  width: 100%;
  border: 1px solid #ead39a;
  border-radius: 14px;
  outline: none;
  background: #fff;
  color: #251250;
  font: inherit;
  padding: 13px 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.reload-modal-field textarea {
  min-height: 104px;
  resize: vertical;
}

.reload-modal-field input:focus,
.reload-modal-field textarea:focus {
  border-color: #ef8b00;
  box-shadow: 0 0 0 4px rgba(239, 139, 0, 0.14);
}

.reload-modal-field input.is-invalid,
.reload-modal-field textarea.is-invalid {
  border-color: #d71f36;
  box-shadow: 0 0 0 4px rgba(215, 31, 54, 0.1);
}

.reload-modal-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  border: 0;
  border-radius: 15px;
  color: #fff;
  background: linear-gradient(135deg, #f26c00, #ff9f00);
  box-shadow: 0 12px 24px rgba(242, 108, 0, 0.24);
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.reload-modal-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(242, 108, 0, 0.31);
}

.reload-modal-status {
  min-height: 20px;
  margin: -5px 0 0;
  color: #b51930;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 520px) {
  .reload-modal {
    align-items: flex-end;
    padding: 12px;
  }

  .reload-modal-dialog {
    width: 100%;
    max-height: calc(100vh - 24px);
    border-radius: 22px;
  }

  .reload-modal-head {
    padding: 24px 58px 19px 20px;
    border-radius: 19px 19px 0 0;
  }

  .reload-modal-form {
    padding: 20px;
  }
}




 /* ================= IMAGE ONLY BANNER CAROUSEL ================= */

        .scheme-banner-section {
            position: relative;
            padding: 18px 0 22px;
            background: #fff8df;
            border-bottom: 1px solid rgba(53, 20, 125, 0.08);
        }

        .scheme-carousel {
            position: relative;
            width: 100%;
            aspect-ratio: 16 / 5;
            overflow: hidden;
            /* border-radius: 24px; */
            background: #f1f1f1;
            box-shadow: 0 15px 40px rgba(40, 25, 0, 0.16);
        }

        /* Slides container */

        .scheme-carousel-slides {
            position: absolute;
            inset: 0;
        }

        .scheme-carousel-slide {
            position: absolute;
            inset: 0;
            opacity: 0;
            visibility: hidden;
            transition:
                opacity 0.65s ease,
                visibility 0.65s ease;
        }

        .scheme-carousel-slide.is-active {
            opacity: 1;
            visibility: visible;
            z-index: 2;
        }

        /* Banner image */

        .scheme-carousel-slide img {
            display: block;
            width: 100%;
            height: 100%;
            /* object-fit: cover;
            object-position: center; */
        }

        /* Remove old gradient and content overlays */

        .scheme-carousel-slide::before,
        .scheme-carousel-slide::after {
            display: none !important;
            content: none !important;
            background: none !important;
        }

        .scheme-slide-content,
        .scheme-slide-kicker,
        .scheme-slide-points,
        .scheme-slide-actions,
        .scheme-carousel-progress {
            display: none !important;
        }

        /* Previous / Next buttons */

        .scheme-carousel-arrow {
            position: absolute;
            top: 50%;
            z-index: 10;

            width: 44px;
            height: 44px;

            display: flex;
            align-items: center;
            justify-content: center;

            padding: 0;
            border: 1px solid rgba(255, 255, 255, 0.75);
            border-radius: 50%;

            color: #ffffff;
            background: rgba(25, 14, 52, 0.48);

            font-size: 20px;
            line-height: 1;

            cursor: pointer;
            transform: translateY(-50%);
            backdrop-filter: blur(7px);

            transition:
                background 0.2s ease,
                transform 0.2s ease;
        }

        .scheme-carousel-arrow:hover {
            background: #f47700;
            transform: translateY(-50%) scale(1.06);
        }

        .scheme-carousel-prev {
            left: 16px;
        }

        .scheme-carousel-next {
            right: 16px;
        }

        /* Dots below banner */

        /* .scheme-carousel-dots {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-top: 14px;
        }

        .scheme-carousel-dot {
            width: 10px;
            height: 10px;
            padding: 0;
            border: 0;
            border-radius: 50%;
            background: rgba(53, 20, 125, 0.28);
            cursor: pointer;

            transition:
                width 0.25s ease,
                background 0.25s ease;
        }

        .scheme-carousel-dot.is-active {
            width: 30px;
            border-radius: 20px;
            background: #35147d;
        } */

        /* Tablet */

        @media (max-width: 900px) {
            .scheme-carousel {
                aspect-ratio: 16 / 6;
                /* border-radius: 18px; */
            }

            .scheme-carousel-arrow {
                width: 40px;
                height: 40px;
            }
        }

        /* Mobile */

        @media (max-width: 640px) {
            .scheme-banner-section {
                padding: 10px 0 15px;
            }

            .scheme-banner-section .container {
                width: calc(100% - 20px);
                margin-inline: auto;
            }

            .scheme-carousel {
                aspect-ratio: 16 / 8;
                /* border-radius: 14px; */
            }

            .scheme-carousel-slide img {
                object-position: center;
            }

            .scheme-carousel-arrow {
                width: 36px;
                height: 36px;
                font-size: 16px;
            }

            .scheme-carousel-prev {
                left: 8px;
            }

            .scheme-carousel-next {
                right: 8px;
            }

            /* .scheme-carousel-dots {
                margin-top: 10px;
            } */
        }

        @media (prefers-reduced-motion: reduce) {
            .scheme-carousel-slide {
                transition: none;
            }
        }
        /* ================= LOCATION PANEL ================= */

.location-panel {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;

    padding: 18px 24px;
    box-sizing: border-box;

    color: #ffffff;
    text-align: center;
    background: #087b3d;
    border-radius: 20px;
}

.location-panel .location-label {
    display: block;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
}

.location-panel .important {
    display: block;
    width: 100%;

    font-size: 34px;
    font-weight: 800;
    line-height: 1.15;
}

.location-panel strong {
    display: block;
    width: 100%;

    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;

    white-space: normal;
    overflow-wrap: break-word;
}

/* ================= MOBILE VIEW ================= */

@media (max-width: 640px) {

    .location-panel {
        width: 100%;
        min-height: auto;

        padding: 14px 12px;
        gap: 5px;

        border-radius: 16px;
        text-align: center;
    }

    .location-panel .location-label {
        font-size: 14px;
        line-height: 1.2;
    }

    .location-panel .important {
        font-size: 29px !important;
        line-height: 1.1;
        margin: 1px 0 3px;
    }

    .location-panel .location-address {
        font-size: 13px;
        line-height: 1.4;
    }

    .location-panel .location-approved {
        font-size: 12px;
        line-height: 1.4;
        margin-top: 2px;
    }
}

/* Very small mobile */

@media (max-width: 380px) {

    .location-panel {
        padding: 13px 10px;
    }

    .location-panel .important {
        font-size: 26px !important;
    }

    .location-panel .location-address {
        font-size: 12px;
    }

    .location-panel .location-approved {
        font-size: 11px;
    }
}