/* ===== COLOR VARIABLES ===== */
:root {
  --clr-orange: #f5820d;
  --clr-orange-dark: #e0700a;
  --clr-green: #1a7a33;
  --clr-green-dark: #145c27;
  --clr-cream: #fff8ec;
  --clr-text-dark: #222;
}

body {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  color: var(--clr-text-dark);
}

/* ===== TOP TICKER ===== */
.top-ticker {
  background: var(--clr-green-dark);
  overflow: hidden;
  white-space: nowrap;
  padding: 9px 0;
}
.ticker-track {
  display: inline-flex;
  animation: tickerScroll 28s linear infinite;
}
.ticker-track span {
  color: #fff;
  font-size: 14px;
  padding: 0 24px;
  position: relative;
}
.ticker-track span::after {
  content: "|";
  position: absolute;
  right: -4px;
  color: rgba(255,255,255,0.5);
}
.top-ticker:hover .ticker-track {
  animation-play-state: paused;
}
@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== HEADER ===== */
.site-header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
  position: sticky;
  top: 0;
  z-index: 999;
  padding: 0px 0;
}

/* LOGO */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-img {
  /* height: 53px; */
  width: 178px;
}
.logo-fallback-icon {
  display: none; /* JS turns this on only if logo image fails to load */
  align-items: center;
  justify-content: center;
  height: 46px;
  width: 46px;
  background: var(--clr-green-dark);
  color: #fff;
  border-radius: 8px;
  font-size: 22px;
}
.brand-text {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.25;
  color: var(--clr-green-dark);
}

/* MENU LINKS */
.navbar-nav .nav-link {
  font-weight: 600;
  font-size: 14px;
  color: #222;
  padding: 8px 14px !important;
  transition: color 0.2s ease;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--clr-orange);
}

/* REGISTER BUTTON */
.btn-register {
  background: var(--clr-orange);
  color: #fff !important;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 6px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s ease;
}
.btn-register:hover {
  background: var(--clr-orange-dark);
  color: #fff;
}

/* MOBILE TOGGLE BUTTON */
.navbar-toggler {
  border: none;
  font-size: 26px;
  color: var(--clr-green-dark);
  padding: 4px 8px;
  background: transparent;
}
.navbar-toggler:focus {
  box-shadow: none;
}

/* ===== HERO TITLE STRIP ===== */
.hero-title-strip {
  background: linear-gradient(90deg, var(--clr-orange), var(--clr-orange-dark));
  padding: 15px 0;
}
.hero-logo-round {
  height: 70px;
  width: 70px;
  border-radius: 50%;
  background: #fff;
  padding: 6px;
}
.hero-hindi-title {
  color: #fff;
  font-size: 37px;
  letter-spacing: 0.4px;
  font-weight: 700;
  text-align: center;
}

/* ===== CONTACT STRIP ===== */
.contact-strip {
  background: var(--clr-green);
  padding: 10px 0;
}
.contact-strip p {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}
.contact-strip a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px dashed rgba(255,255,255,0.6);
}
/* ===== HERO MAIN ===== */
.hero-main {
  padding: 25px 0;
  background: var(--clr-cream);
}

/* Full width container for hero section */
.hero-full-container {
  width: 100%;
  max-width: 1600px;
  padding-left: 30px;
  padding-right: 30px;
  margin: 0 auto;
}

/* Carousel - fixed height so every slide looks same size */
.hero-carousel {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.hero-carousel .carousel-inner {
  border-radius: 10px;
}
.hero-carousel .carousel-item {
  height: 520px;
}
.hero-carousel .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Project Detail Card - equal height with carousel */
.project-detail-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 14px rgba(0,0,0,0.08);
  overflow: hidden;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.pdc-header {
  background: var(--clr-green);
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 17px;
  padding: 12px;
}
.pdc-list {
  list-style: none;
  margin: 0;
  padding: 18px 20px;
  flex: 1;
}
.pdc-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  line-height: 1.5;
  padding: 8px 0;
  border-bottom: 1px dashed #e2e2e2;
}
.pdc-list li:last-child {
  border-bottom: none;
}
.pdc-list li.highlight {
  background: #fff4e5;
  border-radius: 6px;
  padding: 8px 10px;
  font-weight: 600;
  color: var(--clr-orange-dark);
}
.pdc-icon {
  color: var(--clr-orange);
  margin-top: 4px;
  flex-shrink: 0;
}
.project-detail-card .btn-register {
  border-radius: 0 0 10px 10px;
  justify-content: center;
  padding: 12px;
  font-size: 15px;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 991.98px) {
  .hero-carousel .carousel-item { height: 350px; }
}
@media (max-width: 767.98px) {
  .hero-carousel .carousel-item { height: 230px; }
  .pdc-header { font-size: 15px; }
  .pdc-list li { font-size: 13px; padding: 7px 0; }
  .hero-main { padding: 20px 0; }
}
/* ===================================================
   MOBILE RESPONSIVE (fonts kept small, not oversized)
=================================================== */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: #fff;
    margin-top: 12px;
    padding: 14px 10px;
    border-radius: 8px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  }
  .navbar-nav .nav-link {
    padding: 10px 6px !important;
    border-bottom: 1px solid #f1f1f1;
  }
  .navbar-nav .nav-item:last-child .nav-link {
    border-bottom: none;
  }
  .btn-register {
    width: 100%;
    justify-content: center;
    margin-top: 6px;
  }
}

@media (max-width: 767.98px) {
    .hero-full-container
    {
    padding-left: 12px!important;
    padding-right: 12px!important;
    }
  .brand-text { font-size: 13px; }
  .logo-img,
  .logo-fallback-icon {/* height: 36px; */width: 120px;}
  .logo-fallback-icon { font-size: 18px; }
  .navbar-nav .nav-link {font-size: 13px;}

  .hero-hindi-title { font-size: 20px; }
  .hero-logo-round { height: 46px; width: 46px; }

  .contact-strip p {font-size: 10px;}

  .ticker-track span { font-size: 12px; padding: 0 16px; }

  .hero-carousel img { height: 230px; }

  .pdc-header { font-size: 15px; }
  .pdc-list li { font-size: 13px; padding: 7px 0; }

  .hero-main {padding: 12px 0;}
}

@media (max-width: 480px) {
  .hero-hindi-title {font-size: 20px;letter-spacing: 0.3px;}
  .brand-text { font-size: 12px; }
}
/* ===== BLINKING REGISTER BUTTON ===== */
.btn-register-blink {
  color: #fff !important;
  font-weight: 600;
  font-size: 14px;
  padding: 9px 16px;
  border-radius: 6px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  animation: blinkColor 1s infinite;
}
@keyframes blinkColor {
  0%   { background: var(--clr-orange); }
  50%  { background: #e02020; }
  100% { background: var(--clr-orange); }
}

/* Mobile-only blink button spacing/size */
@media (max-width: 991.98px) {
  .btn-register-blink {
    font-size: 11px;
    padding: 8px 12px;
  }
}

/* ===== REMOVE DIVIDER LINES FROM MOBILE MENU ===== */
@media (max-width: 991.98px) {
  .navbar-nav .nav-link {
    border-bottom: none;
  }
}
/* ===== ABOUT + ENQUIRY SECTION ===== */
.about-enquiry-section {
  padding: 50px 0;
  background: #fff;
}

/* Left - About Text */
.about-heading {
  font-weight: 700;
  font-size: 26px;
  color: var(--clr-text-dark);
  margin-bottom: 18px;
}
.about-text {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  text-align: justify;
  margin-bottom: 18px;
}

/* Right - Enquiry Card */
.enquiry-card {
  background: #f5f5f5;
  border: 1px solid #e6e6e6;
  border-radius: 6px;
  padding: 26px;
  height: 100%;
}
.enquiry-heading {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.3px;
  color: var(--clr-text-dark);
  margin-bottom: 20px;
}
.enquiry-input {
  border: 1px solid #d5d5d5;
  border-radius: 4px;
  padding: 12px 14px;
  font-size: 14px;
  background: #fff;
}
.enquiry-input:focus {
  border-color: var(--clr-green);
  box-shadow: 0 0 0 0.15rem rgba(26, 122, 51, 0.15);
}
.enquiry-input::placeholder {
  color: #888;
}
textarea.enquiry-input {
  resize: vertical;
  min-height: 110px;
}

.btn-send-message {
  background: var(--clr-green);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 24px;
  border: none;
  border-radius: 4px;
  transition: background 0.2s ease;
}
.btn-send-message:hover {
  background: var(--clr-green-dark);
  color: #fff;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 767.98px) {
  .about-enquiry-section { padding: 30px 0; }
  .about-heading { font-size: 20px; margin-bottom: 12px; }
  .about-text { font-size: 13.5px; line-height: 1.7; text-align: left; }
  .enquiry-card { padding: 18px; margin-top: 6px; }
  .enquiry-heading { font-size: 14px; }
  .enquiry-input { font-size: 13px; padding: 10px 12px; }
  .btn-send-message { width: 100%; }
}
/* ===== RESERVATION STRIP ===== */
.reservation-strip {
  padding: 20px 0;
  background: var(--clr-cream);
}
.reservation-box {
  display: flex;
  align-items: center;
  gap: 18px;
  background: linear-gradient(90deg, var(--clr-green), var(--clr-green-dark));
  border-radius: 8px;
  padding: 18px 24px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}
.reservation-icon {
  flex-shrink: 0;
  height: 54px;
  width: 54px;
  background: #fff;
  color: var(--clr-green-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}
.reservation-content {
  flex: 1;
}
.reservation-title {
  color: #fff;
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 10px;
  line-height: 1.4;
}
.reservation-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 12.5px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.35);
}
.badge-pill i {
  color: var(--clr-orange);
  font-size: 12px;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 767.98px) {
  .reservation-box {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    gap: 12px;
  }
  .reservation-icon {
    height: 42px;
    width: 42px;
    font-size: 20px;
  }
  .reservation-title {
    font-size: 14px;
    margin-bottom: 8px;
  }
  .badge-pill {
    font-size: 10px;
    padding: 4px 10px;
  }
}
/* ===== PAYMENT PLAN SECTION ===== */
.payment-plan-section {
  padding: 25px 0;
  background: #fff;
}
.payment-plan-title {
  text-align: center;
  font-weight: 800;
  font-size: 30px;
  color: var(--clr-text-dark);
  margin-bottom: 28px;
}

.payment-table-wrap {
  border: 1px solid #333;
  border-radius: 4px;
}

.payment-table {
  margin-bottom: 0;
  border-collapse: collapse;
  width: 100%;
}
.payment-table th,
.payment-table td {
  border: 1px solid #444;
  text-align: center;
  vertical-align: middle;
  padding: 12px 10px;
  font-size: 14px;
}
.payment-table thead th {
  background: #a9d6a0;
  color: var(--clr-text-dark);
  font-weight: 700;
  font-size: 13.5px;
  line-height: 1.35;
}
.payment-table tbody td {
  color: #222;
}
.payment-table .type-cell {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 991.98px) {
  .payment-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .payment-table {
    min-width: 900px;
  }
}

@media (max-width: 767.98px) {
  .payment-plan-section { padding: 30px 0; }
  .payment-plan-title { font-size: 20px; margin-bottom: 18px; }
  .payment-table th,
  .payment-table td {
    font-size: 12px;
    padding: 8px 6px;
  }
  .payment-table .type-cell { font-size: 12.5px; }
}
/* ===== REGISTRATION REFUND NOTE STRIP ===== */
.refund-note-strip {
  background: #f6c343;
  padding: 12px 0;
  text-align: center;
}
.refund-note-strip p {
  color: #3a2a00;
  font-weight: 600;
  font-size: 15px;
  margin: 0;
}
.refund-note-strip i {
  color: var(--clr-green-dark);
  margin-right: 6px;
}

/* ===== BANK LOAN APPROVED SECTION ===== */
.bank-loan-section {
  padding: 24px 0;
  background: var(--clr-cream);
  text-align: center;
}
.bank-loan-title {
  font-weight: 700;
  font-size: 22px;
  color: var(--clr-text-dark);
  margin-bottom: 15px;
}
.bank-logos-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.bank-logo-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 14px rgba(0,0,0,0.08);
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  transition: transform 0.2s ease;
}
.bank-logo-card:hover {
  transform: translateY(-4px);
}
.bank-logo-card img {
  max-height: 31px;
  width: auto;
  object-fit: contain;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 767.98px) {
  .refund-note-strip p { font-size: 12.5px; }
  .refund-note-strip { padding: 10px 14px; }

  .bank-loan-section { padding: 28px 0; }
  .bank-loan-title { font-size: 16px; margin-bottom: 20px; padding: 0 10px; }
  .bank-logos-wrap { gap: 16px; }
  .bank-logo-card {
    padding: 14px 26px;
    min-width: 140px;
  }
  .bank-logo-card img {max-height: 21px;}
}
/* ===== FLOOR PLAN SECTION ===== */
.floor-plan-section {
  padding: 50px 0;
  background: #fff;
}
.floorplan-title {
  text-align: center;
  font-weight: 700;
  font-size: 22px;
  color: var(--clr-text-dark);
  margin-bottom: 18px;
}
.floorplan-link {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 14px rgba(0,0,0,0.08);
  cursor: zoom-in;
  transition: transform 0.2s ease;
}
.floorplan-link:hover {
  transform: scale(1.01);
}
.floorplan-img {
  width: 100%;
  display: block;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 767.98px) {
  .floor-plan-section { padding: 28px 0; }
  .floorplan-title { font-size: 16px; margin-bottom: 12px; }
}
/* ===== LOCATION ADVANTAGES SECTION ===== */
.location-advantages-section {
  padding: 55px 0;
  background: var(--clr-cream);
}

.location-heading-wrap {
  text-align: center;
  margin-bottom: 34px;
}
.location-subtitle {
  display: inline-block;
  color: var(--clr-orange);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.location-title {
  font-weight: 800;
  font-size: 30px;
  color: var(--clr-text-dark);
  position: relative;
  padding-bottom: 10px;
  margin: 0;
}
/*.location-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 3px;
  background: var(--clr-green);
  border-radius: 4px;
}*/

/* Map Image */
.location-map-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 26px rgba(0,0,0,0.12);
}
.location-map-img {
  width: 100%;
  display: block;
}
.location-map-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--clr-green);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
  z-index: 2;
}

/* Advantages List - card style */
.location-advantages-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.location-adv-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 10px;
  padding: 8px 13px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.location-adv-card:hover {
  transform: translateX(6px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  border-color: var(--clr-green);
}
.adv-icon {
  flex-shrink: 0;
  height: 28px;
  width: 28px;
  background: rgba(26, 122, 51, 0.1);
  color: var(--clr-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease;
}
.location-adv-card:hover .adv-icon {
  background: var(--clr-green);
  color: #fff;
}
.adv-text {
  font-weight: 500;
  font-size: 14px;
  color: var(--clr-text-dark);
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 767.98px) {
  .location-advantages-section { padding: 32px 0; }
  .location-title { font-size: 20px; }
  .location-subtitle { font-size: 11px; letter-spacing: 1.5px; }

  .location-map-badge { font-size: 11px; padding: 5px 12px; top: 10px; left: 10px; }

  .location-advantages-list { gap: 9px; }
  .location-adv-card { padding: 11px 14px; gap: 10px; }
  .adv-icon { height: 28px; width: 28px; font-size: 13px; }
  .adv-text { font-size: 13px; }
}
/* ===== MASTER PLAN SECTION ===== */
.master-plan-section {
  padding: 55px 0;
  background: #fff;
}

.master-plan-link {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 26px rgba(0,0,0,0.12);
  cursor: zoom-in;
}
.master-plan-img {
  width: 100%;
  display: block;
  transition: transform 0.35s ease;
}
.master-plan-link:hover .master-plan-img {
  transform: scale(1.03);
}

.master-plan-zoom-badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: var(--clr-green);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.25);
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 767.98px) {
  .master-plan-section { padding: 30px 0; }
  .master-plan-zoom-badge {
    font-size: 11px;
    padding: 6px 12px;
    bottom: 10px;
    right: 10px;
  }
}
/* ===== PROJECT AMENITIES SECTION ===== */
.amenities-section {
  padding: 50px 0;
  background: #f7f7f7;
}
.amenities-title {
  text-align: center;
  font-weight: 800;
  font-size: 28px;
  color: var(--clr-text-dark);
  margin-bottom: 30px;
}

.amenity-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.amenity-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.14);
}
.amenity-card img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  display: block;
}
.amenity-label {
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--clr-text-dark);
  padding: 12px 8px;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 767.98px) {
  .amenities-section { padding: 28px 0; }
  .amenities-title { font-size: 18px; margin-bottom: 18px; }
  .amenity-card img { height: 95px; }
  .amenity-label { font-size: 12px; padding: 8px 6px; }
}
/* ===== ACTUAL PROJECT UPDATE SECTION ===== */
.project-update-section {
  padding: 50px 0;
  background: #fff;
}
.project-update-title {
  text-align: center;
  font-weight: 800;
  font-size: 28px;
  color: var(--clr-text-dark);
  margin-bottom: 28px;
}

.project-update-link {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(0,0,0,0.1);
  cursor: zoom-in;
}
.project-update-img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.project-update-link:hover .project-update-img {
  transform: scale(1.05);
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 767.98px) {
  .project-update-section { padding: 28px 0; }
  .project-update-title { font-size: 18px; margin-bottom: 16px; }
  .project-update-img { height: 120px; }
}
/* ===== CONTACT INFO SECTION ===== */
.contact-info-section {
  padding: 40px 0;
  background: #fff;
}

.contact-info-card {
  border: 1px solid #eaeaea;
  border-radius: 8px;
  padding: 26px 20px;
  text-align: center;
  height: 100%;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.contact-info-card:hover {
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}
.contact-info-icon {
  font-size: 28px;
  color: var(--clr-text-dark);
  margin-bottom: 14px;
  display: inline-block;
}
.contact-info-title {
  font-weight: 700;
  font-size: 17px;
  color: var(--clr-text-dark);
  margin-bottom: 8px;
}
.contact-info-value {
  font-size: 15px;
  color: #444;
  margin: 0;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 767.98px) {
  .contact-info-section { padding: 24px 0; }
  .contact-info-card { padding: 18px 14px; }
  .contact-info-icon { font-size: 22px; margin-bottom: 10px; }
  .contact-info-title { font-size: 14px; }
  .contact-info-value { font-size: 13px; }
}
/* ===== CONTACT US STRIP ===== */
.contact-us-strip {
  padding: 55px 0;
  background: var(--clr-cream);
}
.get-in-touch-badge {
  display: inline-block;
  background: var(--clr-orange);
  color: #fff;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 1px;
  padding: 7px 20px;
  border-radius: 30px;
  margin-bottom: 12px;
}
.contact-us-heading {
  font-weight: 800;
  font-size: 30px;
  color: var(--clr-text-dark);
  margin-bottom: 6px;
}

.contact-us-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 14px rgba(0,0,0,0.08);
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  height: 100%;
}
.contact-us-icon {
  flex-shrink: 0;
  height: 46px;
  width: 46px;
  background: rgba(245, 130, 13, 0.12);
  color: var(--clr-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
}
.contact-us-label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.5px;
  color: #999;
  font-weight: 600;
  margin-bottom: 4px;
}
.contact-us-value {
  font-weight: 700;
  font-size: 14.5px;
  color: var(--clr-text-dark);
  margin: 0;
}

/* ===== FOOTER (DARK) ===== */
.site-footer {
  background: var(--clr-green-dark);
  padding: 25px 0 24px;
}
.footer-top-links {
  text-align: center;
  padding-bottom: 13px;
}
.footer-top-links a {
  color: #fff;
  font-weight: 600;
  font-size: 13.5px;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-top-links a:hover {
  color: var(--clr-orange);
}
.footer-top-links .divider {
  color: rgba(255,255,255,0.35);
  margin: 0 14px;
}
.footer-hr {
  border-color: rgba(255,255,255,0.15);
  margin: 0 0 20px 0;
}

.footer-belongs,
.footer-rera {
  text-align: center;
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  margin-bottom: 8px;
}
.footer-belongs strong,
.footer-rera strong {
  color: #fff;
}

.footer-bank-loan {
  margin: 26px 0 18px;
}
.footer-bank-loan h5 {
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 14px;
}
.footer-bank-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-bank-logos img {
  height: 37px;
  width: auto;
  background: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  object-fit: contain;
}

.footer-disclaimer {
  text-align: center;
  color: rgba(255,255,255,0.55);
  font-size: 10px;
  line-height: 1.7;
  margin: 0;
  margin-left: auto;
  margin-right: auto;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 767.98px) {
  .contact-us-strip { padding: 30px 0; }
  .contact-us-heading { font-size: 20px; }
  .get-in-touch-badge { font-size: 11px; padding: 6px 16px; }
  .contact-us-card { padding: 14px 16px; gap: 12px; }
  .contact-us-icon { height: 38px; width: 38px; font-size: 15px; }
  .contact-us-value { font-size: 13.5px; }

  .site-footer { padding: 22px 0 18px; }
  .footer-top-links a { font-size: 12px; }
  .footer-top-links .divider { margin: 0 8px; }
  .footer-belongs,
  .footer-rera { font-size: 11.5px; }
  .footer-bank-loan h5 { font-size: 13px; }
  .footer-bank-logos img { height: 32px; padding: 6px 10px; }
  .footer-disclaimer { font-size: 10.5px; padding: 0 10px; }
}
/* ===== FIXED RERA APPROVED STAMP (Bottom Left) ===== */
.rera-fixed-badge {
  position: fixed;
  left: 14px;
  bottom: 14px;
  z-index: 998;
}
.rera-fixed-badge img {
  height: 80px;
  width: 80px;
  object-fit: contain;
  filter: drop-shadow(0 3px 8px rgba(0,0,0,0.25));
}

/* ===== FIXED BLINKING CALL BUTTON (Bottom Right) ===== */
.call-fixed-btn {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 998;
  height: 56px;
  width: 56px;
  background: var(--clr-orange);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.3);
  animation: callBlink 1.2s infinite;
}
.call-fixed-btn:hover {
  color: #fff;
}
@keyframes callBlink {
  0%   { background: var(--clr-orange); box-shadow: 0 0 0 0 rgba(245, 130, 13, 0.6); }
  50%  { background: #e02020; box-shadow: 0 0 0 12px rgba(224, 32, 32, 0); }
  100% { background: var(--clr-orange); box-shadow: 0 0 0 0 rgba(245, 130, 13, 0); }
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 767.98px) {
  .rera-fixed-badge {
    left: 8px;
    bottom: 8px;
  }
  .rera-fixed-badge img {
    height: 60px;
    width: 60px;
  }
  .call-fixed-btn {
    right: 12px;
    bottom: 12px;
    height: 42px;
    width: 42px;
    font-size: 16px;
  }
}
/* ===== INNER PAGE BANNER (Privacy/Terms/Refund pages) ===== */
.inner-page-banner {
  background: linear-gradient(90deg, var(--clr-green), var(--clr-green-dark));
  padding: 40px 0;
  text-align: center;
}
.inner-page-title {
  color: #fff;
  font-weight: 800;
  font-size: 30px;
  margin-bottom: 8px;
}
.inner-page-breadcrumb {
  font-size: 14px;
}
.inner-page-breadcrumb a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
}
.inner-page-breadcrumb a:hover {
  color: var(--clr-orange);
}
.inner-page-breadcrumb span {
  color: rgba(255,255,255,0.6);
  margin: 0 6px;
}

/* ===== POLICY CONTENT ===== */
.policy-content-section {
  padding: 50px 0;
  background: #fff;
}
.policy-content-wrap {
  max-width: 950px;
  margin: 0 auto;
}
.policy-updated {
  font-size: 13px;
  color: #888;
  font-style: italic;
  margin-bottom: 20px;
}
.policy-content-wrap p {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 16px;
  text-align: justify;
}
.policy-heading {
  font-weight: 700;
  font-size: 19px;
  color: var(--clr-text-dark);
  margin-top: 30px;
  margin-bottom: 12px;
  padding-left: 12px;
  border-left: 3px solid var(--clr-orange);
}
.policy-list {
  margin: 0 0 16px 0;
  padding-left: 22px;
}
.policy-list li {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 6px;
}
.policy-contact-list {
  list-style: none;
  padding-left: 0;
}
.policy-contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--clr-text-dark);
  margin-bottom: 10px;
}
.policy-contact-list li i {
  color: var(--clr-orange);
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 767.98px) {
  .inner-page-banner { padding: 26px 0; }
  .inner-page-title { font-size: 19px; }
  .inner-page-breadcrumb { font-size: 12px; }

  .policy-content-section { padding: 28px 0; }
  .policy-content-wrap p,
  .policy-list li { font-size: 13px; text-align: left; }
  .policy-heading { font-size: 15px; margin-top: 22px; }
}
/* ===== REGISTRATION SECTION ===== */
/* ===== REGISTRATION SECTION ===== */
.registration-section {
  padding: 50px 0;
  background: var(--clr-cream);
}
.registration-form-wrap {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  padding: 34px;
}

/* ===== SECTION TAG (1 / 2 / 3 label) ===== */
.step-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26, 122, 51, 0.1);
  color: var(--clr-green-dark);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.4px;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 14px;
}
.step-tag span {
  background: var(--clr-green);
  color: #fff;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.step-heading {
  font-weight: 700;
  font-size: 20px;
  color: var(--clr-text-dark);
  margin-bottom: 4px;
}
.step-heading-small {
  font-size: 16px;
  margin-top: 20px;
}
.step-subheading {
  font-size: 13.5px;
  color: #888;
  margin-bottom: 22px;
}

.section-divider {
  border-color: #eee;
  margin: 34px 0;
}

/* Form Inputs */
.reg-label {
  font-weight: 600;
  font-size: 13.5px;
  color: var(--clr-text-dark);
  margin-bottom: 6px;
  display: inline-block;
}
.reg-label span {
  color: #e02020;
}
.reg-input {
  border: 1px solid #d5d5d5;
  border-radius: 5px;
  padding: 11px 14px;
  font-size: 14px;
}
.reg-input:focus {
  border-color: var(--clr-green);
  box-shadow: 0 0 0 0.15rem rgba(26, 122, 51, 0.15);
}
.reg-input[readonly] {
  background: #f5f5f5;
  color: #666;
}

.pincode-status {
  display: inline-block;
  font-size: 12px;
  margin-top: 5px;
}
.pincode-status.loading { color: #999; }
.pincode-status.success { color: var(--clr-green); font-weight: 600; }
.pincode-status.error { color: #e02020; font-weight: 600; }

/* Permanent Address */
.permanent-address-toggle {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px dashed #e2e2e2;
}
.permanent-address-toggle .form-check-input:checked {
  background-color: var(--clr-green);
  border-color: var(--clr-green);
}
.permanent-address-toggle label {
  font-weight: 600;
  font-size: 14px;
  color: var(--clr-text-dark);
}
.permanent-address-block {
  display: none;
}
.permanent-address-block.show {
  display: block;
  animation: blockFadeIn 0.3s ease;
}
@keyframes blockFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Payment Summary */
.payment-summary-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff4e5;
  border: 1px dashed var(--clr-orange);
  border-radius: 8px;
  padding: 16px 20px;
}
.payment-summary-box span {
  font-weight: 600;
  font-size: 14.5px;
  color: var(--clr-text-dark);
}
.payment-summary-box strong {
  font-size: 20px;
  color: var(--clr-orange-dark);
}

/* Terms Checkbox */
.reg-terms-check {
  padding-left: 1.8em;
  margin-top: 6px;
}
.reg-terms-check .form-check-input:checked {
  background-color: var(--clr-green);
  border-color: var(--clr-green);
}
.reg-terms-check label {
  font-size: 13.5px;
  color: #555;
}
.reg-terms-check label a {
  color: var(--clr-green-dark);
  font-weight: 600;
  text-decoration: underline;
}

/* Submit */
.reg-submit-row {
  margin-top: 32px;
}
.btn-reg-pay {
  background: var(--clr-orange);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 14px;
  border: none;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s ease;
}
.btn-reg-pay:hover {
  background: var(--clr-orange-dark);
  color: #fff;
}
.reg-secure-note {
  text-align: center;
  font-size: 12.5px;
  color: #888;
  margin: 12px 0 0 0;
}
.reg-secure-note i {
  color: var(--clr-green);
  margin-right: 4px;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 767.98px) {
  .registration-section { padding: 24px 0; }
  .registration-form-wrap { padding: 20px 16px; border-radius: 10px; }

  .step-tag { font-size: 11px; padding: 5px 12px; }
  .step-heading { font-size: 16px; }
  .step-subheading { font-size: 12px; margin-bottom: 16px; }
  .section-divider { margin: 24px 0; }

  .reg-label { font-size: 12px; }
  .reg-input { font-size: 13px; padding: 9px 12px; }

  .payment-summary-box { padding: 12px 14px; }
  .payment-summary-box span { font-size: 13px; }
  .payment-summary-box strong { font-size: 17px; }

  .reg-terms-check label { font-size: 11.5px; }

  .btn-reg-pay { font-size: 14px; padding: 12px; }
}
/* ===== SUCCESS SECTION ===== */
.success-section {
  padding: 50px 0;
  background: var(--clr-cream);
}
.success-card-wrap {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.success-icon-wrap {
  height: 80px;
  width: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  margin: 0 auto 20px;
}
.success-icon-paid {
  background: rgba(26, 122, 51, 0.12);
  color: var(--clr-green);
}
.success-icon-pending {
  background: rgba(245, 130, 13, 0.12);
  color: var(--clr-orange);
}

.success-heading {
  font-weight: 800;
  font-size: 26px;
  color: var(--clr-text-dark);
  margin-bottom: 10px;
}
.success-subtext {
  font-size: 14.5px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* Details Card */
.success-details-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
  overflow: hidden;
  text-align: left;
  margin-bottom: 24px;
}
.success-details-header {
  background: var(--clr-green-dark);
  color: #fff;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
}
.success-details-header span {
  font-size: 12.5px;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.success-details-header strong {
  font-size: 18px;
  font-weight: 800;
}

.success-details-body {
  padding: 6px 22px;
}
.success-detail-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px dashed #eee;
}
.success-detail-row:last-child {
  border-bottom: none;
}
.success-detail-row .label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: #888;
  flex-shrink: 0;
  min-width: 170px;
}
.success-detail-row .label i {
  color: var(--clr-orange);
}
.success-detail-row .value {
  font-size: 14px;
  font-weight: 600;
  color: var(--clr-text-dark);
  text-align: right;
}

.status-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}
.status-paid {
  background: rgba(26, 122, 51, 0.12);
  color: var(--clr-green);
}
.status-pending {
  background: rgba(245, 130, 13, 0.12);
  color: var(--clr-orange-dark);
}

.success-note {
  background: #fff4e5;
  border: 1px dashed var(--clr-orange);
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 13px;
  color: #555;
  text-align: left;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 26px;
}
.success-note i {
  color: var(--clr-orange);
  margin-top: 2px;
  flex-shrink: 0;
}

.success-actions {
  display: flex;
  justify-content: center;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 767.98px) {
  .success-section { padding: 26px 0; }
  .success-icon-wrap { height: 60px; width: 60px; font-size: 28px; }
  .success-heading { font-size: 19px; }
  .success-subtext { font-size: 13px; }

  .success-details-header { padding: 12px 16px; }
  .success-details-header strong { font-size: 15px; }
  .success-details-body { padding: 4px 16px; }

  .success-detail-row {
    flex-direction: column;
    gap: 4px;
  }
  .success-detail-row .value {
    text-align: left;
  }
  .success-detail-row .label { min-width: auto; font-size: 12px; }
  .success-detail-row .value { font-size: 13px; }

  .success-note { font-size: 12px; padding: 12px 14px; }
}