/* =========================================
   Gurugram Affordable Service Apartments
   Theme: Govt Yojna style (Navy + Saffron)
========================================= */

:root{
  --navy: #004aad;
  --navy-dark: #004aad;
  --saffron: #f5820f;
  --saffron-dark: #d96e00;
  --light-bg: #f6f8fb;
  --text-dark: #1c2733;
  --border-light: #e4e8ee;

  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

*{
  box-sizing: border-box;
}

body{
  font-family: var(--font-body);
  color: var(--text-dark);
  margin: 0;
  padding: 0;
}

a{
  text-decoration: none;
}

/* =========================================
   TOP BAR
========================================= */
.top-bar{
  background: var(--navy-dark);
  color: #dfe8f5;
  font-family: var(--font-body);
  font-size: 13px;
  padding: 7px 0;
}

.top-bar-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.top-bar-left{
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.top-bar-item{
  color: #dfe8f5;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: color .2s ease;
}

.top-bar-item:hover{
  color: var(--saffron);
}

.top-bar-item i{
  color: var(--saffron);
  font-size: 13px;
}

.top-bar-right{
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

/* Marquee */
.marquee-wrap{
  width: 100%;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent 0, #000 30px, #000 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 30px, #000 95%, transparent 100%);
}

.marquee-track{
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  gap: 10px;
  animation: marqueeScroll 22s linear infinite;
  padding-left: 100%;
}

.marquee-wrap:hover .marquee-track{
  animation-play-state: paused;
}

.marquee-item{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #dfe8f5;
}

.marquee-item strong{
  color: #ffffff;
}

.marquee-item i{
  color: var(--saffron);
}

.marquee-sep{
  color: var(--saffron);
  opacity: .6;
  padding: 0 6px;
}

@keyframes marqueeScroll{
  0%{ transform: translateX(0); }
  100%{ transform: translateX(-100%); }
}

/* =========================================
   MAIN NAVBAR
========================================= */
.main-header{
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
  position: relative;
  z-index: 1000;
  transition: box-shadow .25s ease, padding .25s ease;
}

.main-header.header-fixed{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0 4px 18px rgba(11,47,94,0.12);
  animation: slideDown .35s ease;
}

@keyframes slideDown{
  from{ transform: translateY(-100%); }
  to{ transform: translateY(0); }
}

.custom-navbar{
  padding: 0px 0;
  flex-wrap: wrap;
}

/* Logo */
.navbar-brand{
  display: flex;
  align-items: center;
  margin-right: 0;
}

.logo-img{
  max-height: 73px;
  width: auto;
}

.logo-text{
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 21px;
  line-height: 1.25;
  color: var(--navy);
}

.logo-text .logo-highlight{
  color: var(--saffron);
}

.logo-text small{
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: .5px;
  color: var(--text-dark);
  display: block;
}

/* Nav links */
.navbar-nav .nav-link{
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 14px;
  color: var(--text-dark) !important;
  padding: 10px 13px !important;
  position: relative;
  transition: color .2s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active{
  color: var(--saffron) !important;
}

.navbar-nav .nav-link.active::after{
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 4px;
  height: 2px;
  background: var(--saffron);
  border-radius: 2px;
}

/* Registration Button */
.btn-register{
  background: var(--saffron);
  color: #ffffff !important;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 6px;
  border: none;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(245,130,15,0.3);
  transition: background .2s ease, transform .2s ease;
}

.btn-register:hover{
  background: var(--saffron-dark);
  color: #fff !important;
  transform: translateY(-1px);
}

/* Blink animation - subtle, not annoying */
@keyframes blinkGlow{
  0%, 100%{
    box-shadow: 0 4px 10px rgba(245,130,15,0.35);
    opacity: 1;
  }
  50%{
    box-shadow: 0 4px 22px rgba(245,130,15,0.75);
    opacity: .85;
  }
}

.blink-btn{
  animation: blinkGlow 1.6s ease-in-out infinite;
}

/* Toggler */
.navbar-toggler{
  border: 1px solid var(--border-light);
  padding: 6px 10px;
  font-size: 20px;
  color: var(--navy);
  box-shadow: none !important;
}

.navbar-toggler .bi-list{
  color: var(--navy);
}

/* Spacer for fixed header */
#headerSpacer{
  display: none;
  height: 0;
}

#headerSpacer.active{
  display: block;
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 991.98px){

  .custom-navbar{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .navbar-brand{
    order: 1;
  }

  .btn-register.order-2{
    order: 2;
    margin: 0 6px;
    padding: 8px 10px;
    font-size: 8.5px;
  }

  .navbar-toggler{
    order: 3;
  }

  .navbar-collapse{
    order: 4;
    width: 100%;
    margin-top: 14px;
    border-top: 1px solid var(--border-light);
    padding-top: 10px;
  }

  .navbar-nav .nav-link.active::after{
    display: none;
  }

  .logo-text{
    font-size: 16px;
  }

  .logo-text small{
    font-size: 11px;
  }
}

@media (max-width: 575.98px){

  .top-bar{
    font-size: 11.5px;
  }

  .top-bar-left{
    gap: 10px;
  }

  .top-bar-item span{
    font-size: 11.5px;
  }

  .marquee-item{
    font-size: 11.5px;
  }

  .logo-text{
    font-size: 14px;
  }

  .btn-register{
    font-size: 12px;
    padding: 7px 12px;
  }
}

/* Generic mobile-first section font control (base for upcoming sections) */
@media (max-width: 575.98px){
  h1{ font-size: 24px; }
  h2{ font-size: 20px; }
  h3{ font-size: 17px; }
  p, li{ font-size: 14px; }
}
/* =========================================
   HERO SECTION
========================================= */
.hero-section{
  background: var(--light-bg);
  padding: 40px 0 55px;
}

/* Left image */
.hero-img-wrap{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #e9edf3;
  min-height: 100%;
  height: 100%;
  border: 1px solid var(--border-light);
  box-shadow: 0 15px 40px rgba(11,47,94,0.12);
}

.hero-img{
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  display: block;
}

/* Right content */
.hero-content{
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-tag{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  background: rgba(245,130,15,0.1);
  color: var(--saffron-dark);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  padding: 7px 14px;
  border-radius: 30px;
  margin-bottom: 14px;
  width: fit-content;
}

.hero-tag i{
  color: var(--saffron);
}

.hero-tag em{
  font-style: normal;
  font-weight: 500;
  color: var(--saffron-dark);
  font-size: 12px;
  opacity: .85;
}

.hero-title{
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 36px;
  line-height: 1.25;
  color: var(--navy);
  margin: 0 0 18px;
}

/* Location pills */
.hero-pills{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.pill{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 12.5px;
  padding: 7px 14px;
  border-radius: 30px;
}

.pill-orange{
  background: #fdecd8;
  color: var(--saffron-dark);
}

.pill-green{
  background: #17803d;
  color: #ffffff;
}

/* Info cards (Prime location / RERA style) */
.info-card{
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 12px;
}

.info-card-icon{
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 8px;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  color: #ffffff;
}

.info-card-text{
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.info-label{
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: .5px;
  text-transform: uppercase;
  opacity: .85;
}

.info-value{
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.3;
}

.info-card-navy{
  background: var(--navy);
  color: #ffffff;
}

.info-card-navy .info-label,
.info-card-navy .info-value{
  color: #ffffff;
}

.info-card-maroon{
  background: #7a1f2b;
  color: #ffffff;
}

.info-card-maroon .info-label,
.info-card-maroon .info-value{
  color: #ffffff;
}

.info-card-maroon .info-card-icon{
  color: #ffffff;
}

/* PDF download cards */
.doc-cards{
  margin: 0px 0 12px;
}

.doc-card{
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 12px 14px;
  height: 100%;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.doc-card:hover{
  border-color: var(--saffron);
  box-shadow: 0 8px 20px rgba(11,47,94,0.08);
  transform: translateY(-2px);
}

.doc-card i.bi-file-earmark-pdf-fill{
  font-size: 26px;
  color: #d92b2b;
  flex-shrink: 0;
}

.doc-card div{
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.doc-title{
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  color: var(--text-dark);
}

.doc-view{
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11.5px;
  color: var(--saffron-dark);
}

/* Big Registration Button */
.btn-register-lg{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--saffron);
  color: #ffffff !important;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  padding: 15px 30px;
  border-radius: 8px;
  width: fit-content;
  box-shadow: 0 8px 20px rgba(245,130,15,0.35);
  transition: background .2s ease, transform .2s ease;
}

.btn-register-lg i{
  font-size: 13px;
  color: #ffffff;
}

.btn-register-lg:hover{
  background: var(--saffron-dark);
  color: #fff !important;
  transform: translateY(-2px);
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 991.98px){
  .hero-img{
    min-height: 300px;
  }

  .hero-title{
    font-size: 26px;
  }

  .hero-content{
    text-align: left;
  }
}

@media (max-width: 575.98px){
  .hero-section{
    padding: 26px 0 36px;
  }

  .hero-title{
    font-size: 21px;
  }

  .hero-tag{
    font-size: 11.5px;
    padding: 6px 12px;
  }

  .hero-tag em{
    font-size: 10.5px;
  }

  .pill{
    font-size: 11px;
    padding: 6px 11px;
  }

  .info-card{
    padding: 12px 14px;
    gap: 10px;
  }

  .info-card-icon{
    width: 36px;
    height: 36px;
    min-width: 36px;
    font-size: 16px;
  }

  .info-label{
    font-size: 10px;
  }

  .info-value{
    font-size: 13px;
  }

  .doc-cards .col-6{
    width: 100%;
  }

  .doc-title{
    font-size: 12.5px;
  }

  .doc-view{
    font-size: 11px;
  }

  .btn-register-lg{
    width: 100%;
    font-size: 14px;
    padding: 13px 20px;
  }

  .hero-img{
    min-height: 220px;
  }
}
/* =========================================
   KEY HIGHLIGHTS SECTION
========================================= */
.highlights-section{
  padding: 0 0 55px;
  margin-top: -38px;
  position: relative;
  z-index: 5;
}

.highlights-box{
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid var(--border-light);
  box-shadow: 0 15px 45px rgba(11,47,94,0.14);
  overflow: hidden;
}

.highlight-item{
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 26px 22px;
  height: 100%;
  border-right: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  position: relative;
}

.highlight-icon{
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #ffffff;
}

.highlight-icon-orange{
  background: var(--saffron);
}

.highlight-icon-navy{
  background: var(--navy);
}

.highlight-icon-maroon{
  background: #7a1f2b;
}

.highlight-icon-green{
  background: #17803d;
}

.highlight-text{
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.highlight-label{
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .3px;
  text-transform: uppercase;
  color: #6b7686;
}

.highlight-value{
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 19px;
  color: var(--navy);
  line-height: 1.25;
}

.highlight-value sup{
  font-size: 12px;
  font-weight: 600;
  color: var(--saffron-dark);
  top: -6px;
}

/* Remove borders on last column / last row for clean look */
@media (min-width: 992px){
  .highlights-box .col-lg-3:last-child .highlight-item{
    border-right: none;
  }
  .highlights-box .row{
    border-bottom: none;
  }
  .highlights-box .col-lg-3 .highlight-item{
    border-bottom: none;
  }
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 991.98px){
  .highlights-section{
    margin-top: 0;
    padding: 0 0 40px;
  }

  .highlight-item{
    padding: 20px 16px;
  }

  .highlights-box .col-6:nth-child(even) .highlight-item{
    border-right: none;
  }

  .highlights-box .col-6:nth-last-child(-n+2) .highlight-item{
    border-bottom: none;
  }
}

@media (max-width: 575.98px){
  .highlight-item{
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 16px 14px;
  }

  .highlight-icon{
    width: 42px;
    height: 42px;
    min-width: 42px;
    font-size: 19px;
    border-radius: 8px;
  }

  .highlight-label{
    font-size: 9.5px;
  }

  .highlight-value{
    font-size: 14.5px;
  }
}
/* =========================================
   ABOUT US SECTION
========================================= */
.about-section{
  background: #ffffff;
  padding: 60px 0;
}

/* Section heading (reusable) */
.section-heading{
  margin-bottom: 40px;
}

.section-tag{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(11,47,94,0.06);
  color: var(--navy);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 12.5px;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 12px;
}

.section-tag i{
  color: var(--saffron);
}

.section-title{
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 32px;
  color: var(--navy);
  margin: 0;
}

.title-divider{
  display: flex;
  justify-content: center;
  margin-top: 12px;
}

.title-divider span{
  width: 70px;
  height: 3px;
  background: var(--saffron);
  border-radius: 3px;
  position: relative;
}

.title-divider span::before,
.title-divider span::after{
  content: "";
  position: absolute;
  top: -2.5px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--navy);
}

.title-divider span::before{
  left: -16px;
}

.title-divider span::after{
  right: -16px;
}

/* Left content */
.about-subtitle{
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  color: var(--saffron-dark);
  margin-bottom: 14px;
}

.about-text{
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 16px;
}

.about-text strong{
  color: var(--navy);
}

.about-info-strip{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px dashed var(--border-light);
}

.about-info-item{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--light-bg);
  border: 1px solid var(--border-light);
  padding: 9px 16px;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  color: var(--navy);
}

.about-info-item i{
  color: var(--saffron);
  font-size: 15px;
}

/* Right: feature boxes */
.about-features{
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-box{
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--light-bg);
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--saffron);
  border-radius: 10px;
  padding: 18px 20px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.feature-box:hover{
  transform: translateX(4px);
  box-shadow: 0 8px 20px rgba(11,47,94,0.08);
}

.feature-icon{
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 10px;
  background: var(--navy);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.feature-text h4{
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15.5px;
  color: var(--navy);
  margin: 0 0 4px;
}

.feature-text p{
  font-family: var(--font-body);
  font-size: 12.5px;
  color: #6b7686;
  margin: 0;
  line-height: 1.5;
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 991.98px){
  .about-section{
    padding: 40px 0;
  }

  .section-title{
    font-size: 25px;
  }

  .about-subtitle{
    font-size: 19px;
  }
}

@media (max-width: 575.98px){
  .section-tag{
    font-size: 11px;
    padding: 5px 13px;
  }

  .section-title{
    font-size: 21px;
  }

  .about-subtitle{
    font-size: 17px;
  }

  .about-text{
    font-size: 13.5px;
    line-height: 1.7;
  }

  .about-info-item{
    font-size: 9px;
    padding: 4px 10px;
  }

  .feature-box{
    padding: 14px 16px;
    gap: 12px;
  }

  .feature-icon{
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 17px;
  }

  .feature-text h4{
    font-size: 14px;
  }

  .feature-text p{
    font-size: 11.5px;
  }
}
/* =========================================
   PAYMENT PLAN SECTION
========================================= */
.payment-plan-section{
  background: var(--navy);
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 60px 0;
  position: relative;
}

.section-title-light{
  color: #ffffff;
}

.section-tag-light{
  background: rgba(255,255,255,0.1);
  color: #ffffff;
}

.section-tag-light i{
  color: var(--saffron);
}

.title-divider-light span{
  background: var(--saffron);
}

.title-divider-light span::before,
.title-divider-light span::after{
  background: #ffffff;
}

/* Badges */
.payment-badges{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 30px;
}

.payment-badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  padding: 11px 22px;
  border-radius: 30px;
}

.payment-badge i{
  font-size: 17px;
}

.payment-badge em{
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  opacity: .9;
}

.payment-badge-gst{
  background: #17803d;
  color: #ffffff;
  letter-spacing: .4px;
}

.payment-badge-ready{
  background: var(--saffron);
  color: #ffffff;
}

/* Table wrap */
.payment-table-wrap{
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.payment-table{
  margin: 0;
  min-width: 900px;
}

.payment-table thead th{
  background: var(--saffron);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  text-align: center;
  padding: 14px 10px;
  border: 1px solid #ddd;
  white-space: nowrap;
  vertical-align: middle;
}

.payment-table thead th span{
  display: block;
  font-weight: 500;
  font-size: 11px;
  opacity: .9;
}

.payment-table tbody td{
  text-align: center;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  padding: 14px 10px;
  border: 1px solid var(--border-light);
  white-space: nowrap;
}

.payment-table tbody tr:last-child td{
  border-bottom: none;
}

.payment-table tbody tr:nth-child(even){
  background: var(--light-bg);
}

.payment-table tbody td strong{
  color: var(--navy);
}

.payment-table tbody td:first-child strong{
  color: var(--saffron-dark);
}

.table-swipe-note{
  text-align: center;
  font-family: var(--font-body);
  font-size: 12px;
  color: #6b7686;
  background: var(--light-bg);
  padding: 8px 0;
  margin: 0;
}

.table-swipe-note i{
  color: var(--saffron);
}

/* Note under table */
.payment-note-line{
  text-align: center;
  color: rgba(255,255,255,0.65);
  font-family: var(--font-body);
  font-size: 12.5px;
  font-style: italic;
  margin: 16px 0 0;
}

/* Refund policy box */
.refund-note-box{
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px dashed rgba(255,255,255,0.35);
  border-radius: 10px;
  padding: 18px 22px;
  margin-top: 26px;
}

.refund-note-box i{
  color: var(--saffron);
  font-size: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}

.refund-note-box p{
  margin: 0;
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
}

.refund-note-box p strong{
  color: var(--saffron);
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 991.98px){
  .payment-plan-section{
    padding: 40px 0;
  }
}

@media (max-width: 575.98px){
  .payment-badges{
    flex-direction: column;
    align-items: stretch;
  }

  .payment-badge{
    justify-content: center;
    font-size: 11.5px;
    padding: 10px 16px;
  }

  .payment-table thead th{
    font-size: 11.5px;
    padding: 10px 10px;
  }

  .payment-table tbody td{
    font-size: 12.5px;
    padding: 12px 10px;
  }

  .refund-note-box{
    padding: 14px 16px;
    gap: 10px;
  }

  .refund-note-box p{
    font-size: 9.5px;
  }
}
/* =========================================
   FLOOR PLAN SECTION
========================================= */
.floor-plan-section{
  background: var(--light-bg);
  padding: 60px 0;
}

.section-subtext{
  font-family: var(--font-body);
  font-size: 13.5px;
  color: #6b7686;
  margin-top: 8px;
}

.floor-plan-card{
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(11,47,94,0.08);
  transition: transform .25s ease, box-shadow .25s ease;
}

.floor-plan-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(11,47,94,0.15);
}

.floor-plan-img-wrap{
  position: relative;
  display: block;
}

.floor-plan-img-wrap a{
  display: block;
  position: relative;
}

.floor-plan-img{
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  background: #e9edf3;
}

/* Zoom overlay on hover */
.zoom-overlay{
  position: absolute;
  inset: 0;
  background: rgba(11,47,94,0.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity .25s ease;
  color: #ffffff;
}

.floor-plan-img-wrap:hover .zoom-overlay{
  opacity: 1;
}

.zoom-overlay i{
  font-size: 30px;
  color: var(--saffron);
}

.zoom-overlay span{
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .3px;
}

.floor-plan-info{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-top: 3px solid var(--saffron);
}

.floor-plan-info h4{
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 19px;
  color: var(--navy);
  margin: 0;
}

.floor-plan-type{
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12.5px;
  color: #6b7686;
  background: var(--light-bg);
  padding: 6px 12px;
  border-radius: 20px;
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 991.98px){
  .floor-plan-section{
    padding: 40px 0;
  }

  .floor-plan-img{
    height: 260px;
  }
}

@media (max-width: 575.98px){
  .floor-plan-img{
    height: 220px;
  }

  .floor-plan-info{
    padding: 14px 16px;
  }

  .floor-plan-info h4{
    font-size: 18px;
  }

  .floor-plan-type{
    font-size: 11px;
    padding: 5px 10px;
  }

  .zoom-overlay i{
    font-size: 24px;
  }

  .zoom-overlay span{
    font-size: 12px;
  }
}
/* =========================================
   LOCATION ADVANTAGES SECTION
========================================= */
.location-section{
  background: #ffffff;
  padding: 60px 0;
}

/* Map image */
.location-map-wrap{
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: 0 10px 30px rgba(11,47,94,0.08);
}

.location-map-wrap a{
  display: block;
  position: relative;
}

.location-map-img{
  width: 100%;
  /* height: 380px; */
  object-fit: cover;
  display: block;
  background: #e9edf3;
}

/* Points */
.location-points{
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.location-point{
  display: flex;
  align-items: flex-start;
  gap: 11px;
  background: var(--light-bg);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 12px 15px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.location-point:hover{
  transform: translateX(4px);
  box-shadow: 0 6px 16px rgba(11,47,94,0.08);
}

.location-point i{
  color: var(--saffron);
  font-size: 17px;
  margin-top: 0px;
  flex-shrink: 0;
}

.location-point span{
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.5;
}

/* Stats row */
.location-stats-row{
  margin-top: 45px;
  background: var(--navy);
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 100%);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(11,47,94,0.2);
}

.location-stat{
  text-align: center;
  padding: 22px 14px;
  border-right: 1px solid rgba(255,255,255,0.12);
}

.location-stat-last,
.col-lg:last-child .location-stat{
  border-right: none;
}

.location-stat h3{
  margin: 0 0 6px;
  line-height: 1;
}

.stat-num{
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 40px;
  color: var(--saffron);
}

.stat-unit{
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  color: #ffffff;
  margin-left: 3px;
}

.location-stat p{
  margin: 0;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13.5px;
  color: rgb(255 255 255 / 79%);
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 991.98px){
  .location-section{
    padding: 40px 0;
  }

  .location-map-img{
    height: 280px;
  }

  .location-stats-row{
    margin-top: 30px;
  }

  .location-stat{
    border-right: 1px solid rgba(255,255,255,0.12);
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }

  .col-6:nth-child(even) .location-stat{
    border-right: none;
  }
}

@media (max-width: 575.98px){
  .location-map-img{
    height: 220px;
  }

  .location-point{
    padding: 11px 13px;
    gap: 10px;
  }

  .location-point span{
    font-size: 12.5px;
  }

  .location-point i{
    font-size: 15px;
  }

  .location-stat{
    padding: 18px 10px;
  }

  .stat-num{
    font-size: 28px;
  }

  .stat-unit{
    font-size: 12px;
  }

  .location-stat p{
    font-size: 11px;
  }
}
/* =========================================
   SITE LAYOUT SECTION
========================================= */
.site-layout-section{
  background: #ffffff;
  padding: 60px 0;
}

.site-layout-img-wrap{
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: 0 15px 40px rgba(11,47,94,0.1);
}

.site-layout-img-wrap a{
  display: block;
  position: relative;
}

.site-layout-img{
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
  background: #e9edf3;
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 991.98px){
  .site-layout-section{
    padding: 40px 0;
  }

  .site-layout-img{
    height: 340px;
  }
}

@media (max-width: 575.98px){
  .site-layout-img{
    height: 240px;
  }
}

/* =========================================
   AMENITIES SECTION
========================================= */
.amenities-section{
  background: var(--light-bg);
  padding: 60px 0;
}

.amenity-box{
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 14px;
  overflow: hidden;
  height: 100%;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.amenity-box:hover{
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(11,47,94,0.12);
  border-color: var(--saffron);
}

.amenity-icon{
  width: 100%;
  height: 130px;
  background: rgba(11,47,94,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: background .25s ease;
}

.amenity-icon img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}

.amenity-box:hover .amenity-icon{
  background: rgba(245,130,15,0.08);
}

.amenity-box:hover .amenity-icon img{
  transform: scale(1.08);
}

.amenity-box h4{
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  color: var(--navy);
  margin: 0;
  line-height: 1.35;
  padding: 14px 10px;
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 991.98px){
  .amenities-section{
    padding: 40px 0;
  }

  .amenity-icon{
    height: 110px;
  }
}

@media (max-width: 767.98px){
  .amenity-icon{
    height: 95px;
  }

  .amenity-box h4{
    font-size: 12px;
    padding: 10px 6px;
  }
}

@media (max-width: 575.98px){
  .amenity-box{
    border-radius: 10px;
  }

  .amenity-icon{
    height: 80px;
  }

  .amenity-box h4{
    font-size: 10.5px;
    padding: 8px 4px;
  }
}
/* =========================================
   PROJECT ACTUAL IMAGES SECTION
========================================= */
.gallery-section{
  background: #ffffff;
  padding: 60px 0;
}

.gallery-img-wrap{
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: 0 8px 24px rgba(11,47,94,0.08);
}

.gallery-img-wrap a{
  display: block;
  position: relative;
}

.gallery-img{
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  background: #e9edf3;
  transition: transform .3s ease;
}

.gallery-img-wrap:hover .gallery-img{
  transform: scale(1.06);
}

.gallery-img-wrap .zoom-overlay{
  position: absolute;
  inset: 0;
  background: rgba(11,47,94,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .25s ease;
}

.gallery-img-wrap:hover .zoom-overlay{
  opacity: 1;
}

.gallery-img-wrap .zoom-overlay i{
  font-size: 28px;
  color: #ffffff;
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 991.98px){
  .gallery-section{
    padding: 40px 0;
  }

  .gallery-img{
    height: 200px;
  }
}

@media (max-width: 575.98px){
  .gallery-img{
    height: 160px;
  }

  .gallery-img-wrap .zoom-overlay i{
    font-size: 22px;
  }
}
/* =========================================
   CONTACT DETAILS SECTION
========================================= */
.contact-section{
  background: var(--light-bg);
  padding: 60px 0;
}

.contact-details-box{
  width: 100%;
}

.contact-detail-item{
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--navy);
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 100%);
  border-radius: 12px;
  padding: 24px 22px;
  height: 100%;
  transition: transform .25s ease, box-shadow .25s ease;
}

.contact-detail-item:hover{
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(11,47,94,0.2);
}

.contact-detail-icon{
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 10px;
  background: var(--saffron);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  color: #ffffff;
}

.contact-detail-text{
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.contact-detail-label{
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: .4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

.contact-detail-value{
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  color: #ffffff;
  line-height: 1.4;
  word-break: break-word;
}

a.contact-detail-value:hover{
  color: var(--saffron);
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 991.98px){
  .contact-section{
    padding: 40px 0;
  }
}

@media (max-width: 767.98px){
  .contact-detail-item{
    padding: 18px 16px;
  }
}

@media (max-width: 575.98px){
  .contact-detail-item{
    padding: 13px;
    gap: 9px;
  }

  .contact-detail-icon{
    width: 30px;
    height: 30px;
    min-width: 30px;
    font-size: 13px;
  }

  .contact-detail-label{
    font-size: 10.5px;
  }

  .contact-detail-value{
    font-size: 13px;
  }
}
/* =========================================
   FOOTER
========================================= */
.site-footer{
  background: var(--navy-dark);
  padding: 30px 0 26px;
}

/* Legal links row */
.footer-legal-links{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding-bottom: 22px;
}

.footer-legal-links a{
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  color: #ffffff;
  transition: color .2s ease;
}

.footer-legal-links a:hover{
  color: var(--saffron);
}

.footer-sep{
  color: rgba(255,255,255,0.25);
}

.footer-divider{
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 26px;
}

/* Company / RERA info */
.footer-legal-info{
  text-align: center;
  margin-bottom: 22px;
}

.footer-legal-info p{
  font-family: var(--font-body);
  font-size: 13.5px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}

.footer-legal-info p:last-child{
  margin-bottom: 0;
}

.footer-legal-info strong{
  color: #ffffff;
  font-weight: 700;
}

/* Bank loan */
.footer-bank{
  text-align: center;
  margin-bottom: 24px;
}

.footer-bank h6{
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 14px;
}

.footer-bank-logo{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 8px;
  padding: 10px 18px;
  min-width: 180px;
  min-height: 54px;
}

.footer-bank-logo img{
  max-height: 34px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

/* Disclaimer */
.footer-disclaimer-line{
  text-align: center;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-disclaimer-line p{
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  margin: 0;
  max-width: 900px;
  margin: 0 auto;
}

.footer-disclaimer-line strong{
  color: rgba(255,255,255,0.75);
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 575.98px){
  .site-footer{
    padding: 22px 0 20px;
  }

  .footer-legal-links{
    gap: 6px;
    padding-bottom: 18px;
  }

  .footer-legal-links a{
    font-size: 10.5px;
  }

  .footer-legal-info p{
    font-size: 12px;
  }

  .footer-bank h6{
    font-size: 12.5px;
  }

  .footer-bank-logo{
    min-width: 150px;
    min-height: 46px;
    padding: 8px 14px;
  }

  .footer-bank-logo img{
    max-height: 26px;
  }

  .footer-disclaimer-line p{
    font-size: 11px;
  }
}
/* =========================================
   LEGAL PAGES (Privacy Policy / Terms / Refund)
========================================= */
.legal-banner{
  background: var(--light-bg);
  padding: 45px 0 35px;
  border-bottom: 1px solid var(--border-light);
}

.legal-updated{
  font-family: var(--font-body);
  font-size: 13px;
  color: #6b7686;
  margin-top: 10px;
}

.legal-content-section{
  background: #ffffff;
  padding: 55px 0;
}

.legal-content-box h3{
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
  margin: 30px 0 12px;
}

.legal-content-box h3:first-child{
  margin-top: 0;
}

.legal-content-box p{
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.85;
  color: #4a5568;
  margin-bottom: 14px;
}

.legal-content-box p strong{
  color: var(--navy);
}

.legal-content-box ul{
  margin: 0 0 14px;
  padding-left: 20px;
}

.legal-content-box ul li{
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 8px;
}

/* Contact box inside legal page */
.legal-contact-box{
  background: var(--light-bg);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 22px 24px;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.legal-contact-item{
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-dark);
}

.legal-contact-item i{
  color: var(--saffron);
  font-size: 16px;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.legal-contact-item a{
  color: var(--navy);
  font-weight: 600;
  transition: color .2s ease;
}

.legal-contact-item a:hover{
  color: var(--saffron);
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 575.98px){
  .legal-banner{
    padding: 32px 0 26px;
  }

  .legal-content-section{
    padding: 36px 0;
  }

  .legal-content-box h3{
    font-size: 16px;
    margin: 24px 0 10px;
  }

  .legal-content-box p,
  .legal-content-box ul li{
    font-size: 13.5px;
  }

  .legal-contact-box{
    padding: 18px 18px;
  }

  .legal-contact-item{
    font-size: 13px;
  }
}
/* =========================================
   REFUND POLICY - CASE BOXES
========================================= */
.refund-case-box{
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border-radius: 12px;
  padding: 22px 24px;
  margin-bottom: 18px;
  border: 1px solid var(--border-light);
}

.refund-case-icon{
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  color: #ffffff;
}

.refund-case-success{
  background: #eefaf2;
  border-color: #b9e8c8;
}

.refund-case-success .refund-case-icon{
  background: #17803d;
}

.refund-case-cancel{
  background: #fdf3e8;
  border-color: #f6d9ae;
}

.refund-case-cancel .refund-case-icon{
  background: var(--saffron);
}

.refund-case-content h4{
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
  margin: 0 0 8px;
}

.refund-case-content p{
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.75;
  color: #4a5568;
  margin-bottom: 12px;
}

.refund-case-content p strong{
  color: var(--navy);
}

.refund-timeline{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 30px;
  padding: 7px 16px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 12.5px;
  color: var(--navy);
}

.refund-timeline i{
  color: var(--saffron);
  font-size: 14px;
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 575.98px){
  .refund-case-box{
    padding: 16px 16px;
    gap: 12px;
  }

  .refund-case-icon{
    width: 38px;
    height: 38px;
    min-width: 38px;
    font-size: 17px;
  }

  .refund-case-content h4{
    font-size: 14px;
  }

  .refund-case-content p{
    font-size: 12.5px;
  }

  .refund-timeline{
    font-size: 11.5px;
    padding: 6px 13px;
  }
}
/* =========================================
   REGISTRATION PAGE
========================================= */
.reg-banner{
  background: var(--light-bg);
  padding: 45px 0 35px;
  border-bottom: 1px solid var(--border-light);
}

.reg-banner-sub{
  font-family: var(--font-body);
  font-size: 13.5px;
  color: #6b7686;
  margin-top: 10px;
}

.reg-banner-sub strong{
  color: var(--navy);
}

.reg-form-section{
  background: #ffffff;
  padding: 50px 0 60px;
}

/* Step box */
.reg-step-box{
  background: var(--light-bg);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 28px 26px;
  margin-bottom: 24px;
}

.reg-step-header{
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.reg-step-num{
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  background: var(--saffron);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reg-step-header h5{
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
  margin: 0;
}

.reg-label{
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 12.5px;
  color: var(--navy);
  margin-bottom: 6px;
  display: block;
}

.reg-form .form-control,
.reg-form .form-select{
  font-family: var(--font-body);
  font-size: 14px;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 11px 14px;
  background: #ffffff;
  color: var(--text-dark);
}

.reg-form .form-control:focus,
.reg-form .form-select:focus{
  border-color: var(--saffron);
  box-shadow: 0 0 0 3px rgba(245,130,15,0.12);
}

/* Apartment size cards */
.reg-size-options{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.reg-size-card{
  flex: 1;
  min-width: 220px;
  position: relative;
  cursor: pointer;
}

.reg-size-card input[type="radio"]{
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.reg-size-content{
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: #ffffff;
  border: 2px solid var(--border-light);
  border-radius: 10px;
  padding: 16px 18px;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.reg-size-card input[type="radio"]:checked + .reg-size-content{
  border-color: var(--saffron);
  background: rgba(245,130,15,0.06);
  box-shadow: 0 8px 20px rgba(245,130,15,0.15);
}

.reg-size-value{
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
  color: var(--navy);
}

.reg-size-price{
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12.5px;
  color: #6b7686;
}

/* Declaration */
.reg-declaration{
  background: var(--light-bg);
  border: 1px dashed var(--border-light);
  border-radius: 10px;
  padding: 18px 22px;
  margin-bottom: 26px;
}

.reg-declaration .form-check-label{
  font-family: var(--font-body);
  font-size: 13px;
  color: #4a5568;
  line-height: 1.6;
}

.reg-declaration .form-check-label a{
  color: var(--saffron-dark);
  font-weight: 600;
}

.reg-declaration .form-check-input:checked{
  background-color: var(--saffron);
  border-color: var(--saffron);
}

/* Submit */
.reg-submit-wrap{
  text-align: center;
}

.reg-submit-wrap .btn-register-lg{
  min-width: 260px;
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 991.98px){
  .reg-form-section{
    padding: 36px 0 45px;
  }
}

@media (max-width: 575.98px){
  .reg-banner{
    padding: 32px 0 26px;
  }

  .reg-step-box{
    padding: 20px 16px;
    border-radius: 10px;
  }

  .reg-step-num{
    width: 34px;
    height: 34px;
    min-width: 34px;
    font-size: 13px;
  }

  .reg-step-header h5{
    font-size: 15.5px;
  }

  .reg-label{
    font-size: 11.5px;
  }

  .reg-size-card{
    min-width: 100%;
  }

  .reg-size-value{
    font-size: 16px;
  }

  .reg-declaration{
    padding: 14px 16px;
  }

  .reg-declaration .form-check-label{
    font-size: 10px;
  }

  .reg-submit-wrap .btn-register-lg{
    width: 100%;
    min-width: unset;
  }
}
/* Apartment size cards */
.reg-size-options{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.reg-size-card{
  flex: 1;
  min-width: 220px;
  position: relative;
  cursor: pointer;
}

.reg-size-card input[type="radio"]{
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.reg-size-content{
  display: flex;
  align-items: center;
  gap: 14px;
  background: #ffffff;
  border: 2px solid var(--border-light);
  border-radius: 10px;
  padding: 16px 18px;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

/* Custom radio circle */
.reg-size-radio{
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  border: 2px solid #c7cfda;
  position: relative;
  transition: border-color .2s ease;
}

.reg-size-radio::after{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--saffron);
  transform: translate(-50%, -50%) scale(0);
  transition: transform .2s ease;
}

.reg-size-text{
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.reg-size-value{
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
  color: var(--navy);
}

.reg-size-price{
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12.5px;
  color: #6b7686;
}

/* Checked state */
.reg-size-card input[type="radio"]:checked + .reg-size-content{
  border-color: var(--saffron);
  background: rgba(245,130,15,0.06);
  box-shadow: 0 8px 20px rgba(245,130,15,0.15);
}

.reg-size-card input[type="radio"]:checked + .reg-size-content .reg-size-radio{
  border-color: var(--saffron);
}

.reg-size-card input[type="radio"]:checked + .reg-size-content .reg-size-radio::after{
  transform: translate(-50%, -50%) scale(1);
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 575.98px){
  .reg-size-card{
    min-width: 100%;
  }

  .reg-size-radio{
    width: 19px;
    height: 19px;
    min-width: 19px;
  }

  .reg-size-radio::after{
    width: 9px;
    height: 9px;
  }

  .reg-size-value{
    font-size: 16px;
  }
}
/* =========================================
   STICKY CALL NOW (Desktop/Tablet)
========================================= */
.sticky-call-btn{
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--saffron);
  color: #ffffff;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 10px 26px rgba(245,130,15,0.4);
  z-index: 1050;
  animation: callPulse 1.8s ease-in-out infinite;
  transition: background .2s ease, transform .2s ease;
}

.sticky-call-btn:hover{
  background: var(--saffron-dark);
  color: #ffffff;
  transform: scale(1.08);
}

@keyframes callPulse{
  0%, 100%{
    box-shadow: 0 0 0 0 rgba(245,130,15,0.45), 0 10px 26px rgba(245,130,15,0.4);
  }
  50%{
    box-shadow: 0 0 0 14px rgba(245,130,15,0), 0 10px 26px rgba(245,130,15,0.4);
  }
}

/* =========================================
   FIXED BOTTOM BAR (Mobile only)
========================================= */
.mobile-fixed-bar{
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 1050;
  box-shadow: 0 -6px 20px rgba(0,0,0,0.15);
}

.mobile-fixed-btn{
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  color: #ffffff !important;
  padding: 7px 8px;
  text-align: center;
}

.mobile-fixed-btn i{
  font-size: 15px;
}

.mobile-fixed-reg{
  background: var(--saffron);
}

.mobile-fixed-call{
  background: var(--navy);
}

/* Push page content up so bottom bar doesn't overlap footer on mobile */
@media (max-width: 767.98px){
    .logo-img
    {
        max-height: 43px;
    }
  body{
    padding-bottom: 54px;
  }
}
/* =========================================
   FIXED ENQUIRY NOW TAB
========================================= */
.enquiry-tab-btn{
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  background: var(--saffron);
  color: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 18px 10px;
  border-radius: 0px 8px 8px 0px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: .5px;
  box-shadow: -4px 0 15px rgba(245,130,15,0.35);
  z-index: 1040;
  cursor: pointer;
  transition: background .2s ease, padding-right .2s ease;
}

.enquiry-tab-btn:hover{
  background: var(--saffron-dark);
  padding-right: 14px;
}

.enquiry-tab-btn i{
  font-size: 17px;
  transform: rotate(180deg);
}

/* =========================================
   OVERLAY (center flex wrapper)
========================================= */
.enquiry-overlay{
  position: fixed;
  inset: 0;
  background: rgba(7,31,64,0.65);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
  z-index: 1055;
}

.enquiry-overlay.active{
  opacity: 1;
  visibility: visible;
}

/* =========================================
   POPUP CARD (center modal)
========================================= */
.enquiry-popup{
  position: relative;
  width: 440px;
  max-width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.3);
  padding: 34px 30px;
  transform: scale(0.9) translateY(20px);
  opacity: 0;
  transition: transform .3s cubic-bezier(.4,0,.2,1), opacity .3s ease;
}

.enquiry-overlay.active .enquiry-popup{
  transform: scale(1) translateY(0);
  opacity: 1;
}

.enquiry-close-btn{
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--navy);
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.enquiry-close-btn:hover{
  background: var(--saffron);
  color: #ffffff;
  transform: rotate(90deg);
}

/* Popup header */
.enquiry-popup-header{
  text-align: center;
  margin: 6px 0 24px;
}

.enquiry-popup-tag{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(11,47,94,0.06);
  color: var(--navy);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 11px;
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 14px;
}

.enquiry-popup-tag i{
  color: var(--saffron);
}

.enquiry-popup-header h4{
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 21px;
  color: var(--navy);
  margin: 0 0 8px;
  line-height: 1.3;
}

.enquiry-popup-header p{
  font-family: var(--font-body);
  font-size: 13px;
  color: #6b7686;
  margin: 0;
}

/* Form fields */
.enquiry-field{
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--light-bg);
  border: 1px solid var(--border-light);
  border-radius: 9px;
  padding: 13px 16px;
  margin-bottom: 14px;
  transition: border-color .2s ease, background .2s ease;
}

.enquiry-field:focus-within{
  border-color: var(--saffron);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(245,130,15,0.1);
}

.enquiry-field i{
  color: var(--saffron);
  font-size: 15px;
  flex-shrink: 0;
}

.enquiry-field input,
.enquiry-field select{
  border: none;
  background: transparent;
  outline: none;
  width: 100%;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-dark);
}

.enquiry-submit-btn{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: var(--saffron);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  padding: 14px;
  border-radius: 9px;
  border: none;
  margin-top: 6px;
  box-shadow: 0 10px 24px rgba(245,130,15,0.3);
  transition: background .2s ease, transform .2s ease;
}

.enquiry-submit-btn:hover{
  background: var(--saffron-dark);
  color: #ffffff;
  transform: translateY(-2px);
}

.enquiry-note{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 11.5px;
  color: #8b96a5;
  margin-top: 16px;
}

.enquiry-note i{
  color: #17803d;
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 575.98px){
    .enquiry-popup-header p
    {
        font-size: 11px;
    }
  .enquiry-tab-btn{
            padding: 14px 4px;
        font-size: 11px;
  }

  .enquiry-tab-btn i{
    font-size: 15px;
  }

  .enquiry-popup{
    width: 100%;
    padding: 16px 17px;
    border-radius: 14px;
  }

  .enquiry-popup-header h4{
    font-size: 18px;
  }

  .enquiry-field{
    padding: 11px 14px;
  }

  .enquiry-field input,
  .enquiry-field select{
    font-size: 13px;
  }
}
.enquiry-field-textarea{
  align-items: flex-start;
  padding: 14px 16px;
}

.enquiry-field-textarea i{
  margin-top: 4px;
}

.enquiry-field-textarea textarea{
  resize: none;
  min-height: 55px;
  max-height: 93px;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
}

.enquiry-field-textarea textarea::placeholder{
  color: #94a0b0;
}
/* =========================================
   THANK YOU PAGE
========================================= */
.thankyou-section{
  background: var(--light-bg);
  padding: 90px 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.thankyou-box{
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 18px;
  padding: 50px 36px;
  box-shadow: 0 20px 50px rgba(11,47,94,0.1);
}

.thankyou-icon{
  width: 84px;
  height: 84px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: #17803d;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  box-shadow: 0 10px 25px rgba(23,128,61,0.3);
  animation: thankPop .5s cubic-bezier(.34,1.56,.64,1);
}

@keyframes thankPop{
  0%{ transform: scale(0); opacity: 0; }
  100%{ transform: scale(1); opacity: 1; }
}

.thankyou-title{
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 30px;
  color: var(--navy);
  margin-bottom: 14px;
}

.thankyou-text{
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 26px;
}

.thankyou-text strong{
  color: var(--navy);
}

.thankyou-info-strip{
  background: var(--light-bg);
  border: 1px dashed var(--border-light);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 28px;
}

.thankyou-info-item{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.thankyou-info-item i{
  color: var(--saffron);
  font-size: 20px;
}

.thankyou-info-item div{
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.thankyou-info-item span{
  font-family: var(--font-body);
  font-size: 11.5px;
  color: #6b7686;
}

.thankyou-info-item a{
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
}

.thankyou-info-item a:hover{
  color: var(--saffron);
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 575.98px){
  .thankyou-section{
    padding: 60px 0;
  }

  .thankyou-box{
    padding: 36px 22px;
  }

  .thankyou-icon{
    width: 68px;
    height: 68px;
    font-size: 32px;
    margin-bottom: 18px;
  }

  .thankyou-title{
    font-size: 24px;
  }

  .thankyou-text{
    font-size: 13px;
  }
}
/* =========================================
   REGISTRATION THANK YOU - EXTRA STYLES
   (add below existing thank-you.css content)
========================================= */
.reg-no-box{
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 100%);
  border-radius: 14px;
  padding: 22px 24px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.reg-no-label{
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.reg-no-value{
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 32px;
  color: var(--saffron);
  letter-spacing: 1px;
}

.reg-no-note{
  font-family: var(--font-body);
  font-size: 11.5px;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
}

.thankyou-summary{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.thankyou-summary-item{
  flex: 1;
  min-width: 140px;
  background: var(--light-bg);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.thankyou-summary-item span{
  font-family: var(--font-body);
  font-size: 11px;
  color: #6b7686;
}

.thankyou-summary-item strong{
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
}

.payment-pending{
  color: var(--saffron-dark) !important;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.thankyou-payment-note{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 12px;
  color: #6b7686;
  background: var(--light-bg);
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 24px;
}

.thankyou-payment-note i{
  color: var(--saffron);
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 575.98px){
  .reg-no-box{
    padding: 18px 18px;
  }

  .reg-no-value{
    font-size: 26px;
  }

  .thankyou-summary-item{
    min-width: 100%;
  }
}
/* =========================================
   REGISTRATION STATUS MODAL
   (Already Registered / Complete Registration)
========================================= */
.reg-status-overlay{
  position: fixed;
  inset: 0;
  background: rgba(7,31,64,0.65);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
  z-index: 1070;
}

.reg-status-overlay.active{
  opacity: 1;
  visibility: visible;
}

.reg-status-modal{
  position: relative;
  width: 440px;
  max-width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.3);
  padding: 38px 30px 30px;
  text-align: center;
  transform: scale(0.9) translateY(20px);
  opacity: 0;
  transition: transform .3s cubic-bezier(.4,0,.2,1), opacity .3s ease;
}

.reg-status-overlay.active .reg-status-modal{
  transform: scale(1) translateY(0);
  opacity: 1;
}

.reg-status-close{
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--navy);
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.reg-status-close:hover{
  background: var(--saffron);
  color: #ffffff;
  transform: rotate(90deg);
}

.reg-status-icon{
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}

.reg-status-icon-success{
  background: #eefaf2;
  color: #17803d;
}

.reg-status-icon-pending{
  background: #fdf3e8;
  color: var(--saffron);
}

.reg-status-title{
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 8px;
}

.reg-status-text{
  font-family: var(--font-body);
  font-size: 13.5px;
  color: #6b7686;
  line-height: 1.7;
  margin-bottom: 22px;
}

.reg-status-details{
  background: var(--light-bg);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 18px;
  text-align: left;
}

.reg-status-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 13px;
}

.reg-status-row:last-child{
  border-bottom: none;
}

.reg-status-row span{
  color: #6b7686;
}

.reg-status-row strong{
  color: var(--navy);
  font-family: var(--font-heading);
  font-weight: 700;
}

.reg-status-badge{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12.5px;
  padding: 8px 18px;
  border-radius: 30px;
}

.reg-status-badge-success{
  background: #eefaf2;
  color: #17803d;
}

.reg-status-badge-pending{
  background: #fdf3e8;
  color: var(--saffron-dark);
}

.reg-status-pay-btn{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: var(--saffron);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  padding: 14px;
  border-radius: 9px;
  border: none;
  margin-top: 20px;
  box-shadow: 0 10px 24px rgba(245,130,15,0.3);
  transition: background .2s ease, transform .2s ease;
}

.reg-status-pay-btn:hover{
  background: var(--saffron-dark);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Form error banner */
.reg-form-error{
  background: #fdecea;
  border: 1px solid #f5c6c0;
  color: #b3261e;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.6;
  padding: 12px 16px;
  border-radius: 8px;
  margin-top: 16px;
  text-align: center;
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 575.98px){
  .reg-status-modal{
    padding: 30px 20px 24px;
    border-radius: 14px;
  }

  .reg-status-title{
    font-size: 17px;
  }

  .reg-status-text{
    font-size: 12.5px;
  }

  .reg-status-row{
    font-size: 12px;
  }
}
/* =========================================
   THANK YOU PAGE - PAYMENT DETAILS BOX
========================================= */
.payment-paid{
  color: #17803d !important;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.payment-failed{
  color: #b3261e !important;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.thankyou-payment-box{
  background: var(--light-bg);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 18px;
  text-align: left;
}

.thankyou-payment-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 12.5px;
}

.thankyou-payment-row:last-child{
  border-bottom: none;
}

.thankyou-payment-row span{
  color: #6b7686;
}

.thankyou-payment-row strong{
  color: var(--navy);
  font-family: var(--font-heading);
  font-weight: 700;
  word-break: break-all;
  text-align: right;
}