/* ===== VARIABLES ===== */
:root {
  --vap-navy: #07904f;
  --vap-navy-dark: #07904f;
  --vap-saffron: #FF7A00;
  --vap-teal: #07904f;
  --vap-pink: #FADCE3;
  --vap-red: #D62828;
  --vap-white: #FFFFFF;
  --vap-text-dark: #1A1A1A;
  --vap-font-heading: 'Poppins', sans-serif;
  --vap-font-body: 'Inter', sans-serif;
}

body { font-family: var(--vap-font-body); margin: 0; }

/* ===== TOP NOTICE MARQUEE ===== */
.vap-notice-bar {
  background: #f0ece3;
  overflow: hidden;
  white-space: nowrap;
  padding: 8px 0;
}

.vap-notice-bar-secondary { background: var(--vap-red); }

.vap-notice-track {
  display: inline-block;
  animation: vapMarquee 30s linear infinite;
}

.vap-notice-item {
  display: inline-block;
  color: #222222;
  font-size: 13px;
  font-weight: 600;
  margin-right: 60px;
}

.vap-badge-new {
  background: var(--vap-navy);
  color: var(--vap-white);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 3px;
  margin-right: 6px;
}

@keyframes vapMarquee {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* ===== NAVY MENU STRIP (LOGO + MENU + BUTTON) ===== */
.vap-navbar {
  background: var(--vap-navy);
  padding: 10px 0;
}

.vap-navbar-inner {
  padding: 0 30px;
  min-height: 68px;
}

.vap-logo-img {
  height: 55px;
  width: auto;
  background: var(--vap-white);
  padding: 4px 8px;
  border-radius: 4px;
}

.vap-plot-badge {
  background: var(--vap-saffron);
  color: var(--vap-white);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 18px;
  gap: 6px;
  align-items: center;
  border-radius: 4px;
  margin-left: 14px;
}

.vap-nav-menu { gap: 4px; }

.vap-nav-menu .nav-link {
  font-family: var(--vap-font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--vap-white);
  text-align: center;
  padding: 12px 18px !important;
  transition: all 0.25s ease;
  border-radius: 4px;
}

.vap-nav-menu .nav-link small {
  display: block;
  font-size: 11px;
  font-weight: 400;
  opacity: 0.8;
}

.vap-nav-menu .nav-link:hover,
.vap-nav-menu .nav-link.active {
  color: var(--vap-white);
  background: var(--vap-saffron);
}

.vap-toggler {
  border: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
}

.vap-toggler-icon {
  width: 24px;
  height: 3px;
  background: var(--vap-white);
  border-radius: 2px;
}

/* REGISTER BUTTON */
.vap-btn-register {
  background: red;
  color: var(--vap-white) !important;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 4px;
  letter-spacing: 0.3px;
  border: none;
}

.vap-btn-register:hover { background: var(--vap-white); color: var(--vap-navy) !important; }

.vap-blink { animation: vapBlink 1.4s infinite; }

@keyframes vapBlink {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255,122,0,0.6); }
  50% { opacity: 0.75; box-shadow: 0 0 0 8px rgba(255,122,0,0); }
}

/* ===== HERO SECTION ===== */
.vap-hero {
  position: relative;
  background: url("../images/plot.jpg") center center / cover no-repeat;
  padding: 55px 0 45px;
}

.vap-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,25,49,0.6) 0%, rgba(7,25,49,0.3) 60%, rgba(7,25,49,0.6) 100%);
}

.vap-hero-container { position: relative; z-index: 2; padding: 0 40px; color: var(--vap-white); }

.vap-hero-title {
  font-family: var(--vap-font-heading);
  font-weight: 800;
  font-size: clamp(26px, 4vw, 44px);
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.vap-hero-desc {
  font-size: clamp(14px, 1.4vw, 18px);
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 14px;
}

.vap-hero-location {
  font-size: clamp(16px, 1.8vw, 21px);
  font-weight: 700;
  margin-bottom: 24px;
}

/* PINK GOVT STAT STRIP */
.vap-stat-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  max-width: 620px;
  margin-bottom: 12px;
}

.vap-stat-box {
  background: var(--vap-pink);
  flex: 1;
  min-width: 220px;
  padding: 14px 20px;
  text-align: center;
}

.vap-stat-label { display: block; font-size: 12px; font-weight: 700; color: var(--vap-navy); letter-spacing: 0.5px; }
.vap-stat-value { display: block; font-family: var(--vap-font-heading); font-size: clamp(16px, 1.8vw, 20px); font-weight: 800; color: var(--vap-navy-dark); }

.vap-rera-text { font-size: 13px; font-weight: 600; opacity: 0.9; margin-bottom: 20px; }

.vap-btn-cta {
  background: red;
  color: var(--vap-white);
  font-family: var(--vap-font-heading);
  font-weight: 700;
  font-size: clamp(14px, 1.6vw, 17px);
  padding: 14px 36px;
  border-radius: 4px;
  border: none;
}

.vap-btn-cta:hover { background: var(--vap-white); color: var(--vap-navy); }

/* INFO CARD */
.vap-info-card {
  background: rgba(30,30,30,0.6);
  backdrop-filter: blur(6px);
  border-radius: 6px;
  padding: 20px 22px;
  margin-bottom: 20px;
}

.vap-info-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.vap-info-row:last-child { border-bottom: none; }

.vap-info-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--vap-saffron);
  margin-top: 5px;
  flex-shrink: 0;
}

.vap-info-icon { font-size: 22px; color: var(--vap-saffron); margin-top: 2px; }

.vap-info-label { display: block; font-size: 12px; font-weight: 500; color: #dcdcdc; line-height: 1.4; margin-bottom: 3px; }
.vap-info-value { display: block; font-family: var(--vap-font-heading); font-size: 16px; font-weight: 700; color: var(--vap-white); }

/* OFFER CARD */
.vap-offer-card { background: var(--vap-saffron); border-radius: 6px; padding: 20px; color: var(--vap-white); }
.vap-offer-badge { display: inline-block; background: var(--vap-navy); font-size: 12px; font-weight: 700; padding: 6px 14px; border-radius: 4px; margin-bottom: 12px; }
.vap-offer-text { font-size: 13px; font-weight: 600; margin-bottom: 10px; }
.vap-offer-list { font-size: 13px; font-weight: 500; padding-left: 18px; margin-bottom: 10px; }
.vap-offer-list li { margin-bottom: 4px; }
.vap-offer-footer { display: block; font-size: 13px; font-weight: 800; color: var(--vap-navy); }

/* FLOATING SIDE ICONS */
.vap-float-icons { position: fixed; right: 0; top: 45%; z-index: 999; display: flex; flex-direction: column; }
.vap-float-btn { width: 46px; height: 46px; display: flex; align-items: center; justify-content: center; color: var(--vap-white); font-size: 20px; }
.vap-float-call { background: var(--vap-saffron); }
.vap-float-whatsapp { background: #25D366; }
.vap-float-enquiry { background: var(--vap-navy); }

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 991px) {
  .vap-nav-collapse { background: var(--vap-navy-dark); padding: 15px; margin-top: 10px; border-radius: 6px; }
  .vap-plot-badge { margin-left: 0; margin-top: 10px; }
  .vap-hero-container { padding: 0 20px; }
}

@media (max-width: 480px) {
  .vap-hero-title { font-size: 24px; }
  .vap-logo-img { height: 42px; }
  .vap-stat-box { min-width: 100%; }
  .vap-float-btn { width: 40px; height: 40px; font-size: 17px; }
}
.vap-navbar {
  background: var(--vap-navy);
  padding: 6px 0;
}

.vap-navbar-inner {
  padding: 0 20px;
  min-height: 52px;
}

.vap-logo-img {
  height: 48px;
  width: auto;
  /* background: var(--vap-white); */
  padding: 3px 6px;
  border-radius: 3px;
}

.vap-plot-badge {
  font-size: 12px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 3px;
  margin-left: 10px;
}

.vap-nav-menu .nav-link {
  font-size: 13px;
  padding: 8px 14px !important;
}

.vap-nav-menu .nav-link small {
  font-size: 12px;
}

.vap-btn-register {
  font-size: 13px;
  padding: 8px 18px;
}

.vap-hero {
  padding: 35px 0 30px;
}

.vap-hero-container {
  padding: 0 30px;
}

.vap-hero-title {
  font-size: clamp(22px, 3.2vw, 36px);
  margin-bottom: 12px;
}

.vap-hero-desc {
  font-size: clamp(13px, 1.2vw, 16px);
  line-height: 1.5;
  margin-bottom: 10px;
}

.vap-hero-location {
  font-size: clamp(14px, 1.5vw, 18px);
  margin-bottom: 16px;
}

.vap-stat-strip {
  margin-bottom: 8px;
}

.vap-stat-box {
  padding: 10px 16px;
  min-width: 180px;
}

.vap-stat-label {
  font-size: 11px;
}

.vap-stat-value {
  font-size: clamp(14px, 1.5vw, 18px);
}

.vap-rera-text {
  font-size: 12px;
  margin-bottom: 14px;
}

.vap-btn-cta {
  font-size: clamp(13px, 1.4vw, 15px);
  padding: 11px 28px;
}

.vap-info-card {
  padding: 14px 16px;
  margin-bottom: 14px;
}

.vap-info-row {
  gap: 10px;
  padding: 7px 0;
}

.vap-info-dot {
  width: 10px;
  height: 10px;
}

.vap-info-icon {
  font-size: 18px;
}

.vap-info-label {
  font-size: 11px;
  margin-bottom: 2px;
}

.vap-info-value {
  font-size: 14px;
}

.vap-offer-card {
  padding: 14px 16px;
}

.vap-offer-badge {
  font-size: 11px;
  padding: 5px 12px;
  margin-bottom: 8px;
}

.vap-offer-text {
  font-size: 12px;
  margin-bottom: 8px;
}

.vap-offer-list {
  font-size: 12px;
  padding-left: 16px;
  margin-bottom: 8px;
}

.vap-offer-footer {
  font-size: 12px;
}

.vap-notice-bar {
  padding: 6px 0;
}

.vap-notice-item {
  font-size: 12px;
  margin-right: 38px;
}

.vap-badge-new {
  font-size: 9px;
  padding: 2px 6px;
}
/* ===== ABOUT US SECTION ===== */
.vap-about {
  background: #FBF8F3;
  padding: 60px 0 70px;
}

.vap-about-header {
  text-align: center;
  margin-bottom: 50px;
}

.vap-about-eyebrow {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--vap-teal);
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.vap-about-title {
  font-family: var(--vap-font-heading);
  font-weight: 700;
  font-size: clamp(20px, 3vw, 32px);
  color: var(--vap-navy);
  letter-spacing: 2px;
  margin: 0;
}

.vap-about-timeline {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
  padding-left: 40px;
  border-left: 2px solid #E3D9C6;
}

.vap-about-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 46px;
  position: relative;
}

.vap-about-item:last-child { margin-bottom: 0; }

.vap-about-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border: 2px solid var(--vap-saffron);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--vap-white);
  margin-left: -72px;
}

.vap-about-icon i {
  font-size: 26px;
  color: var(--vap-saffron);
}

.vap-about-content h3 {
  font-family: var(--vap-font-heading);
  font-weight: 700;
  font-size: clamp(15px, 1.8vw, 19px);
  color: var(--vap-navy);
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.vap-about-content p {
  font-family: var(--vap-font-body);
  font-size: clamp(13px, 1.3vw, 15px);
  color: #555;
  line-height: 1.7;
  margin: 0;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 576px) {
  .vap-about { padding: 40px 0 50px; }

  .vap-about-timeline {
    padding-left: 24px;
  }

  .vap-about-icon {
    width: 46px;
    height: 46px;
    margin-left: -47px;
  }

  .vap-about-icon i { font-size: 18px; }

  .vap-about-item {
    gap: 14px;
    margin-bottom: 34px;
  }

  .vap-about-content h3 { font-size: 15px; }
  .vap-about-content p { font-size: 12.5px; }
}
/* ===== MAIN SECTION LAYOUT ===== */
.vap-main-section {
  background: var(--vap-white);
  padding: 55px 0;
}

/* INTRO BLOCK */
.vap-intro-block { margin-bottom: 40px; }

.vap-invest-title {
  font-family: var(--vap-font-heading);
  font-weight: 700;
  font-size: clamp(18px, 2.4vw, 26px);
  color: var(--vap-navy);
  letter-spacing: 0.5px;
  margin: 0 0 4px;
}

.vap-invest-title-hi {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--vap-teal);
  margin-bottom: 6px;
}

.vap-intro-text {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  margin: 0;
}

/* PAYMENT PLAN TABLE */
.vap-payment-block { margin-top: 10px; }

.vap-invest-header { margin-bottom: 18px; }

.vap-table-wrap {
  border: 1px solid #e2e2e2;
  border-radius: 6px;
  overflow: hidden;
}

.vap-payment-table {
  margin: 0;
  font-size: 12.5px;
  white-space: nowrap;
}

.vap-payment-table thead th {
  background: var(--vap-navy);
  color: var(--vap-white);
  font-weight: 600;
  font-size: 11.5px;
  text-align: center;
  vertical-align: middle;
  padding: 10px 8px;
  border: none;
}

.vap-payment-table thead th small {
  display: block;
  font-weight: 400;
  font-size: 10px;
  opacity: 0.8;
}

.vap-payment-table tbody td {
  text-align: center;
    font-size: 12px;
  vertical-align: middle;
  padding: 10px 8px;
  color: #333;
  border-color: #eee;
}

.vap-payment-table tbody tr:nth-child(even) { background: #FBF8F3; }

.vap-td-type {
  font-family: var(--vap-font-heading);
  font-weight: 700;
  color: var(--vap-saffron);
}

.vap-td-total {
  font-family: var(--vap-font-heading);
  font-weight: 700;
  color: var(--vap-navy);
  background: var(--vap-pink) !important;
}

.vap-table-note {
  font-size: 11px;
  color: #888;
  margin-top: 10px;
  font-style: italic;
}

/* ===== RIGHT STICKY SIDEBAR ===== */
.vap-sidebar-sticky {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* IMPORTANT DATES BOX */
.vap-dates-box {
  background: var(--vap-navy);
  border-top: 4px solid var(--vap-saffron);
  border-radius: 6px;
  padding: 22px 20px;
}

.vap-dates-title {
  font-family: var(--vap-font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--vap-white);
  letter-spacing: 1px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.vap-date-row {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.2);
}

.vap-date-row:last-of-type { border-bottom: none; }

.vap-date-label { font-size: 11.5px; color: #cfd8e3; }

.vap-date-value {
  font-family: var(--vap-font-heading);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

/* SIDE BLOCKS (Why Invest / Heart of Braj) */
.vap-invest-side-block {
  background: #FBF8F3;
  border: 1px solid #eee;
  border-radius: 6px;
  padding: 18px;
}

.vap-side-title {
  font-family: var(--vap-font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--vap-navy);
  letter-spacing: 0.5px;
  margin: 0;
}

.vap-side-title-hi {
  display: block;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--vap-teal);
  margin-bottom: 12px;
}

/* WHY INVEST LIST - compact */
.vap-invest-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed #ddd;
}

.vap-invest-item:last-child { border-bottom: none; }

.vap-invest-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid var(--vap-saffron);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFF6EC;
}

.vap-invest-icon i { font-size: 15px; color: var(--vap-saffron); }

.vap-invest-icon-rera span {
  font-size: 7px;
  font-weight: 800;
  color: var(--vap-saffron);
}

.vap-invest-content h4 {
  font-family: var(--vap-font-heading);
  font-size: 12px;
  font-weight: 700;
  color: var(--vap-navy);
  margin: 0 0 1px;
}

.vap-invest-content p {
  font-size: 11px;
  color: #666;
  margin: 0;
  line-height: 1.3;
}

/* HEART OF BRAJ LIST */
.vap-braj-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.vap-braj-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 0;
  font-size: 12px;
  border-bottom: 1px solid #eee;
}

.vap-braj-list li:last-child { border-bottom: none; }

.vap-braj-list li span { font-weight: 500; color: var(--vap-text-dark); }

.vap-braj-list li b {
  font-family: var(--vap-font-heading);
  color: var(--vap-saffron);
  font-weight: 700;
  white-space: nowrap;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 991px) {
  .vap-sidebar-sticky {
    position: static;
    margin-top: 2px;
  }
}

@media (max-width: 576px) {
  .vap-main-section { padding: 35px 0; }
  .vap-intro-text { font-size: 13px; }
  .vap-payment-table { font-size: 11px; }
  .vap-invest-item { gap: 10px; padding: 8px 0; }
  .vap-invest-icon { width: 34px; height: 34px; }
  .vap-invest-icon i { font-size: 13px; }
}
/* ===== INTRO BLOCK ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â COMPRESSED ===== */
.vap-intro-block {
  margin-bottom: 30px;
  padding: 16px 20px;
  background: linear-gradient(135deg, #FBF8F3 0%, #FFF6EC 100%);
  border-left: 3px solid var(--vap-saffron);
  border-radius: 6px;
  position: relative;
}

.vap-invest-title-hi {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--vap-teal);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  padding: 3px 10px;
  background: rgba(14,140,127,0.1);
  border-radius: 16px;
}

.vap-invest-title {
  font-family: var(--vap-font-heading);
  font-weight: 800;
  font-size: clamp(15px, 1.8vw, 19px);
  color: var(--vap-navy);
  letter-spacing: 0.2px;
  margin: 0 0 8px;
  position: relative;
  padding-bottom: 8px;
}

.vap-invest-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--vap-saffron);
  border-radius: 2px;
}

.vap-intro-text {
  font-size: 12.5px;
  line-height: 1.65;
  color: #444;
  margin: 0;
}

/* ===== PAYMENT PLAN BLOCK ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â COMPRESSED ===== */
.vap-payment-block {
  margin-top: 8px;
  padding: 18px 20px;
  background: var(--vap-white);
  border: 1px solid #eee;
  border-radius: 6px;
  box-shadow: 0 3px 12px rgba(11,37,69,0.06);
}

.vap-invest-header {
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px dashed #ddd;
}

.vap-payment-block .vap-invest-title {
  padding-bottom: 6px;
  font-size: clamp(14px, 1.6vw, 17px);
}

.vap-payment-block .vap-invest-title::after {
  display: none;
}

.vap-payment-block .vap-invest-title-hi {
  background: none;
  padding: 0;
  border-radius: 0;
  display: block;
  font-size: 11.5px;
  text-transform: none;
  letter-spacing: normal;
  margin-bottom: 0;
}

/* TABLE ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â COMPRESSED */
.vap-table-wrap {
  border: none;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.vap-payment-table {
  margin: 0;
  font-size: 11px;
}

.vap-payment-table thead th {
  background: linear-gradient(135deg, var(--vap-navy) 0%, var(--vap-navy-dark) 100%);
  color: var(--vap-white);
  font-weight: 700;
  font-size: 12px;
  text-align: center;
  vertical-align: middle;
  padding: 9px 7px;
  border: none;
}

.vap-payment-table thead th small {
  display: block;
  font-weight: 400;
  font-size: 9px;
  opacity: 0.75;
  margin-top: 1px;
}

.vap-payment-table tbody td {
  text-align: center;
  vertical-align: middle;
  padding: 9px 7px;
  color: #333;
  border-color: #f0f0f0;
  transition: background 0.2s ease;
}

.vap-payment-table tbody tr:nth-child(even) { background: #FBF8F3; }

.vap-payment-table tbody tr:hover td {
  background: #FFF3E5;
}

.vap-td-type {
  font-family: var(--vap-font-heading);
  font-weight: 800;
  font-size: 12px;
  color: var(--vap-white) !important;
  background: var(--vap-saffron) !important;
}

.vap-payment-table tbody tr:hover .vap-td-type {
  background: var(--vap-teal) !important;
}

.vap-td-total {
  font-family: var(--vap-font-heading);
  font-weight: 800;
  font-size: 11.5px;
  color: var(--vap-navy);
  background: var(--vap-pink) !important;
}

.vap-table-note {
  display: inline-block;
  font-size: 10px;
  color: #888;
  margin-top: 10px;
  padding: 4px 12px;
  background: #f7f7f7;
  border-radius: 16px;
  font-style: italic;
}

/* ===== MOBILE TWEAKS ===== */
@media (max-width: 576px) {
  .vap-intro-block, .vap-payment-block {
    padding: 14px 14px;
  }
  .vap-invest-title { font-size: 14px; }
  .vap-intro-text { font-size: 12px; }
}
/* ===== AMENITIES SECTION ===== */
.vap-amenities {
  position: relative;
  background: #F7F4EE;
  padding: 29px 0;
  overflow: hidden;
  margin-top: 12px;
  border-radius: 8px;
}

.vap-amenities-container {
  position: relative;
  z-index: 2;
}

/* SECTION TITLE ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â SAME STYLE AS PAYMENT PLAN */
.vap-amenities-divider {
  margin-bottom: 24px;
}

.vap-amenities-divider-mid {
  margin-top: 40px;
}

.vap-amenities-heading {
  font-family: var(--vap-font-heading);
  font-weight: 800;
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--vap-navy);
  letter-spacing: 0.2px;
  margin: 0;
  padding-bottom: 8px;
  position: relative;
  display: inline-block;
}

.vap-amenities-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--vap-saffron);
  border-radius: 2px;
}

/* AMENITY ITEM */
.vap-amenity-item {
  text-align: center;
  padding: 0 8px;
}

.vap-amenity-icon {
  width: 66px;
  height: 66px;
  margin: 0 auto 12px;
  border: 2px solid var(--vap-saffron);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--vap-white);
  transition: all 0.3s ease;
}

.vap-amenity-item:hover .vap-amenity-icon {
  background: var(--vap-saffron);
  transform: translateY(-3px);
}

.vap-amenity-icon i {
  font-size: 24px;
  color: var(--vap-saffron);
  transition: color 0.3s ease;
}

.vap-amenity-item:hover .vap-amenity-icon i {
  color: var(--vap-white);
}

.vap-amenity-item h3 {
  font-family: var(--vap-font-heading);
  font-weight: 700;
  font-size: 13px;
  color: var(--vap-navy);
  letter-spacing: 0.3px;
  margin-bottom: 6px;
  line-height: 1.3;
}

.vap-amenity-item p {
  font-size: 11.5px;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

/* BOTTOM TAGLINE */
.vap-amenities-tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.vap-amenities-line {
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: rgba(255,122,0,0.4);
}

.vap-amenities-tagline p {
  font-family: var(--vap-font-heading);
  font-weight: 600;
  font-size: clamp(11px, 1.2vw, 13px);
  color: var(--vap-saffron);
  letter-spacing: 1px;
  margin: 0;
  text-align: center;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
  .vap-amenities { padding: 32px 0; }
  .vap-amenities-heading {font-size: 14px;margin-top: 32px;}
  .vap-amenity-icon { width: 54px; height: 54px; }
  .vap-amenity-icon i { font-size: 20px; }
  .vap-amenity-item h3 { font-size: 11.5px; }
  .vap-amenity-item p { font-size: 10.5px; }
  .vap-amenities-divider-mid { margin-top: 28px; }
  .vap-amenities-line { display: none; }
}
/* ===== SITE LAYOUT SECTION ===== */
.vap-layout-section {
  background: var(--vap-white);
  padding: 22px 0;
}

.vap-layout-subtext {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--vap-teal);
  margin-top: 4px;
}

.vap-layout-image-wrap {
  position: relative;
  max-width: 900px;
  margin: 20px auto 0;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(11,37,69,0.08);
  cursor: zoom-in;
}

.vap-layout-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.vap-layout-image-wrap:hover .vap-layout-image {
  transform: scale(1.03);
}

.vap-layout-zoom-hint {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(11,37,69,0.85);
  color: var(--vap-white);
  font-size: 12px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.vap-layout-zoom-hint i { font-size: 14px; }

/* ===== ZOOM MODAL ===== */
.vap-layout-modal .modal-content {
  background: #111;
  border: none;
}

.vap-layout-modal-header {
  background: var(--vap-navy);
  border: none;
  padding: 12px 20px;
}

.vap-layout-modal-header .modal-title {
  color: var(--vap-white);
  font-family: var(--vap-font-heading);
  font-size: 15px;
  font-weight: 700;
}

.vap-zoom-controls {
  display: flex;
  gap: 8px;
  margin-left: auto;
  margin-right: 16px;
}

.vap-zoom-btn {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.08);
  color: var(--vap-white);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.2s ease;
}

.vap-zoom-btn:hover {
  background: var(--vap-saffron);
  border-color: var(--vap-saffron);
}

.vap-layout-modal-body {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: auto;
  padding: 0;
  background: #111;
  cursor: grab;
}

.vap-layout-modal-body:active {
  cursor: grabbing;
}

.vap-layout-modal-img {
  max-width: 100%;
  height: auto;
  transition: transform 0.25s ease;
  transform-origin: center center;
  user-select: none;
  pointer-events: none;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 576px) {
  .vap-layout-section { padding: 35px 0; }
  .vap-layout-zoom-hint { font-size: 11px; padding: 6px 12px; bottom: 10px; right: 10px; }
  .vap-zoom-controls { margin-right: 8px; }
  .vap-zoom-btn { width: 32px; height: 32px; font-size: 14px; }
}
/* ===== SPIRITUAL HIGHLIGHT STRIP ===== */
.vap-spiritual-strip {
  background: linear-gradient(90deg, var(--vap-teal) 0%, var(--vap-saffron) 100%);
  padding: 10px 0;
}

.vap-spiritual-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.vap-spiritual-icon {
  color: var(--vap-white);
  font-size: 15px;
  flex-shrink: 0;
  opacity: 0.9;
}

.vap-spiritual-text {
  font-family: var(--vap-font-heading);
  font-weight: 700;
  font-size: clamp(12px, 1.6vw, 16px);
  color: var(--vap-white);
  text-align: center;
  letter-spacing: 0.3px;
  margin: 0;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 576px) {
  .vap-spiritual-strip { padding: 8px 0; }
  .vap-spiritual-strip-inner { gap: 8px; padding: 0 12px; }
  .vap-spiritual-icon { font-size: 12px; }
  .vap-spiritual-text { font-size: 11.5px; line-height: 1.4; }
}
/* ===== INVEST TODAY BANNER SECTION ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â LIGHT VERSION ===== */
.vap-invest-banner {
  background: #F7F4EE;
  padding: 40px 0 30px;
}

.vap-invest-banner-row {
  align-items: stretch;
}

.vap-ib-item {
  text-align: center;
  padding: 0 14px;
  border-right: 1px solid rgba(255,122,0,0.3);
  height: 100%;
}

.vap-ib-item-last,
.vap-ib-item:nth-child(5) {
  border-right: none;
}

.vap-ib-icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 12px;
  border: 2px solid var(--vap-saffron);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--vap-white);
  box-shadow: 0 2px 8px rgba(11,37,69,0.06);
  transition: all 0.3s ease;
}

.vap-ib-item:hover .vap-ib-icon {
  background: var(--vap-saffron);
  transform: translateY(-3px);
}

.vap-ib-icon i {
  font-size: 24px;
  color: var(--vap-saffron);
  transition: color 0.3s ease;
}

.vap-ib-item:hover .vap-ib-icon i {
  color: var(--vap-white);
}

.vap-ib-item h3 {
  font-family: var(--vap-font-heading);
  font-weight: 700;
  font-size: 13px;
  color: var(--vap-navy);
  letter-spacing: 0.4px;
  margin-bottom: 6px;
  line-height: 1.3;
}

.vap-ib-item p {
  font-size: 11px;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

/* BOTTOM TAGLINE */
.vap-ib-tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.vap-ib-line {
  flex: 1;
  max-width: 130px;
  height: 1px;
  background: rgba(255,122,0,0.4);
}

.vap-ib-dot {
  color: var(--vap-saffron);
  font-size: 12px;
}

.vap-ib-tagline p {
  font-family: var(--vap-font-heading);
  font-weight: 600;
  font-size: clamp(12px, 1.4vw, 15px);
  color: var(--vap-navy);
  letter-spacing: 1.5px;
  margin: 0;
  text-align: center;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 991px) {
  .vap-ib-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,122,0,0.25);
    padding: 16px 10px;
  }
  .vap-ib-item:nth-child(5) { border-bottom: none; }
}

@media (max-width: 576px) {
  .vap-invest-banner { padding: 28px 0 22px; }
  .vap-ib-icon { width: 50px; height: 50px; }
  .vap-ib-icon i { font-size: 20px; }
  .vap-ib-item h3 { font-size: 12px; }
  .vap-ib-item p { font-size: 10.5px; }
  .vap-ib-line { display: none; }
}
.vap-connect-section {
  background: var(--vap-white);
  padding: 50px 0;
}

.vap-connect-header {
  text-align: center;
  margin: 0 auto 36px;
}

.vap-connect-header .vap-amenities-heading {
  display: inline-block;
}

.vap-connect-subtitle-hi {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--vap-teal);
  margin: 8px 0 6px;
}

.vap-connect-subtitle {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* CONNECT ITEM */
.vap-connect-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #F7F4EE;
  border: 1px solid #eee;
  border-left: 3px solid var(--vap-saffron);
  border-radius: 6px;
  padding: 14px 16px;
  margin-bottom: 14px;
}

.vap-connect-item-right {
  justify-content: space-between;
  border-left: none;
  border-right: 3px solid var(--vap-teal);
}

.vap-connect-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--vap-saffron);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--vap-white);
}

.vap-connect-item-right .vap-connect-icon {
  border-color: var(--vap-teal);
}

.vap-connect-icon i {
  font-size: 20px;
  color: var(--vap-saffron);
}

.vap-connect-item-right .vap-connect-icon i {
  color: var(--vap-teal);
}

.vap-connect-info h3 {
  font-family: var(--vap-font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--vap-navy);
  letter-spacing: 0.5px;
  margin: 0 0 4px;
}

.vap-connect-info span {
  font-size: 11.5px;
  color: #666;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.vap-connect-info span i {
  font-size: 10px;
  color: var(--vap-saffron);
}

.vap-connect-info-right {
  text-align: right;
}

.vap-connect-info-right span {
  justify-content: flex-end;
}

/* HIGHWAY BADGE (CENTER) */
.vap-highway-badge {
  text-align: center;
  padding: 20px 16px;
  background: #F7F4EE;
  border: 1px solid #eee;
  border-radius: 8px;
}

.vap-highway-label {
  display: inline-block;
  font-family: var(--vap-font-heading);
  font-weight: 800;
  font-size: clamp(26px, 3.2vw, 36px);
  color: var(--vap-navy);
  letter-spacing: 2px;
  line-height: 1;
}

.vap-highway-sub {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--vap-teal);
  letter-spacing: 1.5px;
  margin-top: 4px;
  margin-bottom: 18px;
}

.vap-highway-road {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
}

.vap-road-line {
  flex: 1;
  max-width: 60px;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--vap-saffron) 0, var(--vap-saffron) 6px, transparent 6px, transparent 12px);
}

.vap-highway-road i {
  font-size: 24px;
  color: var(--vap-saffron);
}

.vap-highway-note {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--vap-navy);
  margin: 0;
  padding: 8px 16px;
  border: 1px solid var(--vap-saffron);
  border-radius: 20px;
  display: inline-block;
  background: var(--vap-white);
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 991px) {
  .vap-connect-info-right { text-align: left; }
  .vap-connect-info-right span { justify-content: flex-start; }
  .vap-connect-item-right {
    border-right: none;
    border-left: 3px solid var(--vap-teal);
  }
  .vap-highway-badge { padding: 18px 12px; margin: 10px 0; }
}

@media (max-width: 576px) {
  .vap-connect-section {padding: 3px 0;}
  .vap-connect-item { padding: 11px 12px; gap: 10px; }
  .vap-connect-icon { width: 40px; height: 40px; }
  .vap-connect-icon i { font-size: 16px; }
  .vap-connect-info h3 { font-size: 12px; }
  .vap-connect-info span { font-size: 10.5px; }
  .vap-highway-label { font-size: 24px; }
}
/* ===== CONTACT US SECTION ===== */
.vap-contact-section {
  background: #F7F4EE;
  padding: 55px 0;
}

/* LEFT: CONTACT DETAILS */
.vap-contact-details {
  background: var(--vap-navy);
  border-top: 4px solid var(--vap-saffron);
  border-radius: 8px;
  padding: 30px 26px;
  height: 100%;
}

.vap-contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px dashed rgba(255,255,255,0.15);
}

.vap-contact-detail-item:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 24px;
}

.vap-contact-detail-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,122,0,0.1);
}

.vap-contact-detail-icon i {
  font-size: 17px;
  color: #fff;
}

.vap-contact-detail-item h3 {
  font-family: var(--vap-font-heading);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.4px;
  margin: 0 0 5px;
}

.vap-contact-detail-item p {
  font-size: 12.5px;
  color: #fff;
  line-height: 1.6;
  margin: 0;
}

.vap-contact-detail-item p a {
  color: #cfd8e3;
  text-decoration: none;
}

.vap-contact-detail-item p a:hover {
  color: var(--vap-saffron);
}

.vap-contact-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.vap-contact-social-btn {
  flex: 1;
  min-width: 130px;
  text-align: center;
  background: var(--vap-saffron);
  color: var(--vap-white);
  font-size: 12.5px;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 5px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.vap-contact-social-whatsapp {
  background: #25D366;
}

.vap-contact-social-btn:hover {
  opacity: 0.9;
  color: var(--vap-white);
}

/* RIGHT: CONTACT FORM */
.vap-contact-form-box {
  background: var(--vap-white);
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 30px 28px;
  box-shadow: 0 4px 16px rgba(11,37,69,0.06);
  height: 100%;
}

.vap-contact-form-title {
  font-family: var(--vap-font-heading);
  font-weight: 800;
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--vap-navy);
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 1px dashed #ddd;
}

.vap-contact-form-title span {
  font-weight: 500;
  font-size: 13px;
  color: var(--vap-teal);
}

.vap-form-label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--vap-navy);
  margin-bottom: 6px;
}

.vap-form-control {
  font-size: 13px;
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background: #FAFAFA;
}

.vap-form-control:focus {
  border-color: var(--vap-saffron);
  box-shadow: 0 0 0 3px rgba(255,122,0,0.12);
  background: var(--vap-white);
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 991px) {
  .vap-contact-details, .vap-contact-form-box {
    height: auto;
  }
}

@media (max-width: 576px) {
  .vap-contact-section { padding: 35px 0; }
  .vap-contact-details, .vap-contact-form-box { padding: 22px 18px; }
  .vap-contact-detail-item { gap: 12px; padding-bottom: 16px; margin-bottom: 16px; }
  .vap-contact-detail-icon { width: 36px; height: 36px; }
  .vap-contact-detail-icon i { font-size: 14px; }
}
/* ===== FOOTER ===== */
.vap-footer {
  background: var(--vap-navy-dark);
  padding-top: 50px;
}

.vap-footer-top {
  padding-bottom: 30px;
}

.vap-footer-logo-img {
  height: 55px;
  background: var(--vap-white);
  padding: 4px 8px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.vap-footer-about {
  font-size: 12.5px;
  color: #a9b4c4;
  line-height: 1.7;
  margin-bottom: 18px;
}

.vap-footer-social {
  display: flex;
  gap: 10px;
}

.vap-footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--vap-saffron);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vap-saffron);
  font-size: 15px;
  transition: all 0.25s ease;
}

.vap-footer-social a:hover {
  background: var(--vap-saffron);
  color: var(--vap-white);
}

.vap-footer-heading {
  font-family: var(--vap-font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--vap-white);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--vap-saffron);
  display: inline-block;
}

.vap-footer-heading span {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--vap-teal);
  margin-top: 3px;
}

.vap-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.vap-footer-links li {
  margin-bottom: 11px;
}

.vap-footer-links a {
  font-size: 12.5px;
  color: #a9b4c4;
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.vap-footer-links a::before {
  content: "ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Âº";
  color: var(--vap-saffron);
  font-weight: 700;
}

.vap-footer-links a:hover {
  color: var(--vap-saffron);
}

.vap-footer-badges {
  list-style: none;
  margin: 0;
  padding: 0;
}

.vap-footer-badges li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #a9b4c4;
  margin-bottom: 12px;
}

.vap-footer-badges li i {
  color: var(--vap-saffron);
  font-size: 14px;
  flex-shrink: 0;
}

.vap-footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
}

.vap-footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: #a9b4c4;
  margin-bottom: 14px;
  line-height: 1.5;
}

.vap-footer-contact li i {
  color: var(--vap-saffron);
  font-size: 13px;
  margin-top: 2px;
  flex-shrink: 0;
}

.vap-footer-contact a {
  color: #a9b4c4;
  text-decoration: none;
}

.vap-footer-contact a:hover {
  color: var(--vap-saffron);
}

/* DISCLAIMER */
.vap-footer-disclaimer {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
}

.vap-footer-disclaimer p {
  font-size: 10.5px;
  color: #7a8494;
  line-height: 1.6;
  margin: 0;
  text-align: center;
}

.vap-footer-disclaimer strong {
  color: #97a2b3;
}

/* BOTTOM BAR */
.vap-footer-bottom {
  background: #050f1f;
  padding: 14px 0;
}

.vap-footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.vap-footer-bottom-inner p {
  font-size: 11.5px;
  color: #7a8494;
  margin: 0;
}

.vap-footer-bottom-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.vap-footer-bottom-badges span {
  font-size: 11px;
  color: #7a8494;
  display: flex;
  align-items: center;
  gap: 5px;
}

.vap-footer-bottom-badges i {
  color: var(--vap-saffron);
}

/* ===== MOBILE FIXED ACTION BAR ===== */
.vap-mobile-actionbar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  display: flex;
  background: var(--vap-navy);
  border-top: 2px solid var(--vap-saffron);
}

.vap-mobile-actionbar a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 10px 4px;
  color: var(--vap-white);
  text-decoration: none;
  font-size: 10.5px;
  font-weight: 600;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.vap-mobile-actionbar a:last-child { border-right: none; }

.vap-mobile-actionbar a i { font-size: 18px; }

.vap-mobile-actionbar-cta {
  background: var(--vap-saffron);
}

/* Add bottom padding to body on mobile so content isn't hidden behind fixed bar */
@media (max-width: 991px) {
}

/* ===== FOOTER MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
  .vap-footer { padding-top: 32px; }
  .vap-footer-top { padding-bottom: 20px; }
  .vap-footer-bottom-inner { flex-direction: column; text-align: center; }
}
/* ===== STICKY NAVBAR ON SCROLL ===== */
.vap-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}
.vap-header-wrapper {
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}
/* ===== CATEGORY BLOCKS ===== */
.vap-category-block {
  margin-bottom: 26px;
}

.vap-category-block-reserved {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px dashed #ddd;
}

.vap-category-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-family: var(--vap-font-heading);
  font-weight: 700;
  font-size: 13px;
  color: var(--vap-white);
  padding: 8px 16px;
  border-radius: 5px;
  margin-bottom: 12px;
}

.vap-category-tag span {
  font-weight: 500;
  font-size: 11.5px;
  opacity: 0.9;
}

.vap-category-tag-general {
  background: var(--vap-navy);
}

.vap-category-tag-reserved {
  background: var(--vap-teal);
}

.vap-category-note {
  font-size: 11px;
  color: #888;
  font-style: italic;
  margin: 0 0 12px;
}

/* RESERVED TABLE ACCENTS */
.vap-td-type-reserved {
  background: var(--vap-teal) !important;
}

.vap-payment-table tbody tr:hover .vap-td-type-reserved {
  background: var(--vap-navy) !important;
}

.vap-td-total-reserved {
  background: #DFF3F0 !important;
  color: var(--vap-teal);
}

/* ===== MOBILE ===== */
@media (max-width: 576px) {
    .vap-float-icons
    {
        display: none!important;
    }
  .vap-category-tag { font-size: 12px; padding: 7px 12px; }
  .vap-category-tag span { font-size: 10.5px; }
  .vap-category-note { font-size: 10px; }
}
/* ===== PAYMENT TABLE ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â VISIBLE BOTTOM SCROLLBAR ===== */
.vap-table-wrap {
  overflow-x: auto;
  overflow-y: hidden;
}

/* Chrome, Edge, Safari - custom visible scrollbar */
.vap-table-wrap::-webkit-scrollbar {
  height: 8px;
}

.vap-table-wrap::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 10px;
}

.vap-table-wrap::-webkit-scrollbar-thumb {
  background: var(--vap-saffron);
  border-radius: 10px;
}

.vap-table-wrap::-webkit-scrollbar-thumb:hover {
  background: var(--vap-navy);
}

/* Firefox */
.vap-table-wrap {
  scrollbar-width: thin;
  scrollbar-color: var(--vap-saffron) #f0f0f0;
}

@media (max-width: 767px) {

  .vap-table-wrap {
    -webkit-overflow-scrolling: touch;
  }

  .vap-payment-table {
    min-width: 720px;
  }

  /* Sticky first column (Type) */
  .vap-payment-table thead th:first-child,
  .vap-payment-table tbody td:first-child {
    position: sticky;
    left: 0;
    z-index: 2;
  }

  .vap-payment-table thead th:first-child {
    background: var(--vap-navy);
  }

  /* Slightly bigger scrollbar on mobile for easier finger use */
  .vap-table-wrap::-webkit-scrollbar {
    height: 10px;
  }

  /* Compact font/padding for mobile */
  .vap-payment-table {
    font-size: 10.5px;
  }

  .vap-payment-table thead th {
    padding: 8px 6px;
    font-size: 9px;
  }

  .vap-payment-table thead th small {
    font-size: 8px;
  }

  .vap-payment-table tbody td {
    padding: 8px 6px;
    white-space: nowrap;
  }
}
.vap-footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.vap-footer-social a {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1.5px solid var(--vap-saffron);
  border-radius: 20px;
  color: var(--vap-saffron);
  font-size: 15px;
  padding: 8px 14px;
  transition: all 0.25s ease;
  text-decoration: none;
}

.vap-footer-social a span {
  display: none;
}

.vap-footer-social a:hover {
  background: var(--vap-saffron);
  color: var(--vap-white);
}

/* ===== MOBILE ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â SHOW TEXT NEXT TO ICON, COMPRESSED ===== */
@media (max-width: 576px) {
  .vap-footer-social {
    gap: 8px;
  }

  .vap-footer-social a {
    flex: 1;
    justify-content: center;
    padding: 8px 6px;
    font-size: 13px;
    border-radius: 6px;
  }

  .vap-footer-social a span {
    display: inline;
    font-size: 11px;
    font-weight: 600;
  }
}
/* ===== MOBILE FIXED ACTION BAR ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â COMPACT ===== */
.vap-mobile-actionbar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  display: flex;
  background: var(--vap-navy);
  border-top: 2px solid var(--vap-saffron);
}

.vap-mobile-actionbar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 9px 4px;
  color: var(--vap-white);
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  border-right: 1px solid rgba(255,255,255,0.1);
  white-space: nowrap;
}

.vap-mobile-actionbar a:last-child {
  border-right: none;
}

.vap-mobile-actionbar a i {
  font-size: 13px;
}

.vap-mobile-actionbar-cta {
  background: var(--vap-saffron);
}

/* Reduce body bottom padding to match smaller bar */
@media (max-width: 991px) {
}
/* ===== REGISTRATION PAGE BANNER ===== */
.vap-page-banner {
  background: linear-gradient(135deg, var(--vap-navy) 0%, var(--vap-navy-dark) 100%);
  padding: 40px 0;
  text-align: center;
  border-bottom: 4px solid var(--vap-saffron);
}

.vap-page-banner-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--vap-saffron);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
  padding: 4px 14px;
  border: 1px solid var(--vap-saffron);
  border-radius: 20px;
}

.vap-page-banner-title {
  font-family: var(--vap-font-heading);
  font-weight: 800;
  font-size: clamp(18px, 2.6vw, 28px);
  color: var(--vap-white);
  margin-bottom: 8px;
}

.vap-page-banner-sub {
  font-size: 13px;
  color: #cfd8e3;
  margin-bottom: 10px;
}

.vap-page-banner-note {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--vap-white);
  background: rgba(255,122,0,0.15);
  padding: 6px 16px;
  border-radius: 20px;
}

/* ===== REGISTRATION FORM SECTION ===== */
.vap-register-section {
  background: #F7F4EE;
  padding: 45px 0 55px;
}

.vap-register-card {
  background: var(--vap-white);
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(11,37,69,0.07);
  margin-bottom: 24px;
}

.vap-register-card-header {
  background: var(--vap-navy);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 3px solid var(--vap-saffron);
}

.vap-register-card-header i {
  font-size: 18px;
  color: var(--vap-saffron);
}

.vap-register-card-header span {
  font-family: var(--vap-font-heading);
  font-weight: 700;
  font-size: 15px;
  color: var(--vap-white);
}

.vap-register-card-header small {
  font-weight: 500;
  font-size: 12px;
  color: #cfd8e3;
}

.vap-register-form {
  padding: 26px 24px;
}

.vap-consent-box {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #FBF8F3;
  border: 1px dashed var(--vap-saffron);
  border-radius: 6px;
  padding: 14px 16px;
}

.vap-consent-box input {
  margin-top: 4px;
  flex-shrink: 0;
}

.vap-consent-label {
  font-size: 12px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* DOUBLE BENEFIT NOTE */
.vap-register-offer-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--vap-saffron);
  border-radius: 8px;
  padding: 18px 20px;
  margin-bottom: 20px;
}

.vap-register-offer-note i {
  font-size: 24px;
  color: var(--vap-white);
  flex-shrink: 0;
  margin-top: 2px;
}

.vap-register-offer-note p {
  font-size: 12.5px;
  color: var(--vap-white);
  margin: 0 0 6px;
  line-height: 1.6;
}

.vap-register-offer-hi {
  margin-bottom: 0 !important;
  opacity: 0.95;
}

/* DISCLAIMER */
.vap-register-disclaimer {
  border-top: 1px solid #ddd;
  padding-top: 16px;
}

.vap-register-disclaimer p {
  font-size: 10.5px;
  color: #888;
  line-height: 1.6;
  margin: 0;
  text-align: center;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 576px) {
  .vap-page-banner { padding: 28px 0; }
  .vap-register-section { padding: 30px 0 40px; }
  .vap-register-form { padding: 18px 16px; }
  .vap-register-card-header { padding: 12px 16px; }
  .vap-register-offer-note { padding: 14px 16px; }
}
/* ===== REGISTRATION PAGE BANNER ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â LIGHT VERSION ===== */
.vap-page-banner {
  background: #F7F4EE;
  padding: 40px 0;
  text-align: center;
  border-bottom: 3px solid var(--vap-saffron);
}

.vap-page-banner-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--vap-teal);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
  padding: 4px 14px;
  border: 1px solid var(--vap-teal);
  border-radius: 20px;
  background: rgba(14,140,127,0.06);
}

.vap-page-banner-title {
  font-family: var(--vap-font-heading);
  font-weight: 800;
  font-size: clamp(18px, 2.6vw, 28px);
  color: var(--vap-navy);
  margin-bottom: 8px;
}

.vap-page-banner-sub {
  font-size: 13px;
  color: #555;
  margin-bottom: 10px;
}

.vap-page-banner-note {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--vap-navy);
  background: rgba(255,122,0,0.1);
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px dashed var(--vap-saffron);
}
/* ===================================================
   VHH ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â VRINDAVAN HERO HOMEPAGE (3-COLUMN HERO)
   Prefix: vhh- (isolated from existing vap- classes)
   =================================================== */

.vhh-hero {
  background: #F0ECE3;
  padding: 18px 0;
  border-bottom: 3px solid var(--vap-saffron);
}

.vhh-hero-container {
  padding: 0 18px;
}

/* FLOATING ICONS */
.vhh-float-icons {
  position: fixed;
  right: 0;
  top: 45%;
  z-index: 999;
  display: flex;
  flex-direction: column;
}

.vhh-float-btn {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vap-white);
  font-size: 20px;
}

.vhh-float-call { background: var(--vap-saffron); }
.vhh-float-whatsapp { background: #25D366; }
.vhh-float-enquiry { background: var(--vap-navy); }

/* ===== SIDE COLUMN WRAPPER ===== */
.vhh-side-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
}

/* INFO BOX (Dates) */
.vhh-info-box {
  background: var(--vap-navy);
  border-left: 4px solid var(--vap-saffron);
  border-radius: 6px;
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.vhh-info-box-label {
  font-size: 10.5px;
  font-weight: 500;
  color: #cfd8e3;
  line-height: 1.35;
}

.vhh-info-box-value {
  font-family: var(--vap-font-heading);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

/* REGISTER BUTTON */
.vhh-btn-register {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: red;
  color: var(--vap-white);
  font-family: var(--vap-font-heading);
  font-weight: 700;
  font-size: 13px;
  padding: 12px 10px;
  border-radius: 6px;
  text-decoration: none;
  text-align: center;
}

.vhh-btn-register:hover {
  background: var(--vap-navy);
  color: var(--vap-white);
}

.vhh-blink {
  animation: vhhBlink 1.4s infinite;
}

@keyframes vhhBlink {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255,122,0,0.6); }
  50% { opacity: 0.75; box-shadow: 0 0 0 8px rgba(255,122,0,0); }
}

/* HELPLINE BOX */
.vhh-helpline-box {
  background: var(--vap-white);
  border: 1px solid #e5e0d5;
  border-radius: 6px;
  padding: 10px 14px;
  text-align: center;
}

.vhh-helpline-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 10.5px;
  font-weight: 600;
  color: var(--vap-navy);
  margin-bottom: 4px;
}

.vhh-helpline-label i {
  color: var(--vap-saffron);
}

.vhh-helpline-number {
  font-family: var(--vap-font-heading);
  font-size: 16px;
  font-weight: 800;
  color: var(--vap-teal);
  text-decoration: none;
}

/* BANK LOAN BOX */
.vhh-bankloan-box {
  background: var(--vap-white);
  border: 1px solid #e5e0d5;
  border-radius: 6px;
  padding: 10px 14px;
}

.vhh-bankloan-label {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--vap-navy);
  margin-bottom: 8px;
  text-align: center;
}

.vhh-bankloan-logos {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.vhh-bank-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #F7F4EE;
  border: 1px solid var(--vap-teal);
  color: var(--vap-teal);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 8px;
  border-radius: 20px;
}

/* PRICE STRIP */
.vhh-price-strip {
  display: flex;
  gap: 8px;
}

.vhh-price-box {
  flex: 1;
  background: #fff;
  border-radius: 6px;
  padding: 10px 8px;
  text-align: center;
}

.vhh-price-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: var(--vap-navy);
}

.vhh-price-value {
  display: block;
  font-family: var(--vap-font-heading);
  font-size: 13px;
  font-weight: 800;
  color: var(--vap-navy-dark);
  margin-top: 2px;
}

/* ===== CENTER SLIDER ===== */
.vhh-slider-wrap {
  position: relative;
  height: 100%;
}

.vhh-slider-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 5;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.vhh-slider-badge {
  background: rgba(11,37,69,0.85);
  color: var(--vap-white);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.vhh-slider-badge i { color: var(--vap-saffron); }

.vhh-slider-badge-alt {
  background: rgba(14,140,127,0.9);
}

.vhh-slider-badge-alt i { color: var(--vap-white); }

.vhh-carousel {
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 4px 18px rgba(11,37,69,0.12);
}

.vhh-carousel-inner {
  height: 100%;
}

.vhh-carousel .carousel-item {
  height: 480px;
}

.vhh-carousel .carousel-item img {
  height: 100%;
}

.vhh-slide-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 40px 24px 24px;
  background: linear-gradient(180deg, transparent, rgba(7,25,49,0.85));
  text-align: center;
}

.vhh-slide-caption h2 {
  font-family: var(--vap-font-heading);
  font-weight: 800;
  font-size: clamp(18px, 2.4vw, 26px);
  color: var(--vap-white);
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.vhh-slide-caption p {
  font-size: 12.5px;
  color: #e4e9f0;
  margin: 0;
}

.vhh-carousel-indicators [data-bs-target] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--vap-white);
  opacity: 0.6;
  margin: 0 4px;
}

.vhh-carousel-indicators .active {
  background-color: var(--vap-saffron);
  opacity: 1;
}

.vhh-carousel-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(11,37,69,0.7);
  color: var(--vap-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

/* ===== RIGHT PANELS ===== */
.vhh-panel {
  background: var(--vap-white);
  border: 1px solid #e5e0d5;
  border-radius: 6px;
  overflow: hidden;
}

.vhh-panel-header {
  background: var(--vap-teal);
  color: var(--vap-white);
  font-family: var(--vap-font-heading);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 10px 14px;
}

.vhh-check-list {
  list-style: none;
  margin: 0;
  padding: 12px 14px;
}

.vhh-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: #000;
  font-weight: 600;
  padding: 7px 0;
  border-bottom: 1px dashed #eee;
}

.vhh-check-list li:last-child { border-bottom: none; }

.vhh-check-list li i {
  color: var(--vap-teal);
  font-size: 13px;
  margin-top: 2px;
  flex-shrink: 0;
}

.vhh-download-list {
  list-style: none;
  margin: 0;
  padding: 12px 14px;
}

.vhh-download-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px dashed #eee;
}

.vhh-download-list li:last-child { border-bottom: none; }

.vhh-download-list li span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: var(--vap-navy);
}

.vhh-download-list li span i {
  color: var(--vap-saffron);
  font-size: 14px;
}

.vhh-download-btn {
  background: var(--vap-saffron);
  color: var(--vap-white);
  font-size: 10.5px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 14px;
  text-decoration: none;
  white-space: nowrap;
}

.vhh-download-btn:hover {
  background: var(--vap-navy);
  color: var(--vap-white);
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 991px) {
  .vhh-carousel .carousel-item { height: 340px; }
  .vhh-hero-container { padding: 0 12px; }
}

@media (max-width: 576px) {
  .vhh-hero { padding: 12px 0; }
  .vhh-carousel .carousel-item { height: 260px; }
  .vhh-slide-caption { padding: 26px 16px 16px; }
  .vhh-slide-caption h2 { font-size: 16px; }
  .vhh-slide-caption p { font-size: 11px; }
  .vhh-btn-register { font-size: 12px; padding: 10px; }
  .vhh-float-btn { width: 40px; height: 40px; font-size: 17px; }
}
/* ===================================================
   VFT Ã¢â‚¬â€ VRINDAVAN FOOTER (BLACK / DARK VERSION)
   Prefix: vft- (isolated, no clash with vap- classes)
   =================================================== */

.vft-footer {
  position: relative;
  background: #0d0d0d;
  padding: 27px 0 30px;
  text-align: center;
}

/* TOP LINKS ROW */
.vft-links-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.vft-links-row a {
  color: var(--vap-white);
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none;
}

.vft-links-row a:hover {
  color: var(--vap-saffron);
}

.vft-divider {
  color: #555;
  font-size: 13px;
}

.vft-hr {
  max-width: 900px;
  margin: 0 auto 22px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

/* OWNERSHIP / RERA LINES */
.vft-owner-line {
  font-size: 13px;
  color: #d0d0d0;
  margin-bottom: 10px;
}

.vft-owner-line strong {
  color: var(--vap-white);
}

.vft-rera-line {
  font-size: 12.5px;
  color: #d0d0d0;
  margin-bottom: 28px;
}

.vft-rera-line strong {
  color: var(--vap-white);
}

/* BANK LOAN SECTION */
.vft-bankloan {
  margin-bottom: 30px;
}

.vft-bankloan-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--vap-white);
  margin-bottom: 14px;
}

.vft-bankloan-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.vft-bank-card {
  background: var(--vap-white);
  border-radius: 6px;
  padding: 10px 20px;
}

.vft-bank-card img {
  height: 34px;
  width: auto;
  display: block;
}

/* DISCLAIMER */
.vft-disclaimer {
  margin: 0 auto 14px;
  font-size: 11px;
  color: #8a8a8a;
  line-height: 1.7;
}

.vft-disclaimer strong {
  color: #aaa;
}

/* COPYRIGHT */
.vft-copyright {
  font-size: 11.5px;
  color: #777;
  margin: 0;
}

/* RERA APPROVED STAMP */
.vft-rera-stamp {
  position: absolute;
  left: 20px;
  bottom: 20px;
}

.vft-rera-stamp img {
  width: 90px;
  height: 90px;
  opacity: 0.95;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 576px) {
  .vft-footer { padding: 30px 0 24px; }
  .vft-links-row a { font-size: 12px; }
  .vft-owner-line, .vft-rera-line { font-size: 11.5px; }
  .vft-bank-card { padding: 8px 14px; }
  .vft-bank-card img { height: 26px; }
  .vft-disclaimer { font-size: 10px; padding: 0 12px; }
  .vft-rera-stamp {
    position: static;
    margin: 20px auto 0;
    display: flex;
    justify-content: center;
  }
  .vft-rera-stamp img { width: 70px; height: 70px; }
}
/* ===========================================================
   FLOATING CALL + WHATSAPP BUTTONS (fixed, bottom-right)
=========================================================== */
.vap-float-btns{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

.vap-float-btn{
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.10rem;
  color: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,.28);
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease;
}

.vap-float-btn:hover,
.vap-float-btn:focus-visible{
  transform: scale(1.08);
  color: #fff;
  box-shadow: 0 10px 24px rgba(0,0,0,.32);
}

.vap-float-whatsapp{
  background: #25D366;
}

.vap-float-call{
  background: #1a5fb4; /* swap for your brand's primary colour if needed */
}

/* Blink / pulse ring effect */
.vap-float-ping{
  position: absolute;
  inset: 0;
  border-radius: 50%;
  z-index: -1;
  animation: vapFloatPulse 1.8s ease-out infinite;
}

.vap-float-whatsapp .vap-float-ping{
  background: rgba(37, 211, 102, .55);
}

.vap-float-call .vap-float-ping{
  background: rgba(26, 95, 180, .55);
}

@keyframes vapFloatPulse{
  0%   { transform: scale(1);   opacity: .65; }
  70%  { transform: scale(1.9); opacity: 0;   }
  100% { transform: scale(1.9); opacity: 0;   }
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce){
  .vap-float-ping{ animation: none; display: none; }
}

/* ---------- Mobile responsiveness ---------- */
@media (max-width: 576px){
  .vap-float-btns{
    right: 12px;
    bottom: 14px;
    gap: 10px;
  }
  .vap-float-btn{
    width: 40px;
    height: 40px;
    font-size: 1rem;
    box-shadow: 0 4px 14px rgba(0,0,0,.3);
  }
}

/* Keep buttons clear of iOS home-bar / notch area */
@supports (padding: max(0px)){
  .vap-float-btns{
    bottom: max(18px, env(safe-area-inset-bottom) + 10px);
  }
  @media (max-width: 576px){
    .vap-float-btns{
      bottom: max(14px, env(safe-area-inset-bottom) + 8px);
    }
  }
}
/* ===== LEGAL PAGES (Terms / Refund / Privacy) ===== */
.vap-legal-section {
  background: #F7F4EE;
  padding: 45px 0 55px;
}

.vap-legal-card {
  background: var(--vap-white);
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 32px 30px;
  box-shadow: 0 4px 18px rgba(11,37,69,0.06);
}

.vap-legal-updated {
  font-size: 12px;
  font-weight: 600;
  color: var(--vap-teal);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px dashed #ddd;
}

.vap-legal-block {
  margin-bottom: 24px;
}

.vap-legal-block:last-child {
  margin-bottom: 0;
}

.vap-legal-block h2 {
  font-family: var(--vap-font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--vap-navy);
  margin-bottom: 8px;
  padding-left: 12px;
  border-left: 3px solid var(--vap-saffron);
}

.vap-legal-block p {
  font-size: 13px;
  color: #555;
  line-height: 1.75;
  margin: 0;
}

.vap-legal-block a {
  color: var(--vap-teal);
  font-weight: 600;
  text-decoration: none;
}

.vap-legal-block a:hover {
  color: var(--vap-saffron);
}

.vap-legal-contact-list {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
}

.vap-legal-contact-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #555;
  margin-bottom: 8px;
}

.vap-legal-contact-list li i {
  color: var(--vap-saffron);
  font-size: 14px;
}

.vap-legal-contact-list a {
  color: #555;
  text-decoration: none;
}

.vap-legal-contact-list a:hover {
  color: var(--vap-saffron);
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 576px) {
  .vap-legal-section { padding: 30px 0 40px; }
  .vap-legal-card { padding: 22px 18px; }
  .vap-legal-block h2 { font-size: 14.5px; }
  .vap-legal-block p { font-size: 12.5px; }
}