/* ==========================================================
   Deen Dayal Jan Awas Yojna
   Main Stylesheet
========================================================== */

:root {
  --brand-blue: #0a3d7a;
  --brand-blue-dark: #072a56;
  --brand-orange: #ff7e1f;
  --brand-red: #e2372e;
  --brand-green: #2d5a27;
  --brand-peach: #fdf0e4;
  --text-dark: #1c1c1c;
  --text-muted: #5c6570;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-soft: 0 6px 24px rgba(10, 61, 122, 0.08);
  --shadow-card: 0 10px 30px rgba(10, 61, 122, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', 'Noto Sans Devanagari', sans-serif;
  color: var(--text-dark);
  background-color: #fafbfc;
}

a {
  text-decoration: none;
}

/* ---------- HEADER / LOGO ---------- */
.site-header {
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 20;
}

.navbar {
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}

.logo-img {
  height: 55px;
  width: auto;
}

/* ---------- NAV ---------- */
.main-nav .nav-link {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.90rem;
  padding: 0.6rem 1.2rem;
  position: relative;
  transition: color 0.2s ease;
}

.main-nav .nav-link.active,
.main-nav .nav-link:hover {
  color: var(--brand-blue);
}

.main-nav .nav-link.active::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.2rem;
  height: 2px;
  background-color: var(--brand-orange);
  border-radius: 2px;
}

.btn-register {
  background: linear-gradient(90deg, #ff4d5e, #ff8a3d);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.2px;
  padding: 0.65rem 1.5rem;
  border-radius: 50px;
  border: none;
  box-shadow: 0 6px 16px rgba(255, 77, 94, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-register:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 77, 94, 0.45);
}

/* ---------- CALL STRIP ---------- */
.call-strip {
  background: linear-gradient(90deg, var(--brand-blue-dark), var(--brand-blue));
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.2px;
}

.call-strip a {
  color: #ffcf5c;
  font-weight: 700;
}

/* ---------- INFO STRIP / MARQUEE ---------- */
.info-strip {
  background-color: var(--brand-peach);
  border-bottom: 1px solid #f3ddc7;
  overflow: hidden;
}

.info-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem 1.75rem;
  font-size: 0.9rem;
  color: var(--brand-red);
}

.info-list li {
  display: flex;
  align-items: center;
  font-size: 12px;
  gap: 0.45rem;
  white-space: nowrap;
}

.info-list li strong {
  color: var(--text-dark);
  font-weight: 700;
}

.info-list i {
  color: var(--brand-red);
  font-size: 0.75rem;
}

/* Marquee track - fades at edges so text doesn't look abruptly cut off */
.marquee-wrap {
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
}

.marquee-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.75rem;
  padding-right: 1.75rem;
  flex-shrink: 0;
  animation: marquee-scroll 22s linear infinite;
}

.marquee-track li {
  white-space: nowrap;
}

.marquee-wrap:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

/* ---------- HERO SECTION ---------- */
.hero-section {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

/* col-lg-7 / col-lg-5 are d-flex in HTML, so both direct children
   (hero-img-wrap and project-detail-card) auto-stretch to the
   tallest column's height - no percentage-height chain needed. */

.hero-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
}

.hero-img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

/* Ribbon badge on image */
.ribbon-badge {
  position: absolute;
  top: 24px;
  left: 0;
  background: linear-gradient(90deg, rgba(45,90,39,0.92), rgba(74,138,66,0.85));
  color: #fff;
  padding: 0.65rem 1.75rem 0.65rem 1.1rem;
  border-radius: 0 30px 30px 0;
  z-index: 5;
  line-height: 1.25;
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

.ribbon-line1 {
  display: block;
  font-size: 0.8rem;
  font-style: italic;
  font-weight: 400;
}

.ribbon-line2 {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  /* font-family: 'Playfair Display', serif; */
}

/* RERA stamp */
.rera-stamp {
  position: absolute;
  bottom: -22px;
  left: -18px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #fff;
  border: 3px dashed var(--brand-red);
  color: var(--brand-red);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  z-index: 5;
  box-shadow: 0 6px 16px rgba(0,0,0,0.18);
  text-align: center;
  font-size: 0.6rem;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.rera-stamp i {
  font-size: 1.4rem;
}

/* ---------- PROJECT DETAIL CARD ---------- */
.project-detail-card {
  background-color: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}

.pd-header {
  background: linear-gradient(90deg, var(--brand-blue-dark), var(--brand-blue));
  color: #fff;
  padding: 1.1rem 1.4rem;
  border-bottom: 4px solid var(--brand-orange);
}

.pd-header h3 {
  font-size: 1.2rem;
  font-weight: 700;
}

.pd-header-hindi {
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.9;
}

.pd-list {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pd-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #f2f2f2;
  font-weight: 600;
  font-size: 0.85rem;
  transition: background-color 0.2s ease;
}

/*.pd-list li:last-child {
  flex: 1;
}*/

.pd-list li:hover {
  background-color: #f8fafc;
}

.pd-list li i {
  color: var(--brand-red);
  margin-top: 0.2rem;
  flex-shrink: 0;
  font-size: 0.85rem;
}

.pd-list li.pd-highlight {
  background-color: var(--brand-peach);
  font-weight: 700;
}

.pd-list li.pd-highlight:hover {
  background-color: var(--brand-peach);
}

/* ---------- FLOATING CALL NOW ---------- */
.call-now-float {
  position: fixed;
  bottom: 24px;
  right: 20px;
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, #ff416c, #ff8a00);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  text-align: center;
  line-height: 1.15;
  box-shadow: 0 6px 18px rgba(255, 65, 108, 0.4);
  z-index: 999;
  animation: pulse-call 2s infinite;
}

@keyframes pulse-call {
  0% { box-shadow: 0 0 0 0 rgba(255,65,108,0.5); }
  70% { box-shadow: 0 0 0 14px rgba(255,65,108,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,65,108,0); }
}

/* ==========================================================
   RESPONSIVE - TABLET
========================================================== */
@media (max-width: 991.98px) {
    
    .reg-declaration label{
        font-size:8px!important;
    }
  .logo-img { height: 45px; }

  .main-nav .nav-link { font-size: 0.9rem; }

  .info-list { font-size: 0.82rem; gap: 0.5rem 1rem; }

  .hero-img { min-height: 340px; }

  .rera-stamp { width: 82px; height: 82px; }
  .rera-stamp i { font-size: 1.1rem; }

  .marquee-track { animation-duration: 18s; }

  /* stack columns on tablet/mobile - remove forced equal height */
  .col-lg-7,
  .col-lg-5 {
    display: block !important;
  }
}

/* ==========================================================
   RESPONSIVE - MOBILE (fonts chote)
========================================================== */
@media (max-width: 767.98px) {
  .logo-img { height: 36px; }

  .call-strip {font-size: 0.65rem;padding-top: 0.5rem;padding-bottom: 0.5rem;}

  .info-list { font-size: 0.72rem; gap: 0.4rem; }

  .hero-img { min-height: 220px; }

  .ribbon-badge { top: 14px; padding: 0.5rem 1.2rem 0.5rem 0.9rem; }
  .ribbon-line1 { font-size: 0.62rem; }
  .ribbon-line2 { font-size: 1rem; }

  .rera-stamp {
    width: 64px;
    height: 64px;
    bottom: -14px;
    left: -10px;
    font-size: 0.45rem;
  }
  .rera-stamp i { font-size: 0.9rem; }

  .pd-header { padding: 0.85rem 1.1rem; }
  .pd-header h3 { font-size: 1.05rem; }
  .pd-header-hindi { font-size: 0.72rem; }

  .pd-list li {
    font-size: 0.78rem;
    padding: 0.7rem 1rem;
  }

  .call-now-float {
    width: 54px;
    height: 54px;
    font-size: 0.55rem;
    bottom: 14px;
    right: 12px;
  }

  .marquee-wrap {
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 20px, #000 calc(100% - 20px), transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 20px, #000 calc(100% - 20px), transparent 100%);
  }

  .marquee-track {
    animation-duration: 16s;
    gap: 1.25rem;
    padding-right: 1.25rem;
  }
}

@media (max-width: 480px) {
  .btn-register { font-size: 0.78rem; padding: 0.55rem 1.1rem; }
  .pd-list li { font-size: 0.72rem; }
}
/* ---------- DATES SECTION ---------- */
.dates-section {
  background-color: #eef2f6;
}

.date-card {
  background-color: #fff;
  border-radius: var(--radius-md);
  padding: 1.6rem 1.5rem 1.4rem;
  text-align: center;
  box-shadow: 0 4px 14px rgba(10, 61, 122, 0.08);
  border-bottom: 4px solid transparent;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.date-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(10, 61, 122, 0.14);
}

.date-label {
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.date-value {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-dark);
}

/* Blue card */
.date-card-blue {
  border-bottom-color: var(--brand-blue);
}
.date-card-blue .date-label {
  color: var(--brand-blue);
}

/* Red card - subtle peach/pink background like the reference */
.date-card-red {
  background-color: #fdeeee;
  border-bottom-color: var(--brand-red);
}
.date-card-red .date-label {
  color: var(--brand-red);
}

/* Green card */
.date-card-green {
  border-bottom-color: var(--brand-green);
}
.date-card-green .date-label {
  color: var(--brand-green);
}

/* Mobile - fonts chote */
@media (max-width: 767.98px) {
  .date-card {
    padding: 1.2rem 1rem 1rem;
  }
  .date-label {
    font-size: 0.75rem;
  }
  .date-value {
    font-size: 0.95rem;
  }
}
/* ---------- PAYMENT PLAN SECTION ---------- */
.payment-plan-section {
  background-color: #f7f7f7;
}

.pp-heading {
  color: var(--brand-blue-dark);
  font-weight: 700;
  font-size: 1.8rem;
  font-family: 'Inter', 'Noto Sans Devanagari', sans-serif;
}

.pp-table-wrap {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  overflow-x: auto;
}

.pp-table {
  margin-bottom: 0;
  min-width: 720px;
}

.pp-table thead th {
  background-color: var(--brand-blue-dark);
  color: #fff;
  font-weight: 700;
  border: 1px solid #ddd;
  font-size: 0.78rem;
  text-align: center;
  vertical-align: middle;
  padding: 0.65rem 0.6rem;
  /* border: none; */
  white-space: normal;
  line-height: 1.25;
}

.pp-table tbody td {
  text-align: center;
  vertical-align: middle;
  padding: 0.65rem 0.6rem;
  border: 1px solid #ddd;
  font-weight: 600;
  font-size: 0.75rem;
  color: var(--text-dark);
  border-color: #e9ecef;
  white-space: normal;
}

.pp-table tbody td:first-child {
  font-weight: 700;
  text-align: left;
}

.pp-table tbody tr:nth-child(even) {
  background-color: #f8fafc;
}

/* Note box */
.pp-note {
  background-color: #fdf2c8;
  border-left: 5px solid var(--brand-orange);
  border-radius: 6px;
  padding: 1rem 1.4rem;
  text-align: center;
}

.pp-note p {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
}

.pp-note-hindi {
  color: var(--brand-green);
  font-weight: 600;
}

/* Mobile - fonts chote */
@media (max-width: 767.98px) {
  .pp-heading {
    font-size: 1.15rem;
  }

  .pp-table {
    min-width: 620px;
  }

  .pp-table thead th {
    font-size: 0.65rem;
    padding: 0.5rem 0.45rem;
  }

  .pp-table tbody td {
    font-size: 0.7rem;
    padding: 0.5rem 0.45rem;
  }

  .pp-note {
    padding: 0.8rem 1rem;
  }

  .pp-note p {
    font-size: 0.7rem;
  }
}
/* ---------- ABOUT + ENQUIRE SECTION ---------- */
.about-enquire-section {
  background-color: #fff;
}

.about-heading {
  color: var(--brand-blue-dark);
  font-weight: 800;
  font-size: 1.8rem;
}

.about-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

/* Enquiry card */
.enquiry-card {
  border: 1px solid #e6e6e6;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.enquiry-header {
  background: linear-gradient(90deg, var(--brand-blue-dark), var(--brand-blue));
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.3px;
  padding: 1.1rem 1rem;
}

.enquiry-form {
  padding: 1.5rem;
}

.enquiry-input {
  border: 1px solid #dfe3e8;
  border-radius: 8px;
  padding: 0.65rem 0.50rem;
  font-size: 0.8rem;
  font-family: 'Inter', 'Noto Sans Devanagari', sans-serif;
  background-color: #fafbfc;
}

.enquiry-input:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(10, 61, 122, 0.12);
  background-color: #fff;
}

.enquiry-textarea {
  resize: vertical;
  min-height: 110px;
}

.btn-send {
  background: linear-gradient(90deg, var(--brand-green), #4a8a42);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  border: none;
  letter-spacing: 0.3px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-send:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(45, 90, 39, 0.3);
}

/* Mobile - fonts chote */
@media (max-width: 767.98px) {
  .about-heading {
    font-size: 1.4rem;
  }

  .about-text {
    font-size: 0.85rem;
    line-height: 1.65;
  }

  .enquiry-header {
    font-size: 0.85rem;
    padding: 0.9rem 0.8rem;
  }

  .enquiry-form {
    padding: 1.1rem;
  }

  .enquiry-input {
    font-size: 0.8rem;
    padding: 0.65rem 0.85rem;
  }

  .btn-send {
    font-size: 0.85rem;
    padding: 0.75rem 0.9rem;
  }
}
/* ---------- LOCATION ADVANTAGE SECTION ---------- */
.location-advantage-section {
  background-color: #fff;
}

.la-map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.la-map-img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.la-heading {
  color: var(--brand-blue-dark);
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.3;
}

.la-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.la-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-dark);
  border-bottom: 1px dashed #eee;
}

.la-list li:last-child {
  border-bottom: none;
}

.la-list li i {
  color: var(--brand-orange);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.la-time {
  margin-left: auto;
  color: var(--brand-blue);
  font-weight: 800;
}

.la-photo-strip .la-photo {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Mobile - fonts chote */
@media (max-width: 767.98px) {
  .la-heading {
    font-size: 1.25rem;
  }

  .la-text {
    font-size: 0.78rem;
    line-height: 1.65;
  }

  .la-list li {
    font-size: 0.78rem;
    padding: 0.4rem 0;
  }

  .la-time {
    font-size: 0.75rem;
  }

  .la-photo-strip .la-photo {
    height: 70px;
  }
}
/* ---------- SITE MAP SECTION ---------- */
.sitemap-section {
  background-color: #f7f9fb;
}

.sitemap-heading {
  color: var(--brand-blue-dark);
  font-weight: 700;
  font-size: 1.8rem;
}

.sitemap-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  cursor: zoom-in;
  max-width: 950px;
  margin: 0 auto;
}

.sitemap-img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}

.sitemap-img-wrap:hover .sitemap-img {
  transform: scale(1.04);
}

.sitemap-zoom-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 61, 122, 0.55);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sitemap-img-wrap:hover .sitemap-zoom-overlay {
  opacity: 1;
}

.sitemap-zoom-overlay i {
  font-size: 2rem;
}

.sitemap-zoom-overlay span {
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.4px;
}

/* Modal */
.sitemap-modal-content {
  background: transparent;
  border: none;
  position: relative;
}

.sitemap-modal-img {
  width: 100%;
  border-radius: var(--radius-md);
}

.btn-close-custom {
  position: absolute;
  top: -45px;
  right: 0;
  background: #fff;
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--brand-blue-dark);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 10;
}

/* Mobile - fonts chote */
@media (max-width: 767.98px) {
  .sitemap-heading {
    font-size: 1.25rem;
  }

  .sitemap-zoom-overlay i {
    font-size: 1.4rem;
  }

  .sitemap-zoom-overlay span {
    font-size: 0.75rem;
  }

  .btn-close-custom {
    top: -40px;
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
  }
}
/* ---------- AMENITIES SECTION ---------- */
.amenities-section {
  background-color: #f1f3f6;
}

.amenities-heading {
  color: var(--brand-blue-dark);
  font-weight: 800;
  font-size: 2rem;
  font-family: 'Inter', 'Noto Sans Devanagari', sans-serif;
}

.amenity-card {
  background-color: #fff;
  border: 1px solid #e2e6eb;
  border-radius: var(--radius-md);
  padding: 0.6rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(10, 61, 122, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  height: 100%;
}

.amenity-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(10, 61, 122, 0.12);
}

.amenity-img-wrap {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 0.7rem;
}

.amenity-img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.amenity-card:hover .amenity-img {
  transform: scale(1.06);
}

.amenity-label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-dark);
}

/* Mobile - fonts chote */
@media (max-width: 767.98px) {
  .amenities-heading {
    font-size: 1.3rem;
  }

  .amenity-img {
    height: 90px;
  }

  .amenity-label {
    font-size: 0.72rem;
  }

  .amenity-card {
    padding: 0.45rem;
  }
}

/* ---------- RERA STAMP - FIXED ---------- */
.rera-stamp-fixed {
  position: fixed;
  bottom: 24px;
  left: 20px;
  width: 75px;
  height: 75px;
  z-index: 999;
}

.rera-stamp-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: contain;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

/* ---------- FLOATING CALL NOW ---------- */
.call-now-float {
  position: fixed;
  bottom: 24px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ff416c, #ff8a00);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 6px 18px rgba(255, 65, 108, 0.4);
  z-index: 999;
  animation: pulse-call 2s infinite;
}

@keyframes pulse-call {
  0% { box-shadow: 0 0 0 0 rgba(255,65,108,0.5); }
  70% { box-shadow: 0 0 0 14px rgba(255,65,108,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,65,108,0); }
}

/* Mobile - fonts chote */
@media (max-width: 767.98px) {
  .rera-stamp-fixed {
    width: 64px;
    height: 64px;
    bottom: 14px;
    left: 12px;
  }

  .call-now-float {
    width: 44px;
    height: 44px;
    font-size: 1rem;
    bottom: 14px;
    right: 12px;
  }
}
/* ---------- CONTACT DETAILS SECTION ---------- */
.contact-details-section {
  background-color: #fff;
}

.cd-heading {
  color: var(--brand-blue-dark);
  font-weight: 800;
  font-size: 2rem;
  font-family: 'Inter', 'Noto Sans Devanagari', sans-serif;
}

.cd-card {
  background-color: #fff;
  border: 1px solid #e6eaee;
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cd-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
}

.cd-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-blue-dark), var(--brand-blue));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 6px 14px rgba(10, 61, 122, 0.3);
  margin-bottom: 0.4rem;
}

.cd-label {
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--text-muted);
}

.cd-value {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--brand-blue-dark);
  text-decoration: none;
  word-break: break-word;
}

a.cd-value:hover {
  color: var(--brand-orange);
}

/* Mobile - fonts chote */
@media (max-width: 767.98px) {
  .cd-heading {
    font-size: 1.3rem;
  }

  .cd-card {
    padding: 1.4rem 1rem;
  }

  .cd-icon {
    width: 46px;
    height: 46px;
    font-size: 1.15rem;
  }

  .cd-label {
    font-size: 0.68rem;
  }

  .cd-value {
    font-size: 0.85rem;
  }
}
/* ---------- FOOTER ---------- */
.site-footer {
  background-color: #0e1115;
  color: #cfd4da;
  position: relative;
}

.footer-links {
  font-size: 0.75rem;
  letter-spacing: 0.2px;
}

.footer-links a {
  color: #fff;
  font-weight: 500;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--brand-orange);
}

.footer-divider {
  margin: 0 0.75rem;
  color: #4a5058;
}

.footer-hr {
  border-color: #2a2e34;
  opacity: 1;
  margin: 0;
}

.footer-text {
  font-size: 0.8rem;
  color: #cfd4da;
}

.footer-bank-heading {
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
}

.footer-bank-logo {
  max-height: 55px;
  width: auto;
}

.footer-disclaimer {
  border-top: 1px solid #2a2e34;
  font-size: 0.7rem;
  color: #8b929b;
}

/* Scroll to top button */
.scroll-top-btn {
  position: fixed;
  bottom: 100px;
  right: 20px;
  width: 44px;
  height: 44px;
  background-color: var(--brand-blue-dark);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, background-color 0.2s ease;
}

.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
}

.scroll-top-btn:hover {
  background-color: var(--brand-blue);
  color: #fff;
}

/* Mobile - fonts chote */
@media (max-width: 767.98px) {
  .footer-links { font-size: 0.75rem; }
  .footer-divider { margin: 0 0.4rem; }
  .footer-text { font-size: 0.72rem; }
  .footer-bank-heading { font-size: 0.85rem; }
  .footer-bank-logo { max-height: 40px; }
  .footer-disclaimer { font-size: 0.65rem; }

  .scroll-top-btn {
    width: 38px;
    height: 38px;
    font-size: 0.95rem;
    bottom: 85px;
    right: 14px;
  }
}
/* ---------- TOP BAR - 50/50 SPLIT ---------- */
.top-bar {
  font-size: 0.85rem;
  color: #fff;
}

.top-bar-left,
.top-bar-right {
  flex: 1 1 50%;
  padding: 0.40rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.top-bar-left {
  background: linear-gradient(90deg, var(--brand-green), #4a8a42);
  justify-content: flex-start;
}

.top-bar-right {
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-blue-dark));
  justify-content: flex-end;
}

.top-bar-right a {
  color: #fff;
  font-weight: 600;
}

.top-bar-right a:hover {
  color: #ffcf5c;
}

/* ---------- STICKY NAVBAR ---------- */
#mainNavbar {
  transition: box-shadow 0.3s ease, padding 0.3s ease;
}

#mainNavbar.nav-scrolled {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 4px 18px rgba(0,0,0,0.12);
  animation: navSlideDown 0.35s ease;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

@keyframes navSlideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

/* prevent content jump when nav goes fixed */
body.nav-fixed-active {
  padding-top: 78px;
}

/* ---------- CUSTOM MOBILE TOGGLER ---------- */
.custom-toggler {
  border: none;
  background: linear-gradient(135deg, var(--brand-blue-dark), var(--brand-blue));
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  padding: 0;
}

.custom-toggler:focus {
  box-shadow: 0 0 0 3px rgba(10, 61, 122, 0.25);
}

/* Mobile - fonts chote */
@media (max-width: 767.98px) {
  .top-bar {
    font-size: 0.62rem;
  }
  .top-bar-left,
  .top-bar-right {
    padding: 0.4rem 0.8rem;
  }
  .top-bar-left span,
  .top-bar-right span {
    display: none;
  }

  body.nav-fixed-active {
    padding-top: 62px;
  }

  .custom-toggler {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
    .btn-register-mobile
    {
            font-size: 11px!important;
    }
    .footer-links a
    {
        font-size: 10px;
    }
  .top-bar-left { font-size: 0.58rem; }
  .top-bar-right { display: none; }
}
.btn-register {
  animation: register-blink 1.8s ease-in-out infinite;
}

@keyframes register-blink {
  0%, 100% {
    box-shadow: 0 6px 16px rgba(255, 77, 94, 0.35);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 6px 26px rgba(255, 77, 94, 0.75);
    transform: scale(1.04);
  }
}
.btn-register:hover {
  animation-play-state: paused;
}
.btn-register {
  animation: register-blink-fade 1.5s ease-in-out infinite;
}

@keyframes register-blink-fade {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}
/* Mobile-only compact registration button between logo & toggler */
.btn-register-mobile {
  padding: 0.5rem 0.7rem;
  font-size: 1.1rem;
  border-radius: 8px;
  margin-left: auto;
  margin-right: 0.2rem;
}
/* ==========================================================
   Privacy Policy Page Styles
========================================================== */

.policy-page {
  background-color: #fff;
}

.policy-hero {
  border-bottom: 2px solid #eee;
  padding-bottom: 1.5rem;
}

.policy-title {
  color: var(--brand-blue-dark);
  font-weight: 800;
  font-size: 2.2rem;
  font-family: 'Inter', 'Noto Sans Devanagari', sans-serif;
}

.policy-updated {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
}

.policy-content p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--text-dark);
  margin-bottom: 1.1rem;
}

.policy-heading {
  color: var(--brand-blue);
  font-weight: 700;
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 0.8rem;
}

.policy-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.2rem;
}

.policy-list li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.policy-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--brand-orange);
}

.policy-contact-list li {
  padding-left: 1.8rem;
  font-weight: 600;
}

.policy-contact-list li::before {
  display: none;
}

.policy-contact-list li i {
  position: absolute;
  left: 0;
  top: 0.15rem;
  color: var(--brand-blue);
  font-size: 0.9rem;
}

.policy-contact-list a {
  color: var(--brand-blue-dark);
}

.policy-contact-list a:hover {
  color: var(--brand-orange);
}

/* Mobile - fonts chote */
@media (max-width: 767.98px) {
  .policy-title {
    font-size: 1.4rem;
  }
  .policy-updated {
    font-size: 0.72rem;
  }
  .policy-heading {
    font-size: 1rem;
    margin-top: 1.5rem;
  }
  .policy-content p,
  .policy-list li {
    font-size: 0.8rem;
    line-height: 1.7;
  }
}
/* ==========================================================
   Registration Page Styles
========================================================== */

.reg-page {
  background-color: #f7f9fb;
}

.reg-title {
  color: var(--brand-blue-dark);
  font-weight: 800;
  font-size: 1.9rem;
  font-family: 'Inter', 'Noto Sans Devanagari', sans-serif;
}

.reg-sub {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Form sections */
.reg-form {
  background-color: #fff;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
}

.reg-section {
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #eef1f4;
}

.reg-section:last-of-type {
  border-bottom: none;
}

.reg-section-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}

.reg-section-head h5 {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-dark);
  margin: 0;
}

.reg-step {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-blue-dark), var(--brand-blue));
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.reg-check-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brand-blue);
}

.reg-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
  display: block;
}

.reg-input {
  border: 1px solid #dfe3e8;
  border-radius: 8px;
  padding: 0.65rem 0.9rem;
  font-size: 0.88rem;
  font-family: 'Poppins', sans-serif;
  background-color: #fafbfc;
}

.reg-input:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(10, 61, 122, 0.12);
  background-color: #fff;
}

/* Plot size radio boxes */
.plot-option {
  display: block;
  cursor: pointer;
  margin: 0;
}

.plot-option input {
  display: none;
}

.plot-option-box {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  border: 2px solid #dfe3e8;
  border-radius: 10px;
  padding: 0.9rem 1rem;
  transition: all 0.2s ease;
}

.plot-option-box strong {
  font-size: 1rem;
  color: var(--text-dark);
}

.plot-option-box small {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.plot-option input:checked + .plot-option-box {
  border-color: var(--brand-blue);
  background-color: #eef4fb;
  box-shadow: 0 0 0 3px rgba(10, 61, 122, 0.1);
}

/* Declaration */
.reg-declaration {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.reg-declaration a {
  color: var(--brand-blue);
  font-weight: 700;
}

.btn-reg-submit {
  background: linear-gradient(90deg, var(--brand-blue-dark), var(--brand-blue));
  color: #fff;
  font-weight: 700;
  padding: 0.9rem 1rem;
  border-radius: 50px;
  font-size: 1rem;
  border: none;
  box-shadow: 0 8px 20px rgba(10, 61, 122, 0.25);
  transition: transform 0.2s ease;
}

.btn-reg-submit:hover {
  color: #fff;
  transform: translateY(-2px);
}

/* Sidebar */
.reg-sidebar-card {
  background-color: #fff;
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  box-shadow: var(--shadow-soft);
}

.reg-sidebar-title {
  font-weight: 700;
  color: var(--brand-blue-dark);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.reg-info-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px dashed #eee;
  font-size: 0.85rem;
}

.reg-info-list li:last-child {
  border-bottom: none;
}

.reg-info-list li span {
  color: var(--text-muted);
}

.reg-info-list li strong {
  color: var(--text-dark);
  text-align: right;
}

.reg-help-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--brand-blue-dark);
  padding: 0.5rem 0;
}

.reg-help-link:hover {
  color: var(--brand-orange);
}

.reg-sidebar-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.btn-reg-enquiry {
  background: linear-gradient(90deg, var(--brand-green), #4a8a42);
  color: #fff;
  font-weight: 700;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  border: none;
  font-size: 0.9rem;
}

.btn-reg-enquiry:hover {
  color: #fff;
}

/* Mobile - fonts chote */
@media (max-width: 767.98px) {
  .reg-title { font-size: 1.2rem; }
  .reg-sub { font-size: 0.60rem; }
  .reg-form { padding: 1.1rem; }
  .reg-section-head h5 { font-size: 0.9rem; }
  .reg-step { width: 28px; height: 28px; font-size: 0.72rem; }
  .reg-label { font-size: 0.72rem; }
  .reg-input { font-size: 0.78rem; padding: 0.55rem 0.75rem; }
  .plot-option-box strong { font-size: 0.85rem; }
  .plot-option-box small { font-size: 0.68rem; }
  .btn-reg-submit { font-size: 0.85rem; }
}
/* Sticky sidebar - desktop only */
.reg-sidebar-sticky {
  position: sticky;
  top: 100px;
}

/* Locked/readonly permanent address fields visual feedback */
.reg-fields-locked .reg-input[readonly] {
  background-color: #eef1f4;
  color: var(--text-muted);
  cursor: not-allowed;
}

/* Mobile - sticky hata do, normal flow rahe */
@media (max-width: 991.98px) {
  .reg-sidebar-sticky {
    position: static;
    top: auto;
  }
}
/* Plot size radio boxes */
.plot-option {
  display: block;
  cursor: pointer;
  margin: 0;
}

.plot-option input {
  display: none;
}

.plot-option-box {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  border: 2px solid #dfe3e8;
  border-radius: 10px;
  padding: 0.9rem 1rem;
  min-height: 60px;
  transition: all 0.2s ease;
}

.plot-option-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.plot-option-text strong {
  font-size: 1rem;
  color: var(--text-dark);
}

.plot-option-text small {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Custom radio dot */
.plot-radio-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #b7bec7;
  flex-shrink: 0;
  position: relative;
  transition: all 0.2s ease;
}

.plot-radio-dot::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--brand-blue);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.2s ease;
}

/* Checked state */
.plot-option input:checked + .plot-option-box {
  border-color: var(--brand-blue);
  background-color: #eef4fb;
  box-shadow: 0 0 0 3px rgba(10, 61, 122, 0.1);
}

.plot-option input:checked + .plot-option-box .plot-option-text strong {
  color: var(--brand-blue-dark);
  font-weight: 800;
}

.plot-option input:checked + .plot-option-box .plot-radio-dot {
  border-color: var(--brand-blue);
}

.plot-option input:checked + .plot-option-box .plot-radio-dot::after {
  transform: translate(-50%, -50%) scale(1);
}
@media (max-width: 767.98px) {
  .plot-option-box {
    min-height: 48px;
    padding: 0.7rem 0.8rem;
    gap: 0.5rem;
  }
  .plot-option-text strong {
    font-size: 0.85rem;
  }
  .plot-option-text small {
    font-size: 0.68rem;
  }
  .plot-radio-dot {
    width: 16px;
    height: 16px;
  }
  .plot-radio-dot::after {
    width: 8px;
    height: 8px;
  }
}
.general
{
    background-color: #ff565d;
    text-align: center;
    font-size: 19px;
    font-weight: 600;
    padding: 5px;
    color: #fff;
    letter-spacing: 0.2px;
}
.reserved
{
    background: linear-gradient(90deg, var(--brand-green), #4a8a42);
    text-align: center;
    font-size: 19px;
    font-weight: 600;
    padding: 5px;
    color: #fff;
    letter-spacing: 0.2px;
}
 .reserved-alert-strip {
  display: none;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding: 10px 14px;
  background: #fff8e6;
  border: 1px solid #ffe08a;
  border-left: 4px solid #f0a500;
  border-radius: 6px;
  color: #8a6300;
  font-size: 14px;
  font-weight: 500;
}

.reserved-alert-strip.reserved-alert-show {
  display: flex;
  animation: fadeSlideIn 0.25s ease;
}

.reserved-alert-strip i {
  font-size: 16px;
  color: #f0a500;
}

.gender-mismatch-strip {
  display: none;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding: 10px 14px;
  background: #fdeaec;
  border: 1px solid #f7c1c9;
  border-left: 4px solid #d9364a;
  border-radius: 6px;
  color: #a3283b;
  font-size: 13.5px;
  font-weight: 500;
}

.gender-mismatch-strip.gender-mismatch-show {
  display: flex;
  animation: fadeSlideIn 0.25s ease;
}

.gender-mismatch-strip i {
  font-size: 16px;
  color: #d9364a;
  flex-shrink: 0;
}

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}
.payment-page {
  background: #f7f8fa;
  padding: 48px 16px;
}

.payment-card {
  max-width: 460px;
  margin: 0 auto;
  background: #fff;
  border-radius: 14px;
  padding: 28px 26px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.payment-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #e6f7ee;
  color: #1a9e5c;
  font-size: 12.5px;
  font-weight: 600;
  text-align: center;
  padding: 8px 12px;
  border-radius: 6px;
  margin-bottom: 18px;
  line-height: 1.4;
}

.payment-title {
  font-size: 17px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 4px;
  color: #1a1a1a;
}

.payment-reg-no {
  text-align: center;
  font-size: 12.5px;
  color: #888;
  margin-bottom: 18px;
}

.payment-reg-no strong {
  color: #0b5ed7;
}

.payment-details {
  text-align: left;
  margin-bottom: 16px;
}

.payment-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  gap: 10px;
}

.payment-row span {
  color: #888;
  font-size: 12.5px;
  flex-shrink: 0;
}

.payment-row strong {
  font-size: 13.5px;
  color: #222;
  text-align: right;
  word-break: break-word;
  font-weight: 600;
}

.payment-amount-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f5f8ff;
  border: 1px solid #dbe7ff;
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 20px;
}

.payment-amount-box span {
  font-size: 13px;
  color: #555;
  font-weight: 500;
}

.payment-amount-box strong {
  font-size: 20px;
  color: #0b5ed7;
  font-weight: 700;
}

.btn-pay-now {
  width: 100%;
  padding: 13px;
  background: #0b5ed7;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s ease;
}

.btn-pay-now:hover {
  background: #0a4fc0;
}

.payment-hint {
  text-align: center;
  font-size: 12px;
  color: #999;
  margin-top: 12px;
  margin-bottom: 0;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .payment-page {
    padding: 32px 14px;
  }
}

@media (max-width: 480px) {
  .payment-card {
    padding: 22px 18px;
    border-radius: 10px;
  }
  .payment-title {
    font-size: 15.5px;
  }
  .payment-row {
    flex-direction: column;
    gap: 2px;
    padding: 7px 0;
  }
  .payment-row strong {
    text-align: left;
    font-size: 13px;
  }
  .payment-amount-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .payment-amount-box strong {
    font-size: 22px;
  }
  .btn-pay-now {
    font-size: 14px;
    padding: 12px;
  }
}


.hs-header {
  position: relative;
  z-index: 100;
}

/* ---------- Layer 1: Bright green marquee strip ---------- */
.hs-marquee-strip {
  background: var(--brand-green);
  overflow: hidden;
  padding: 8px 0;
}

.hs-marquee-wrap {
  display: flex;
  overflow: hidden;
  white-space: nowrap;
}

.hs-marquee-track {
  display: flex;
  gap: 40px;
  list-style: none;
  padding: 0;
  margin: 0;
  animation: hsMarqueeScroll 28s linear infinite;
  flex-shrink: 0;
}

.hs-marquee-track li {
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.hs-marquee-track li i {
  font-size: 11px;
  color: var(--brand-peach);
}

.hs-marquee-track strong {
  font-weight: 800;
}

@keyframes hsMarqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

/* ---------- Layer 2: Cream announcement strip ---------- */
.hs-announce-strip {
  background: var(--brand-peach);
  padding: 10px 0;
}

.hs-announce-text {
  text-align: center;
  color: var(--brand-blue-dark);
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.5;
}

/* ---------- Layer 3: Dark green title bar ---------- */
.hs-title-strip {
  background: var(--brand-green);
  padding: 14px 0;
}

.hs-title-text {
  text-align: center;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

/* ---------- Layer 4: White navbar ---------- */
.hs-navbar {
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.hs-logo-img {
  height: 52px;
  width: auto;
}

.hs-main-nav {
  gap: 6px;
}

.hs-main-nav .nav-link {
  color: var(--brand-blue-dark);
  font-weight: 600;
  font-size: 14.5px;
  padding: 8px 14px !important;
  border-radius: var(--radius-md);
  transition: background 0.2s ease, color 0.2s ease;
}

.hs-main-nav .nav-link:hover {
  background: var(--brand-peach);
  color: var(--brand-blue);
}

.hs-btn-register {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-red);
  color: #fff;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.3px;
  padding: 11px 22px;
  border-radius: var(--radius-md);
  text-decoration: none;
  box-shadow: var(--shadow-card);
  transition: background 0.2s ease, transform 0.15s ease;
}

.hs-btn-register:hover {
  background: var(--brand-blue-dark);
  color: #fff;
  transform: translateY(-1px);
}

.hs-btn-register i {
  font-size: 14px;
}

.hs-toggler {
  border: none;
  background: var(--brand-peach);
  border-radius: var(--radius-md);
  padding: 8px 12px;
  font-size: 20px;
  color: var(--brand-blue-dark);
}

.hs-toggler:focus {
  box-shadow: none;
  outline: none;
}

/* ---------- Mobile responsive ---------- */
@media (max-width: 991px) {
  .hs-marquee-track li {
    font-size: 12px;
  }

  .hs-title-text {
    font-size: 14px;
  }

  .hs-announce-text {
    font-size: 12px;
  }

  .hs-logo-img {
    height: 42px;
  }

  .hs-btn-register-mobile {
    margin-left: auto;
    margin-right: 10px;
    padding: 7px 9px;
    font-size: 9px;
  }

  .navbar-collapse {
    background: #fff;
    padding: 16px;
    border-radius: var(--radius-md);
    margin-top: 10px;
    box-shadow: var(--shadow-card);
  }

  .hs-main-nav {
    flex-direction: column;
    gap: 2px;
  }

  .hs-main-nav .nav-link {
    padding: 10px 12px !important;
  }
}

@media (max-width: 480px) {
  .hs-marquee-track {
    gap: 24px;
  }

  .hs-marquee-track li {
    font-size: 11px;
  }

  .hs-title-text {
    font-size: 13px;
    line-height: 1.4;
  }

  .hs-announce-text {
    font-size: 11px;
  }

  .hs-logo-img {
    height: 36px;
  }
}
.hs-hero-section {
  background: #fff;
}

/* ---------- Left: Image ---------- */
.hs-hero-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-card);
}

.hs-hero-img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  display: block;
}

.hs-ribbon-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--brand-green);
  color: #fff;
  padding: 8px 18px;
  border-radius: var(--radius-md);
  z-index: 2;
  box-shadow: var(--shadow-soft);
  line-height: 1.3;
}

.hs-ribbon-line1 {
  display: block;
  font-size: 11.5px;
  font-style: italic;
  font-weight: 500;
  opacity: 0.9;
}

.hs-ribbon-line2 {
  display: block;
  font-size: 15px;
  font-weight: 800;
}

/* ---------- Right: Detail Card ---------- */
.hs-detail-card {
  background: var(--brand-peach);
  border-radius: var(--radius-lg);
  padding: 30px 32px;
  box-shadow: var(--shadow-card);
}

.hs-detail-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--brand-blue-dark);
  margin-bottom: 6px;
}

.hs-detail-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 18px;
}

.hs-highlight-box {
  background: #fbe0d0;
  border-left: 4px solid var(--brand-red);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  margin-bottom: 14px;
  font-size: 13.5px;
  color: var(--text-dark);
  line-height: 1.6;
}

.hs-highlight-box strong {
  color: var(--brand-blue-dark);
}

.hs-plain-line {
  font-size: 13.5px;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.hs-plain-line strong {
  color: var(--brand-blue-dark);
}

.hs-btn-register-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-red);
  color: #fff;
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.3px;
  padding: 13px 26px;
  border-radius: var(--radius-md);
  text-decoration: none;
  box-shadow: var(--shadow-card);
  transition: background 0.2s ease, transform 0.15s ease;
  margin-bottom: 18px;
}

.hs-btn-register-cta:hover {
  background: var(--brand-blue-dark);
  color: #fff;
  transform: translateY(-1px);
}

.hs-pay-text {
  font-size: 20px;
  font-weight: 800;
  color: var(--brand-blue-dark);
  margin-bottom: 16px;
}

.hs-helpline-box {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1.5px solid var(--brand-red);
  color: var(--brand-red);
  font-weight: 700;
  font-size: 14px;
  padding: 11px 20px;
  border-radius: var(--radius-md);
}

.hs-helpline-box i {
  font-size: 14px;
}

/* ---------- Mobile responsive ---------- */
@media (max-width: 991px) {
  .hs-hero-img {
    min-height: 260px;
  }

  .hs-detail-card {
    padding: 24px 22px;
  }

  .hs-detail-title {
    font-size: 21px;
  }

  .hs-pay-text {
    font-size: 17px;
  }
}

@media (max-width: 480px) {
  .hs-hero-img {
    min-height: 200px;
  }

  .hs-ribbon-badge {
    top: 12px;
    left: 12px;
    padding: 6px 14px;
  }

  .hs-ribbon-line2 {
    font-size: 13px;
  }

  .hs-detail-card {
    padding: 20px 18px;
    border-radius: var(--radius-md);
  }

  .hs-detail-title {
    font-size: 18px;
  }

  .hs-highlight-box,
  .hs-plain-line {
    font-size: 12.5px;
  }

  .hs-btn-register-cta {
    width: 100%;
    justify-content: center;
  }

  .hs-helpline-box {
    width: 100%;
    justify-content: center;
  }
}
.hs-about-section {
  background: #fff;
}

.hs-about-heading {
  font-size: 30px;
  font-weight: 800;
  color: var(--brand-blue-dark);
  margin-bottom: 10px;
}

.hs-about-underline {
  width: 60px;
  height: 3px;
  background: var(--brand-red);
  margin: 0 auto;
  border-radius: 2px;
}

.hs-about-text-wrap {
  margin: 0 auto 28px;
}

.hs-about-text {
  font-size: 15px;
  color: var(--text-dark);
  line-height: 1.85;
  text-align: center;
  margin-bottom: 18px;
}

.hs-about-text:last-child {
  margin-bottom: 0;
}

.hs-highlight-box-center {
  margin: 0 auto;
  background: #fbe0d0;
  border: 1.5px solid var(--brand-red);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  text-align: center;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--brand-red);
  line-height: 1.6;
}

.hs-highlight-box-center strong {
  color: var(--brand-blue-dark);
}

/* ---------- Mobile responsive ---------- */
@media (max-width: 768px) {
  .hs-about-heading {
    font-size: 22px;
  }

  .hs-about-text {
    font-size: 13.5px;
    text-align: left;
  }

  .hs-highlight-box-center {
    font-size: 13.5px;
    padding: 14px 18px;
  }
}

@media (max-width: 480px) {
  .hs-about-heading {
    font-size: 19px;
  }
}
/* ---------- Dates Cards ---------- */
.hs-dates-section {
  overflow: hidden;
}

.hs-date-card {
  padding: 24px 30px;
  text-align: center;
  height: 100%;
}

.hs-date-card-blue {
  background: var(--brand-blue);
}

.hs-date-card-green {
  background: var(--brand-green);
}

.hs-date-card-red {
  background: var(--brand-red);
}

.hs-date-label {
  display: block;
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 6px;
}

.hs-date-value {
  display: block;
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  font-weight: 600;
}

/* ---------- Payment Plan ---------- */
.hs-payment-plan-section {
  background: #fff;
}

.hs-pp-table-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.hs-pp-table-header {
  background: var(--brand-blue);
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: 800;
  padding: 16px;
}

.hs-pp-table {
  margin-bottom: 0;
}

.hs-pp-table thead th {
  background: var(--brand-blue);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  padding: 14px 10px;
  border: 1px solid rgba(255,255,255,0.15);
  white-space: nowrap;
}

.hs-pp-table tbody td {
  text-align: center;
  padding: 13px 10px;
  font-size: 13.5px;
  color: var(--text-dark);
  border: 1px solid #e5e5e5;
  white-space: nowrap;
}

.hs-pp-table tbody tr:nth-child(even) {
  background: var(--brand-peach);
}

.hs-total-cost {
  font-weight: 800;
  color: var(--brand-blue-dark);
}

.hs-pp-note {
  text-align: center;
}

.hs-pp-note p {
  font-size: 13.5px;
  color: var(--text-muted);
}

.hs-pp-note strong {
  color: var(--brand-red);
}

.hs-pp-note-hindi {
  font-size: 13px;
}

/* ---------- Mobile responsive ---------- */
@media (max-width: 767px) {
  .hs-date-card {
    padding: 18px 20px;
  }

  .hs-date-label {
    font-size: 15px;
  }

  .hs-date-value {
    font-size: 12.5px;
  }

  .hs-pp-table-header {
    font-size: 15px;
    padding: 12px;
  }

  .hs-pp-table thead th,
  .hs-pp-table tbody td {
    font-size: 12px;
    padding: 10px 6px;
  }
}
.hs-location-section {
  background: var(--brand-green);
}

.hs-la-map-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.hs-la-map-img {
  width: 100%;
  display: block;
}

.hs-la-heading {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
}

.hs-la-text {
  font-size: 14.5px;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
}

.hs-la-text strong {
  color: #fff;
}

.hs-la-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.hs-la-list li:last-child {
  border-bottom: none;
}

.hs-la-list li i {
  color: var(--brand-orange);
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

.hs-la-item-title {
  display: block;
  color: #fff;
  font-size: 15.5px;
  font-weight: 800;
  margin-bottom: 3px;
}

.hs-la-item-desc {
  display: block;
  color: rgba(255,255,255,0.85);
  font-size: 13.5px;
  line-height: 1.6;
}

/* ---------- Mobile responsive ---------- */
@media (max-width: 991px) {
  .hs-la-heading {
    font-size: 21px;
  }
}

@media (max-width: 480px) {
  .hs-la-heading {
    font-size: 18px;
  }

  .hs-la-text {
    font-size: 13px;
  }

  .hs-la-item-title {
    font-size: 14px;
  }

  .hs-la-item-desc {
    font-size: 12.5px;
  }
}
.hs-nearby-section {
  background: linear-gradient(135deg, #eaf6f7 0%, #dff0f1 100%);
}

.hs-nearby-title {
  font-size: 32px;
  font-weight: 900;
  color: var(--brand-blue-dark);
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.hs-nearby-subtitle {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-muted);
}

.hs-nearby-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  height: 100%;
}

.hs-nearby-card-header {
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-dark) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  font-size: 14.5px;
  font-weight: 800;
}

.hs-nearby-icon-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 2px solid var(--brand-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 17px;
}

.hs-nearby-list {
  padding: 18px 18px 20px;
}

.hs-nearby-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
}

.hs-nearby-list li i {
  color: var(--brand-orange);
  font-size: 16px;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

.hs-nearby-name {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-dark);
  white-space: nowrap;
}

.hs-nearby-dots {
  flex: 1;
  border-bottom: 2px dotted #d5d8dc;
  margin: 0 4px;
  height: 1px;
  align-self: center;
}

.hs-nearby-time {
  font-size: 13px;
  font-weight: 800;
  color: var(--brand-blue-dark);
  white-space: nowrap;
}

/* ---------- Mobile responsive ---------- */
@media (max-width: 991px) {
  .hs-nearby-title {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .hs-nearby-title {
    font-size: 19px;
  }

  .hs-nearby-subtitle {
    font-size: 12.5px;
  }

  .hs-nearby-card-header {
    font-size: 13px;
    padding: 14px 14px;
  }

  .hs-nearby-name,
  .hs-nearby-time {
    font-size: 12px;
  }
}

.hs-amenities-section {
  background: #fff;
}

.hs-amenities-heading {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-dark);
}

.hs-amenity-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid #e5e5e5;
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.hs-amenity-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}

.hs-amenity-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.hs-amenity-label-box {
  padding: 16px 14px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  background: #fff;
}

/* ---------- Mobile responsive ---------- */
@media (max-width: 767px) {
  .hs-amenities-heading {
    font-size: 22px;
  }

  .hs-amenity-label-box {
    font-size: 11px;
    padding: 8px 6px;
  }
}

@media (max-width: 480px) {
  .hs-amenities-heading {
    font-size: 19px;
  }
}
.hs-contact-section {
  background: #f4f5f7;
}

.hs-contact-heading {
  font-size: 30px;
  font-weight: 800;
    text-align: center;
  color: var(--text-dark);
}

.hs-contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 20px 22px;
  margin-bottom: 18px;
  box-shadow: var(--shadow-soft);
}

.hs-contact-info-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--brand-peach);
  color: var(--brand-blue-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.hs-contact-info-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.hs-contact-info-text {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

.hs-contact-info-text a {
  color: var(--text-muted);
  text-decoration: none;
}

.hs-contact-info-text a:hover {
  color: var(--brand-blue);
}

.hs-contact-input {
  border: 1px solid #dcdfe3;
  border-radius: var(--radius-md);
  padding: 14px 16px;
  font-size: 14px;
  background: #fff;
}

.hs-contact-input:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(10, 61, 122, 0.1);
  outline: none;
}

.hs-contact-textarea {
  resize: vertical;
  min-height: 120px;
}

.hs-contact-submit-btn {
  background: var(--brand-green);
  color: #fff;
  font-weight: 700;
  font-size: 14.5px;
  padding: 14px 34px;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.hs-contact-submit-btn:hover {
  background: #1f4319;
  transform: translateY(-1px);
}

/* ---------- Mobile responsive ---------- */
@media (max-width: 767px) {
  .hs-contact-heading {
    font-size: 22px;
  }

  .hs-contact-info-card {
    padding: 16px 18px;
  }

  .hs-contact-info-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .hs-contact-info-title {
    font-size: 14.5px;
  }

  .hs-contact-info-text {
    font-size: 13px;
  }

  .hs-contact-submit-btn {
    width: 100%;
  }
}
.hs-site-footer {
  background: var(--brand-blue);
  color: #fff;
  position: relative;
}

.hs-footer-links {
  font-size: 13.5px;
}

.hs-footer-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.hs-footer-links a:hover {
  color: var(--brand-orange);
}

.hs-footer-divider {
  color: rgba(255,255,255,0.35);
  margin: 0 12px;
}

.hs-footer-hr {
  border-color: rgba(255,255,255,0.15);
  margin: 0;
}

.hs-footer-text {
  font-size: 13.5px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
}

.hs-footer-text strong {
  color: #fff;
}

.hs-footer-disclaimer-small {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.hs-footer-bank-heading {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
}

.hs-footer-bank-logo {
  height: 40px;
  width: auto;
  background: #fff;
  padding: 6px 14px;
  border-radius: 6px;
}

.hs-footer-disclaimer {
  border-top: 1px solid rgba(255,255,255,0.15);
}

.hs-footer-disclaimer p {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.hs-footer-disclaimer strong {
  color: rgba(255,255,255,0.7);
}

/* ---------- Scroll to top button ---------- */
.hs-scroll-top-btn {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand-orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: var(--shadow-card);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 999;
}

.hs-scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.hs-scroll-top-btn:hover {
  background: var(--brand-blue-dark);
  color: #fff;
}

/* ---------- RERA fixed badge ---------- */
.hs-rera-stamp-fixed {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 998;
}

.hs-rera-stamp-img {
  width: 90px;
  height: auto;
}

/* ---------- Floating Call Now button ---------- */
.hs-call-now-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--brand-green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: var(--shadow-card);
  z-index: 999;
  animation: hsCallPulse 2s infinite;
}

.hs-call-now-float:hover {
  background: #1f4319;
  color: #fff;
}

@keyframes hsCallPulse {
  0% { box-shadow: 0 0 0 0 rgba(45, 90, 39, 0.5); }
  70% { box-shadow: 0 0 0 14px rgba(45, 90, 39, 0); }
  100% { box-shadow: 0 0 0 0 rgba(45, 90, 39, 0); }
}

/* ---------- Mobile responsive ---------- */
@media (max-width: 480px) {
  .hs-footer-divider {
    margin: 0 6px;
  }

  .hs-footer-links {
    font-size: 12px;
  }

  .hs-footer-text {
    font-size: 12px;
  }

  .hs-rera-stamp-img {
    width: 65px;
  }

  .hs-rera-stamp-fixed {
    bottom: 15px;
    left: 15px;
  }

  .hs-call-now-float {
    width: 46px;
    height: 46px;
    font-size: 19px;
    bottom: 18px;
    right: 18px;
  }

  .hs-scroll-top-btn {
    width: 38px;
    height: 38px;
    bottom: 78px;
    right: 18px;
  }
}
.hs-reg-page {
  background: #f4f5f7;
}

/* ---------- Page hero ---------- */
.hs-reg-hero {
  max-width: 700px;
  margin: 0 auto;
}

.hs-reg-title {
  font-size: 30px;
  font-weight: 800;
  color: var(--brand-blue-dark);
  margin-bottom: 8px;
}

.hs-reg-sub {
  font-size: 14.5px;
  color: var(--text-muted);
}

.hs-reg-sub strong {
  color: var(--brand-red);
}

/* ---------- Info strip ---------- */
.hs-reg-info-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  box-shadow: var(--shadow-card);
  /* max-width: 1100px; */
  margin: 0 auto;
}

.hs-reg-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 190px;
  padding: 8px 14px;
  border-right: 1px solid #eee;
  text-decoration: none;
}

.hs-reg-info-item:last-child {
  border-right: none;
}

.hs-reg-info-item i {
  font-size: 18px;
  color: var(--brand-orange);
  flex-shrink: 0;
}

.hs-reg-info-item div {
  display: flex;
  flex-direction: column;
}

.hs-reg-info-item span {
  font-size: 10.5px;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
}

.hs-reg-info-item strong {
  font-size: 13px;
  color: var(--text-dark);
  font-weight: 800;
}

.hs-reg-info-help strong {
  color: var(--brand-red);
}

/* ---------- Form wrap ---------- */
.hs-reg-form-wrap {
  max-width: 1100px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  box-shadow: var(--shadow-card);
}

.hs-reg-section {
  margin-bottom: 34px;
  padding-bottom: 28px;
  border-bottom: 1px dashed #e5e5e5;
}

.hs-reg-section:last-of-type {
  border-bottom: none;
  margin-bottom: 20px;
}

.hs-reg-section-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.hs-reg-section-head h5 {
  font-size: 17px;
  font-weight: 800;
  color: var(--brand-blue-dark);
  margin: 0;
}

.hs-reg-step {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--brand-blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
}

.hs-reg-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
  display: block;
}

.hs-reg-input {
  border: 1px solid #dcdfe3;
  border-radius: var(--radius-md);
  padding: 11px 14px;
  font-size: 14px;
  background: #fbfbfc;
}

.hs-reg-input:focus {
  border-color: var(--brand-blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(10, 61, 122, 0.1);
  outline: none;
}

.hs-reg-check-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
}

.hs-reg-fields-locked {
  opacity: 0.6;
}

/* ---------- Alerts ---------- */
.hs-reserved-alert-strip,
.hs-gender-mismatch-strip {
  display: none;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 600;
}

.hs-reserved-alert-strip {
  background: var(--brand-peach);
  border-left: 4px solid var(--brand-orange);
  color: #8a5200;
}

.hs-reserved-alert-strip.hs-reserved-alert-show {
  display: flex;
}

.hs-gender-mismatch-strip {
  background: #fdeaec;
  border-left: 4px solid var(--brand-red);
  color: var(--brand-red);
}

.hs-gender-mismatch-strip.hs-gender-mismatch-show {
  display: flex;
}

.hs-field-error-msg {
  display: none;
  color: var(--brand-red);
  font-size: 12px;
  margin-top: 5px;
  font-weight: 600;
}

.hs-field-error-msg.hs-field-error-show {
  display: block;
}

.hs-field-invalid {
  border-color: var(--brand-red) !important;
}

.hs-field-invalid:focus {
  box-shadow: 0 0 0 3px rgba(226, 55, 46, 0.15) !important;
}

/* ---------- Plot options ---------- */
.hs-plot-option input {
  display: none;
}

.hs-plot-option-box {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid #dcdfe3;
  border-radius: var(--radius-md);
  padding: 14px 16px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.hs-plot-radio-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid #ccc;
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.2s ease;
}

.hs-plot-option-text {
  font-size: 13px;
  color: var(--text-dark);
}

.hs-plot-option input:checked + .hs-plot-option-box {
  border-color: var(--brand-blue);
  background: rgba(10, 61, 122, 0.05);
}

.hs-plot-option input:checked + .hs-plot-option-box .hs-plot-radio-dot {
  border-color: var(--brand-blue);
  background: var(--brand-blue);
  box-shadow: inset 0 0 0 3px #fff;
}

/* ---------- Declaration + Submit ---------- */
.hs-reg-declaration {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.hs-reg-declaration a {
  color: var(--brand-blue);
  font-weight: 600;
}

.hs-btn-reg-submit {
  background: var(--brand-red);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  padding: 15px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.hs-btn-reg-submit:hover {
  background: var(--brand-blue-dark);
  transform: translateY(-1px);
}

/* ---------- Mobile responsive ---------- */
@media (max-width: 991px) {
  .hs-reg-info-strip {
    /* flex-direction: column; */
  }

  .hs-reg-info-item {
    border-right: none;
    border-bottom: 1px solid #eee;
    padding: 10px 6px;
  }

  .hs-reg-info-item:last-child {
    border-bottom: none;
  }

  .hs-reg-form-wrap {
    padding: 28px 22px;
  }
}

@media (max-width: 480px) {
  .hs-reg-title {
    font-size: 20px;
  }

  .hs-reg-sub {
    font-size: 12.5px;
  }

  .hs-reg-form-wrap {
    padding: 20px 16px;
    border-radius: var(--radius-md);
  }

  .hs-reg-section-head h5 {
    font-size: 15px;
  }

  .hs-reg-step {
    width: 26px;
    height: 26px;
    font-size: 11px;
  }

  .hs-btn-reg-submit {
    font-size: 14px;
    padding: 13px;
  }
}
