/* ============================================
   Today Group - Commercial Eversion
   Theme: Deep Purple + Magenta Accent (from brand PDF)
   ============================================ */

:root {
  --primary: #2d0e3f;
  --primary-light: #4a1d6e;
  --primary-dark: #1e0b2c;
  --primary-darker: #120518;
  --gold: #d91e6e;
  --gold-light: #e94185;
  --white: #ffffff;
  --off-white: #f5f7f8;
  --light: #eef1f3;
  --border: #dde2e6;
  --text-dark: #1a1a1a;
  --text-body: #555555;
  --text-muted: #999999;
  --font-heading: "Cormorant", Georgia, serif;
  --font-body: "Poppins", -apple-system, sans-serif;
  --radius: 10px;
  --radius-lg: 18px;
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 50px rgba(0, 0, 0, 0.12);
  --transition: 0.3s ease;
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--text-body);
  overflow-x: hidden;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 600;
  line-height: 1.2;
}

a {
  text-decoration: none;
  transition:
    color var(--transition),
    background var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

section {
  overflow: hidden;
}

::selection {
  background: rgba(217, 30, 110, 0.2);
  color: var(--text-dark);
}

/* ---- Section Structure ---- */
.section-block {
  padding: 100px 0;
}

.section-block--white {
  background: var(--white);
}

.section-block--light {
  background: var(--off-white);
}

.section-block--dark {
  background: var(--primary);
  position: relative;
}

.section-block--dark::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(217, 30, 110, 0.06) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.section-header {
  margin-bottom: 60px;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 16px;
  position: relative;
  padding-right: 36px;
}

.section-label::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.section-label--light {
  color: rgba(255, 255, 255, 0.6);
}

.section-label--light::before {
  background: rgba(255, 255, 255, 0.3);
}

.section-desc {
  font-size: 1rem;
  color: var(--text-body);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.8;
}

.text-white {
  color: var(--white) !important;
}

.text-white-60 {
  color: rgba(255, 255, 255, 0.6) !important;
}

/* ---- Content Block ---- */
.content-block h2 {
  font-size: 2.75rem;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.content-block h2 em {
  font-style: normal;
  color: var(--gold);
}

.content-block p {
  line-height: 2;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

/* ---- Buttons ---- */
.btn-primary-fill {
  background: var(--primary);
  color: var(--white);
  padding: 12px 28px;
  border: 1px solid var(--primary);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary-fill:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 14, 63, 0.3);
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--primary);
  color: var(--white);
  padding: 16px 32px;
  border: 1px solid var(--primary);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
  width: auto;
}

.btn-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 14, 63, 0.3);
}

.btn-submit--gold {
  background: var(--gold);
  border-color: var(--gold);
}

.btn-submit--gold:hover {
  background: #b3185a;
  box-shadow: 0 6px 20px rgba(217, 30, 110, 0.35);
}

.btn-submit--full {
  width: 100%;
}

.btn-submit--sm {
  padding: 10px 24px;
  font-size: 11px;
  letter-spacing: 1.5px;
}

.btn-submit i {
  font-size: 16px;
  transition: transform var(--transition);
}

.btn-submit:hover i {
  transform: translateX(4px);
}

.btn-price {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary);
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-price {
  background: var(--gold);
  border-color: var(--gold);
}

.btn-price:hover {
  background: #b3185a;
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(217, 30, 110, 0.3);
}

/* ---- Navbar ---- */
.navbar {
  background: #ffffff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 0.5rem 0.5rem;
  transition:
    padding 0.4s ease,
    background 0.4s ease,
    box-shadow 0.4s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  z-index: 1000;
}

@media (min-width: 992px) {
  .navbar {
    padding: 0.25rem 0.5rem;
  }
}

/* Custom navbar container — full-width with responsive side padding */
.navbar-container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 12px;
}

@media (min-width: 576px) {
  .navbar-container {
    padding: 0 24px;
  }
}

@media (min-width: 992px) {
  .navbar-container {
    padding: 0 40px;
    gap: 24px;
  }

  .navbar .navbar-collapse {
    flex: 1 1 auto;
    display: flex !important;
    align-items: center;
    justify-content: center;
  }

  .navbar .navbar-nav-center {
    margin: 0 auto !important;
  }

  .navbar .navbar-cta-wrap {
    flex-shrink: 0;
  }
}

@media (min-width: 1400px) {
  .navbar-container {
    padding: 0 60px;
  }
}

.navbar.scrolled {
  background: #ffffff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 0.5rem 0.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

@media (min-width: 992px) {
  .navbar.scrolled {
    padding: 0.25rem 0.5rem;
  }
}

.navbar-brand img {
  height: 60px;
  width: auto;
  transition: transform 0.4s ease;
}

.navbar.scrolled .navbar-brand img {
  height: 60px;
}

/* ==========================================================
   Responsive navbar lockup (Delta · Jindal · Today)
   Full three-logo lockup visible on every screen size
   ========================================================== */

.navbar-brand {
  padding: 0;
  margin-right: 0;
  min-width: 0;
  max-width: calc(100% - 56px); /* leave space for hamburger */
}

.navbar-brand-lockup {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  max-width: 100%;
  flex-wrap: nowrap;
}

.nav-logo,
.nav-logo--partner,
.nav-logo--primary {
  width: auto;
  display: block;
  object-fit: contain;
  height: 63px;
  transition: height 0.3s ease;
}

.navbar.scrolled .nav-logo,
.navbar.scrolled .nav-logo--partner,
.navbar.scrolled .nav-logo--primary {
  height: 55px;
}

.nav-logo-sep {
  display: inline-block;
  width: 1px;
  height: 18px;
  background: rgba(30, 11, 44, 0.2);
  flex-shrink: 0;
}

/* Right-side Tangent project logo (desktop only) */
.nav-tangent-logo {
  align-items: center;
  flex-shrink: 0;
  padding: 0;
  margin-left: auto;
  text-decoration: none;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.nav-tangent-logo:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}

.nav-tangent-logo-img {
  display: block;
  width: auto;
  height: 96px;
  max-height: 96px;
  object-fit: contain;
  transition:
    height 0.3s ease,
    opacity 0.25s ease;
}

/* Navbar is always white — show dark/scrolled-bg logo */
.nav-tangent-logo-img--transparent {
  display: none;
}

.nav-tangent-logo-img--scrolled {
  display: block;
}

.navbar.scrolled .nav-tangent-logo-img {
  height: 80px;
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .nav-tangent-logo-img {
    height: 84px;
  }
  .navbar.scrolled .nav-tangent-logo-img {
    height: 72px;
  }
}

@media (min-width: 1400px) {
  .nav-tangent-logo-img {
    height: 110px;
  }
  .navbar.scrolled .nav-tangent-logo-img {
    height: 92px;
  }
}

.navbar.scrolled .nav-logo-sep {
  background: rgba(30, 11, 44, 0.2);
}

/* Tiny phones (<360px) — drop separators, shrink further */
@media (max-width: 359.98px) {
  .nav-logo-sep {
    display: none;
  }

  .navbar-brand-lockup {
    gap: 4px;
  }

  .nav-logo,
  .nav-logo--partner,
  .nav-logo--primary {
    height: 53px;
  }
}

/* ≥480px */
@media (min-width: 480px) {
  .navbar-brand-lockup {
    gap: 8px;
  }

  .nav-logo,
  .nav-logo--partner,
  .nav-logo--primary {
    height: 67px;
  }

  .navbar.scrolled .nav-logo,
  .navbar.scrolled .nav-logo--partner,
  .navbar.scrolled .nav-logo--primary {
    height: 59px;
  }

  .nav-logo-sep {
    height: 20px;
  }
}

/* ≥576px */
@media (min-width: 576px) {
  .navbar-brand-lockup {
    gap: 10px;
  }

  .nav-logo,
  .nav-logo--partner,
  .nav-logo--primary {
    height: 79px;
  }

  .navbar.scrolled .nav-logo,
  .navbar.scrolled .nav-logo--partner,
  .navbar.scrolled .nav-logo--primary {
    height: 67px;
  }

  .nav-logo-sep {
    height: 24px;
  }
}

/* ≥768px */
@media (min-width: 768px) {
  .navbar-brand-lockup {
    gap: 12px;
  }

  .nav-logo,
  .nav-logo--partner,
  .nav-logo--primary {
    height: 91px;
  }

  .navbar.scrolled .nav-logo,
  .navbar.scrolled .nav-logo--partner,
  .navbar.scrolled .nav-logo--primary {
    height: 75px;
  }

  .nav-logo-sep {
    height: 28px;
  }
}

/* ≥992px — desktop (nav expands) */
@media (min-width: 992px) {
  .navbar-brand {
    max-width: none;
  }

  .navbar-brand-lockup {
    gap: 14px;
  }

  .nav-logo,
  .nav-logo--partner,
  .nav-logo--primary {
    height: 107px;
  }

  .navbar.scrolled .nav-logo,
  .navbar.scrolled .nav-logo--partner,
  .navbar.scrolled .nav-logo--primary {
    height: 87px;
  }

  .nav-logo-sep {
    height: 32px;
  }
}

/* ≥1400px — wide desktop */
@media (min-width: 1400px) {
  .navbar-brand-lockup {
    gap: 18px;
  }

  /* .nav-logo,
  .nav-logo--partner,
  .nav-logo--primary {
    height: 52px;
  } */

  .navbar.scrolled .nav-logo,
  .navbar.scrolled .nav-logo--partner,
  .navbar.scrolled .nav-logo--primary {
    height: 47px;
  }

  .nav-logo-sep {
    height: 38px;
  }
}

.navbar-phone {
  order: 2;
  margin-right: 12px;
}

.navbar-phone a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--primary);
  color: var(--primary);
  font-size: 14px;
  transition: all 0.4s ease;
}

.navbar.scrolled .navbar-phone a {
  border-color: var(--primary);
  color: var(--primary);
}

.navbar-phone a:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.navbar .nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 8px 16px !important;
  position: relative;
  transition: color 0.4s ease;
}

.navbar.scrolled .nav-link {
  color: var(--text-dark);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
  color: var(--primary);
}

.navbar .nav-link::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s ease;
  transform-origin: left;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
  transform: scaleX(1);
}

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

.nav-cta {
  padding: 10px 22px !important;
  font-size: 0.85rem !important;
  letter-spacing: 2px !important;
  border-radius: var(--radius) !important;
}

.navbar-toggler {
  border: none;
  padding: 4px 8px;
  order: 3;
  width: 36px;
  height: 36px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.toggler-icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    background-color 0.4s ease;
}

.navbar.scrolled .toggler-icon-bar {
  background: var(--text-dark);
}

/* Hide hamburger when menu is open */
.navbar-toggler[aria-expanded="true"] {
  display: none !important;
}

/* Close button inside mobile menu */
.mobile-menu-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  font-size: 22px;
  color: var(--text-dark);
  padding: 4px 8px;
  cursor: pointer;
  z-index: 10;
  line-height: 1;
  transition: color 0.3s ease;
}

.mobile-menu-close:hover {
  color: var(--primary);
}

/* ---- Hero Section ---- */
.hero-section {
  position: relative;
  /* background: var(--primary-dark);
  overflow: hidden; */
  margin-top: 70px;
}

@media (min-width: 480px) {
  .hero-section {
    margin-top: 42px;
  }
}

@media (min-width: 576px) {
  .hero-section {
    margin-top: 48px;
  }
}

@media (min-width: 768px) {
  .hero-section {
    margin-top: 54px;
  }
}

@media (min-width: 992px) {
  .hero-section {
    margin-top: 80px;
  }
}

@media (min-width: 1200px) {
  .hero-section {
    margin-top: 90px;
  }
}

@media (min-width: 1400px) {
  .hero-section {
    margin-top: 104px;
  }
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 0;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}

/* Hero Bootstrap carousel — full-width image at natural aspect ratio */
.hero-carousel {
  position: relative;
  width: 100%;
  z-index: 0;
}

.hero-carousel .carousel-inner,
.hero-carousel .carousel-item,
.hero-carousel picture {
  width: 100%;
}

.hero-carousel .carousel-item picture {
  display: block;
}

.hero-carousel .hero-bg-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.hero-carousel .carousel-indicators {
  z-index: 3;
  margin-bottom: 1.25rem;
}

.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
  z-index: 3;
  width: 6%;
  opacity: 0.75;
}

.hero-carousel .carousel-control-prev:hover,
.hero-carousel .carousel-control-next:hover {
  opacity: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: high-quality;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  z-index: 1;
  pointer-events: none;
}

.hero-banner-text {
  position: absolute;
  top: 50%;
  left: 4%;
  transform: translateY(-50%);
  z-index: 2;
  width: 92%;
  max-width: 1100px;
  text-align: left;
  pointer-events: none;
}

.hero-banner-text h1 {
  color: #ffffff;
  font-family: inherit;
  font-weight: 700;
  font-size: clamp(1.25rem, 4.5vw, 3.5rem);
  line-height: 1.2;
  letter-spacing: 0.02em;
  margin: 0;
  text-transform: uppercase;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.55);
}

/* Hero offer badge */
.hero-offer {
  margin-top: clamp(14px, 2.2vw, 24px);
  max-width: 560px;
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  pointer-events: auto;
  font-family: inherit;
}

.hero-offer__title {
  background: linear-gradient(
    90deg,
    var(--primary-darker) 0%,
    var(--primary) 50%,
    var(--primary-darker) 100%
  );
  color: #ffffff;
  text-align: center;
  font-weight: 700;
  font-size: clamp(1rem, 2.4vw, 1.75rem);
  padding: 10px 16px;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.hero-offer__price {
  background: #ffffff;
  color: #2b2218;
  text-align: center;
  font-weight: 600;
  font-size: clamp(0.95rem, 2vw, 1.4rem);
  padding: 10px 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.hero-offer__price span {
  font-weight: 700;
  color: var(--gold);
}

.hero-offer__price sup {
  font-size: 0.55em;
  top: -0.65em;
}

.hero-offer__terms {
  background: linear-gradient(
    90deg,
    var(--gold) 0%,
    var(--gold-light) 50%,
    var(--gold) 100%
  );
  color: #ffffff;
  text-align: center;
  font-weight: 500;
  font-size: clamp(0.9rem, 1.9vw, 1.25rem);
  line-height: 1.4;
  padding: 10px 16px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.hero-offer__terms strong {
  font-weight: 800;
}

@media (max-width: 767.98px) {
  .hero-offer {
    position: absolute;
    left: 0px;
    right: 12px;
    bottom: -457px;
    margin: 0 auto;
    max-width: none;
    z-index: 3;
  }

  .hero-banner-text {
    top: 38% !important;
  }
}

/* Centered Logo + Heading + CTA */
.hero-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  text-align: center;
  width: 90%;
  max-width: 600px;
}

.hero-tags {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-tag i {
  font-size: 12px;
  color: var(--gold);
}

.hero-logo {
  max-width: 280px;
  margin: 0 auto 20px;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.4));
}

.hero-center h1 {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 1px;
  line-height: 1.25;
  margin-bottom: 14px;
  text-shadow:
    0 2px 16px rgba(0, 0, 0, 0.7),
    0 0 40px rgba(0, 0, 0, 0.4);
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  text-shadow:
    0 1px 12px rgba(0, 0, 0, 0.7),
    0 0 30px rgba(0, 0, 0, 0.3);
}

.hero-usps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  justify-content: center;
  margin-bottom: 28px;
}

.hero-usp {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

.hero-usp i {
  font-size: 13px;
  color: var(--gold);
}

/* Mana-style CTA button */
.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--white);
  text-decoration: none;
  margin: 0.5rem 0 0 0;
  transition: color var(--transition);
}

.hero-cta-btn span {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  position: relative;
  padding-bottom: 4px;
}

.hero-cta-btn span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.hero-cta-btn:hover span::after {
  transform: scaleX(1);
}

.hero-cta-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.hero-cta-icon i {
  font-size: 16px;
  color: var(--white);
}

.hero-cta-btn:hover {
  color: var(--white);
}

.hero-cta-btn:hover .hero-cta-icon {
  background: var(--white);
  border-color: var(--white);
}

.hero-cta-btn:hover .hero-cta-icon i {
  color: var(--primary);
}

/* Project Info Bar (Sub Content - overlaps banner bottom on desktop) */
.project-info-bar {
  position: relative;
  z-index: 10;
  margin-top: -29px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-info-inner {
  display: flex;
  align-items: stretch;
  width: 90%;
  max-width: 1200px;
  flex-wrap: wrap;
  background-color: #ffffff;
  box-shadow: 0 20px 60px 0 rgba(0, 0, 0, 0.12);
}

.project-info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  flex: 1;
  text-align: center;
  border-right: 1px solid rgba(45, 14, 63, 0.2);
}

.project-info-item:last-child {
  border-right: none;
}

.project-info-icon {
  color: #2d0e3f;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-info-icon svg {
  width: 24px;
  height: 24px;
}

.project-info-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 17px;
  color: #2d0e3f;
  margin-bottom: 6px;
}

.project-info-value {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: #2c2c2c;
  line-height: 20px;
}

/* Bottom Stats Bar */
.hero-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 4;
  display: flex;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-bar-item {
  flex: 1;
  padding: 18px 24px;
  text-align: center;
  position: relative;
}

.hero-bar-item::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.1);
}

.hero-bar-item:last-child::after {
  display: none;
}

.hero-bar-label {
  display: block;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 4px;
}

.hero-bar-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.3px;
}

/* About Form Card (next to overview) */
.about-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 0;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 90px;
}

.about-form-header {
  background: var(--primary);
  padding: 28px 32px;
  color: var(--white);
}

.about-form-header h3 {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  color: var(--white);
  margin-bottom: 4px;
  font-weight: 600;
}

.about-form-header p {
  font-size: 0.95rem;
  opacity: 0.7;
  margin: 0;
  font-weight: 300;
}

.about-form {
  padding: 28px 32px 32px;
}

.form-floating-group {
  margin-bottom: 18px;
  position: relative;
}

.form-floating-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.form-input {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
  outline: none;
}

.form-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(217, 30, 110, 0.12);
}

.form-input::placeholder {
  color: #ccc;
  font-weight: 400;
}

.phone-input-wrap {
  display: flex;
  align-items: stretch;
}

.phone-prefix {
  display: flex;
  align-items: center;
  padding: 0 14px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-right: none;
  border-radius: 8px 0 0 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

.form-input--phone {
  border-radius: 0 8px 8px 0;
}

.form-privacy {
  text-align: center;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 14px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.form-privacy i {
  font-size: 12px;
}

.invalid-feedback {
  font-size: 12px;
  margin-top: 4px;
}

/* ---- Trust Strip ---- */
.trust-strip {
  background: var(--primary);
  padding: 0;
  border-top: 2px solid var(--gold);
}

.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 28px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3px;
  position: relative;
  text-align: center;
  justify-content: center;
  flex: 1 1 auto;
  min-width: 200px;
}

.trust-item::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.08);
}

.trust-item:last-child::after {
  display: none;
}

.trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(217, 30, 110, 0.15);
  flex-shrink: 0;
}

.trust-icon i {
  font-size: 12px;
  color: var(--gold);
}

.trust-item strong {
  color: var(--gold);
}

/* ---- About Section ---- */
.about-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.about-visual:hover img {
  transform: scale(1.03);
}

.about-visual-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--primary);
  color: var(--white);
  padding: 16px 22px;
  border-radius: var(--radius);
}

.about-visual-badge strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--white);
  line-height: 1;
}

.about-visual-badge span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.6;
  font-weight: 500;
}

/* Feature Grid */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 28px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: var(--off-white);
  border-radius: 8px;
  border-left: 3px solid var(--gold);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.feature-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

.feature-item i {
  color: var(--gold);
  font-size: 16px;
  flex-shrink: 0;
}

.feature-item span {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
}

/* ---- Pricing Table ---- */
/* ---- Architectural Plans Section ---- */
/* ---- Architectural Plans Section ---- */
.plans-section {
  margin-top: 80px;
  padding: 0;
  background: transparent;
}

.plans-header {
  margin-bottom: 0;
  padding: 0 0 30px 0;
}

.plans-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 18px;
  color: #2d0e3f;
  padding: 5px 12px;
  border: 1px solid rgba(45, 14, 63, 0.2);
  border-radius: 50px;
  margin-bottom: 16px;
}

.plans-title {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 600;
  color: #2c2c2c;
  line-height: 1.25;
  max-width: 100%;
  margin: 0;
}

/* Plans Tabs */
.mana-plans-tabs {
  display: flex;
  justify-content: flex-end;
}

.mana-plans-tabs-right {
  display: flex;
  column-gap: 50px;
  margin-bottom: 60px;
  justify-content: flex-end;
  border-bottom: 1px solid rgba(45, 14, 63, 0.1);
  flex-wrap: nowrap;
  white-space: nowrap;
  overflow-x: auto;
}

.mana-plan-tab {
  cursor: pointer;
  letter-spacing: 1.5px;
  font-size: 14px;
  font-family: var(--font-body);
  color: #9a8f8f;
  position: relative;
  padding-bottom: 10px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.mana-plan-tab.active {
  color: #1e0b2c;
}

.mana-plan-tab.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #1e0b2c;
}

.mana-plan-tab:hover {
  color: #1e0b2c;
}

/* Plans Images */
.mana-plans-images {
  background: #f5f0f7;
  padding: 80px;
  border-radius: 12px;
  text-align: center;
  position: relative;
}

.mana-plan-image {
  display: none;
}

.mana-plan-image.active {
  display: block;
}

.mana-plan-image img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center center;
  filter: blur(3px);
}

/* Request Plan Button - Mana style */
.mana-plan-cta {
  position: absolute;
  bottom: 20px;
  right: 20px;
}

.mana-plan-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #2d0e3f;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s ease;
}

.mana-plan-btn span {
  position: relative;
  padding-bottom: 4px;
  border-bottom: 1px solid #2d0e3f;
}

.mana-plan-btn-icon {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(45, 14, 63, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mana-plan-btn-icon svg {
  width: 14px;
  height: 14px;
}

.mana-plan-btn:hover {
  color: #1e0b2c;
}

.mana-plan-btn:hover .mana-plan-btn-icon {
  background: #2d0e3f;
  color: #fff;
  border-color: #2d0e3f;
}

/* ---- Highlights ---- */
/* ---- Highlights Section (Swiper Slider) ---- */
.highlights-section {
  background-color: #faf7fc !important;
  padding: 100px 0;
  /* margin-top: 80px; */
}
#pricing {
  display: none;
}

.highlights-swiper-wrap {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.highlights-header {
  margin-bottom: 50px;
}

.highlights-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 18px;
  color: #2d0e3f;
  padding: 5px 12px;
  border: 1px solid rgba(45, 14, 63, 0.2);
  border-radius: 50px;
  margin-bottom: 16px;
}

.highlights-title {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 600;
  color: #2c2c2c;
  line-height: 1.25;
  max-width: 60%;
}

/* Slide item */
.highlight-slide {
  position: relative;
  padding: 50px 50px 100px 50px;
  min-height: 550px;
  cursor: pointer;
  overflow: hidden;
}

.highlight-slide-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.highlight-slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.highlight-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.45) 35%,
    rgba(0, 0, 0, 0) 70%
  );
  width: 100%;
  height: 100%;
}

/* Slide content */
.highlight-slide-content {
  position: relative;
  z-index: 1;
  color: #fff;
  width: 40%;
}

.highlight-slide-icon {
  margin-bottom: 20px;
}

.highlight-slide-icon img {
  width: 32px;
  height: 32px;
  filter: invert(1);
}

.highlight-slide-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 30px;
  line-height: 1.3;
}

.highlight-slide-desc {
  font-family: var(--font-body);
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

/* Slide counter */
.highlight-slide-counter {
  position: absolute;
  bottom: 20px;
  right: 20px;
  color: #fff;
  display: flex;
  align-items: center;
  column-gap: 10px;
  letter-spacing: 2px;
  z-index: 1;
}

.highlight-slide-counter span {
  display: block;
}

.counter-current {
  font-family: var(--font-heading);
  font-size: 50px;
  position: relative;
  top: -16px;
  font-weight: 300;
}

.counter-line {
  width: 30px;
  height: 1px;
  background: #fff;
}

.counter-total {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
}

/* Animations */
.animate-fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease;
}

.animate-fade-up.delay-2 {
  transition-delay: 0.2s;
}

.swiper-slide-active .animate-fade-up {
  opacity: 1;
  transform: translateY(0);
}

/* Swiper pagination */
.highlights-pagination {
  position: relative;
  margin-top: 30px;
  text-align: center;
}

.highlights-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #2d0e3f;
  opacity: 0.25;
  transition: all 0.3s ease;
}

.highlights-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  width: 30px;
  border-radius: 5px;
  background: #2d0e3f;
}

/* ---- Gallery Section ---- */
.gallery-section {
  padding: 50px 0;
}

.gallery-heading-wrap h2 {
  color: #2d0e3f;
  font-size: 2.5vw;
  font-family: var(--font-heading);
  text-align: center;
  margin-bottom: 30px;
}

/* Gallery Nav Tabs */
.gallery-section .nav-tabs {
  border-bottom: none;
  gap: 8px;
  justify-content: center;
}

.gallery-section .nav-tabs .nav-link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: #2d0e3f;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 32px;
  border: 1px solid rgba(45, 14, 63, 0.2);
  border-radius: 50px;
  background: transparent;
  transition: all 0.3s ease;
}

.gallery-section .nav-tabs .nav-link.active {
  color: #fff;
  background-color: #2d0e3f;
  border-color: #2d0e3f;
}

.gallery-section .nav-tabs .nav-link:focus,
.gallery-section .nav-tabs .nav-link:hover {
  color: #fff;
  background-color: #2d0e3f;
  border-color: #2d0e3f;
}

/* Gallery Image */
.gal_img {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.gal_img a {
  display: block;
  position: relative;
}

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

.gal_img:hover img {
  transform: scale(1.05);
}

.gal_img .img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s ease;
}

.gal_img:hover .img-overlay {
  background: rgba(0, 0, 0, 0.15);
}

/* Owl Nav Arrows */
.gal-carousel .owl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  padding: 0 10px;
}

.gal-carousel .owl-nav button {
  pointer-events: all;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
}

.gal-carousel .owl-nav button:hover .hero-cta-icon {
  background: var(--white);
  border-color: var(--white);
}

.gal-carousel .owl-nav button:hover .hero-cta-icon i {
  color: var(--primary);
}

/* ---- Amenities ---- */
.amenity-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

.amenity-tab {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 11px 24px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.amenity-tab.active,
.amenity-tab:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.amenity-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.amenity-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.amenity-floor-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 12px;
  margin-top: 24px;
}

.amenity-floor-label:first-child {
  margin-top: 0;
}

.amenity-zone-title {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
}

.amenity-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.amenity-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px solid var(--light);
  font-size: 13px;
  color: var(--text-dark);
  font-weight: 500;
}

.amenity-list li:last-child {
  border-bottom: none;
}

.amenity-list li::before {
  content: "\F272";
  font-family: "bootstrap-icons";
  color: var(--gold);
  font-size: 12px;
  flex-shrink: 0;
}

/* ---- Location Section (Accordion) ---- */
.loc-section {
  padding: 50px 0;
}

.loc-title-wrap h2 {
  color: #2d0e3f;
  font-size: 2.5vw;
  font-family: var(--font-heading);
  text-align: center;
  margin-bottom: 40px;
}

.loc-section .accordion-item {
  border: none;
  background-color: transparent;
}

.loc-section .accordion-button {
  background-color: transparent;
  border-bottom: 1px solid #2d0e3f;
  border-radius: 0;
  padding: 16px 20px;
  box-shadow: none;
}

.loc-section .accordion-button:focus {
  border-bottom: 1px solid #2d0e3f;
  box-shadow: none;
}

.loc-section .accordion-button::after {
  filter: none;
}

.loc-section .accordion-button:not(.collapsed)::after {
  filter: none;
}

.loc-section .accordion-button p {
  color: #2d0e3f;
  font-size: 1.1rem;
  font-family: var(--font-heading);
  font-weight: 600;
  margin: 0;
}

.loc-section .accordion-body {
  padding: 16px 20px;
}

.loc-section .accordion-body .row {
  padding: 6px 0;
  border-bottom: 1px solid rgba(45, 14, 63, 0.1);
}

.loc-section .accordion-body .row:last-child {
  border-bottom: none;
}

.loc-section .accordion-body p {
  color: #2d0e3f;
  font-size: 14px;
  font-family: var(--font-body);
  margin: 0;
}

.loc-section .accordion-item:last-of-type .accordion-button.collapsed {
  border-radius: 0;
}

.loc-section iframe {
  border-radius: 8px;
  box-shadow: var(--shadow-md);
}

/* ---- CTA Section ---- */
.cta-section {
  background: var(--off-white);
  padding: 0;
}

.cta-inner {
  background: var(--primary);
  border-radius: var(--radius-lg);
  padding: 70px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 80px 0;
}

.cta-inner::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(217, 30, 110, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.cta-inner h2 {
  color: var(--white);
  font-size: 2.4rem;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}

.cta-inner p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta {
  padding: 16px 36px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-cta--primary {
  background: var(--gold);
  color: var(--white);
  border: 1px solid var(--gold);
}

.btn-cta--primary:hover {
  background: #b3185a;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(217, 30, 110, 0.35);
}

.btn-cta--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-cta--outline:hover {
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}

/* ---- Contact Section ---- */
/* ---- Get in Touch Section ---- */
.mana-contact-section {
  margin-top: 85px;
  margin-bottom: -50px;
  padding: 50px 10px;
  background-image: url("../images/contact/83e03f33.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.mana-contact-inner {
  display: flex;
  flex-direction: row;
  max-width: 1200px;
  margin: 0 auto;
  gap: 0;
  align-items: stretch;
}

/* Left side - text over background */
.mana-contact-left {
  width: 55%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 40px;
}

.mana-contact-left-content {
  color: #fff;
}

.mana-contact-title {
  font-family: var(--font-heading);
  font-size: 90px;
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
}

.mana-contact-subtitle {
  font-family: var(--font-body);
  font-size: 24px;
  color: #fff;
  margin: 0;
}

/* Right side - white form card */
.mana-contact-right {
  width: 45%;
  background-color: #fff;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mana-contact-form-title {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 4px;
}

.mana-contact-form-subtitle {
  font-family: var(--font-body);
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
}

/* Form fields */
.mana-form-field {
  margin-bottom: 15px;
  width: 100%;
}

.mana-form-field label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  color: #2d0e3f;
  display: block;
  margin-bottom: 6px;
}

.mana-form-field label span {
  color: #dc3232;
}

.mana-form-field input,
.mana-form-field textarea {
  padding: 12px 16px;
  width: 100%;
  background-color: #fff;
  color: #2c2c2c;
  font-size: 14px;
  font-family: var(--font-body);
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  transition: border-color 0.3s ease;
}

.mana-form-field input:focus,
.mana-form-field textarea:focus {
  border-color: #2d0e3f;
  outline: none;
  box-shadow: none;
}

.mana-form-field textarea {
  min-height: 100px;
  resize: vertical;
}

/* Bootstrap validation styles for contact form */
.mana-form-field .invalid-feedback {
  font-size: 12px;
  margin-top: 4px;
}

.was-validated .mana-form-field input:invalid,
.was-validated .mana-form-field textarea:invalid {
  border-color: #dc3545;
}

.was-validated .mana-form-field input:valid,
.was-validated .mana-form-field textarea:valid {
  border-color: #198754;
}

/* Submit button - Mana style */
.mana-form-submit {
  margin-top: 20px;
  text-align: center;
}

.mana-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  width: max-content;
  letter-spacing: 3px;
  text-decoration: none;
  transition: color 0.3s ease;
  background: transparent;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  font-family: var(--font-body);
  position: relative;
  text-transform: uppercase;
  color: #2d0e3f;
}

.mana-submit-btn .btn-text {
  position: relative;
  padding: 0.3em 0;
  line-height: 1.2;
}

.mana-submit-btn .underline {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #2d0e3f;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}

.mana-submit-btn:hover .underline,
.mana-submit-btn:focus-visible .underline {
  transform: scaleX(1);
}

.mana-submit-btn .btn-icon {
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #2d0e3f;
  border-radius: 50%;
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease;
}

.mana-submit-btn:hover .btn-icon,
.mana-submit-btn:focus-visible .btn-icon {
  background-color: #2d0e3f;
  border-color: #2d0e3f;
}

.mana-submit-btn:hover svg,
.mana-submit-btn:focus-visible svg {
  stroke: #fff;
}

/* ---- Footer ---- */
/* ---- Mana Footer ---- */
.mana-footer {
  background: var(--primary-dark);
  padding: 70px 0 0;
  color: rgba(255, 255, 255, 0.75);
}

.mana-footer-top {
  padding-bottom: 50px;
}

.mana-footer-logo {
  height: 56px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}

.mana-footer-address {
  font-family: var(--font-body);
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.mana-footer-heading {
  position: relative;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding-bottom: 12px;
  margin-bottom: 18px;
}

.mana-footer-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.mana-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mana-footer-links li {
  margin: 0;
}

.mana-footer-links li a {
  font-family: var(--font-body);
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition:
    color 0.25s ease,
    padding-left 0.25s ease;
}

.mana-footer-links li a:hover {
  color: #fff;
  padding-left: 4px;
}

.mana-footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.mana-footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(217, 30, 110, 0.18);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.mana-footer-social a:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-color: transparent;
  color: #fff;
  transform: translateY(-2px);
}

.mana-footer-divider {
  display: none;
}

.mana-footer-bottom {
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mana-footer-copyright {
  font-family: var(--font-body);
  font-size: 0.7rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}

.mana-footer-policy {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.mana-footer-policy li a {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}

.mana-footer-policy li a:hover {
  color: #fff;
}

/* ---- WhatsApp Float ---- */
.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
}

.whatsapp-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---- Fixed Bottom CTA Bar (always visible, both desktop & mobile) ---- */
.fixed-bottom-stack {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  display: flex;
  flex-direction: column;
  pointer-events: none;
}

.fixed-bottom-stack > * {
  pointer-events: auto;
}

.fixed-cta-bar {
  position: static;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  background: transparent;
  pointer-events: none;
}

.fixed-cta-bar > * {
  pointer-events: auto;
}

.fixed-cta-btn {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid transparent;
  white-space: nowrap;
}

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

/* secondary (Download Brochure) */
.fixed-cta-btn--secondary {
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary-dark);
  border-color: rgba(30, 11, 44, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.fixed-cta-btn--secondary:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(30, 11, 44, 0.3);
}

/* primary (Enquire Now) */
.fixed-cta-btn--primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #fff;
}

.fixed-cta-btn--primary:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(217, 30, 110, 0.4);
}

/* Call Now — mobile only, hidden on desktop */
.fixed-cta-btn--call {
  display: none;
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary-dark);
  border-color: rgba(30, 11, 44, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.fixed-cta-btn--call:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(30, 11, 44, 0.3);
}

/* Desktop order: Enquire on the left, Download Brochure on the right */
.fixed-cta-btn--primary {
  order: 1;
}

.fixed-cta-btn--secondary {
  order: 2;
}

/* Mobile — buttons take equal width, no separator character */
@media (max-width: 767.98px) {
  .fixed-cta-bar {
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    gap: 8px;
  }

  .fixed-cta-btn {
    flex: 1;
    padding: 13px 14px;
    font-size: 12px;
    letter-spacing: 0.6px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  }

  .fixed-cta-btn i {
    font-size: 13px;
  }

  /* Mobile: Call Now on the left, Enquire Now on the right; hide brochure */
  .fixed-cta-btn--secondary {
    display: none;
  }

  .fixed-cta-btn--call {
    display: inline-flex;
    background: #fff;
    border-color: rgba(30, 11, 44, 0.12);
    order: 1;
  }

  .fixed-cta-btn--primary {
    order: 2;
  }
}

@media (max-width: 400px) {
  .fixed-cta-btn {
    padding: 12px 10px;
    font-size: 11px;
    gap: 6px;
  }
}

/* ---- Fixed Bottom Form ---- */
.fixed-bottom-form {
  position: relative;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.12);
  border-top: 1px solid rgba(30, 11, 44, 0.08);
}

.fbf-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.fbf-headline {
  flex: 0 0 auto;
  min-width: 220px;
}

.fbf-headline h4 {
  margin: 0 0 2px;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-dark, #1e0b2c);
  letter-spacing: 0.2px;
}

.fbf-headline p {
  margin: 0;
  font-size: 12px;
  color: rgba(30, 11, 44, 0.65);
  line-height: 1.3;
}

.fbf-form {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.fbf-field {
  flex: 1 1 0;
  min-width: 0;
}

.fbf-form .form-control {
  height: 44px;
  border: 1px solid rgba(30, 11, 44, 0.18);
  border-radius: 10px;
  background: #fff;
  font-size: 13px;
  padding: 0 14px;
  width: 100%;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.fbf-form .form-control:focus {
  outline: none;
  border-color: var(--gold, #d91e6e);
  box-shadow: 0 0 0 3px rgba(217, 30, 110, 0.12);
}

.fbf-submit {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 22px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(
    135deg,
    var(--gold, #d91e6e),
    var(--gold-light, #ff5a8a)
  );
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.fbf-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(217, 30, 110, 0.35);
}

.fbf-submit i {
  font-size: 15px;
}

/* Tablet — drop tagline, keep fields horizontal */
@media (max-width: 991.98px) {
  .fbf-headline {
    display: none;
  }
}

/* Mobile — 2x2 grid: name+phone on row 1, email+submit on row 2 */
@media (max-width: 767.98px) {
  .fbf-inner {
    padding: 10px 12px;
    gap: 10px;
  }

  .fbf-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .fbf-form .form-control,
  .fbf-submit {
    height: 42px;
    font-size: 12px;
  }

  .fbf-submit {
    padding: 0 14px;
    letter-spacing: 0.4px;
  }
}

@media (max-width: 480px) {
  .fbf-field--email {
    display: none;
  }
}

/* Push page content above the fixed CTA + form stack so footer is reachable */
body {
  padding-bottom: 150px;
}

/* ---- Mobile Inline Form (below banner, in-flow) ---- */
.mobile-inline-form {
  display: none;
}

@media (max-width: 767.98px) {
  /* Keep the CTA bar on mobile; hide only the fixed bottom form */
  .fixed-bottom-form {
    display: none !important;
  }

  body {
    padding-bottom: 80px;
  }

  .mobile-inline-form {
    display: block;
    background: #fff;
    padding: 18px 14px 22px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  }

  .mif-inner {
    max-width: 540px;
    margin: 0 auto;
  }

  .mif-header {
    text-align: center;
    margin-bottom: 14px;
  }

  .mif-header h3 {
    margin: 0 0 4px;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-dark, #1e0b2c);
  }

  .mif-header p {
    margin: 0;
    font-size: 12px;
    color: rgba(30, 11, 44, 0.65);
  }

  .mif-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .mif-form .form-control {
    height: 46px;
    border: 1px solid rgba(30, 11, 44, 0.18);
    border-radius: 10px;
    background: #fff;
    font-size: 14px;
    padding: 0 14px;
    width: 100%;
    transition:
      border-color 0.2s,
      box-shadow 0.2s;
  }

  .mif-form .form-control:focus {
    outline: none;
    border-color: var(--gold, #d91e6e);
    box-shadow: 0 0 0 3px rgba(217, 30, 110, 0.12);
  }

  .mif-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 48px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(
      135deg,
      var(--gold, #d91e6e),
      var(--gold-light, #ff5a8a)
    );
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 4px;
    transition:
      transform 0.2s,
      box-shadow 0.2s;
  }

  .mif-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(217, 30, 110, 0.3);
  }

  .mif-submit i {
    font-size: 16px;
  }
}

/* ---- Modal ---- */
.modal-enquire {
  border: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

.modal-enquire .modal-header {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 24px 28px;
}

.modal-enquire .modal-header .modal-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
}

.modal-enquire .modal-header p {
  font-size: 13px;
  opacity: 0.6;
  margin: 4px 0 0;
}

.modal-enquire .modal-header .btn-close {
  filter: invert(1);
  opacity: 0.5;
}

.modal-enquire .modal-header .btn-close:hover {
  opacity: 1;
}

.modal-enquire .modal-body {
  padding: 28px;
}

.modal-enquire .form-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 5px;
  letter-spacing: 0.5px;
}

.modal-enquire .form-control {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  font-family: var(--font-body);
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
}

.modal-enquire .form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(217, 30, 110, 0.12);
}

.modal-enquire .input-group-text {
  background: var(--off-white);
  border-color: var(--border);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

/* ---- Success State ---- */
.form-success {
  display: none;
  text-align: center;
  padding: 36px 20px;
}

.form-success i {
  font-size: 48px;
  color: #377f49;
  margin-bottom: 16px;
  display: block;
}

.form-success h5 {
  color: var(--text-dark);
  margin-bottom: 8px;
  font-size: 1.3rem;
}

.form-success p {
  color: var(--text-body);
  font-size: 14px;
  line-height: 1.7;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1199.98px) {
  .content-block h2 {
    font-size: 2.2rem;
  }

  .cta-inner h2 {
    font-size: 2rem;
  }
}

@media (max-width: 991.98px) {
  .section-block {
    padding: 80px 0;
  }

  .hero-logo {
    max-width: 220px;
  }

  .hero-center h1 {
    font-size: 1.8rem;
  }

  .hero-bar-item {
    padding: 14px 16px;
  }

  .hero-bar-value {
    font-size: 13px;
  }

  .plans-title {
    max-width: 100%;
    font-size: 2rem;
  }

  .mana-contact-title {
    font-size: 50px;
  }

  .project-info-bar {
    margin-top: 0;
  }

  .project-info-inner {
    width: 100%;
  }

  .project-info-item {
    padding: 18px 12px;
  }

  .project-info-value {
    font-size: 1rem;
  }

  .project-info-label {
    font-size: 1rem;
  }

  .highlights-section {
    margin-top: 40px;
    padding: 80px 0;
  }

  .highlights-swiper-wrap {
    width: 95%;
  }

  .highlights-title {
    max-width: 100%;
    font-size: 2rem;
  }

  .highlight-slide {
    padding: 30px 30px 80px;
    min-height: 450px;
  }

  .highlight-slide-content {
    width: 60%;
  }

  .about-form-card {
    position: static;
  }

  .content-block h2 {
    font-size: 2rem;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .trust-item::after {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .section-block {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .hero-bg {
    background-position: center 30%;
  }

  .hero-bg-img {
    object-position: center 30%;
  }

  .hero-tag {
    font-size: 10px;
    padding: 5px 12px;
  }

  .hero-logo {
    max-width: 160px;
  }

  .hero-center h1 {
    font-size: 1.4rem;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
  }

  .hero-sub {
    font-size: 10px;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
  }

  .hero-usps {
    gap: 4px 12px;
    margin-bottom: 20px;
  }

  .hero-usp {
    font-size: 10px;
  }

  .hero-cta-btn span {
    font-size: 11px;
    letter-spacing: 2px;
  }

  .hero-cta-icon {
    width: 36px;
    height: 36px;
  }

  .project-info-bar {
    margin-top: 0;
  }

  .project-info-inner {
    width: 100%;
  }

  .project-info-item {
    flex: 1 1 100%;
    padding: 18px 14px;
    border-right: 1px solid rgba(45, 14, 63, 0.2);
    border-bottom: 1px solid rgba(45, 14, 63, 0.2);
  }

  .project-info-item:nth-child(2) {
    border-right: none;
  }

  .project-info-item:nth-child(4) {
    border-right: none;
  }

  .project-info-item:nth-child(4) {
    border-bottom: none;
  }

  .project-info-label {
    font-size: 0.95rem;
    letter-spacing: 1.5px;
  }

  .project-info-value {
    font-size: 1rem;
    word-break: break-all;
  }

  .project-info-icon svg {
    width: 20px;
    height: 20px;
  }

  .hero-bar {
    flex-wrap: wrap;
  }

  .hero-bar-item {
    flex: 1 1 50%;
    padding: 12px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .hero-bar-item:nth-child(odd)::after {
    display: block;
  }

  .hero-bar-item:nth-child(even)::after {
    display: none;
  }

  .hero-bar-item:nth-child(n + 3) {
    border-bottom: none;
  }

  .hero-bar-label {
    font-size: 8px;
    letter-spacing: 1.5px;
  }

  .hero-bar-value {
    font-size: 12px;
  }

  .about-form-header {
    padding: 22px 24px;
  }

  .about-form-header h3 {
    font-size: 1.3rem;
  }

  .about-form {
    padding: 22px 24px 26px;
  }

  .content-block h2 {
    font-size: 1.7rem;
  }

  .trust-strip-inner {
    flex-direction: column;
  }

  .trust-item {
    padding: 14px 20px;
    min-width: 100%;
    justify-content: flex-start;
    font-size: 12px;
  }

  .trust-item::after {
    display: none;
  }

  .mana-footer {
    padding: 50px 0 96px;
  }

  .mana-footer-top {
    padding-bottom: 36px;
  }

  .mana-footer-logo {
    height: 48px;
  }

  .mana-footer-bottom {
    padding: 20px 0;
  }

  .mana-footer-bottom .text-lg-end {
    text-align: left !important;
  }

  .mana-footer-copyright {
    font-size: 0.66rem;
    margin-bottom: 12px;
  }

  .mana-footer-policy {
    justify-content: flex-start;
    gap: 12px 20px;
  }

  .whatsapp-btn {
    display: none;
  }

  .gallery-heading-wrap h2 {
    font-size: 8vw;
  }

  .gallery-section .nav-tabs {
    gap: 6px;
    flex-wrap: wrap;
  }

  .gallery-section .nav-tabs .nav-link {
    font-size: 11px;
    padding: 8px 16px;
    letter-spacing: 0.5px;
  }

  .gal_img img {
    height: auto;
  }

  .amenity-image img {
    height: 260px;
  }

  .cta-inner {
    padding: 50px 24px;
    margin: 60px 0;
    border-radius: var(--radius);
  }

  .cta-inner h2 {
    font-size: 1.7rem;
  }

  .highlights-section {
    padding: 50px 0;
    margin-top: 20px;
  }

  .highlights-swiper-wrap {
    width: 100%;
  }

  .highlights-header {
    margin-bottom: 30px;
  }

  .highlights-title {
    font-size: 1.4rem;
    max-width: 100%;
  }

  .highlight-slide {
    padding: 24px 20px 80px;
    min-height: 360px;
  }

  .highlight-slide-content {
    width: 100%;
  }

  .highlight-slide-title {
    font-size: 1.3rem;
    margin-bottom: 14px;
  }

  .highlight-slide-desc {
    font-size: 13px;
    line-height: 1.6;
  }

  .highlight-slide-overlay {
    background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0.4) 50%,
      rgba(0, 0, 0, 0.1) 100%
    );
  }

  .counter-current {
    font-size: 32px;
    top: -10px;
  }

  .counter-line {
    width: 20px;
  }

  .counter-total {
    font-size: 12px;
  }

  .highlight-slide-counter {
    bottom: 16px;
    right: 16px;
  }

  .counter-current {
    font-size: 36px;
  }

  .mana-contact-section {
    margin-top: 40px;
    padding: 30px 10px;
  }

  .mana-contact-inner {
    flex-direction: column;
  }

  .mana-contact-left {
    width: 100%;
    padding: 40px 20px;
  }

  .mana-contact-right {
    width: 100%;
  }

  .mana-contact-title {
    font-size: 36px;
  }

  .mana-contact-subtitle {
    font-size: 18px;
  }

  .plans-section {
    margin-top: 40px;
  }

  .plans-title {
    max-width: 100%;
    font-size: 1.6rem;
  }

  .mana-plans-tabs {
    justify-content: center;
  }

  .mana-plans-tabs-right {
    column-gap: 30px;
  }

  .mana-plan-image img {
    height: auto;
  }

  .mana-plans-images {
    padding: 20px 20px 80px 20px;
  }

  .mana-plan-cta {
    right: 50%;
    transform: translateX(50%);
  }

  .amenity-tab {
    padding: 9px 18px;
    font-size: 10px;
    letter-spacing: 1px;
  }

  .navbar .nav-link {
    padding: 10px 0 !important;
    letter-spacing: 1.5px;
  }

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

  /* Hide Download Brochure button on mobile */
  .navbar-cta-wrap {
    display: none !important;
  }

  /* Off-canvas slide-in from right */
  .navbar-collapse {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    padding: 80px 24px 32px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 1050;
    display: block !important;
    overflow-y: auto;
  }

  .navbar-collapse.show {
    transform: translateX(0);
  }

  .navbar-collapse.collapsing {
    transform: translateX(100%);
    transition: transform 0.35s ease;
  }

  .navbar-collapse.collapsing.show {
    transform: translateX(0);
  }

  /* Close button inside mobile menu */
  .navbar-collapse .mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
  }

  .navbar-collapse .nav-link {
    color: var(--text-dark) !important;
    font-size: 1rem;
    padding: 12px 0 !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  /* Keep toggler visible when menu is open */
  .navbar-toggler[aria-expanded="true"] {
    display: none !important;
  }

  .navbar:has(.navbar-collapse.show) .navbar-brand img,
  .navbar:has(.navbar-collapse.collapsing) .navbar-brand img {
    filter: none;
  }

  .navbar:has(.navbar-collapse.show) .toggler-icon-bar,
  .navbar:has(.navbar-collapse.collapsing) .toggler-icon-bar {
    background: var(--text-dark);
  }

  .navbar:has(.navbar-collapse.show) .navbar-phone a,
  .navbar:has(.navbar-collapse.collapsing) .navbar-phone a {
    border-color: var(--primary);
    color: var(--primary);
  }
}

@media (max-width: 575.98px) {
  .section-block {
    padding: 48px 0;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .content-block h2 {
    font-size: 1.5rem;
  }

  .section-label {
    font-size: 10px;
    letter-spacing: 2px;
  }

  .loc-title-wrap h2 {
    font-size: 8vw;
  }

  .loc-section .accordion-button p {
    font-size: 15px;
  }

  .loc-section .accordion-body p {
    font-size: 13px;
  }

  .loc-section iframe {
    margin-top: 30px;
  }

  .btn-submit {
    padding: 14px 24px;
    font-size: 12px;
    letter-spacing: 1.5px;
  }
}

/* Tablet landscape fine-tuning */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-form-card {
    max-width: 480px;
    margin: 0 auto;
  }
}

/* ============================================================
   Our Projects — compact brochure renders (portrait pages)
   Overrides .mana-plans-images defaults so the tall PDF page
   images stay within a comfortable visual frame.
   ============================================================ */
.mana-plans-images.projects-compact {
  padding: 32px;
  background: #f7f5f2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 560px;
}

.mana-plans-images.projects-compact .mana-plan-image {
  width: 100%;
  text-align: center;
}

.mana-plans-images.projects-compact .mana-plan-image img {
  max-width: 380px;
  max-height: 520px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: none;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

@media (max-width: 767.98px) {
  .mana-plans-images.projects-compact {
    padding: 20px;
    min-height: 420px;
  }
  .mana-plans-images.projects-compact .mana-plan-image img {
    max-width: 260px;
    max-height: 380px;
  }
}

/* ============================================================
   Our Projects — responsive tabs for mobile
   Stack 3 long tab labels (Obliq / Tangent / Nova Ark) as pill
   chips that wrap cleanly on narrow screens.
   ============================================================ */
@media (max-width: 767.98px) {
  .mana-plans-tabs {
    justify-content: center;
  }

  .mana-plans-tabs-right {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 8px;
    row-gap: 10px;
    margin-bottom: 28px;
    padding-bottom: 4px;
    border-bottom: none;
    white-space: normal;
    overflow-x: visible;
    width: 100%;
  }

  .mana-plan-tab {
    flex: 0 0 auto;
    padding: 8px 14px;
    font-size: 10px;
    letter-spacing: 1px;
    border: 1px solid rgba(45, 14, 63, 0.2);
    border-radius: 999px;
    text-align: center;
    line-height: 1.2;
    white-space: nowrap;
  }

  .mana-plan-tab.active {
    background: #1e0b2c;
    color: #fff !important;
    border-color: #1e0b2c;
  }

  .mana-plan-tab.active::after {
    display: none;
  }
}

@media (max-width: 380px) {
  .mana-plan-tab {
    font-size: 9px;
    padding: 7px 10px;
    letter-spacing: 0.5px;
  }
}

/* ============================================================
   Hero CTA — bottom-positioned pill (Today Group cover image)
   The hero background is the PDF cover which already carries
   the headline "WHERE PURPOSE FINDS MOMENTUM" and city names.
   Place the CTA below the image text area with a backdrop so
   it stays legible over any image pixels.
   ============================================================ */
.hero-center.hero-center--bottom {
  top: auto;
  bottom: 40px;
  transform: translateX(-50%);
  width: auto;
  max-width: 90%;
}

.hero-cta-btn.hero-cta-btn--pill {
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 10px 14px 10px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

@media (max-width: 767.98px) {
  .hero-center.hero-center--bottom {
    bottom: 24px;
  }
  .hero-cta-btn.hero-cta-btn--pill {
    padding: 8px 12px 8px 18px;
  }
}

/* ============================================================
   Hero image crop on mobile — avoid CTA/image-text overlap
   The PDF cover has "AIROLI | JUINAGAR | NERUL" at the bottom
   edge. On narrow screens that text landed right behind the
   Enquire Now pill. Anchor the image to the top on mobile so
   the bottom text is cropped below the fold, and add a dark
   gradient at the bottom so the CTA reads cleanly.
   ============================================================ */
@media (max-width: 767.98px) {
  .hero-bg-img {
    object-position: center top;
  }

  .hero-section::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 180px;
    background: linear-gradient(
      to bottom,
      rgba(44, 18, 54, 0) 0%,
      rgba(44, 18, 54, 0.85) 100%
    );
    z-index: 2;
    pointer-events: none;
  }

  .hero-center.hero-center--bottom {
    bottom: 28px;
  }
}

/* ============================================
   Tangent Spotlight — Immersive Luxury (Light)
   ============================================ */
.tangent-spotlight {
  position: relative;
  padding: 120px 0 110px;
  background:
    radial-gradient(
      ellipse at 10% 0%,
      rgba(217, 30, 110, 0.08),
      transparent 55%
    ),
    radial-gradient(
      ellipse at 90% 100%,
      rgba(74, 29, 110, 0.08),
      transparent 60%
    ),
    linear-gradient(180deg, #fdfaf7 0%, #f6f1ec 50%, #fbf7f3 100%);
  color: var(--text-dark);
  isolation: isolate;
  overflow: hidden;
}

.tangent-spotlight::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30, 11, 44, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 11, 44, 0.035) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.8;
  mask-image: radial-gradient(ellipse at center, #000 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    #000 40%,
    transparent 80%
  );
  pointer-events: none;
  z-index: 0;
}

.tangent-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(120px, 22vw, 320px);
  letter-spacing: 0.02em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(217, 30, 110, 0.1);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

.tangent-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
}

.tangent-glow--top {
  top: -160px;
  right: -100px;
  background: radial-gradient(
    circle,
    rgba(217, 30, 110, 0.35),
    transparent 70%
  );
}

.tangent-glow--bottom {
  bottom: -180px;
  left: -120px;
  background: radial-gradient(circle, rgba(74, 29, 110, 0.28), transparent 70%);
}

.tangent-container {
  position: relative;
  z-index: 2;
}

.tangent-grid {
  position: relative;
}

/* Media Column */
.tangent-media-col {
  position: relative;
}

.tangent-media {
  position: relative;
  height: 100%;
  min-height: 620px;
  padding-right: 30px;
}

.tangent-media-frame {
  position: relative;
  height: 100%;
  min-height: 620px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(217, 30, 110, 0.25);
  transform: perspective(1400px) rotateY(2deg);
  transition: transform 0.6s ease;
}

.tangent-media-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(
    180deg,
    rgba(217, 30, 110, 0.6),
    rgba(217, 30, 110, 0)
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 3;
}

.tangent-media-frame:hover {
  transform: perspective(1400px) rotateY(0deg) translateY(-4px);
}

.tangent-media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tangent-media-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 45%, rgba(18, 5, 24, 0.75) 100%),
    linear-gradient(90deg, rgba(18, 5, 24, 0.35), transparent 35%);
  pointer-events: none;
}

/* Floating badge on the tower render */
.tangent-media-badge {
  position: absolute;
  left: -20px;
  top: 40px;
  background: rgba(18, 5, 24, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(217, 30, 110, 0.35);
  padding: 18px 22px;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 220px;
}

.tangent-badge-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
}

.tangent-badge-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
}

.tangent-badge-location {
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2px;
}

/* Stat plate at bottom of render */
.tangent-media-stat {
  position: absolute;
  right: 10px;
  bottom: 30px;
  background: linear-gradient(
    135deg,
    rgba(217, 30, 110, 0.95),
    rgba(74, 29, 110, 0.95)
  );
  padding: 20px 26px;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(217, 30, 110, 0.3);
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 180px;
}

.tangent-stat-num {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.tangent-stat-unit {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 2px;
}

.tangent-stat-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  padding-top: 8px;
}

/* Content Column */
.tangent-content-col {
  display: flex;
  align-items: center;
  padding-left: 20px;
}

.tangent-content {
  width: 100%;
}

.tangent-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.tangent-eyebrow-line {
  width: 48px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

.tangent-eyebrow-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
}

.tangent-heading {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(38px, 4.2vw, 62px);
  line-height: 1.05;
  color: var(--primary-dark);
  margin-bottom: 22px;
  letter-spacing: -0.01em;
}

.tangent-heading em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(
    90deg,
    var(--gold) 0%,
    var(--gold-light) 60%,
    var(--primary) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.tangent-lede {
  font-size: 15.5px;
  line-height: 2;
  color: rgba(30, 11, 44, 0.7);
  margin-bottom: 36px;
  max-width: 540px;
  letter-spacing: 0.5px;
}

/* Features list — numbered, elegant */
.tangent-features {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.tangent-feature {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding: 18px 0;
  border-top: 1px solid rgba(30, 11, 44, 0.1);
  transition:
    padding-left 0.35s ease,
    background 0.35s ease;
  position: relative;
}

.tangent-feature:last-child {
  border-bottom: 1px solid rgba(30, 11, 44, 0.1);
}

.tangent-feature::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 28px;
  background: linear-gradient(180deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  transition: width 0.35s ease;
}

.tangent-feature:hover {
  padding-left: 18px;
  background: linear-gradient(90deg, rgba(217, 30, 110, 0.06), transparent);
}

.tangent-feature:hover::before {
  width: 3px;
}

.tangent-feature-num {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.02em;
  flex-shrink: 0;
  min-width: 36px;
  padding-top: 2px;
}

.tangent-feature-body h3 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--primary-dark);
  margin: 0 0 10px;
  letter-spacing: 0.01em;
}

.tangent-feature-body p {
  font-size: 13.5px;
  line-height: 2;
  color: rgba(30, 11, 44, 0.55);
  margin: 0;
}

/* Partners row */
.tangent-partners-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 18px 22px;
  margin-bottom: 28px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(30, 11, 44, 0.08);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(30, 11, 44, 0.05);
}

.tangent-partners-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(30, 11, 44, 0.5);
}

.tangent-partners-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tangent-chip {
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--primary-dark);
  background: rgba(217, 30, 110, 0.08);
  border: 1px solid rgba(217, 30, 110, 0.25);
  border-radius: 20px;
  transition: all 0.25s ease;
}

.tangent-chip:hover {
  background: rgba(217, 30, 110, 0.15);
  border-color: var(--gold);
  color: var(--gold);
}

/* CTA row */
.tangent-cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.tangent-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 28px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  box-shadow: 0 12px 30px rgba(217, 30, 110, 0.4);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tangent-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tangent-cta:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(217, 30, 110, 0.55);
}

.tangent-cta:hover::before {
  opacity: 1;
}

.tangent-cta span {
  position: relative;
  z-index: 1;
}

.tangent-cta-icon {
  position: relative;
  z-index: 1;
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.tangent-cta:hover .tangent-cta-icon {
  transform: translateX(4px) rotate(-10deg);
}

.tangent-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(30, 11, 44, 0.65);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.25s ease;
}

.tangent-cta-link i {
  color: var(--gold);
}

.tangent-cta-link:hover {
  color: var(--primary-dark);
}

/* Responsive */
@media (max-width: 1199px) {
  .tangent-media {
    padding-right: 0;
  }

  .tangent-content-col {
    padding-left: 0;
    margin-top: 60px;
  }
}

@media (max-width: 991px) {
  .tangent-spotlight {
    padding: 80px 0 70px;
  }

  .tangent-media,
  .tangent-media-frame {
    min-height: 480px;
  }

  .tangent-media-frame {
    transform: none;
  }

  .tangent-media-badge {
    left: 12px;
    top: 20px;
    padding: 14px 18px;
    min-width: 0;
  }

  .tangent-badge-title {
    font-size: 22px;
  }

  .tangent-media-stat {
    right: 12px;
    bottom: 20px;
    padding: 14px 20px;
    min-width: 0;
  }

  .tangent-stat-num {
    font-size: 32px;
  }

  .tangent-content-col {
    margin-top: 48px;
  }

  .tangent-bg-text {
    font-size: clamp(100px, 28vw, 180px);
  }
}

@media (max-width: 575px) {
  .tangent-spotlight {
    padding: 60px 0 56px;
  }

  .tangent-media,
  .tangent-media-frame {
    min-height: 380px;
  }

  .tangent-feature {
    gap: 16px;
    padding: 14px 0;
  }

  .tangent-feature-num {
    font-size: 18px;
    min-width: 28px;
  }

  .tangent-cta-row {
    gap: 14px;
  }

  .tangent-cta {
    padding: 14px 22px;
    font-size: 12px;
  }
}

/* ============================================
   Architectural Plans — Modern / Luxury
   ============================================ */
.arch-section {
  position: relative;
  padding: 110px 0 100px;
  margin-top: 0;
  background:
    radial-gradient(
      ellipse at 0% 0%,
      rgba(217, 30, 110, 0.06),
      transparent 50%
    ),
    radial-gradient(
      ellipse at 100% 100%,
      rgba(74, 29, 110, 0.06),
      transparent 55%
    ),
    linear-gradient(180deg, #ffffff 0%, #faf6f2 60%, #f4edf3 100%);
  isolation: isolate;
  overflow: hidden;
}

.arch-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30, 11, 44, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 11, 44, 0.035) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    #000 30%,
    transparent 75%
  );
  pointer-events: none;
  z-index: 0;
}

.arch-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

.arch-glow--a {
  top: -130px;
  left: -100px;
  background: radial-gradient(
    circle,
    rgba(217, 30, 110, 0.35),
    transparent 70%
  );
}

.arch-glow--b {
  bottom: -140px;
  right: -80px;
  background: radial-gradient(circle, rgba(74, 29, 110, 0.3), transparent 70%);
}

.arch-container {
  position: relative;
  z-index: 2;
}

/* Left intro column */
.arch-intro {
  padding-top: 14px;
}

.arch-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.arch-eyebrow-line {
  width: 48px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

.arch-eyebrow-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
}

.arch-heading {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(34px, 3.6vw, 52px);
  line-height: 1.1;
  color: var(--primary-dark);
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}

.arch-heading em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(
    90deg,
    var(--gold),
    var(--gold-light) 60%,
    var(--primary)
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.arch-lede {
  font-size: 15px;
  line-height: 2;
  color: rgba(30, 11, 44, 0.68);
  margin-bottom: 34px;
  max-width: 460px;
  letter-spacing: 0.5px;
}

/* Pill tabs (reusing .mana-plan-tab so the existing JS keeps switching) */
.arch-pills {
  display: block;
  margin-bottom: 32px;
}

.arch-pills-row {
  display: inline-flex;
  column-gap: 8px;
  margin-bottom: 0;
  padding: 6px;
  border: 1px solid rgba(30, 11, 44, 0.08);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 16px rgba(30, 11, 44, 0.06);
  overflow-x: visible;
  white-space: nowrap;
  justify-content: flex-start;
  border-bottom: 1px solid rgba(30, 11, 44, 0.08);
}

.arch-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border: 0;
  background: transparent;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(30, 11, 44, 0.6);
  cursor: pointer;
  transition: all 0.3s ease;
  padding-bottom: 10px;
}

.arch-pill i {
  font-size: 14px;
  color: var(--gold);
  transition: color 0.3s ease;
}

.arch-pill:hover {
  color: var(--primary-dark);
}

/* Override the default .mana-plan-tab.active underline — we want a filled pill instead */
.arch-pill.active {
  color: #fff !important;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  box-shadow: 0 8px 20px rgba(217, 30, 110, 0.35);
}

.arch-pill.active i {
  color: #fff;
}

.arch-pill.active::after {
  display: none !important;
}

/* Stats grid */
.arch-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 8px;
}

.arch-stat {
  position: relative;
  padding: 22px 18px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(30, 11, 44, 0.08);
  border-radius: 14px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(30, 11, 44, 0.04);
  transition: all 0.3s ease;
  overflow: hidden;
}

.arch-stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), var(--gold-light));
  opacity: 0.8;
}

.arch-stat:hover {
  transform: translateY(-4px);
  border-color: rgba(217, 30, 110, 0.3);
  box-shadow: 0 12px 30px rgba(217, 30, 110, 0.12);
}

.arch-stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
  color: var(--primary-dark);
  letter-spacing: -0.01em;
}

.arch-stat-label {
  display: block;
  margin-top: 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(30, 11, 44, 0.55);
}

/* Right stage (plan preview) */
.arch-stage {
  position: relative;
}

.arch-stage-frame {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(135deg, #fff 0%, #f5eff3 100%);
  border: 1px solid rgba(30, 11, 44, 0.08);
  box-shadow:
    0 30px 60px rgba(30, 11, 44, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  padding: 0;
}

.arch-stage-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(217, 30, 110, 0.35),
    rgba(74, 29, 110, 0.1) 50%,
    rgba(217, 30, 110, 0)
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 3;
}

/* Override the old .mana-plans-images when nested in our stage */
.arch-plans-images {
  position: relative;
  background: transparent !important;
  padding: 64px 56px !important;
  border-radius: 22px;
  text-align: center;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arch-plan-image {
  display: none;
  width: 100%;
}

.arch-plan-image.active {
  display: block;
  animation: archFade 0.5s ease;
}

@keyframes archFade {
  from {
    opacity: 0;
    transform: scale(0.98);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.arch-plan-image img {
  max-width: 100%;
  max-height: 440px;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
  filter: blur(4px) saturate(0.8);
  opacity: 0.85;
}

/* Lock overlay with CTA */
.arch-plan-lock {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.65) 100%
  );
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  pointer-events: none;
}

.arch-plan-lock > * {
  pointer-events: auto;
}

.arch-lock-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  margin-bottom: 18px;
  box-shadow: 0 14px 30px rgba(217, 30, 110, 0.4);
}

.arch-lock-title {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 600;
  color: var(--primary-dark);
  margin: 0 0 22px;
  max-width: 420px;
}

.arch-lock-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 26px;
  background: var(--primary-dark);
  color: #fff;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 24px rgba(30, 11, 44, 0.25);
}

.arch-lock-cta:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(217, 30, 110, 0.4);
}

.arch-lock-cta-icon {
  width: 26px;
  height: 26px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.arch-lock-cta:hover .arch-lock-cta-icon {
  transform: translateX(4px) rotate(-10deg);
}

/* Caption below stage */
.arch-stage-caption {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding-left: 6px;
}

.arch-caption-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(217, 30, 110, 0.15);
  flex-shrink: 0;
}

.arch-caption-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.8px;
  color: rgba(30, 11, 44, 0.6);
}

/* Responsive */
@media (max-width: 991px) {
  .arch-section {
    padding: 72px 0 60px;
  }

  .arch-intro {
    padding-top: 0;
    margin-bottom: 20px;
  }

  .arch-plans-images {
    padding: 36px 24px !important;
    min-height: 420px;
  }

  .arch-lock-title {
    font-size: 22px;
  }

  .arch-stat {
    padding: 18px 14px;
  }

  .arch-stat-num {
    font-size: 24px;
  }
}

@media (max-width: 575px) {
  .arch-pills-row {
    padding: 5px;
  }

  .arch-pill {
    padding: 9px 16px;
    font-size: 11.5px;
    letter-spacing: 1px;
  }

  .arch-pill i {
    font-size: 13px;
  }

  .arch-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .arch-stat {
    padding: 14px 10px;
  }

  .arch-stat-num {
    font-size: 20px;
  }

  .arch-stat-label {
    font-size: 9px;
    letter-spacing: 1.2px;
  }

  .arch-plans-images {
    padding: 30px 16px !important;
    min-height: 380px;
  }

  .arch-lock-icon {
    width: 48px;
    height: 48px;
    font-size: 18px;
    margin-bottom: 12px;
  }

  .arch-lock-title {
    font-size: 19px;
    margin-bottom: 18px;
  }

  .arch-lock-cta {
    padding: 12px 22px;
    font-size: 11.5px;
  }
}

/* ============================================
   Location Advantage — Minimal Editorial
   ============================================ */
.locadv {
  position: relative;
  padding: 90px 0 90px !important;
  background: #ffffff;
}

.locadv-glow {
  display: none;
}

.locadv-container {
  position: relative;
}

/* Header */
.locadv-header {
  max-width: 760px;
  margin: 0 auto 48px;
}

.locadv-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.locadv-eyebrow-line {
  width: 36px;
  height: 1px;
  background: var(--gold);
}

.locadv-eyebrow-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--gold);
}

.locadv-heading {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.15;
  color: var(--primary-dark);
  margin: 0 0 14px;
}

.locadv-heading em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.locadv-lede {
  font-size: 15px;
  line-height: 2;
  color: rgba(30, 11, 44, 0.6);
  max-width: 600px;
  margin: 0 auto;
  letter-spacing: 0.5px;
}

/* Accordion */
.locadv-accordion {
  display: flex;
  flex-direction: column;
  --bs-accordion-btn-focus-box-shadow: none;
  --bs-accordion-border-color: transparent;
  --bs-accordion-active-bg: transparent;
  --bs-accordion-active-color: inherit;
  --bs-accordion-btn-bg: transparent;
  --bs-accordion-btn-color: inherit;
}

.locadv-item {
  background: transparent !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(30, 11, 44, 0.1) !important;
  border-radius: 0 !important;
  overflow: hidden;
}

.locadv-item:first-child {
  border-top: 1px solid rgba(30, 11, 44, 0.1) !important;
}

/* Button (header) */
.locadv-btn,
.locadv-btn:not(.collapsed) {
  background: transparent !important;
  color: var(--primary-dark) !important;
  box-shadow: none !important;
  padding: 22px 4px !important;
  border: 0 !important;
  border-radius: 0 !important;
  display: flex !important;
  align-items: center;
  gap: 18px;
  width: 100%;
  text-align: left;
}

.locadv-btn::after {
  display: none !important;
  content: none !important;
  background-image: none !important;
}

.locadv-num {
  flex-shrink: 0;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  color: var(--gold);
  width: 32px;
  letter-spacing: 1px;
}

.locadv-title-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.locadv-item-name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--primary-dark);
  line-height: 1.2;
}

.locadv-item-loc {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: rgba(30, 11, 44, 0.5);
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.locadv-item-loc i {
  font-size: 11px;
  color: var(--gold);
}

.locadv-arrow {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(30, 11, 44, 0.45);
  font-size: 13px;
  transition:
    transform 0.35s ease,
    color 0.25s ease;
}

.locadv-btn:hover .locadv-arrow,
.locadv-btn:hover .locadv-item-name {
  color: var(--gold);
}

.locadv-btn:not(.collapsed) .locadv-arrow {
  transform: rotate(180deg);
  color: var(--gold);
}

.locadv-btn:not(.collapsed) .locadv-item-name {
  color: var(--gold);
}

/* Body */
.locadv-accordion-body {
  padding: 0 4px 24px 54px !important;
}

.locadv-list {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
}

.locadv-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
}

.locadv-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 14px;
}

.locadv-place {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
  color: rgba(30, 11, 44, 0.78);
  line-height: 1.5;
  min-width: 0;
}

.locadv-dist {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.3px;
}

/* Size line */
.locadv-size {
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px dashed rgba(30, 11, 44, 0.14);
  display: flex;
  align-items: center;
  gap: 10px;
}

.locadv-size i {
  color: var(--gold);
  font-size: 14px;
  flex-shrink: 0;
}

.locadv-size span {
  font-size: 13px;
  font-weight: 500;
  color: rgba(30, 11, 44, 0.72);
}

/* Corporate address */
.locadv-address {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}

.locadv-address i {
  font-size: 16px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.locadv-address span {
  font-size: 14px;
  color: rgba(30, 11, 44, 0.78);
  line-height: 1.6;
}

.locadv-web {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: color 0.25s ease;
  padding-bottom: 2px;
  border-bottom: 1px solid currentColor;
}

.locadv-web:hover {
  color: var(--primary-dark);
}

.locadv-web i:first-child {
  font-size: 13px;
}

.locadv-web i:last-child {
  font-size: 10px;
  margin-left: 1px;
}

/* Map */
.locadv-map-wrap {
  position: relative;
  height: 100%;
  min-height: 440px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(30, 11, 44, 0.1);
}

.locadv-map-pin {
  display: none;
}

.locadv-map {
  width: 100%;
  height: 100%;
  min-height: 440px;
  border: 0;
  display: block;
  filter: grayscale(0.1);
}

/* Responsive */
@media (max-width: 991px) {
  .locadv {
    padding: 64px 0 64px !important;
  }

  .locadv-header {
    margin-bottom: 32px;
  }

  .locadv-map-wrap,
  .locadv-map {
    min-height: 360px;
  }

  .locadv-map-wrap {
    margin-top: 16px;
  }
}

@media (max-width: 575px) {
  .locadv-btn,
  .locadv-btn:not(.collapsed) {
    padding: 18px 2px !important;
    gap: 14px;
  }

  .locadv-num {
    width: 24px;
    font-size: 12px;
  }

  .locadv-item-name {
    font-size: 18px;
  }

  .locadv-item-loc {
    font-size: 11px;
  }

  .locadv-arrow {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .locadv-accordion-body {
    padding: 0 2px 20px 40px !important;
  }

  .locadv-row {
    gap: 10px;
    padding: 8px 0;
  }

  .locadv-place {
    font-size: 13px;
  }

  .locadv-dist {
    font-size: 11px;
  }

  .locadv-size span {
    font-size: 12px;
  }
}

/* ============================================
   Architectural Plans — Animations v2
   Fewer, bolder effects that actually land
   ============================================ */

/* Eyebrow line — draws in */
@keyframes archLineDraw {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 48px;
    opacity: 1;
  }
}

.arch-section.is-in .arch-eyebrow-line {
  animation: archLineDraw 0.9s cubic-bezier(0.76, 0, 0.24, 1) 0.1s both;
}

/* Split-word heading reveal — words slide up with blur clear, staggered */
.arch-heading .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(60%);
  filter: blur(10px);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.7s ease;
}

.arch-section.is-in .arch-heading .word {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.arch-heading em {
  font-style: italic;
}

.arch-heading em .word {
  background: linear-gradient(
    90deg,
    var(--gold),
    var(--gold-light) 60%,
    var(--primary)
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Lede — slide up after heading */
.arch-lede {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.8s ease 0.55s,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.55s;
}

.arch-section.is-in .arch-lede {
  opacity: 1;
  transform: translateY(0);
}

/* Pill group entrance */
.arch-pills {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.7s ease 0.7s,
    transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.7s;
}

.arch-section.is-in .arch-pills {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Sliding pill indicator ---- */
.arch-pills-row {
  position: relative;
}

.arch-pills-indicator {
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 0;
  width: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50px;
  box-shadow: 0 8px 20px rgba(217, 30, 110, 0.4);
  transition:
    transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1),
    width 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 0;
  pointer-events: none;
}

.arch-pill {
  position: relative;
  z-index: 1;
  transition:
    color 0.35s ease,
    transform 0.3s ease;
}

.arch-pill.active {
  background: transparent !important;
  box-shadow: none !important;
  animation: none !important;
}

.arch-pill:hover:not(.active) {
  transform: translateY(-1px);
}

/* Stat cards — lift hover, number pop handled in JS */
.arch-stat-num {
  display: inline-block;
  transform-origin: left bottom;
}

.arch-stat-num.is-pop {
  animation: archCountPop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes archCountPop {
  0% {
    transform: scale(1);
  }
  45% {
    transform: scale(1.18);
    color: var(--gold);
  }
  100% {
    transform: scale(1);
  }
}

.arch-stat:hover .arch-stat-num {
  transform: translateY(-2px) scale(1.04);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---- Stage: 3D tilt + cursor spotlight ---- */
.arch-stage {
  perspective: 1400px;
}

.arch-stage-frame {
  --mx: 50%;
  --my: 50%;
  --rx: 0deg;
  --ry: 0deg;
  position: relative;
  transform: rotateX(var(--rx)) rotateY(var(--ry)) translateZ(0);
  transform-style: preserve-3d;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.arch-stage-frame.is-tracking {
  transition: transform 0.15s ease-out;
}

/* Spotlight that follows the cursor across the stage */
.arch-stage-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: radial-gradient(
    420px circle at var(--mx) var(--my),
    rgba(217, 30, 110, 0.18),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 2;
}

.arch-stage-frame.is-tracking::after {
  opacity: 1;
}

/* Curtain reveal — plan image wipes into view */
.arch-plans-images {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.2s cubic-bezier(0.76, 0, 0.24, 1) 0.3s;
}

.arch-section.is-in .arch-plans-images {
  clip-path: inset(0 0 0 0);
}

/* Plan image fade stays, but no more ken-burns competing with tilt */
.arch-plan-image.active img {
  animation: archFade 0.5s ease;
}

/* ---- Lock icon: dramatic pulse + double ring ---- */
@keyframes archLockPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 14px 30px rgba(217, 30, 110, 0.4);
  }
  50% {
    transform: scale(1.08);
    box-shadow:
      0 20px 48px rgba(217, 30, 110, 0.6),
      0 0 0 12px rgba(217, 30, 110, 0.08);
  }
}

@keyframes archLockRing {
  0% {
    transform: scale(1);
    opacity: 0.9;
  }
  100% {
    transform: scale(2.3);
    opacity: 0;
  }
}

.arch-lock-icon {
  position: relative;
  animation: archLockPulse 2.4s ease-in-out infinite;
  transform-origin: center;
}

.arch-lock-icon::before,
.arch-lock-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(217, 30, 110, 0.6);
  animation: archLockRing 2.4s ease-out infinite;
  pointer-events: none;
}

.arch-lock-icon::after {
  animation-delay: 1.2s;
}

/* Lock title & CTA — fade up inside the overlay */
.arch-lock-title,
.arch-lock-cta {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.arch-section.is-in .arch-lock-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.2s;
}

.arch-section.is-in .arch-lock-cta {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.35s;
}

/* CTA — shine sweep on hover */
.arch-lock-cta {
  position: relative;
  overflow: hidden;
}

.arch-lock-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    110deg,
    transparent 0%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  transition: left 0.7s ease;
  pointer-events: none;
}

.arch-lock-cta:hover::before {
  left: 140%;
}

.arch-lock-cta span,
.arch-lock-cta .arch-lock-cta-icon {
  position: relative;
  z-index: 1;
}

/* Stat card stagger on section entry (replaces AOS for stats) */
.arch-stat {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.arch-section.is-in .arch-stat:nth-child(1) {
  transition-delay: 0.85s;
}

.arch-section.is-in .arch-stat:nth-child(2) {
  transition-delay: 0.97s;
}

.arch-section.is-in .arch-stat:nth-child(3) {
  transition-delay: 1.09s;
}

.arch-section.is-in .arch-stat {
  opacity: 1;
  transform: translateY(0);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .arch-heading .word,
  .arch-lede,
  .arch-pills,
  .arch-stat,
  .arch-lock-title,
  .arch-lock-cta,
  .arch-plans-images {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    clip-path: none !important;
    transition: none !important;
  }

  .arch-stage-frame,
  .arch-lock-icon,
  .arch-lock-icon::before,
  .arch-lock-icon::after,
  .arch-eyebrow-line,
  .arch-stat-num {
    animation: none !important;
    transition: none !important;
  }
}

/* ==========================================================
   RESPONSIVE SAFETY NET
   Global guards + per-section mobile fixes for the whole page
   ========================================================== */

/* --- Global overflow + sizing guards --- */
html,
body {
  overflow-x: hidden;
  max-width: 100vw;
}

img,
video,
iframe,
svg {
  max-width: 100%;
  height: auto;
}

/* Bootstrap containers respect viewport padding on mobile */
@media (max-width: 991.98px) {
  .container,
  .container-fluid {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 575.98px) {
  .container,
  .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* --- Hero --- */
@media (max-width: 767.98px) {
  .hero-center,
  .hero-center--bottom {
    width: 92%;
  }
}

/* --- Project Info Bar --- */
@media (max-width: 767.98px) {
  .project-info-bar {
    padding: 28px 0;
  }

  .project-info-inner {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 18px 16px;
    padding: 0 20px;
  }

  .project-info-item {
    flex: unset !important;
    min-width: 0 !important;
  }

  .project-info-value {
    font-size: 12px !important;
    line-height: 1.3;
  }

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

@media (max-width: 420px) {
  .project-info-inner {
    grid-template-columns: 1fr;
  }
}

/* --- About section --- */
@media (max-width: 991.98px) {
  #about .content-block h2 {
    font-size: clamp(26px, 6vw, 36px);
    line-height: 1.2;
  }

  #about .feature-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  #about .feature-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Tangent Spotlight --- */
@media (max-width: 767.98px) {
  .tangent-heading {
    font-size: clamp(28px, 7vw, 38px) !important;
  }

  .tangent-lede {
    font-size: 14px;
  }

  .tangent-features {
    margin-bottom: 24px;
  }

  .tangent-feature-body h3 {
    font-size: 14px;
  }

  .tangent-feature-body p {
    font-size: 12.5px;
  }

  .tangent-media,
  .tangent-media-frame {
    min-height: 360px;
  }

  .tangent-media-stat {
    padding: 10px 14px;
  }

  .tangent-stat-num {
    font-size: 24px !important;
  }
}

@media (max-width: 420px) {
  .tangent-partners-row {
    padding: 14px 14px;
    gap: 10px;
  }

  .tangent-partners-label {
    font-size: 9.5px;
    letter-spacing: 1.3px;
  }

  .tangent-chip {
    padding: 5px 10px;
    font-size: 11px;
  }

  .tangent-cta {
    width: 100%;
    justify-content: center;
  }
}

/* --- Architectural Plans --- */
@media (max-width: 991.98px) {
  .arch-heading {
    font-size: clamp(26px, 6vw, 40px) !important;
  }

  .arch-lede {
    font-size: 14px;
  }

  .arch-stats {
    gap: 10px;
  }
}

@media (max-width: 767.98px) {
  .arch-pills-row {
    display: flex;
    width: 100%;
  }

  .arch-pill {
    flex: 1;
    justify-content: center;
    padding: 9px 12px;
    font-size: 11.5px;
    letter-spacing: 1px;
  }

  .arch-pill i {
    display: none;
  }

  .arch-stage-frame {
    transform: none !important;
    animation: none !important;
  }

  .arch-plans-images {
    padding: 28px 16px !important;
    min-height: 360px;
  }

  .arch-lock-title {
    font-size: 19px;
  }

  .arch-lock-cta {
    padding: 12px 20px;
    font-size: 11.5px;
  }
}

@media (max-width: 420px) {
  .arch-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .arch-stat {
    padding: 12px 8px;
  }

  .arch-stat-num {
    font-size: 18px;
  }

  .arch-stat-label {
    font-size: 9px;
    letter-spacing: 1px;
  }
}

/* --- Highlights Swiper --- */
@media (max-width: 767.98px) {
  .highlights-section {
    padding: 60px 0;
  }

  .highlights-title {
    font-size: clamp(26px, 6vw, 36px);
    line-height: 1.2;
  }

  .highlight-slide-title {
    font-size: 24px !important;
  }

  .highlight-slide-desc {
    font-size: 13px !important;
  }
}

/* --- Gallery --- */
@media (max-width: 767.98px) {
  .gallery-section {
    padding: 60px 0 40px;
  }

  .gallery-heading-wrap h2 {
    font-size: clamp(26px, 6vw, 36px) !important;
  }

  .gallery-section .nav-tabs {
    flex-wrap: wrap;
    gap: 4px !important;
  }

  .gallery-section .nav-link {
    font-size: 12px;
    padding: 8px 14px;
  }
}

/* --- Location Advantage (editorial accordion) --- */
@media (max-width: 767.98px) {
  .locadv {
    padding: 56px 0 !important;
  }

  .locadv-header {
    margin-bottom: 28px;
  }

  .locadv-heading {
    font-size: clamp(24px, 6vw, 34px);
  }

  .locadv-lede {
    font-size: 14px;
  }

  .locadv-accordion-body {
    padding: 0 2px 18px 36px !important;
  }

  .locadv-item-name {
    font-size: 17px;
  }

  .locadv-item-loc {
    font-size: 11px;
  }

  .locadv-map-wrap,
  .locadv-map {
    min-height: 320px;
  }
}

@media (max-width: 420px) {
  .locadv-accordion-body {
    padding: 0 0 16px 0 !important;
  }

  .locadv-row {
    gap: 10px;
    padding: 10px 0;
  }

  .locadv-place {
    font-size: 13px;
  }

  .locadv-dist {
    font-size: 11px;
  }
}

/* --- Get in Touch --- */
@media (max-width: 991.98px) {
  .mana-contact-inner {
    flex-direction: column;
  }

  .mana-contact-left,
  .mana-contact-right {
    width: 100%;
    padding: 40px 24px;
  }
}

/* --- Footer --- */
@media (max-width: 767.98px) {
  .mana-footer {
    padding: 48px 0 24px;
  }

  .mana-footer-heading {
    font-size: 13px;
  }

  .mana-footer-copyright {
    font-size: 11px;
    line-height: 1.6;
  }
}

/* --- Modal (enquire) --- */
@media (max-width: 575.98px) {
  .modal-dialog {
    margin: 12px;
  }

  .modal-body {
    padding: 20px;
  }
}

/* --- Typography caps: nothing bigger than viewport on tiny phones --- */
@media (max-width: 360px) {
  h1,
  h2 {
    font-size: clamp(22px, 7vw, 30px) !important;
    line-height: 1.2 !important;
  }

  h3 {
    font-size: 18px !important;
  }

  body {
    font-size: 14px;
  }
}
