/* =====================================================
   Sanbrix Business Center — Landing Page Styles
   Palette (from SBC brochure): cream/beige, dark navy,
   warm brown & orange accent
   ===================================================== */

/* Fonts loaded from Google Fonts:
   Playfair Display (luxury serif - headings)
   Jost (refined geometric sans - body & UI) */

:root {
  --font-head: "Playfair Display", Georgia, serif;
  --font-body: "Jost", "Segoe UI", sans-serif;
  --sbc-navy: #1f2438;
  --sbc-navy-soft: #2b3149;
  --sbc-brown: #6b4a1f;
  --sbc-orange: #f0a93f;
  --sbc-orange-dark: #d98f1f;
  --sbc-cream: #f6ecde;
  --sbc-cream-soft: #fbf6ee;
  --sbc-text: #4a4a4a;
}

html {
  scroll-behavior: auto;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--sbc-text);
  background: var(--sbc-cream-soft);
  overflow-x: hidden;
}

html,
body {
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

/* ---------------- Buttons ---------------- */
.btn-cta {
  background: var(--sbc-orange);
  color: var(--sbc-navy);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1.5px;
  border: 2px solid var(--sbc-orange);
  border-radius: 30px;
  padding: 10px 28px;
  transition: all 0.3s ease;
}

.btn-cta:hover,
.btn-cta:focus {
  background: var(--sbc-navy);
  border-color: var(--sbc-navy);
  color: #fff;
}

.btn-cta-outline {
  background: transparent;
  color: var(--sbc-orange);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1.5px;
  border: 2px solid var(--sbc-orange);
  border-radius: 30px;
  padding: 10px 28px;
  transition: all 0.3s ease;
}

.btn-cta-outline:hover,
.btn-cta-outline:focus {
  background: var(--sbc-orange);
  color: var(--sbc-navy);
  border-color: var(--sbc-orange);
}

/* ---------------- Header / Nav ---------------- */
.sbc-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  background: var(--sbc-cream);
  padding: 8px 20px;
  transition: all 0.3s ease;
}

.sbc-navbar .navbar-brand img {
  height: 48px;
  transition: height 0.3s ease;
}

.sbc-navbar.fixHeader {
  background: var(--sbc-cream);
  box-shadow: 0 4px 18px rgba(31, 36, 56, 0.15);
  padding: 4px 20px;
}

.sbc-navbar.fixHeader .navbar-brand img {
  height: 40px;
}

.sbc-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 26px;
}

.sbc-menu li a {
  color: var(--sbc-navy);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-decoration: none;
  transition: color 0.3s;
}

.sbc-menu li a:hover {
  color: var(--sbc-orange-dark);
}

.open-menu {
  font-size: 22px;
  color: var(--sbc-navy);
  cursor: pointer;
  background: transparent;
  border: 0;
  line-height: 1;
  padding: 6px 9px;
  border-radius: 8px;
  transition: color 0.3s ease, background 0.3s ease;
}

.open-menu:hover,
.open-menu:focus {
  color: var(--sbc-orange-dark);
  background: rgba(31, 36, 56, 0.06);
}

/* ---------------- Mobile offcanvas menu ---------------- */
.sbc-offcanvas {
  width: 100%;
  max-width: 100%;
  background: linear-gradient(160deg, var(--sbc-navy) 0%, var(--sbc-navy-soft) 100%);
  color: #fff;
  border: 0;
  box-shadow: -18px 0 50px rgba(31, 36, 56, 0.4);
  transition: transform 0.42s cubic-bezier(0.16, 1, 0.3, 1);
}

.sbc-offcanvas .offcanvas-header {
  padding: 22px 24px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sbc-offcanvas .offcanvas-logo {
  height: 46px;
}

.sbc-offcanvas .btn-close {
  filter: brightness(0) invert(1);
  opacity: 0.85;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.sbc-offcanvas .btn-close:hover {
  opacity: 1;
  transform: rotate(90deg);
}

.sbc-offcanvas .offcanvas-body {
  display: flex;
  flex-direction: column;
  padding: 14px 0 26px;
}

.offcanvas-menu {
  list-style: none;
  margin: 0;
  padding: 8px 0;
  flex: 1 1 auto;
}

.offcanvas-menu li {
  opacity: 0;
  transform: translateX(22px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.sbc-offcanvas.show .offcanvas-menu li {
  opacity: 1;
  transform: translateX(0);
}

.sbc-offcanvas.show .offcanvas-menu li:nth-child(1) { transition-delay: 0.06s; }
.sbc-offcanvas.show .offcanvas-menu li:nth-child(2) { transition-delay: 0.11s; }
.sbc-offcanvas.show .offcanvas-menu li:nth-child(3) { transition-delay: 0.16s; }
.sbc-offcanvas.show .offcanvas-menu li:nth-child(4) { transition-delay: 0.21s; }
.sbc-offcanvas.show .offcanvas-menu li:nth-child(5) { transition-delay: 0.26s; }
.sbc-offcanvas.show .offcanvas-menu li:nth-child(6) { transition-delay: 0.31s; }
.sbc-offcanvas.show .offcanvas-menu li:nth-child(7) { transition-delay: 0.36s; }
.sbc-offcanvas.show .offcanvas-menu li:nth-child(8) { transition-delay: 0.41s; }

.offcanvas-menu li a {
  position: relative;
  display: block;
  color: #e8eaf2;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-decoration: none;
  padding: 14px 26px;
  transition: color 0.3s ease, background 0.3s ease, padding 0.3s ease;
}

.offcanvas-menu li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 3px;
  height: 58%;
  background: var(--sbc-orange);
  transform: translateY(-50%) scaleY(0);
  transition: transform 0.3s ease;
}

.offcanvas-menu li a:hover,
.offcanvas-menu li a:focus {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  padding-left: 32px;
}

.offcanvas-menu li a:hover::before,
.offcanvas-menu li a:focus::before {
  transform: translateY(-50%) scaleY(1);
}

.offcanvas-cta {
  padding: 18px 24px 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.offcanvas-call {
  display: block;
  text-align: center;
  margin-top: 14px;
  color: var(--sbc-orange);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.offcanvas-call:hover {
  color: var(--sbc-orange-dark);
}

.offcanvas-call i {
  margin-right: 6px;
}

/* ---------------- Hero ---------------- */
.hero-sec {
  position: relative;
  margin-top: 68px;
}

.hero-sec .carousel-item img {
  height: calc(100vh - 68px);
  min-height: 480px;
  object-fit: cover;
}

.hero-sec .carousel-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(31, 36, 56, 0.78) 0%,
    rgba(31, 36, 56, 0.35) 55%,
    rgba(31, 36, 56, 0.15) 100%
  );
}

.hero-caption {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  z-index: 5;
  pointer-events: none;
}

.hero-caption .container > * {
  pointer-events: auto;
}

.hero-caption h4 {
  color: var(--sbc-orange);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  margin-bottom: 14px;
}

.hero-caption h1 {
  font-family: var(--font-head);
  color: #fff;
  font-size: 54px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.18;
  margin-bottom: 14px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}

.hero-caption p {
  color: #f1e9dc;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 26px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-sec .carousel-indicators [data-bs-target] {
  background-color: var(--sbc-orange);
}

/* ---------------- Sections (generic) ---------------- */
.sec-pad {
  padding: 80px 0;
}

.sec-alt {
  background: var(--sbc-cream);
}

.sec-tagline {
  color: var(--sbc-orange-dark);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 4px;
  margin-bottom: 10px;
}

.sec-title {
  font-family: var(--font-head);
  color: var(--sbc-navy);
  font-size: 38px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 18px;
}

.sec-title span {
  color: var(--sbc-brown);
  font-style: italic;
}

.sec-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--sbc-text);
}

/* ---------------- Overview ---------------- */
.usp-row {
  margin-top: 26px;
}

.usp-card {
  background: #fff;
  border: 1px solid #eadfce;
  border-radius: 12px;
  text-align: center;
  padding: 22px 14px;
  height: 100%;
  box-shadow: 0 6px 16px rgba(31, 36, 56, 0.05);
}

.usp-card i {
  font-size: 30px;
  color: var(--sbc-orange);
  margin-bottom: 12px;
}

.usp-card p {
  font-size: 13px;
  font-weight: 600;
  color: var(--sbc-navy);
  margin: 0;
}

/* ---------------- Forms ---------------- */
.form-card {
  background: var(--sbc-navy);
  border-radius: 16px;
  padding: 36px 30px;
  box-shadow: 0 18px 40px rgba(31, 36, 56, 0.25);
}

.form-card .title {
  font-family: var(--font-head);
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 6px;
}

.form-card .sub-title {
  color: #c8cbda;
  font-size: 13px;
  margin-bottom: 24px;
}

.form-card .form-group,
.sbc-modal .form-group {
  position: relative;
  margin-bottom: 18px;
}

.form-card .input-icon,
.sbc-modal .input-icon {
  position: absolute;
  left: 14px;
  top: 12px;
  color: var(--sbc-orange);
  font-size: 14px;
  z-index: 2;
}

.form-card .form-control,
.sbc-modal .form-control {
  background: #fff;
  border: 1px solid #e3d9c8;
  border-radius: 8px;
  padding: 10px 14px 10px 38px;
  font-size: 14px;
  box-shadow: none;
}

.form-card textarea.form-control,
.sbc-modal textarea.form-control {
  padding-left: 14px;
}

.form-card .form-control:focus,
.sbc-modal .form-control:focus {
  border-color: var(--sbc-orange);
  box-shadow: 0 0 0 0.2rem rgba(240, 169, 63, 0.18);
}

.form-card select.form-control,
.sbc-modal select.form-control {
  padding-left: 14px;
  color: #6c757d;
}

/* Bootstrap validation feedback */
.invalid-feedback {
  font-size: 12px;
  font-weight: 500;
  margin-top: 4px;
  text-align: left;
}

.form-card .invalid-feedback {
  color: #ff9b9b;
}

.was-validated .form-control:invalid,
.was-validated .form-select:invalid {
  border-color: #dc3545;
  background-image: none;
}

.was-validated .form-control:valid,
.was-validated .form-select:valid {
  border-color: #6fbf73;
  background-image: none;
}

/* number input spinners off */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

/* ---------------- Gallery ---------------- */
.gal-item {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 22px rgba(31, 36, 56, 0.12);
}

.gal-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gal-item:hover img {
  transform: scale(1.06);
}

.fp-label {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--sbc-navy);
  margin-top: 12px;
}

.loc-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.loc-list li {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: 9px 0;
  border-bottom: 1px dashed #e7dcc9;
}

.loc-list li:last-child {
  border-bottom: 0;
}

.loc-list li strong {
  color: var(--sbc-brown);
}

/* ---------------- About ---------------- */
.about-img {
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(31, 36, 56, 0.15);
}

/* ---------------- Contact ---------------- */
.contact-map {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(31, 36, 56, 0.1);
}

/* ---------------- Footer ---------------- */
.rera-sec {
  background: var(--sbc-cream);
  border-top: 1px solid #e7dcc9;
  padding: 40px 0 90px;
}

.footer-logo {
  height: 54px;
  margin-bottom: 16px;
}

.rera-no {
  font-size: 14px;
  font-weight: 700;
  color: var(--sbc-navy);
  letter-spacing: 0.5px;
}

.disclaimer-line {
  font-size: 11.5px;
  color: #8a8a8a;
  max-width: 880px;
  margin: 0 auto 10px;
  line-height: 1.7;
}

.disc-click {
  color: var(--sbc-brown);
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
}

.copyright {
  font-size: 12.5px;
  color: var(--sbc-navy);
  margin: 0;
}

.copyright a {
  color: var(--sbc-brown);
  text-decoration: none;
}

/* ---------------- Floating / sticky CTAs ---------------- */
.float-enquire {
  position: fixed;
  right: -60px;
  top: 50%;
  z-index: 1040;
  background: var(--sbc-orange);
  color: var(--sbc-navy);
  border: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 10px 22px;
  border-radius: 8px 8px 0 0;
  transform: rotate(-90deg);
  transform-origin: center;
  box-shadow: 0 -4px 14px rgba(31, 36, 56, 0.25);
}

.callnow-btn {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1040;
  width: 54px;
  height: 54px;
  background: var(--sbc-navy);
  color: var(--sbc-orange);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(31, 36, 56, 0.35);
  transition: all 0.3s;
}

.callnow-btn:hover {
  background: var(--sbc-orange);
  color: var(--sbc-navy);
}

.fixed-footer-cust {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1040;
  display: flex;
}

.ff-btn {
  flex: 1;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 14px 8px;
  border: 0;
  text-decoration: none;
}

.ff-call {
  background: var(--sbc-navy);
  color: #fff;
}

.ff-enquire {
  background: var(--sbc-orange);
  color: var(--sbc-navy);
}

/* ---------------- Modals ---------------- */
.sbc-modal .modal-content {
  border: 0;
  border-radius: 16px;
  overflow: hidden;
}

.sbc-modal .btn-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
}

.sbc-modal .modal-body {
  padding: 36px 30px 30px;
}

.sbc-modal .title {
  font-family: var(--font-head);
  color: var(--sbc-navy);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 6px;
}

.sbc-modal .sub-title {
  color: #8a8a8a;
  font-size: 13px;
  margin-bottom: 22px;
}

.disc-text {
  font-size: 13px;
  line-height: 1.8;
  color: var(--sbc-text);
}

/* hidden download anchors */
#layoutpdf1,
#floorre {
  display: none;
}

/* ---------------- Pageloader ---------------- */
#pageloader {
  position: fixed;
  inset: 0;
  background: rgba(246, 236, 222, 0.92);
  z-index: 3000;
  display: none;
}

#pageloader .loading-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#pageloader img {
  width: 80px;
}

/* ---------------- Responsive ---------------- */
@media (max-width: 991.98px) {
  .hero-caption h1 {
    font-size: 42px;
  }

  .sec-title {
    font-size: 32px;
  }
}

@media (max-width: 767.98px) {
  .sec-pad {
    padding: 56px 0;
  }

  .hero-sec {
    margin-top: 62px;
  }

  .hero-sec .carousel-item img {
    height: 72vh;
    min-height: 420px;
  }

  .hero-caption h1 {
    font-size: 30px;
  }

  .hero-caption h4 {
    font-size: 11px;
    letter-spacing: 1px;
  }

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

  .sbc-navbar .navbar-brand img {
    height: 38px;
  }

  .sec-title {
    font-size: 27px;
  }

  .gal-item img {
    height: 160px;
  }

  .rera-sec {
    padding-bottom: 110px;
  }
}

/* =====================================================
   LP v2 — 7-fold leasing structure
   ===================================================== */

/* ---------------- Fold 1: hero with side lead form ---------------- */
.hero-form-card {
  max-width: 420px;
  margin-left: auto;
  padding: 26px 26px 22px;
}

.hero-form-card .title {
  font-size: 22px;
}

.hero-form-card .sub-title {
  margin-bottom: 16px;
}

.hero-form-card .form-group {
  margin-bottom: 13px;
}

@media (min-width: 992px) {
  .hero-sec .carousel-item img {
    min-height: 640px;
  }

  .hero-caption .hero-row h1 {
    font-size: 40px;
  }
}

@media (min-width: 1400px) {
  .hero-caption .hero-row h1 {
    font-size: 46px;
  }
}

/* Selects inside dark form cards */
.form-card .form-select,
.sbc-modal .form-select {
  background-color: #fff;
  border: 1px solid #e3d9c8;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 14px;
  color: #6c757d;
  box-shadow: none;
}

.form-card .form-select:focus,
.sbc-modal .form-select:focus {
  border-color: var(--sbc-orange);
  box-shadow: 0 0 0 0.2rem rgba(240, 169, 63, 0.18);
}

/* ---------------- Fold 2: why cards ---------------- */
.why-card {
  background: #fff;
  border: 1px solid #eadfce;
  border-radius: 14px;
  text-align: center;
  padding: 32px 22px;
  height: 100%;
  box-shadow: 0 8px 20px rgba(31, 36, 56, 0.05);
  transition: transform 0.3s ease;
}

.why-card:hover {
  transform: translateY(-6px);
}

.why-card i {
  font-size: 32px;
  color: var(--sbc-orange);
  margin-bottom: 14px;
}

.why-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--sbc-navy);
  margin-bottom: 8px;
}

.why-card p {
  font-size: 13.5px;
  line-height: 1.7;
  margin: 0;
}

/* ---------------- Fold 6: configurations ---------------- */
.config-title {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 600;
  color: var(--sbc-navy);
  margin-bottom: 6px;
}

.config-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.config-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid #eadfce;
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 12px;
  box-shadow: 0 6px 16px rgba(31, 36, 56, 0.05);
}

.config-list li strong {
  font-family: var(--font-head);
  font-size: 19px;
  color: var(--sbc-navy);
}

.config-list li span {
  font-size: 13.5px;
  color: var(--sbc-text);
  text-align: right;
}

.config-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

/* ---------------- Fold 7: site visit CTA band ---------------- */
.visit-band {
  background: var(--sbc-navy);
  padding: 80px 0;
  text-align: center;
}

.visit-band .sec-title {
  color: #fff;
}

.visit-band .sec-title span {
  color: var(--sbc-orange);
}

/* ---------------- Footer contact line ---------------- */
.footer-contact {
  font-size: 13.5px;
  color: var(--sbc-navy);
  margin-bottom: 8px;
}

.footer-contact a {
  color: var(--sbc-brown);
  font-weight: 600;
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--sbc-orange-dark);
}

/* =====================================================
   LP v3 — docx-aligned sections (Overview, Highlights,
   Gallery, Location landmarks, About, Contact)
   ===================================================== */

/* ---- Nav: fit 8 menu items on laptop, breathe on desktop ---- */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .sbc-navbar {
    padding: 8px 14px;
  }
  .sbc-menu {
    gap: 14px;
  }
  .sbc-menu li a {
    font-size: 12px;
    letter-spacing: 0.5px;
  }
}

@media (min-width: 1200px) {
  .sbc-menu {
    gap: 22px;
  }
  .sbc-menu li a {
    font-size: 13.5px;
    letter-spacing: 1px;
  }
}

/* ---- Hero RERA badge ---- */
.hero-rera {
  display: inline-block;
  font-size: 12px !important;
  font-weight: 600;
  letter-spacing: 0.8px;
  color: var(--sbc-navy) !important;
  background: var(--sbc-orange);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 22px !important;
}

/* ---- Overview ---- */
.overview-lead {
  font-size: 15.5px;
  line-height: 1.9;
  margin-bottom: 22px;
}

/* ---- Project Highlights / Ideal For ---- */
.highlight-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid #eadfce;
  border-radius: 12px;
  padding: 16px 18px;
  height: 100%;
  box-shadow: 0 6px 16px rgba(31, 36, 56, 0.05);
  transition: transform 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-4px);
}

.highlight-card i {
  color: var(--sbc-orange-dark);
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

.highlight-card span {
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--sbc-navy);
}

.ideal-divider {
  border: 0;
  border-top: 1px dashed #e0d4bf;
  opacity: 1;
  margin: 50px 0 8px;
}

/* ---- Gallery Swiper slider ---- */
.gallery-swiper {
  position: relative;
  padding: 10px 4px 56px;
}

.gallery-swiper .swiper-slide {
  height: auto;
}

.gallery-swiper .gal-item {
  margin: 0;
}

.gallery-swiper .gal-item img {
  height: 270px;
}

.gallery-swiper .swiper-button-prev,
.gallery-swiper .swiper-button-next {
  top: 44%;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  color: var(--sbc-navy);
  box-shadow: 0 6px 18px rgba(31, 36, 56, 0.18);
  transition:
    background 0.3s ease,
    color 0.3s ease;
}

.gallery-swiper .swiper-button-prev {
  left: 0;
}

.gallery-swiper .swiper-button-next {
  right: 0;
}

.gallery-swiper .swiper-button-prev:hover,
.gallery-swiper .swiper-button-next:hover {
  background: var(--sbc-orange);
  color: var(--sbc-navy);
}

.gallery-swiper .swiper-button-prev::after,
.gallery-swiper .swiper-button-next::after {
  font-size: 16px;
  font-weight: 700;
}

.gallery-swiper .swiper-pagination {
  bottom: 16px;
}

.gallery-swiper .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: var(--sbc-navy);
  opacity: 0.25;
  transition: all 0.3s ease;
}

.gallery-swiper .swiper-pagination-bullet-active {
  width: 24px;
  border-radius: 5px;
  background: var(--sbc-orange-dark);
  opacity: 1;
}

@media (max-width: 575.98px) {
  .gallery-swiper .gal-item img {
    height: 240px;
  }

  .gallery-swiper .swiper-button-prev,
  .gallery-swiper .swiper-button-next {
    display: none;
  }
}

/* ---- Configurations floor-plan slider ---- */
.floorplan-swiper {
  position: relative;
  padding: 10px 4px 56px;
}

.floorplan-swiper .swiper-slide {
  height: auto;
}

.floorplan-swiper .gal-item {
  margin: 0;
}

.floorplan-swiper .gal-item img {
  height: 360px;
  object-fit: cover;
}

.floorplan-swiper .swiper-button-prev,
.floorplan-swiper .swiper-button-next {
  top: 42%;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  color: var(--sbc-navy);
  box-shadow: 0 6px 18px rgba(31, 36, 56, 0.18);
  transition: background 0.3s ease, color 0.3s ease;
}

.floorplan-swiper .swiper-button-prev {
  left: 0;
}

.floorplan-swiper .swiper-button-next {
  right: 0;
}

.floorplan-swiper .swiper-button-prev:hover,
.floorplan-swiper .swiper-button-next:hover {
  background: var(--sbc-orange);
  color: var(--sbc-navy);
}

.floorplan-swiper .swiper-button-prev::after,
.floorplan-swiper .swiper-button-next::after {
  font-size: 16px;
  font-weight: 700;
}

.floorplan-swiper .swiper-pagination {
  bottom: 16px;
}

.floorplan-swiper .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: var(--sbc-navy);
  opacity: 0.25;
  transition: all 0.3s ease;
}

.floorplan-swiper .swiper-pagination-bullet-active {
  width: 24px;
  border-radius: 5px;
  background: var(--sbc-orange-dark);
  opacity: 1;
}

@media (max-width: 575.98px) {
  .floorplan-swiper .gal-item img {
    height: 240px;
  }

  .floorplan-swiper .swiper-button-prev,
  .floorplan-swiper .swiper-button-next {
    display: none;
  }
}

/* ---- Location landmark categories ---- */
.loc-cat {
  background: #fff;
  border: 1px solid #eadfce;
  border-radius: 12px;
  padding: 16px 18px;
  height: 100%;
  box-shadow: 0 6px 16px rgba(31, 36, 56, 0.05);
}

.loc-cat-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sbc-brown);
  margin-bottom: 8px;
}

.loc-cat-title i {
  color: var(--sbc-orange-dark);
}

.loc-cat .loc-list li {
  padding: 7px 0;
}

/* ---- Contact band ---- */
.visit-tagline {
  color: var(--sbc-orange);
}

.visit-lead {
  color: #d8dbe8;
  font-size: 15.5px;
  line-height: 1.8;
  max-width: 760px;
  margin: 0 auto 28px;
}

.visit-rera {
  color: var(--sbc-orange);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 26px 0 0;
}
