/* ================================================================
   TODAY COMMERCIAL SPACES – style.css
   Theme: Deep Purple + Magenta + Red Accent (from brochure)
   Fonts: Montserrat (headings) + Poppins (body)
================================================================ */

/* ── Futura font stack (used for OBLIQ branding) ───────────── */
.ff-futura {
  font-family: "Futura", "Century Gothic", "Jost", sans-serif;
  letter-spacing: 0.05em;
}

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --purple-dark: #1e0740;
  --purple-mid: #2d0854;
  --purple-base: #3b0f7a;
  --purple-light: #6b21a8;
  --magenta: #be185d;
  --magenta-light: #ec4899;
  --red-accent: #e53935;
  --red-light: #ff6b6b;
  --white: #ffffff;
  --off-white: #f8f0ff;
  --text-dark: #1a0530;
  --text-muted: #6b7280;
  --border-color: rgba(107, 33, 168, 0.15);

  --grad-brand: linear-gradient(135deg, #3b0f7a 0%, #6b21a8 50%, #be185d 100%);
  --grad-dark: linear-gradient(135deg, #1e0740 0%, #2d0854 60%, #3b0f7a 100%);
  --grad-hero: linear-gradient(
    110deg,
    rgba(30, 7, 64, 0.92) 0%,
    rgba(45, 8, 84, 0.75) 60%,
    rgba(30, 7, 64, 0.3) 100%
  );
  --grad-hero-blue: linear-gradient(
    110deg,
    rgba(13, 27, 80, 0.92) 0%,
    rgba(26, 54, 126, 0.75) 60%,
    rgba(13, 27, 80, 0.3) 100%
  );

  --navbar-h: 78px;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 8px 40px rgba(30, 7, 64, 0.12);
  --shadow-md: 0 16px 60px rgba(30, 7, 64, 0.18);
  --shadow-brand: 0 8px 32px rgba(190, 24, 93, 0.3);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  padding-right: 0px !important;
}

p {
  margin-bottom: 1rem;
  line-height: 1.75;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  -ms-scroll-chaining: none;
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  -webkit-transition: all 2s ease;
  transition: all 2s ease;
  background-color: #ffffff00;
}

body::-webkit-scrollbar {
  width: 9px;
  background-color: #ffffff00;
}

body::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
  background-color: #cfcfcf;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.005em;
  margin-bottom: 0.6rem;
}

a {
  text-decoration: none;
  color: inherit;
}
a:hover {
  color: inherit;
}
img {
  max-width: 100%;
}
address {
  font-style: normal;
}

/* ── Utility ───────────────────────────────────────────────── */
.btn-brand {
  background: var(--grad-brand);
  color: var(--white) !important;
  border: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  transition: var(--transition);
  box-shadow: var(--shadow-brand);
}
.btn-brand:hover,
.btn-brand:focus {
  background: linear-gradient(135deg, #4c1d95 0%, #7c3aed 50%, #db2777 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(190, 24, 93, 0.4);
  color: var(--white) !important;
}
.btn-brand:active {
  transform: translateY(0);
}

.btn-nav-outline {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  color: var(--white) !important;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  transition: var(--transition);
}

.offcanvas-start {
  z-index: 9999;
}

.btn-nav-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  color: var(--white) !important;
}

.btn-outline-banner {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: var(--white) !important;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  transition: var(--transition);
}
.btn-outline-banner:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
}

.btn-wa {
  background: #25d366;
  color: var(--white) !important;
  border: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  transition: var(--transition);
}
.btn-wa:hover {
  background: #128c7e;
  color: var(--white) !important;
  transform: translateY(-2px);
}

/* ── Brand Logo ─────────────────────────────────────────────── */
.brand-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-today {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 1.7rem;
  color: var(--white);
  letter-spacing: -0.02em;
}
.brand-today em {
  font-style: normal;
  color: var(--red-accent);
}
.brand-sub {
  font-size: 0.6rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
}
.footer-brand-today {
  font-size: 2rem;
}

/* ── Section Tags & Titles ──────────────────────────────────── */
.sec-tag {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--magenta);
  padding: 4px 14px;
  background: rgba(190, 24, 93, 0.08);
  border: 1px solid rgba(190, 24, 93, 0.2);
  border-radius: 100px;
  margin-bottom: 14px;
}
.sec-tag-light {
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.sec-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--purple-dark);
  line-height: 1.25;
  letter-spacing: 0.005em;
  margin-bottom: 0.5rem;
}
.sec-title strong {
  color: var(--purple-base);
  font-weight: 900;
}
.sec-title.text-white,
.sec-title.text-white strong {
  color: var(--white);
}

.sec-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 18px auto 0;
  line-height: 1.7;
}

.sec-text {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.85;
  letter-spacing: 0.01em;
  margin-bottom: 1.1rem;
}

/* ── General Section Spacing ────────────────────────────────── */
.sec {
  padding: 110px 0;
  position: relative;
}

/* ================================================================
   CUSTOM NAVBAR (ref: codenameedengarden.com)
================================================================ */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1050;
}

#navbar {
  transition: all 0.4s ease;
  padding: 0.65rem 4rem;
  background: #ffffff;
  border-bottom: 1px solid rgba(30, 7, 64, 0.08);
  box-shadow: 0 4px 20px rgba(30, 7, 64, 0.08);
}

#navbar.scrolled {
  background: #ffffff;
  border-bottom: 1px solid rgba(30, 7, 64, 0.12);
  box-shadow: 0 6px 24px rgba(30, 7, 64, 0.12);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: all 0.35s ease;
}

.navbar-container .navlogo {
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.35s ease;
}

.navbar-container .menu {
  display: none;
}

.navbar-container .menu a {
  color: var(--text-dark);
  display: flex;
  align-items: center;
  cursor: pointer;
}

.navbar-container .navlogo .navlogo-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  flex-wrap: nowrap;
  text-decoration: none;
}

.navbar-container .navlogo .logo,
.navbar-container .navlogo .nav-logo {
  transition: height 0.3s ease;
  width: auto;
  height: 60px;
  object-fit: contain;
  display: block;
  flex-shrink: 1;
  min-width: 0;
}

.navbar-container .navlogo .nav-logo-sep {
  display: inline-block;
  width: 1px;
  height: 32px;
  background: rgba(30, 7, 64, 0.18);
  flex-shrink: 0;
}

.navbar-container .navbar-links {
  display: flex;
  gap: 1.75rem;
  align-items: center;
}

.navbar-container .navbar-links .navbar-link .nav-link {
  color: var(--text-dark);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(0.95rem, 1.05vw, 1.05rem);
  font-weight: 600;
  white-space: nowrap;
  text-transform: capitalize;
  text-decoration: none;
  transition: var(--transition);
  padding: 0;
  letter-spacing: 0.02em;
}

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

.btn-contact {
  border: 1px solid var(--magenta);
  background: var(--magenta);
  color: var(--white) !important;
  white-space: nowrap;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  display: flex;
  padding: 0.6rem 1.3rem;
  font-size: clamp(0.78rem, 0.95vw, 0.9rem);
  justify-content: center;
  align-items: center;
  gap: 0.3rem;
  border-radius: 100px;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  animation: nav-pulse 2.5s infinite;
}

.btn-contact:hover {
  background: var(--purple-dark);
  border-color: var(--purple-dark);
  color: var(--white) !important;
}

@keyframes nav-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(190, 24, 93, 0.4);
  }
  100% {
    box-shadow: 0 0 0 15px rgba(190, 24, 93, 0);
  }
}

/* Shrink links as viewport narrows */
@media (max-width: 1400px) {
  #navbar {
    padding: 0.5rem 2.5rem;
  }
  .navbar-container .navbar-links {
    gap: 1.4rem;
  }
  .navbar-container .navbar-links .navbar-link .nav-link {
    font-size: clamp(0.88rem, 0.95vw, 0.98rem);
  }
  .navbar-container .navlogo .navlogo-lockup {
    gap: 12px;
  }
  .navbar-container .navlogo .logo,
  .navbar-container .navlogo .nav-logo {
    /* height: 40px; */
  }
  .navbar-container .navlogo .nav-logo-sep {
    height: 28px;
  }
}

@media (max-width: 1280px) {
  .navbar-container .navbar-links {
    gap: 1.1rem;
  }
  .navbar-container .navbar-links .navbar-link .nav-link {
    font-size: clamp(0.82rem, 0.85vw, 0.92rem);
  }
}

/* Hamburger kicks in */
@media (max-width: 1200px) {
  .navbar-container .menu {
    display: block;
  }
  .navbar-container .navbar-links {
    display: none !important;
  }
  #navbar {
    padding: 0.75rem 1.5rem;
  }
  .btn-contact {
    border: 1px solid var(--magenta);
    background: transparent;
    color: var(--magenta) !important;
    animation: none;
  }
  .btn-contact:hover {
    background: var(--magenta);
    color: var(--white) !important;
  }
}

@media (max-width: 767px) {
  #navbar {
    padding: 0.6rem 1rem;
  }
  .navbar-container .navlogo {
    gap: 0.65rem;
  }
  .navbar-container .navlogo .navlogo-lockup {
    gap: 8px;
  }
  .navbar-container .navlogo .logo,
  .navbar-container .navlogo .nav-logo {
    height: 45px;
  }
  .navbar-container .navlogo .nav-logo-sep {
    height: 22px;
  }
  .btn-contact {
    padding: 0.45rem 0.9rem;
    font-size: 0.72rem;
  }
}

@media (max-width: 420px) {
  .navbar-container .navlogo .navlogo-lockup {
    gap: 6px;
  }
 
  .navbar-container .navlogo .nav-logo-sep {
    height: 18px;
  }
  .btn-contact span {
    display: none;
  }
  .btn-contact::before {
    content: "\f0e0";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.95rem;
  }
}

/* ================================================================
   OFFCANVAS MOBILE MENU
================================================================ */
.offcanvas-menu {
  background: var(--grad-dark);
  border-right: 1px solid rgba(107, 33, 168, 0.3);
  width: 290px !important;
}
.offcanvas-menu .offcanvas-header {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.offcanvas-nav li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.offcanvas-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.25s;
}
.offcanvas-nav a i {
  width: 20px;
  color: var(--magenta-light);
  font-size: 0.85rem;
}
.offcanvas-nav a:hover {
  color: var(--white);
}
.offcanvas-cta {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ================================================================
   HERO BANNER
================================================================ */
#home {
  padding-top: 0;
  margin-top: var(--navbar-h);
}

.banner-slide {
  height: calc(100vh - var(--navbar-h));
  min-height: 600px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}
.banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.banner-overlay {
  position: absolute;
  inset: 0;
  background: var(--grad-hero);
  z-index: 1;
}
.banner-overlay-blue {
  background: var(--grad-hero-blue);
}
.banner-slide .custom-container {
  position: relative;
  z-index: 2;
  height: calc(100vh - var(--navbar-h));
  min-height: 600px;
  display: flex;
  align-items: center;
}
.banner-slide .row {
  width: 100%;
}

.banner-content {
  padding-top: 0;
}

.slide-codename {
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--magenta-light);
  margin-bottom: 8px;
}
.slide-title {
  font-family: "Cinzel", "Playfair Display", serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 12px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}
.slide-loc {
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
}
.slide-loc i {
  color: var(--magenta-light);
}
.slide-tagline {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 8px;
  line-height: 1.4;
}
.slide-tagline strong {
  color: var(--white);
}
.slide-spec {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}
.banner-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Hero Indicators */
.hero-indicators [data-bs-slide-to] {
  width: 28px;
  height: 3px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 2px;
  border: none;
  transition: var(--transition);
  opacity: 1;
}
.hero-indicators [data-bs-slide-to].active {
  width: 48px;
  background: var(--magenta-light);
}

/* Carousel controls */
.carousel-control-prev,
.carousel-control-next {
  width: 48px;
  opacity: 0;
  transition: opacity 0.3s;
}
#heroBannerCarousel:hover .carousel-control-prev,
#heroBannerCarousel:hover .carousel-control-next {
  opacity: 1;
}

/* ================================================================
   MARQUEE STRIP
================================================================ */
.marquee-strip {
  background: var(--grad-brand);
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-block;
  animation: marqueeScroll 28s linear infinite;
}
.marquee-track span {
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--white);
}
.marquee-track .dot {
  margin: 0 16px;
  color: rgba(255, 255, 255, 0.5);
}
@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ================================================================
   ABOUT SECTION
================================================================ */
.sec-about {
  background: var(--white);
}

.about-locs .loc-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--purple-base);
  background: rgba(107, 33, 168, 0.08);
  border: 1px solid rgba(107, 33, 168, 0.18);
  border-radius: 100px;
  padding: 6px 14px;
}
.about-locs .loc-chip i {
  color: var(--magenta);
  font-size: 0.7rem;
}

.about-img-wrap {
  position: relative;
}
.about-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.about-badge {
  position: absolute;
  bottom: 24px;
  left: -20px;
  background: var(--grad-brand);
  color: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-brand);
  text-align: center;
  min-width: 110px;
}
.about-badge-2 {
  left: auto;
  right: -20px;
  bottom: 90px;
}
.about-badge strong {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
}
.about-badge span {
  font-size: 0.7rem;
  opacity: 0.85;
  line-height: 1.3;
}

/* ================================================================
   STATS SECTION
================================================================ */
.sec-stats {
  background: var(--grad-dark);
  overflow: hidden;
}
.stats-pattern {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(255, 255, 255, 0.025) 0px,
    rgba(255, 255, 255, 0.025) 1px,
    transparent 1px,
    transparent 18px
  );
  pointer-events: none;
}

.stat-card {
  text-align: center;
  padding: 28px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  transition: var(--transition);
}
.stat-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}
.stat-num-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}
.stat-num {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-suf {
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--magenta-light);
}
.stat-lbl {
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 8px;
  line-height: 1.4;
  margin-bottom: 0;
}

/* ================================================================
   PROJECTS SECTION
================================================================ */
.sec-projects {
  background: var(--off-white);
}

/* Project Tabs */
.proj-tabs {
  gap: 8px;
  flex-wrap: wrap;
}
.proj-tab {
  font-family: "Montserrat", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--purple-base);
  background: var(--white);
  border: 1.5px solid var(--border-color);
  border-radius: 100px;
  padding: 10px 22px;
  cursor: pointer;
  transition: var(--transition);
}
.proj-tab:hover {
  background: rgba(107, 33, 168, 0.06);
  border-color: var(--purple-light);
}
.proj-tab.active {
  background: var(--grad-brand);
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-brand);
}

/* Project Detail */
.proj-img-wrap {
  position: relative;
}
.proj-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.proj-img-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.55);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 6px;
}

.partner-chip {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--purple-light);
  background: rgba(107, 33, 168, 0.08);
  border: 1px solid rgba(107, 33, 168, 0.18);
  padding: 3px 10px;
  border-radius: 6px;
}
.proj-codename {
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--magenta);
  margin-bottom: 4px;
}
.proj-name {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--purple-dark);
  margin-bottom: 4px;
}
.proj-loc-tag {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
}
.proj-tagline {
  font-size: 0.92rem;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.feat-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  transition: var(--transition);
}
.feat-item:hover {
  border-color: var(--purple-light);
  background: rgba(107, 33, 168, 0.03);
}
.feat-item i {
  font-size: 0.9rem;
  color: var(--magenta);
  margin-top: 3px;
  flex-shrink: 0;
  width: 18px;
  text-align: center;
}
.feat-item div {
  display: flex;
  flex-direction: column;
}
.feat-item strong {
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--purple-dark);
}
.feat-item span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ================================================================
   AMENITIES SECTION
================================================================ */
.sec-amenities {
  background: var(--white);
}

.amen-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}
.amen-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--purple-light);
}
.amen-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.amen-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.amen-card:hover .amen-img-wrap img {
  transform: scale(1.07);
}
.amen-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(30, 7, 64, 0.75) 0%,
    transparent 60%
  );
  display: flex;
  align-items: flex-end;
  padding: 12px;
  opacity: 0;
  transition: opacity 0.35s;
}
.amen-card:hover .amen-overlay {
  opacity: 1;
}
.amen-overlay span {
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
}
.amen-body {
  padding: 18px;
  text-align: center;
}
.amen-icon {
  width: 46px;
  height: 46px;
  background: var(--grad-brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -30px auto 12px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(190, 24, 93, 0.3);
}
.amen-icon i {
  font-size: 1rem;
  color: var(--white);
}
.amen-body h5 {
  font-family: "Montserrat", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--purple-dark);
  margin-bottom: 6px;
}
.amen-body p {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

.amen-tags-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.amen-tag {
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--purple-base);
  background: rgba(107, 33, 168, 0.07);
  border: 1px solid rgba(107, 33, 168, 0.15);
  padding: 7px 16px;
  border-radius: 100px;
  transition: var(--transition);
}
.amen-tag:hover {
  background: var(--grad-brand);
  color: var(--white);
  border-color: transparent;
}
.amen-tag i {
  color: var(--magenta);
}
.amen-tag:hover i {
  color: rgba(255, 255, 255, 0.85);
}

/* ================================================================
   GALLERY SECTION
================================================================ */
.sec-gallery {
  background: var(--off-white);
  padding-bottom: 90px;
}
.sec-gallery .custom-container {
  padding-bottom: 20px;
}

.gallerySwiper {
  padding: 0 20px 50px;
}
.gallerySwiper .swiper-wrapper {
  align-items: stretch;
}

.gal-slide {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gal-slide a {
  display: block;
  position: relative;
  overflow: hidden;
}
.gal-slide img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  border-radius: var(--radius);
}
.gal-slide:hover img {
  transform: scale(1.06);
}

.gal-hover {
  position: absolute;
  inset: 0;
  background: rgba(30, 7, 64, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s;
  border-radius: var(--radius);
}
.gal-hover i {
  font-size: 1.5rem;
  color: var(--white);
}
.gal-slide:hover .gal-hover {
  opacity: 1;
}

/* Swiper nav custom */
.swiper-button-prev.gal-prev,
.swiper-button-next.gal-next,
.swiper-button-prev.amen-prev,
.swiper-button-next.amen-next {
  --swiper-navigation-size: 18px;
  background: var(--grad-brand);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: var(--shadow-brand);
  top: 42%;
  color: var(--white);
}
.swiper-button-prev.gal-prev::after,
.swiper-button-next.gal-next::after,
.swiper-button-prev.amen-prev::after,
.swiper-button-next.amen-next::after {
  font-size: 14px;
  font-weight: 900;
  color: var(--white);
}

.gal-pagination .swiper-pagination-bullet,
.amen-pagination .swiper-pagination-bullet {
  background: var(--purple-light);
  opacity: 0.45;
}
.gal-pagination .swiper-pagination-bullet-active,
.amen-pagination .swiper-pagination-bullet-active {
  background: var(--magenta);
  opacity: 1;
  width: 24px;
  border-radius: 4px;
}

.amenitiesSwiper {
  padding: 4px 4px 50px;
}
.amenitiesSwiper .swiper-wrapper {
  align-items: stretch;
}
.amenitiesSwiper .swiper-slide {
  height: auto;
  display: flex;
}
.amenitiesSwiper .swiper-slide .amen-card {
  width: 100%;
}

/* ================================================================
   LOCATION SECTION
================================================================ */
.sec-location {
  background: var(--white);
}

.loc-features {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.loc-feat {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 18px;
  background: var(--off-white);
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}
.loc-feat:hover {
  background: rgba(107, 33, 168, 0.04);
  border-color: var(--purple-light);
  transform: translateX(4px);
}
.loc-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--grad-brand);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loc-icon i {
  color: var(--white);
  font-size: 0.9rem;
}
.loc-feat h6 {
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--purple-dark);
  margin-bottom: 3px;
}
.loc-feat p {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0;
}

.map-wrap {
  position: relative;
  height: 100%;
}
.map-embed {
  box-shadow: var(--shadow-md);
  width: 100%;
}
.map-embed iframe {
  display: block;
  width: 100%;
}
.map-cta-card {
  position: absolute;
  bottom: -20px;
  left: 20px;
  right: 20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.map-cta-card h6 {
  font-family: "Montserrat", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--purple-dark);
  margin: 0;
}
.map-cta-card p {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 2px 0 0;
}
.map-cta-card > div {
  flex: 1;
}

/* ================================================================
   CONTACT / ENQUIRY FORM SECTION
================================================================ */
.sec-contact {
  background: var(--off-white);
}

.contact-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.contact-info-col {
  background: var(--grad-dark);
}
.contact-info-inner {
  padding: 48px 40px;
  height: 100%;
}
.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.clist-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.clist-icon i {
  color: var(--magenta-light);
  font-size: 0.85rem;
}
.contact-list a,
.contact-list address {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}
.contact-list a:hover {
  color: var(--white);
}

.contact-form-col {
  background: var(--white);
}
.contact-form-inner {
  padding: 48px 40px;
}
.form-title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--purple-dark);
  margin-bottom: 24px;
}
.form-title strong {
  color: var(--purple-base);
}

/* Form Controls */
.form-control,
.form-select {
  border-color: var(--border-color);
  border-radius: 8px;
  font-size: 0.88rem;
  padding: 10px 14px;
  color: var(--text-dark);
  transition: var(--transition);
}
.form-control:focus,
.form-select:focus {
  border-color: var(--purple-light);
  box-shadow: 0 0 0 3px rgba(107, 33, 168, 0.12);
}
.form-label {
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--purple-dark);
  margin-bottom: 6px;
}
.input-group-text {
  background: rgba(107, 33, 168, 0.06);
  border-color: var(--border-color);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--purple-base);
  border-radius: 8px 0 0 8px !important;
}
.input-group .form-control {
  border-radius: 0 8px 8px 0 !important;
}
.form-note {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin: 0;
}

/* ================================================================
   FAQ SECTION
================================================================ */
.sec-faq {
  background: var(--white);
}

.faq-accordion .accordion-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius) !important;
  overflow: hidden;
  margin-bottom: 10px;
  box-shadow: 0 2px 8px rgba(30, 7, 64, 0.04);
}
.faq-accordion .accordion-button {
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--purple-dark);
  background: var(--white);
  padding: 18px 22px;
  border-radius: var(--radius) !important;
  box-shadow: none;
}
.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--purple-base);
  background: rgba(107, 33, 168, 0.04);
  box-shadow: none;
}
.faq-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236B21A8'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.faq-accordion .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23BE185D'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.faq-accordion .accordion-body {
  font-size: 0.88rem;
  color: #4b5563;
  line-height: 1.8;
  padding: 16px 22px 20px;
  border-top: 1px solid var(--border-color);
}

/* ================================================================
   FOOTER
================================================================ */
.site-footer {
  background: var(--purple-dark);
  color: rgba(255, 255, 255, 0.75);
}

.footer-top {
  padding: 70px 0 50px;
}

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}
.footer-brand-row .obliq-badge {
  margin: 0;
}
.footer-logo-link {
  display: inline-block;
  text-decoration: none;
  flex-shrink: 0;
}
.footer-logo {
  width: auto;
  height: 72px;
  max-width: 100%;
  object-fit: contain;
  display: block;
}
@media (max-width: 767px) {
  .footer-brand-row {
    gap: 0.9rem;
  }
  .footer-logo {
    height: 56px;
  }
}
.footer-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-socials a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  transition: var(--transition);
}
.footer-socials a:hover {
  background: var(--grad-brand);
  border-color: transparent;
  color: var(--white);
  transform: translateY(-2px);
}

.footer-heading {
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--magenta-light);
  margin-bottom: 18px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.25s;
}
.footer-links a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-address p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.footer-address i {
  color: var(--magenta-light);
  font-size: 0.78rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.footer-address a {
  color: rgba(255, 255, 255, 0.7);
}
.footer-address a:hover {
  color: var(--white);
}

.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.disclaimer {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.6;
  margin: 0;
}
.disclaimer strong {
  color: rgba(255, 255, 255, 0.5);
}
.copyright {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}

/* ================================================================
   FIXED CTA – DESKTOP (Right Side)
================================================================ */
.fixed-cta-desktop {
  position: fixed;
  bottom: 24px;
  left: 0;
  right: 0;
  z-index: 1040;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 24px;
  pointer-events: none;
  background: transparent;
}
.fcd-btn {
  pointer-events: all;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
  white-space: nowrap;
  box-shadow: 0 6px 28px rgba(30, 7, 64, 0.28);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.fcd-btn i {
  font-size: 1rem;
}

.fcd-btn i.fa-phone-alt {
  transform: scaleX(-1);
}

.fcd-btn span {
  opacity: 1;
  max-width: none;
}
.fcd-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(30, 7, 64, 0.35);
}
.fcd-btn:active {
  transform: scale(0.97);
}
.fcd-call {
  background: var(--purple-base);
}
.fcd-call:hover {
  background: var(--purple-light);
}
.fcd-wa {
  background: #25d366;
}
.fcd-wa:hover {
  background: #128c7e;
}
.fcd-enq {
  background: var(--grad-brand);
  box-shadow: var(--shadow-brand);
}
.fcd-enq:hover {
  box-shadow: 0 12px 40px rgba(190, 24, 93, 0.45);
}

/* ================================================================
   FIXED CTA – MOBILE (Bottom Bar)
================================================================ */
.fixed-cta-mobile {
  position: fixed;
  bottom: 16px;
  left: 0;
  right: 0;
  z-index: 1040;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 16px;
  pointer-events: none;
  background: transparent;
  box-shadow: none;
}
.fcm-btn {
  pointer-events: all;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
  padding: 13px 22px;
  border-radius: 100px;
  box-shadow: 0 6px 24px rgba(30, 7, 64, 0.28);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  white-space: nowrap;
}
.fcm-btn:active {
  transform: scale(0.96);
}
.fcm-btn i {
  font-size: 1rem;
}
.fcm-call {
  background: var(--purple-base);
}
.fcm-wa {
  background: #25d366;
}
.fcm-enq {
  background: var(--grad-brand);
  box-shadow: var(--shadow-brand);
}

/* ================================================================
   MODAL
================================================================ */
.modal-main-content {
  border: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(30, 7, 64, 0.35);
}
.modal-main-header {
  background: var(--grad-dark);
  border: none;
  padding: 16px 24px;
  align-items: center;
}
.modal-main-header .modal-title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}
.brand-today-sm {
  font-size: 1.2rem;
}

.modal-side-panel {
  background: var(--grad-dark);
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.modal-side-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(255, 255, 255, 0.02) 0,
    rgba(255, 255, 255, 0.02) 1px,
    transparent 1px,
    transparent 18px
  );
}
.modal-side-inner {
  padding: 32px 28px;
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.modal-side-inner h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.modal-tagline {
  font-size: 1.25rem;
  color: var(--white);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 24px;
}
.modal-tagline strong {
  color: var(--magenta-light);
}
.modal-proj-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.modal-proj-list li {
  font-family: "Montserrat", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
}
.modal-proj-list i {
  color: var(--magenta-light);
}
.modal-trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.modal-trust-chips span {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 4px 10px;
  border-radius: 6px;
}

.modal-form-panel {
  background: var(--white);
}
.modal-form-inner {
  padding: 32px 28px;
}
.modal-note {
  font-size: 0.68rem;
  color: var(--text-muted);
}

/* ================================================================
   BODY PADDING – mobile sticky bar
================================================================ */
@media (max-width: 991.98px) {
  .site-footer {
    padding-bottom: 80px;
  }
}

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

  .about-badge {
    left: 10px;
  }
  .about-badge-2 {
    right: 10px;
  }

  .contact-info-inner {
    padding: 36px 28px;
  }
  .contact-form-inner {
    padding: 36px 28px;
  }

  .map-cta-card {
    position: static;
    margin-top: 16px;
    box-shadow: var(--shadow);
  }

  .proj-img {
    height: 320px;
  }
}

@media (max-width: 767.98px) {
  .banner-slide {
    min-height: 520px;
  }
  .slide-title {
    font-size: 2.6rem;
  }
  .banner-btns .btn {
    font-size: 0.82rem;
    padding: 10px 20px;
  }

  .amen-body h5 {
    font-size: 0.82rem;
  }
  .amen-body p {
    font-size: 0.72rem;
  }

  .gal-slide img {
    height: 200px;
  }

  .contact-info-inner {
    padding: 28px 20px;
  }
  .contact-form-inner {
    padding: 28px 20px;
  }

  .modal-form-inner {
    padding: 24px 20px;
  }

  .sec-title {
    font-size: 1.55rem;
  }

  .footer-top {
    padding: 50px 0 40px;
  }
}

@media (max-width: 575.98px) {
  .proj-tabs {
    flex-direction: column;
  }
  .proj-tab {
    border-radius: var(--radius);
    text-align: left;
    width: 100%;
  }

  .banner-btns {
    flex-direction: column;
  }
  .banner-btns .btn {
    width: 100%;
    text-align: center;
  }

  .about-badge-2 {
    display: none;
  }

  .stat-card {
    padding: 20px 10px;
  }
}

/* ================================================================
   AOS reset for re-triggering on tab change
================================================================ */
.tab-pane[data-aos] {
  overflow: visible;
}

/* ================================================================
   SCROLL OFFSET for fixed navbar
================================================================ */
[id] {
  scroll-margin-top: calc(var(--navbar-h) + 12px);
}

/* ================================================================
   ════════════════════════════════════════════════════════════════
   LUXURY MODERN LAYER – champagne-gold accents, serif display,
   glass navbar, Ken Burns hero, refined micro-interactions.
   All rules below intentionally override the base where needed.
   ════════════════════════════════════════════════════════════════
================================================================ */
:root {
  --gold: #c9a961;
  --gold-light: #e5c77d;
  --gold-dark: #9a7f3f;
  --cream: #faf6ee;
  --ink: #0c0420;
  --grad-gold: linear-gradient(135deg, #9a7f3f 0%, #e5c77d 45%, #c9a961 100%);
  --shadow-lux:
    0 30px 70px -25px rgba(30, 7, 64, 0.32),
    0 12px 24px -8px rgba(201, 169, 97, 0.08);
  --font-display: "Playfair Display", "Montserrat", Georgia, serif;
}

/* ── Section spacing, a bit more breathing room ─────────────── */
.sec {
  padding: 65px 0;
}
@media (max-width: 991.98px) {
  .sec {
    padding: 72px 0;
  }
}
@media (max-width: 767.98px) {
  .sec {
    padding: 60px 0;
  }
}

/* ── Serif accent on emphasized words & display numbers ─────── */
.slide-tagline strong,
.sec-title strong,
.proj-name,
.form-title strong,
.modal-tagline strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.005em;
}

/* ── Section tag — gold hairline pill ───────────────────────── */
.sec-tag {
  background: transparent;
  border: 1px solid rgba(201, 169, 97, 0.35);
  color: var(--gold-dark);
  padding: 6px 18px;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
}
.sec-tag-light {
  color: var(--gold-light);
  border-color: rgba(229, 199, 125, 0.35);
  background: rgba(229, 199, 125, 0.05);
}

/* Decorative diamond separator between title and subtitle */
.text-center > .sec-subtitle {
  position: relative;
  padding-top: 28px;
  margin-top: 14px;
}
.text-center > .sec-subtitle::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: translateX(-50%);
}
.text-center > .sec-subtitle::after {
  content: "◆";
  position: absolute;
  top: 2px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  font-size: 0.55rem;
  background: inherit;
  padding: 0 6px;
}

/* ── Brand: gold-tinted accent letter ───────────────────────── */
.brand-today em {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* ── Buttons — slimmer, shimmer on hover, gold luxury variant ─ */
.btn-brand:not(.btn-sm):not(.btn-lg),
.btn-nav-outline:not(.btn-sm):not(.btn-lg),
.btn-outline-banner:not(.btn-sm):not(.btn-lg) {
  padding: 11px 26px;
}
.btn-brand {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(229, 199, 125, 0);
}
.btn-brand::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.28),
    transparent
  );
  transition: left 0.7s ease;
  pointer-events: none;
  z-index: 0;
}
.btn-brand:hover::before {
  left: 140%;
}
.btn-brand > * {
  position: relative;
  z-index: 1;
}

.btn-outline-banner {
  border-color: rgba(229, 199, 125, 0.75);
  color: var(--gold-light) !important;
  background: rgba(12, 4, 32, 0.15);
  backdrop-filter: blur(6px);
}
.btn-outline-banner:hover {
  background: rgba(229, 199, 125, 0.14);
  border-color: var(--gold-light);
  color: var(--gold-light) !important;
}

/* ── Hero — Ken Burns + noise grain + gold underline on title ─ */
.banner-slide {
  overflow: hidden;
  background-size: 110%;
  animation: kenBurns 16s ease-out infinite alternate;
}
@keyframes kenBurns {
  from {
    background-size: 108%;
    background-position: center center;
  }
  to {
    background-size: 120%;
    background-position: 52% 48%;
  }
}
.banner-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.95  0 0 0 0 0.82  0 0 0 0 0.55  0 0 0 .5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/></svg>");
  opacity: 0.18;
  mix-blend-mode: overlay;
  z-index: 1;
  pointer-events: none;
}
.banner-slide .custom-container {
  z-index: 3;
}
.slide-codename {
  color: var(--gold-light);
  letter-spacing: 0.4em;
}
.slide-title {
  position: relative;
  padding-bottom: 20px;
  letter-spacing: -0.015em;
}
.slide-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 90px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-light), transparent);
}
.slide-loc i {
  color: var(--gold-light);
}
.hero-indicators [data-bs-slide-to].active {
  background: var(--gold-light);
}

/* Scroll indicator under hero */
.hero-scroll {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s;
}
.hero-scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 48px;
  margin: 12px auto 0;
  background: linear-gradient(
    to bottom,
    var(--gold-light) 0%,
    transparent 100%
  );
  animation: scrollNudge 1.8s ease-in-out infinite;
  transform-origin: top;
}
.hero-scroll:hover {
  color: var(--gold-light);
}
@keyframes scrollNudge {
  0%,
  100% {
    transform: scaleY(1);
    opacity: 0.55;
  }
  50% {
    transform: scaleY(1.25);
    opacity: 1;
  }
}

/* ── Marquee — gold border strip ────────────────────────────── */
.marquee-strip {
  background: linear-gradient(90deg, #1e0740 0%, #3b0f7a 50%, #1e0740 100%);
  border-top: 1px solid rgba(229, 199, 125, 0.22);
  border-bottom: 1px solid rgba(229, 199, 125, 0.22);
  padding: 14px 0;
}
.marquee-track .dot {
  color: var(--gold-light);
}

/* ── About — gold frame, glow halo, refined badges ──────────── */
.about-img-wrap {
  isolation: isolate;
  position: relative;
}
.about-img-wrap::before {
  content: "";
  position: absolute;
  inset: -18px;
  border: 1px solid rgba(201, 169, 97, 0.28);
  border-radius: calc(var(--radius-lg) + 18px);
  pointer-events: none;
  z-index: -2;
}
.about-img-wrap::after {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: var(--grad-gold);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
  z-index: -1;
  pointer-events: none;
}
.about-badge {
  background: rgba(18, 5, 36, 0.94);
  border: 1px solid rgba(229, 199, 125, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 20px 50px rgba(30, 7, 64, 0.4);
}
.about-badge strong {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about-locs .loc-chip {
  border-color: rgba(201, 169, 97, 0.3);
  color: var(--purple-dark);
  background: rgba(201, 169, 97, 0.06);
}
.about-locs .loc-chip i {
  color: var(--gold-dark);
}

/* ── Stats — gold gradient numerals, subtle glass cards ─────── */
.stat-card {
  border-radius: 16px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.055),
    rgba(255, 255, 255, 0.015)
  );
  border: 1px solid rgba(229, 199, 125, 0.14);
  padding: 34px 16px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.stat-card:hover {
  border-color: rgba(229, 199, 125, 0.38);
  box-shadow: 0 20px 50px rgba(229, 199, 125, 0.08);
  background: linear-gradient(
    180deg,
    rgba(229, 199, 125, 0.06),
    rgba(255, 255, 255, 0.015)
  );
}
.stat-num {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
}
.stat-suf {
  color: var(--gold-light);
}

/* ── Projects — refined tabs + gold dividers ────────────────── */
.proj-tab {
  padding: 12px 26px;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.proj-tab.active {
  background: linear-gradient(
    135deg,
    var(--purple-dark) 0%,
    var(--purple-base) 100%
  );
  box-shadow: 0 12px 28px rgba(30, 7, 64, 0.25);
  position: relative;
  border-color: rgba(229, 199, 125, 0.4);
}
.proj-name {
  position: relative;
  padding-bottom: 10px;
}
.proj-name::after {
  content: "";
  display: block;
  width: 56px;
  height: 2px;
  background: var(--grad-gold);
  margin-top: 12px;
  border-radius: 2px;
}
.proj-tagline {
  color: var(--gold-dark);
  font-style: italic;
  font-weight: 500;
}
.proj-codename {
  color: var(--gold-dark);
}
.feat-item i {
  color: var(--gold-dark);
}
.feat-item:hover {
  background: linear-gradient(
    135deg,
    rgba(201, 169, 97, 0.05),
    rgba(190, 24, 93, 0.02)
  );
  border-color: rgba(201, 169, 97, 0.32);
}
.proj-img-wrap {
  isolation: isolate;
  position: relative;
}
.proj-img-wrap::before {
  content: "";
  position: absolute;
  inset: -14px;
  border: 1px solid rgba(201, 169, 97, 0.22);
  border-radius: calc(var(--radius-lg) + 14px);
  pointer-events: none;
  z-index: -1;
}
.partner-chip {
  border-color: rgba(201, 169, 97, 0.28);
  background: rgba(201, 169, 97, 0.06);
  color: var(--gold-dark);
}

/* ── Amenities — refined cards, gold hairline hover ─────────── */
.amen-card {
  border: 1px solid rgba(201, 169, 97, 0.16);
  border-radius: 18px;
  background: #fff;
}
.amen-card:hover {
  border-color: rgba(201, 169, 97, 0.42);
  box-shadow: 0 30px 60px -24px rgba(30, 7, 64, 0.22);
}
.amen-icon {
  width: 54px;
  height: 54px;
  margin: -34px auto 14px;
  border: 3px solid #fff;
  box-shadow: 0 8px 22px rgba(190, 24, 93, 0.3);
}
.amen-tag {
  border-color: rgba(201, 169, 97, 0.25);
  color: var(--purple-dark);
  background: rgba(201, 169, 97, 0.04);
}
.amen-tag i {
  color: var(--gold-dark);
}
.amen-tag:hover {
  background: linear-gradient(
    135deg,
    var(--purple-base) 0%,
    var(--magenta) 100%
  );
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 10px 22px rgba(190, 24, 93, 0.3);
}
.amen-tag:hover i {
  color: var(--gold-light);
}

/* ── Gallery — taller premium crop ──────────────────────────── */
.gal-slide img {
  height: 320px;
  border-radius: 14px;
}
.gal-slide a {
  border-radius: 14px;
}
.swiper-button-prev.gal-prev,
.swiper-button-next.gal-next {
  background: rgba(12, 4, 32, 0.85);
  border: 1px solid rgba(229, 199, 125, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}
.swiper-button-prev.gal-prev::after,
.swiper-button-next.gal-next::after {
  color: var(--gold-light);
}
.gal-pagination .swiper-pagination-bullet-active {
  background: var(--gold);
}

/* ── Location — gold icon tiles & map frame ─────────────────── */
.loc-icon {
  background: linear-gradient(135deg, var(--purple-dark), var(--purple-base));
  border: 1px solid rgba(229, 199, 125, 0.3);
  box-shadow: 0 8px 20px rgba(30, 7, 64, 0.2);
}
.loc-icon i {
  color: var(--gold-light);
}
.loc-feat:hover {
  background: rgba(201, 169, 97, 0.04);
  border-color: rgba(201, 169, 97, 0.3);
}
.map-embed {
  border: 1px solid rgba(201, 169, 97, 0.2);
}
.map-cta-card {
  border: 1px solid rgba(201, 169, 97, 0.22);
  box-shadow: 0 30px 60px -22px rgba(30, 7, 64, 0.22);
  border-radius: 14px;
}

/* ── Contact — luxury card ──────────────────────────────────── */
.contact-card {
  border-radius: 24px;
  box-shadow: 0 40px 80px -30px rgba(30, 7, 64, 0.32);
}
.contact-info-col {
  position: relative;
  overflow: hidden;
}
.contact-info-col::before,
.contact-info-col::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(229, 199, 125, 0.14);
  border-radius: 50%;
  pointer-events: none;
}
.contact-info-col::before {
  right: -70px;
  bottom: -70px;
  width: 240px;
  height: 240px;
}
.contact-info-col::after {
  right: -30px;
  bottom: -30px;
  width: 160px;
  height: 160px;
  border-color: rgba(229, 199, 125, 0.22);
}
.contact-info-inner {
  position: relative;
  z-index: 1;
}
.clist-icon {
  background: rgba(229, 199, 125, 0.12);
  border: 1px solid rgba(229, 199, 125, 0.22);
}
.clist-icon i {
  color: var(--gold-light);
}

/* ── FAQ — rounder, gold hover ──────────────────────────────── */
.faq-accordion .accordion-item {
  border: 1px solid rgba(201, 169, 97, 0.18);
  border-radius: 14px !important;
  background: #fff;
  transition: var(--transition);
}
.faq-accordion .accordion-item:hover {
  border-color: rgba(201, 169, 97, 0.38);
  box-shadow: 0 8px 24px rgba(30, 7, 64, 0.06);
}
.faq-accordion .accordion-button {
  padding: 22px 26px;
  font-size: 0.92rem;
}

/* ── Footer — gold markers ──────────────────────────────────── */
.footer-heading {
  color: var(--gold-light);
  position: relative;
  padding-bottom: 12px;
}
.footer-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.footer-socials a {
  border-color: rgba(229, 199, 125, 0.14);
}
.footer-socials a:hover {
  background: var(--grad-gold);
  color: var(--ink);
  border-color: transparent;
}
.footer-address i {
  color: var(--gold-light);
}

/* ── Modal side panel — serif tagline + gold chips ──────────── */
.modal-side-inner h4 {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-light);
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}
.modal-tagline strong {
  color: var(--gold-light);
}
.modal-proj-list i {
  color: var(--gold-light);
}
.modal-trust-chips span {
  border-color: rgba(229, 199, 125, 0.28);
  color: var(--gold-light);
  background: rgba(229, 199, 125, 0.06);
}

/* ── Fixed CTAs — subtle gold ring ──────────────────────────── */
.fcd-btn,
.fcm-btn {
  box-shadow:
    0 10px 30px rgba(30, 7, 64, 0.28),
    0 0 0 1px rgba(229, 199, 125, 0.15);
}

/* ── Form focus — warmer outline ────────────────────────────── */
.form-control:focus,
.form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.18);
}

/* ── Scrollbar — subtle brand gradient thumb ────────────────── */
body::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--purple-base), var(--magenta));
  border-radius: 10px;
}

/* ── Mobile refinements for luxury layer ────────────────────── */
@media (max-width: 767.98px) {
  .hero-scroll {
    display: none !important;
  }
  .about-img-wrap::before {
    inset: -10px;
    border-radius: calc(var(--radius-lg) + 10px);
  }
  .stat-card {
    padding: 24px 12px;
  }
}

/* ================================================================
   ════════════════════════════════════════════════════════════════
   FULL RESPONSIVE LAYER
   Breakpoints: XXL ≥1400 | XL ≤1399 | LG ≤1199 | MD ≤991
                SM ≤767   | XS ≤575  | XXS ≤399  | Landscape
   ════════════════════════════════════════════════════════════════
================================================================ */

/* ── Safety: no horizontal overflow, elastic media ──────────── */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}
img,
svg,
video,
iframe {
  max-width: 100%;
  height: auto;
}

iframe {
  width: 100%;
  display: block;
  height: 100%;
  object-fit: cover;
}

/* ── Preserve fluid typography with clamp() ─────────────────── */
.sec-title {
  font-size: clamp(1.55rem, 2.2vw + 1rem, 2.75rem);
}
.slide-title {
  font-size: clamp(2.4rem, 5vw + 1rem, 5.5rem);
}
.slide-tagline {
  font-size: clamp(0.98rem, 0.4vw + 0.85rem, 1.3rem);
}
.form-title {
  font-size: clamp(1.15rem, 0.6vw + 0.95rem, 1.5rem);
}
.proj-name {
  font-size: clamp(1.5rem, 1.4vw + 1rem, 2.2rem);
}

/* ================================================================
   ≥ 1400px — XXL, widen container, bump hero drama
================================================================ */
@media (min-width: 1400px) {
  .banner-slide {
    min-height: 720px;
  }
  .banner-slide .custom-container {
    min-height: 720px;
  }
  .sec {
    padding: 120px 0;
  }
}

/* ================================================================
   ≤ 1199px — XL desktop / large tablet landscape
================================================================ */
@media (max-width: 1199.98px) {
  .proj-img {
    height: 400px;
  }
  .gal-slide img {
    height: 280px;
  }
}

/* ================================================================
   ≤ 991px — MD tablet portrait (hamburger kicks in)
================================================================ */
@media (max-width: 991.98px) {
  .sec {
    padding: 84px 0;
  }
  .banner-slide {
    min-height: 620px;
    height: auto;
    padding: 120px 0 80px;
  }
  .banner-slide .custom-container {
    height: auto;
    min-height: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
  .banner-content {
    padding-top: 0;
  }

  /* About image badges stay inside the photo area on tablet */
  .about-badge {
    left: 16px;
    bottom: 16px;
  }
  .about-badge-2 {
    right: 16px;
    bottom: auto;
    top: 16px;
  }

  /* Stats → 3 per row at md */
  .sec-stats .row > [class*="col-"] {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }

  /* Project image shrinks */
  .proj-img {
    height: 360px;
  }

  /* Location + map stack cleanly */
  .map-cta-card {
    position: static;
    margin-top: 16px;
    box-shadow: var(--shadow);
  }
  .map-embed iframe {
    height: 320px;
  }

  /* Contact card stacks — info on top, form below */
  .contact-info-inner {
    padding: 40px 32px;
  }
  .contact-form-inner {
    padding: 40px 32px;
  }

  /* Footer heading columns tighten */
  .footer-heading {
    font-size: 0.72rem;
  }

  /* Marquee faster feels more alive on small screens */
  .marquee-track {
    animation-duration: 22s;
  }

  /* Fixed mobile CTA — centered on tablet too (only 2 buttons now) */
  .fixed-cta-mobile {
    justify-content: center;
    gap: 14px;
    padding: 0 24px;
  }
}

/* ================================================================
   ≤ 767px — SM large phone / small tablet
================================================================ */
@media (max-width: 767.98px) {
  .sec {
    padding: 72px 0;
  }

  /* Hero */
  .banner-slide {
    min-height: 560px;
    padding: 110px 0 70px;
  }
  .banner-btns {
    gap: 10px;
  }
  .slide-codename {
    letter-spacing: 0.28em;
    font-size: 0.68rem;
  }
  .slide-loc {
    font-size: 0.72rem;
  }
  .slide-spec {
    font-size: 0.78rem;
  }
  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }

  /* Stats → 2 per row */
  .sec-stats .row > [class*="col-"] {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .stat-card {
    padding: 22px 10px;
  }

  /* Project tabs — readable, no wrap overflow */
  .proj-tabs {
    gap: 6px;
  }
  .proj-tab {
    padding: 10px 16px;
    font-size: 0.72rem;
    letter-spacing: 0.04em;
  }
  .proj-tab i {
    display: none;
  }

  /* Project image height */
  .proj-img {
    height: 280px;
  }

  /* Amenity cards — 2 per row, tighter */
  .amen-body {
    padding: 16px 12px;
  }
  .amen-body h5 {
    font-size: 0.85rem;
  }
  .amen-body p {
    font-size: 0.72rem;
  }
  .amen-icon {
    width: 44px;
    height: 44px;
    margin: -28px auto 10px;
  }

  /* Gallery heights */
  .gal-slide img {
    height: 240px;
  }

  /* Map — full-width responsive on mobile */
  .map-wrap {
    height: auto;
  }
  .map-embed iframe {
    height: 260px;
  }
  .map-cta-card {
    position: static;
    margin-top: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .map-cta-card > div {
    width: 100%;
  }

  /* Contact columns tighten */
  .contact-info-inner,
  .contact-form-inner {
    padding: 32px 22px;
  }

  /* FAQ */
  .faq-accordion .accordion-button {
    padding: 18px 20px;
    font-size: 0.86rem;
  }
  .faq-accordion .accordion-body {
    padding: 14px 20px 18px;
    font-size: 0.82rem;
  }

  /* Footer — stack mid-columns as 1-col */
  .site-footer .footer-top .col-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  /* Modal — tighter side padding */
  .modal-dialog {
    margin: 12px;
  }
  .modal-main-header {
    padding: 14px 18px;
  }
  .modal-form-inner {
    padding: 26px 20px;
  }
  .modal-main-header .modal-title {
    font-size: 1rem;
  }

  /* Fixed CTAs — two buttons fill width, even split */
  .fixed-cta-mobile {
    padding: 0 12px;
    gap: 10px;
    justify-content: center;
  }
  .fcm-btn {
    flex: 1 1 0;
    padding: 12px 14px;
    font-size: 0.74rem;
    max-width: 48%;
  }

  /* Section tags smaller */
  .sec-tag {
    font-size: 0.65rem;
    padding: 5px 14px;
    letter-spacing: 0.18em;
  }
}

/* ================================================================
   ≤ 575px — XS phone
================================================================ */
@media (max-width: 575.98px) {
  .sec {
    padding: 60px 0;
  }

  /* Navbar — pull Enquire button in */
  .btn-brand.btn-sm {
    padding: 7px 14px;
    font-size: 0.74rem;
  }

  /* Hero */
  .banner-slide {
    min-height: 540px;
    padding: 100px 0 60px;
  }
  .slide-title {
    padding-bottom: 14px;
  }
  .slide-title::after {
    width: 60px;
  }
  .slide-tagline {
    margin-bottom: 6px;
  }
  .slide-spec {
    margin-bottom: 22px;
  }
  .banner-btns {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
  .banner-btns .btn {
    width: 100%;
    padding: 11px 18px;
  }

  /* About badges — hide second badge, reposition first */
  .about-badge {
    left: 12px;
    bottom: 12px;
    padding: 10px 14px;
    min-width: 92px;
  }
  .about-badge strong {
    font-size: 1.3rem;
  }
  .about-badge span {
    font-size: 0.62rem;
  }
  .about-badge-2 {
    display: none;
  }
  .about-img-wrap::after {
    display: none;
  }

  /* Stats — 2 per row, tighter */
  .sec-stats .row {
    --bs-gutter-x: 12px;
  }
  .stat-card {
    padding: 20px 8px;
    border-radius: 12px;
  }
  .stat-lbl {
    font-size: 0.66rem;
  }

  /* Project tabs → stack vertically */
  .proj-tabs {
    flex-direction: column;
    gap: 6px;
  }
  .proj-tab {
    width: 100%;
    border-radius: 10px;
    text-align: center;
    padding: 11px 16px;
    font-size: 0.74rem;
  }

  /* Project image */
  .proj-img {
    height: 240px;
  }
  .proj-img-wrap::before {
    inset: -8px;
    border-radius: calc(var(--radius-lg) + 8px);
  }

  /* Amenity cards — 2 per row kept, image shorter */
  .amen-img-wrap {
    aspect-ratio: 3/2.2;
  }

  /* Amenity tags compact */
  .amen-tag {
    font-size: 0.68rem;
    padding: 6px 12px;
  }

  /* Gallery */
  .gal-slide img {
    height: 210px;
    border-radius: 12px;
  }
  .gallerySwiper {
    padding: 0 12px 50px;
  }
  .swiper-button-prev.gal-prev,
  .swiper-button-next.gal-next {
    display: none;
  }

  /* Location cards */
  .loc-feat {
    padding: 14px 14px;
    gap: 12px;
  }
  .loc-feat h6 {
    font-size: 0.82rem;
  }
  .loc-feat p {
    font-size: 0.74rem;
  }
  .map-embed iframe {
    height: 220px;
  }

  /* Contact */
  .contact-info-inner,
  .contact-form-inner {
    padding: 28px 20px;
  }
  .contact-info-inner address {
    font-size: 0.8rem;
  }

  /* FAQ */
  .faq-accordion .accordion-button {
    padding: 16px 18px;
    font-size: 0.82rem;
  }
  .faq-accordion .accordion-body {
    padding: 12px 18px 16px;
    font-size: 0.8rem;
  }

  /* Footer — fully stacked */
  .site-footer .footer-top .col-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .footer-top {
    padding: 50px 0 36px;
  }
  .footer-bottom .text-lg-end {
    text-align: left !important;
  }
  .disclaimer {
    font-size: 0.66rem;
  }

  /* Modal */
  .modal-dialog {
    margin: 8px;
  }
  .modal-form-inner {
    padding: 22px 18px;
  }
  .form-label {
    font-size: 0.74rem;
  }
  .form-control,
  .form-select {
    font-size: 0.85rem;
    padding: 9px 12px;
  }

  /* Fixed mobile CTA safe bottom spacing */
  .fixed-cta-mobile {
    bottom: 12px;
    padding: 0 10px;
  }
  .fcm-btn {
    padding: 11px 10px;
    font-size: 0.72rem;
    gap: 6px;
  }
  .fcm-btn i {
    font-size: 0.9rem;
  }
  .site-footer {
    padding-bottom: 92px;
  }

  /* Section tags */
  .sec-tag {
    font-size: 0.62rem;
    padding: 4px 12px;
    letter-spacing: 0.16em;
  }
  .text-center > .sec-subtitle::before {
    width: 56px;
  }

  /* Decorative circles in contact info column — shrink */
  .contact-info-col::before {
    right: -50px;
    bottom: -50px;
    width: 160px;
    height: 160px;
  }
  .contact-info-col::after {
    right: -20px;
    bottom: -20px;
    width: 110px;
    height: 110px;
  }
}

/* ================================================================
   ≤ 399px — XXS very small phone (320–399)
================================================================ */
@media (max-width: 399.98px) {
  .slide-title {
    letter-spacing: -0.02em;
  }
  .slide-tagline {
    font-size: 0.92rem;
  }
  .slide-spec {
    font-size: 0.72rem;
  }

  .banner-slide {
    min-height: 500px;
    padding: 96px 0 56px;
  }

  .stat-num-wrap {
    gap: 0;
  }
  .stat-suf {
    font-size: 0.78rem;
  }
  .stat-lbl {
    font-size: 0.62rem;
  }

  .amen-body {
    padding: 12px 8px;
  }
  .amen-body h5 {
    font-size: 0.78rem;
  }
  .amen-body p {
    font-size: 0.68rem;
  }

  .fcm-btn {
    font-size: 0.66rem;
    padding: 10px 6px;
    gap: 4px;
  }
  .fcm-btn span {
    max-width: none;
  }

  .contact-info-inner,
  .contact-form-inner {
    padding: 22px 16px;
  }
  .modal-form-inner {
    padding: 18px 14px;
  }
}

/* ================================================================
   Landscape phones (short viewport) — compact the hero
================================================================ */
@media (max-height: 520px) and (orientation: landscape) {
  .banner-slide {
    min-height: 420px;
    padding: 90px 0 40px;
  }
  .slide-title {
    font-size: clamp(2rem, 4vw + 1rem, 3rem);
  }
  .slide-tagline {
    margin-bottom: 6px;
  }
  .slide-spec {
    margin-bottom: 14px;
  }
  .hero-scroll {
    display: none !important;
  }
  .sec {
    padding: 50px 0;
  }
}

/* ================================================================
   Reduced-motion users — disable Ken Burns, shimmers, animations
================================================================ */
@media (prefers-reduced-motion: reduce) {
  .banner-slide {
    animation: none !important;
  }
  .hero-scroll::after {
    animation: none !important;
  }
  .marquee-track {
    animation: none !important;
  }
  .btn-brand::before {
    display: none !important;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── Custom Container (ref: codenameedengarden.com) ─────────── */
.custom-container {
  width: 85vw;
  max-width: 90%;
  margin: auto;
}
.custom-container-2 {
  width: 70vw;
  max-width: 90%;
  margin: auto;
}

/* ── Co-Branding (Jindal + TODAY) ───────────────────────────── */
.co-brand-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}
.co-brand-wrap-sm {
  gap: 10px;
}
.co-brand-wrap-footer {
  gap: 16px;
}
.co-brand-divider {
  display: inline-block;
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.28);
  flex: 0 0 auto;
}
.co-brand-wrap-footer .co-brand-divider {
  height: 42px;
}
.brand-jindal-wrap {
  line-height: 1;
}
.brand-jindal {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 1.55rem;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.footer-brand-jindal {
  font-size: 1.85rem;
}

/* ── OBLIQ Codename Badge (footer) ──────────────────────────── */
.obliq-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  padding: 12px 16px;
  margin: 18px 0 20px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
}
.obliq-badge .obliq-codename {
  font-family: "Montserrat", sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.obliq-badge .obliq-name {
  font-family: "Montserrat", sans-serif;
  font-size: 2.1rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--white);
  text-transform: uppercase;
}
.obliq-badge .obliq-loc {
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.42em;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  margin-top: 4px;
}

/* ── Hero slide: partner line + highlight bullets ──────────── */
.slide-partners {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 14px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
}
.slide-partner {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 6px 12px;
  border-radius: 30px;
  backdrop-filter: blur(4px);
}
.slide-partner-sep {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
}
.slide-highlights {
  list-style: none;
  padding: 0;
  margin: 18px 0 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}
.slide-highlights li {
  font-family: "Poppins", sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  display: inline-flex;
  align-items: center;
}
.slide-highlights li i {
  color: var(--red-accent, #c6a35d);
}

/* ================================================================
   FIXED BOTTOM LEAD FORM
================================================================ */
.fixed-bottom-form {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1045;
  background: var(--grad-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 -10px 36px rgba(30, 7, 64, 0.45);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.fixed-bottom-form.fbf-collapsed {
  transform: translateY(calc(100% - 0px));
}
.fbf-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.fbf-title {
  flex: 0 0 auto;
  color: var(--white);
  line-height: 1.2;
}
.fbf-title-lg {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
}
.fbf-title-sm {
  display: block;
  font-size: 0.72rem;
  opacity: 0.7;
  margin-top: 2px;
}
.fbf-form {
  flex: 1 1 auto;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.fbf-field {
  flex: 1 1 0;
  min-width: 0;
}
.fbf-field .form-control,
.fbf-field .form-select {
  height: 44px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 0 18px;
  font-size: 0.88rem;
  width: 100%;
}
.fbf-field .form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.fbf-field .form-control:focus,
.fbf-field .form-select:focus {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
  box-shadow: none;
}
.fbf-field .form-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px 12px;
  padding-right: 40px;
}
.fbf-field .form-select option {
  color: #222;
}
.fbf-field-tel {
  display: flex;
  align-items: center;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  padding-left: 14px;
  height: 44px;
  position: relative;
}
.fbf-field-tel .fbf-prefix {
  color: var(--white);
  font-weight: 600;
  font-size: 0.88rem;
  padding-right: 8px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.fbf-field-tel .form-control {
  background: transparent;
  border: none;
  height: 42px;
  padding: 0 14px;
  flex: 1 1 auto;
}
.fbf-field-tel .form-control:focus {
  background: transparent;
}
.fbf-field-tel .invalid-feedback {
  position: absolute;
  bottom: -22px;
  left: 18px;
}
.fbf-submit {
  flex: 0 0 auto;
  height: 44px;
  padding: 0 28px;
  white-space: nowrap;
  font-weight: 700;
  font-size: 0.88rem;
}
.fbf-toggle {
  position: absolute;
  top: -18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: var(--grad-dark);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(30, 7, 64, 0.45);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.fbf-toggle i {
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}
.fixed-bottom-form.fbf-collapsed .fbf-toggle i {
  transform: rotate(180deg);
}

/* Push page content above the bar so nothing is hidden */
body {
  padding-bottom: 88px;
}

/* Tablet: drop project select to keep bar compact + lift CTA pills above the bar */
@media (max-width: 991.98px) {
  .fbf-field-project {
    display: none;
  }
  .fbf-title-sm {
    display: none;
  }
  .fbf-inner {
    padding: 12px 16px;
    gap: 12px;
  }
  .fixed-cta-mobile {
    bottom: 10px;
  }
}

/* Mobile: hide the fixed bottom form entirely – we render an inline form below the hero instead */
@media (max-width: 767.98px) {
  .fixed-bottom-form {
    display: none !important;
  }
  body {
    padding-bottom: 0;
  }
}

/* ================================================================
   INLINE LEAD FORM (Mobile, below hero banner)
================================================================ */
.inline-lead-form {
  background: var(--grad-dark);
  padding: 22px 16px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.ilf-inner {
  max-width: 560px;
  margin: 0 auto;
}
.ilf-title {
  text-align: center;
  color: var(--white);
  margin-bottom: 14px;
}
.ilf-title-lg {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}
.ilf-title-sm {
  display: block;
  font-size: 0.78rem;
  opacity: 0.7;
  margin-top: 2px;
}
.ilf-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ilf-field {
  position: relative;
}
.ilf-field .form-control,
.ilf-field .form-select {
  height: 46px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 0 18px;
  font-size: 0.92rem;
  width: 100%;
}
.ilf-field .form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.ilf-field .form-control:focus,
.ilf-field .form-select:focus {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
  box-shadow: none;
}
.ilf-field .form-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px 12px;
  padding-right: 40px;
}
.ilf-field .form-select option {
  color: #222;
}
.ilf-field-tel {
  display: flex;
  align-items: center;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  padding-left: 16px;
  height: 46px;
}
.ilf-field-tel .ilf-prefix {
  color: var(--white);
  font-weight: 600;
  font-size: 0.92rem;
  padding-right: 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.ilf-field-tel .form-control {
  background: transparent;
  border: none;
  height: 44px;
  padding: 0 14px;
  flex: 1 1 auto;
}
.ilf-field-tel .form-control:focus {
  background: transparent;
}
.ilf-submit {
  height: 48px;
  font-weight: 700;
  font-size: 0.92rem;
  margin-top: 4px;
}
