/* ==========================================================================
   SPJ VEDATAM — DESIGN TOKENS
   ========================================================================== */
:root {
  --cream: #F3EFE6;
  --cream-2: #EAE4D6;
  --ink: #1E1A16;
  --ink-soft: #4A443C;
  --orange: #F5821F;
  --orange-dark: #D96A0B;
  --orange-light: #FFA352;
  --navy: #1B3A5C;
  --navy-2: #0F2438;
  --gold: #C89B3C;
  --gold-light: #E9C877;
  --gold-dark: #8A6A1F;
  --maroon: #241310;
  --maroon-2: #150B09;
  --green-ok: #1E7B4D;
  --white: #FFFFFF;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', 'Segoe UI', sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --shadow-sm: 0 4px 16px rgba(30, 26, 22, .08);
  --shadow-md: 0 12px 32px rgba(30, 26, 22, .12);
  --shadow-lg: 0 24px 60px rgba(30, 26, 22, .18);

  --ease: cubic-bezier(.22, .9, .34, 1);
}

/* ==========================================================================
   UTILITY HELPERS
   ========================================================================== */
.relative-z { position: relative; z-index: 1; }
.accent-blue { color: #1B3A5C; }
.accent-navy { color: var(--navy); }
.wireframe-bg-overlay {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(90deg, transparent 0 58px, rgba(0,0,0,.03) 58px 60px),
    repeating-linear-gradient(0deg,  transparent 0 58px, rgba(0,0,0,.03) 58px 60px);
  pointer-events: none;
  z-index: 0;
}

/* ==========================================================================
   RESET
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 88px 0;
  position: relative;
}

.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-sub {
  max-width: 640px;
  color: var(--ink-soft);
  margin-top: 12px;
  margin-bottom: 48px;
}

::selection {
  background: var(--orange);
  color: #fff;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  white-space: nowrap;
}

.btn .arrow {
  transition: transform .25s var(--ease);
}

.btn:hover .arrow {
  transform: translateX(4px);
}

.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 8px 20px rgba(245, 130, 31, .35);
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(245, 130, 31, .45);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 16px;
}

.btn-block {
  width: 100%;
}

.btn-outline {
  border: 2px solid var(--navy);
  color: var(--navy);
  background: transparent;
}

.btn-outline:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-2px);
}

.btn-ghost {
  border: 1px solid rgba(30, 26, 22, .2);
  color: var(--ink);
  background: #fff;
}

.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #3a2a05;
  box-shadow: 0 8px 24px rgba(200, 155, 60, .4);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(200, 155, 60, .5);
}

.btn-gold-outline {
  border: 1.5px solid var(--gold);
  color: var(--gold-dark);
  background: #fff;
  width: 100%;
  margin-top: 20px;
}

.btn-gold-outline:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-2px);
}

/* ==========================================================================
   PRELOADER
   ========================================================================== */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .5s ease, visibility .5s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-ring {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 4px solid rgba(245, 130, 31, .2);
  border-top-color: var(--orange);
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0);
  transition: background .35s var(--ease), box-shadow .35s var(--ease), padding .35s var(--ease);
  padding: 20px 0;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, .08);
  padding: 12px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}

.logo-mark {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: 1px;
}

.site-header:not(.scrolled) .logo-mark {
  color: #fff;
}

.logo-sub {
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--orange);
  font-weight: 600;
  margin-top: 2px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
  transition: color .25s;
}

.site-header:not(.scrolled) .nav-link {
  color: #fff;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width .3s var(--ease);
}

.nav-link:hover {
  color: var(--orange);
}

.nav-link:hover::after {
  width: 100%;
}

.header-cta {
  padding: 12px 26px;
  font-size: 14px;
  flex-shrink: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  transition: .3s var(--ease);
}

.site-header:not(.scrolled) .hamburger span {
  background: #fff;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 130px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(120deg, rgba(8,14,26,0.82) 0%, rgba(8,14,26,0.55) 55%, rgba(8,14,26,0.75) 100%),
    url('../images/hero-desktop.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

@media (max-width: 768px) {
  .hero-bg {
    background-image:
      linear-gradient(180deg, rgba(8,14,26,0.88) 0%, rgba(8,14,26,0.65) 50%, rgba(8,14,26,0.9) 100%),
      url('../images/hero-mobile.jpg');
    background-position: center top;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.4) 100%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

/* ---- HERO COPY ---- */
.hero-copy {
  color: #fff;
}

/* Badges */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.hbadge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  padding: 6px 14px;
  border-radius: 50px;
}

.hbadge-new {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 4px 14px rgba(245,130,31,0.45);
}

.hbadge-rera {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(6px);
}

/* H1 */
.hero h1 {
  font-size: clamp(46px, 6.5vw, 80px);
  color: #fff;
  line-height: 1.05;
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.hero-h1-accent {
  color: var(--orange-light);
  font-style: italic;
}

/* Location line */
.hero-location {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  margin-bottom: 22px;
}

/* Divider */
.hero-divider {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  border-radius: 2px;
  margin-bottom: 22px;
}

/* Bullets */
.hero-bullets {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 28px;
}

.hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: rgba(255,255,255,0.88);
  line-height: 1.5;
}

.hbullet-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.hero-bullets li strong {
  color: #fff;
  font-weight: 700;
}

/* Price + CTA row */
.hero-bottom-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-price-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-price-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.hero-price-value {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 800;
  color: var(--orange-light);
  line-height: 1;
}

.hero-price-value sup {
  font-size: 0.55em;
  vertical-align: super;
}

.hero-cta-btn {
  flex-shrink: 0;
}

/* Mini stat strip */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 14px 20px;
  backdrop-filter: blur(8px);
}

.hstat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.hstat-num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--orange-light);
  line-height: 1;
}

.hstat-lbl {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  text-align: center;
}

.hstat-sep {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* ---- LEAD FORM ---- */
.hero-form-wrap {
  position: relative;
}

.lead-form {
  background: #fff;
  border-radius: 24px;
  padding: 36px 30px 28px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.08);
}

.lf-header {
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid #f0ece4;
}

.lf-header h3 {
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 4px;
}

.lf-header p {
  font-size: 13px;
  color: var(--ink-soft);
}

.field {
  position: relative;
  margin-bottom: 18px;
}

.field input {
  width: 100%;
  padding: 16px 14px 8px;
  border: 1.5px solid #e1dcd0;
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  background: #faf8f3;
  transition: border-color .25s, background .25s;
}

.field input:focus {
  outline: none;
  border-color: var(--orange);
  background: #fff;
}

.field label {
  position: absolute;
  left: 14px;
  top: 16px;
  color: #9a9184;
  font-size: 15px;
  pointer-events: none;
  transition: .2s var(--ease);
}

.field input:focus+label,
.field input:not(:placeholder-shown)+label {
  top: 5px;
  font-size: 11px;
  color: var(--orange);
  font-weight: 600;
}

.lf-submit {
  font-size: 15px;
  padding: 16px;
  border-radius: 12px;
  margin-top: 4px;
}

/* Trust row below form */
.lf-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.lf-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  color: var(--ink-soft);
  font-weight: 500;
}

.lf-trust-item svg {
  stroke: var(--orange);
  flex-shrink: 0;
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 20px;
  z-index: 2;
}

.scroll-cue span {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 8px;
  background: #fff;
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes scrollDot {
  0%   { opacity: 1; top: 8px; }
  100% { opacity: 0; top: 24px; }
}

/* ==========================================================================
   TRUST STRIP
   ========================================================================== */
.trust-strip {
  background: var(--ink);
  padding: 26px 0;
}

.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  gap: 24px;
  color: #fff;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, .75);
  text-align: left;
}

.footer-logo-img{ max-height:48px; width:auto; display:inline-block; margin:0 auto; filter:none; background:#ffffff; padding:6px 16px; border-radius:10px; box-shadow:0 4px 14px rgba(0,0,0,0.15); }
.ph-render-img, .loc-render-img, .gold-rush-img{ width:100%; height:auto; border-radius:14px; box-shadow:var(--shadow-md); object-fit:cover; display:block; }
.fp-media{ overflow:hidden; border-radius:8px; margin:14px 20px 0; aspect-ratio:16/11; background:#F5F0E6; }
.fp-img{ width:100%; height:100%; object-fit:cover; display:block; transition:transform .35s var(--ease); }
.fp-card:hover .fp-img{ transform:scale(1.05); }

.trust-item img {
  width: 34px;
  height: 34px;
  filter: brightness(0) invert(1);
  opacity: .85;
}

.trust-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--orange-light);
}

.trust-item small {
  display: block;
  font-weight: 400;
  opacity: .7;
}

/* ==========================================================================
   OVERVIEW
   ========================================================================== */
.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.eyebrow-line {
  display: block;
  color: var(--orange);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 12px;
}

.serif-heading {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 42px);
  color: var(--navy);
}

.serif-heading em {
  font-style: italic;
  color: var(--orange);
}

.overview-location {
  font-weight: 600;
  color: var(--navy);
  font-size: 18px;
  margin-top: 8px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
  padding-bottom: 4px;
}

.overview-tag {
  color: var(--ink-soft);
  margin-top: 10px;
  margin-bottom: 24px;
}

.spec-list {
  margin-bottom: 28px;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  padding: 13px 0;
  border-bottom: 1px solid rgba(30, 26, 22, .1);
  font-size: 15px;
}

.media-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3.2;
}

.img-placeholder {
  background: var(--ph-bg, linear-gradient(135deg, #ccc, #999));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: rgba(255, 255, 255, .85);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  min-height: 220px;
}

.img-placeholder small {
  display: block;
  font-weight: 400;
  opacity: .7;
  font-size: 11px;
  margin-top: 4px;
}

.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, rgba(255, 255, 255, .05) 0 12px, transparent 12px 24px);
}

/* ==========================================================================
   SPEC TABLE (overview)
   ========================================================================== */
.spec-table {
  margin: 20px 0 28px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(30, 26, 22, .1);
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 16px;
  border-bottom: 1px solid rgba(30, 26, 22, .08);
  font-size: 15px;
  gap: 12px;
}

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

.spec-row:nth-child(even) {
  background: rgba(243, 239, 230, .5);
}

.spec-label {
  color: var(--ink-soft);
  font-size: 14px;
  flex-shrink: 0;
}

.spec-val {
  font-weight: 700;
  color: var(--navy);
  text-align: right;
}

/* ==========================================================================
   OVERVIEW MEDIA
   ========================================================================== */
.overview-sub-loc {
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin-top: 8px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
  padding-bottom: 4px;
  margin-bottom: 4px;
}

.overview-sub-cat {
  color: var(--ink-soft);
  font-size: 15px;
  margin-bottom: 24px;
}

.overview-media-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.overview-render-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ==========================================================================
   BANNER SHOWCASE
   ========================================================================== */
.banner-showcase {
  padding: 0;
  background: var(--ink);
}

.banner-media-wrap {
  line-height: 0;
}

.banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.desktop-banner { display: block; }
.mobile-banner  { display: none; }

@media (max-width: 640px) {
  .desktop-banner { display: none; }
  .mobile-banner  { display: block; }
}

/* ==========================================================================
   GOLD RUSH
   ========================================================================== */
.gold-rush {
  background: var(--maroon-2);
  color: #fff;
  overflow: hidden;
}

.gold-rush-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 30%, rgba(200, 155, 60, .25), transparent 55%),
    linear-gradient(160deg, #150b09, #241310 60%, #150b09);
}

.gold-rush-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 56px;
  align-items: center;
}

.ribbon {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #3a2a05;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 10px 26px;
  border-radius: 6px 22px 6px 22px;
  margin-bottom: 22px;
  box-shadow: 0 8px 20px rgba(200, 155, 60, .35);
}

.gold-rush-copy h2 {
  color: #fff;
  font-size: clamp(26px, 3.4vw, 36px);
  margin-bottom: 28px;
}

.gold-table {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}

.gold-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(233, 200, 119, .25);
  border-radius: 10px;
  overflow: hidden;
}

.gold-cell {
  padding: 16px 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, .75);
}

.gold-cell strong {
  color: #fff;
  font-size: 16px;
}

.gold-award {
  background: rgba(233, 200, 119, .08);
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-light);
  font-weight: 700;
}

.coin-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--gold-light), var(--gold-dark));
  flex-shrink: 0;
}

.gold-rush-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* ==========================================================================
   HIGHLIGHTS — star grid
   ========================================================================== */
.highlights-elegant {
  background: #fafafa;
}

.star-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 48px;
  border-top: 1px solid #eee;
}

.star-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 26px 24px;
  border-bottom: 1px solid #eee;
  border-right: 1px solid #eee;
  transition: background .25s;
}

.star-item:nth-child(3n) {
  border-right: none;
}

.star-item:nth-child(4),
.star-item:nth-child(5),
.star-item:nth-child(6),
.star-item:nth-child(10),
.star-item:nth-child(11),
.star-item:nth-child(12) {
  background: #F7F7F7;
}

.star-item:hover {
  background: #fff8ec;
}

.star {
  color: var(--gold);
  font-size: 20px;
  flex-shrink: 0;
}

.star-item p {
  font-size: 14.5px;
  color: var(--ink-soft);
}

/* ==========================================================================
   AMENITIES
   ========================================================================== */
.amenities {
  background: #fff;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.amenity-card {
  background: #FFFFFF;
  border-radius: 8px;
  padding: 32px 20px 22px;
  text-align: center;
  border: 1px solid #EAE6DF;
  box-shadow: 0 2px 8px rgba(0,0,0,0.02);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.amenity-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
  border-color: #E5A00D;
}

.amenity-icon-area {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.amenity-divider {
  width: 100%;
  height: 1px;
  background: #EAE6DF;
  margin: 18px 0 14px;
}

.amenity-title {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
}

/* Legacy slider styles kept for compatibility */
.amenities-slider {
  position: relative;
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.amenities-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 180px;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 8px 4px 20px;
  scrollbar-width: none;
}

.amenities-track::-webkit-scrollbar { display: none; }

.slide-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 22px;
  flex-shrink: 0;
  transition: background .25s;
}

.slide-arrow:hover { background: var(--orange); }

/* ==========================================================================
   PROJECT HIGHLIGHTS (split)
   ========================================================================== */
.project-highlights {
  background: linear-gradient(135deg, #1B3A5C 0%, #0F2438 100%);
  color: #fff;
}

.ph-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.ph-media {
  aspect-ratio: 4/3.2;
}

.ph-copy h2 {
  font-size: clamp(28px, 3.6vw, 38px);
  margin-bottom: 28px;
  color: #fff;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  font-weight: 500;
  font-size: 15px;
  color: rgba(255, 255, 255, .9);
  line-height: 1.5;
}

.check-list-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  padding: 3px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

/* ==========================================================================
   WHY INVEST
   ========================================================================== */
.why-invest {
  background: var(--cream);
}

.why-invest h2 {
  font-size: clamp(28px, 3.6vw, 38px);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 16px;
}

.why-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 34px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.why-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0F3866, #1B3A5C);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 4px 12px rgba(15, 56, 102, 0.25);
}

.why-card h3 {
  font-size: 19px;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 20px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FDECD8;
  color: var(--orange-dark);
  font-weight: 600;
  font-size: 12.5px;
  padding: 6px 14px;
  border-radius: 20px;
}

/* ==========================================================================
   COSTING
   ========================================================================== */
.costing {
  background: var(--cream);
  padding: 80px 0;
}

.costing h2 {
  font-size: clamp(28px, 3.6vw, 38px);
  font-family: var(--font-serif);
  margin-bottom: 48px;
  color: var(--ink);
}

.cost-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.cost-grid .cost-card:nth-child(4) { grid-column: 1; }
.cost-grid .cost-card:nth-child(5) { grid-column: 2; }

.cost-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 24px;
  position: relative;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
}

.cost-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
  border-color: rgba(245, 130, 31, 0.3);
}

.cost-no {
  display: inline-block;
  background: #FFC107;
  color: #000;
  font-weight: 700;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 14px;
}

.cost-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

.cost-area,
.cost-plan {
  font-size: 14px;
  color: #222;
  margin-bottom: 6px;
}

.cost-price {
  font-size: 14px;
  color: #222;
  margin-bottom: 6px;
}

.cost-price span {
  color: #0e8a50;
  font-weight: 700;
}

.cost-note {
  color: #0e8a50;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 20px;
}

.btn-cost-orange {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FF6600;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 4px 14px rgba(255, 102, 0, 0.3);
  width: 100%;
}

.btn-cost-orange:hover {
  background: #e65c00;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255, 102, 0, 0.4);
}

/* ==========================================================================
   BTN GOLD TAN
   ========================================================================== */
.btn-gold-tan {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  background: linear-gradient(135deg, #f5e6c0, #e8c97a);
  color: #5a3e00;
  border: 1px solid rgba(200, 155, 60, .4);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  width: 100%;
  margin-top: 16px;
  white-space: nowrap;
}

.btn-gold-tan:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(200, 155, 60, .35);
  background: linear-gradient(135deg, #e8c97a, #c89b3c);
  color: #3a2a05;
}

/* ==========================================================================
   PRICE LIST (gold)
   ========================================================================== */
.price-list {
  background: #fff;
  overflow: hidden;
}

.price-list-bg {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(200, 155, 60, .04) 0 40px, transparent 40px 80px);
}

.price-list .serif-heading {
  margin-bottom: 48px;
  position: relative;
}

.price-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.price-card {
  background: #FAF7F2;
  border-radius: 16px;
  padding: 30px 24px 24px;
  position: relative;
  border: 1px solid #EAE6DF;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.1);
  border-color: #D9B168;
}

.price-tag {
  display: inline-block;
  background: #D9B168;
  color: #FFF;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.price-idx {
  position: absolute;
  top: 14px;
  right: 20px;
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: #D9B168;
  opacity: 0.35;
  line-height: 1;
}
.price-card-header { display:flex; align-items:flex-start; justify-content:space-between; flex-wrap:wrap; gap:4px; margin-bottom:4px; }

.price-card h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

.price-size {
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 10px;
}

.price-amt {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--gold-dark);
  margin-bottom: 14px;
}

.price-card ul li {
  position: relative;
  padding-left: 18px;
  font-size: 13.5px;
  color: var(--ink-soft);
  margin-bottom: 6px;
}

.price-card ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 800;
}

/* ==========================================================================
   FLOOR PLANS
   ========================================================================== */
.floorplans {
  background: var(--cream-2);
}

.floorplans h2 {
  margin-bottom: 48px;
  font-size: clamp(28px, 3.6vw, 38px);
}

.fp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.fp-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease);
}

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

.fp-label {
  padding: 16px 20px 0;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  font-size: 12.5px;
  color: var(--navy);
}

.fp-img {
  aspect-ratio: 16/11;
  margin: 14px 20px 0;
  border-radius: var(--radius-sm);
}

.fp-card .btn {
  margin: 20px;
  width: calc(100% - 40px);
}

/* ==========================================================================
   LOCATION
   ========================================================================== */
.location {
  background: linear-gradient(135deg, #0F2438 0%, #1B3A5C 100%);
  color: #fff;
}

.location-copy h2 {
  color: #fff;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.location-copy h2 {
  font-size: clamp(28px, 3.6vw, 38px);
  margin-bottom: 24px;
  color: #fff;
}

.location-media {
  aspect-ratio: 16/11;
}

/* ==========================================================================
   GALLERY
   ========================================================================== */
.gallery {
  background: var(--cream-2);
}

.gallery h2 {
  margin-bottom: 48px;
  font-size: clamp(28px, 3.6vw, 38px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  aspect-ratio: 4/3;
  position: relative;
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s var(--ease);
}

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

.g-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .45);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
  opacity: 0;
  transition: opacity .3s var(--ease);
}

.gallery-item:hover .g-overlay {
  opacity: 1;
}

.gallery-item:hover {
  transform: scale(1.02);
}

/* ==========================================================================
   CTA STRIP
   ========================================================================== */
.cta-strip {
  background: linear-gradient(120deg, var(--navy-2), var(--navy));
  padding: 64px 0;
}

.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-strip h2 {
  color: #fff;
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 8px;
}

.cta-strip p {
  color: rgba(255, 255, 255, .7);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--maroon-2);
  color: rgba(255, 255, 255, .75);
  padding: 64px 0 32px;
  text-align: center;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 26px;
}

.footer-logo .logo-mark {
  color: #fff;
  font-size: 32px;
}

.footer-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-bottom: 18px;
}

.footer-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--orange-light);
  font-size: 14px;
  font-weight: 600;
  transition: color .2s;
}

.footer-contact-item:hover { color: #fff; }

.footer-contact-sep {
  color: rgba(255,255,255,.3);
  font-size: 14px;
}

.rera {
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  font-size: 14px;
}

.disclaimer {
  max-width: 720px;
  margin: 0 auto 20px;
  font-size: 13px;
  line-height: 1.7;
}

.footer-links {
  margin-bottom: 20px;
  font-size: 13px;
}

.footer-links a {
  color: var(--orange-light);
}

.footer-links a:hover {
  text-decoration: underline;
}

.copyright {
  font-size: 12px;
  opacity: .6;
}

/* Legacy float-actions (overridden by float-actions-wrap below) */
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, .5); }
  50%       { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
}

/* ==========================================================================
   MOBILE STICKY BAR
   ========================================================================== */
.mobile-sticky-bar {
  display: none !important;
}

.msb-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  padding: 13px 6px;
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1;
}

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

.msb-whatsapp {
  background: #25D366;
  color: #fff;
}

.msb-enquire {
  background: var(--orange);
  color: #fff;
}

/* ==========================================================================
   TOAST
   ========================================================================== */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: var(--ink);
  color: #fff;
  padding: 16px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: var(--shadow-lg);
  z-index: 2000;
  transition: transform .4s var(--ease);
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

/* ==========================================================================
   NAV OVERLAY (mobile)
   ========================================================================== */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 999;
  opacity: 0;
  transition: opacity .35s;
}

.nav-overlay.active {
  display: block;
  opacity: 1;
}

/* ==========================================================================
   SCROLL REVEAL (AOS-lite)
   ========================================================================== */
[data-aos] {
  opacity: 0;
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

[data-aos="fade-up"] {
  transform: translateY(40px);
}

[data-aos="fade-right"] {
  transform: translateX(-40px);
}

[data-aos="fade-left"] {
  transform: translateX(40px);
}

[data-aos="zoom-in"] {
  transform: scale(.92);
}

[data-aos].aos-in {
  opacity: 1;
  transform: none;
}

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

  .hero-grid,
  .overview-grid,
  .ph-grid,
  .location-grid,
  .gold-rush-inner {
    grid-template-columns: 1fr;
  }

  .hero-copy { order: 1; }

  .hero-form-wrap {
    order: 2;
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }

  .why-grid,
  .cost-grid,
  .price-grid,
  .fp-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cost-grid .cost-card:nth-child(4),
  .cost-grid .cost-card:nth-child(5) { grid-column: auto; }

  .amenities-grid { grid-template-columns: repeat(2, 1fr); }

  .star-grid { grid-template-columns: repeat(2, 1fr); }

  .star-item:nth-child(2n) { border-right: none; }
  .star-item:nth-child(3n) { border-right: 1px solid #eee; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  .hero { padding-top: 120px; }

  .gold-rush-media { max-width: 420px; margin: 0 auto; }

  /* overview image full width on tablet */
  .overview-media-wrap { max-width: 100%; }

  /* section headings slightly smaller */
  .serif-heading { font-size: clamp(26px, 3.5vw, 38px); }
}

@media (max-width: 860px) {
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 78%;
    max-width: 320px;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 32px;
    gap: 22px;
    transform: translateX(100%);
    transition: transform .4s var(--ease);
    box-shadow: -10px 0 40px rgba(0,0,0,.15);
    z-index: 1001;
    overflow-y: auto;
  }

  .main-nav.open { transform: translateX(0); }

  .main-nav .nav-link {
    color: var(--ink) !important;
    font-size: 16px;
    width: 100%;
    padding: 8px 0;
    border-bottom: 1px solid #f0ece4;
  }

  .header-cta { display: none; }
  .hamburger { display: flex; }

  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .mobile-sticky-bar { display: flex; }

  .float-actions-wrap { bottom: 78px; right: 14px; }

  body { padding-bottom: 56px; }

  /* price grid 2-col on tablet */
  .price-grid { grid-template-columns: repeat(2, 1fr); }
}

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

  .container { padding: 0 14px; }

  /* ── HERO ── */
  .hero {
    padding: 96px 0 72px;
    min-height: auto;
  }

  .hero h1 { font-size: 34px; letter-spacing: -0.5px; }
  .hero-location { font-size: 13px; }
  .hero-bullets li { font-size: 13px; }
  .hero-price-value { font-size: 26px; }

  .hero-bottom-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .hero-cta-btn { width: 100%; justify-content: center; }

  .hero-stats {
    padding: 10px 12px;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .hstat-num { font-size: 17px; }
  .hstat-lbl { font-size: 10px; }

  /* ── LEAD FORM ── */
  .lead-form { padding: 22px 14px 18px; }
  .lf-header h3 { font-size: 19px; }
  .lf-trust-row { gap: 8px; }
  .lf-trust-item { font-size: 10px; }
  .field input { font-size: 14px; }

  /* ── GRIDS → single column ── */
  .why-grid,
  .cost-grid,
  .price-grid,
  .fp-grid,
  .gallery-grid,
  .star-grid,
  .amenities-grid {
    grid-template-columns: 1fr;
  }

  .cost-grid .cost-card:nth-child(4),
  .cost-grid .cost-card:nth-child(5) { grid-column: auto; }

  /* ── STAR GRID ── */
  .star-item { border-right: none !important; }

  /* ── GOLD RUSH ── */
  .gold-rush-inner { gap: 28px; }
  .gold-row { grid-template-columns: 1fr 1fr; }
  .gold-cell { padding: 12px 14px; font-size: 13px; }
  .ribbon { font-size: 12px; padding: 7px 16px; }
  .gold-rush-copy h2 { font-size: 22px; }

  /* ── OVERVIEW ── */
  .overview-grid { gap: 28px; }
  .spec-row { font-size: 13.5px; padding: 11px 14px; }

  /* ── PROJECT HIGHLIGHTS ── */
  .ph-grid { gap: 28px; }
  .ph-media { aspect-ratio: 16/9; }
  .ph-copy h2 { font-size: 22px; }
  .check-list li { font-size: 14px; }

  /* ── LOCATION ── */
  .location-grid { gap: 28px; }
  .location-media { aspect-ratio: 16/9; }
  .location-copy h2 { font-size: 22px; }

  /* ── WHY INVEST ── */
  .why-card { padding: 22px 16px; }
  .why-card h3 { font-size: 17px; }

  /* ── PRICE CARDS ── */
  .price-card { padding: 20px 14px; }
  .price-idx { font-size: 28px; top: 10px; right: 14px; }
  .price-amt { font-size: 20px; }
  .price-card h3 { font-size: 17px; }

  /* ── COST CARDS ── */
  .cost-card { padding: 20px 14px; }

  /* ── FLOOR PLANS ── */
  .fp-card .btn { margin: 12px; width: calc(100% - 24px); }

  /* ── AMENITIES ── */
  .amenity-card { padding: 22px 12px 16px; }

  /* ── GALLERY ── */
  .gallery-grid { gap: 12px; }
  .gallery-item { aspect-ratio: 4/3; }

  /* ── CTA STRIP ── */
  .cta-strip { padding: 44px 0; }
  .cta-strip-inner { flex-direction: column; text-align: center; gap: 20px; }
  .cta-strip h2 { font-size: 20px; }

  /* ── TRUST STRIP ── */
  .trust-strip-inner { justify-content: center; text-align: center; }
  .trust-item { flex-direction: column; text-align: center; gap: 6px; }

  /* ── FOOTER ── */
  .rera { font-size: 12px; }
  .disclaimer { font-size: 12px; }
  .footer-contact { flex-direction: column; gap: 8px; }
  .footer-contact-sep { display: none; }

  /* ── BUTTONS ── */
  .btn-lg { padding: 14px 24px; font-size: 14px; }
  .btn-gold-tan { font-size: 13px; padding: 11px 18px; }

  /* ── MOBILE STICKY BAR ── */
  .msb-btn { font-size: 11px; padding: 11px 4px; }

  /* ── FLOATING BUTTONS ── */
  .float-actions-wrap { right: 10px; bottom: 70px; }
  .fab { width: 44px; height: 44px; }
  .chat-tooltip-bubble { max-width: 210px; padding: 12px 14px; }
  .chat-msg { font-size: 12px; }

  /* ── TOAST ── */
  .toast {
    width: calc(100% - 28px);
    max-width: 360px;
    text-align: center;
    font-size: 13px;
    padding: 14px 20px;
  }

  /* ── MISC ── */
  .sticky-edge-tab { display: none; }
  .scroll-cue { display: none; }
  .serif-heading { font-size: clamp(22px, 6vw, 30px); }
  .section-sub { font-size: 14px; margin-bottom: 32px; }
}

/* Extra small — 360px and below */
@media (max-width: 380px) {
  .hero h1 { font-size: 30px; }
  .hbadge { font-size: 11px; padding: 5px 10px; }
  .gold-row { grid-template-columns: 1fr; }
  .gold-cell { padding: 10px 12px; }
  .msb-btn { font-size: 10px; gap: 4px; }
  .lf-trust-row { flex-direction: column; gap: 6px; }
}

/* ==========================================================================
   PINNED EDGE TAB ("Enquire Now")
   ========================================================================== */
.sticky-edge-tab {
  position: fixed;
  right: 0;
  top: 45%;
  transform: translateY(-50%);
  z-index: 999;
}

.sticky-edge-tab a {
  display: block;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 18px;
  border-radius: 8px 8px 0 0;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  box-shadow: -4px 0 16px rgba(0,0,0,0.2);
  transition: background .25s, transform .25s;
}

.sticky-edge-tab a:hover {
  background: var(--orange);
}

/* ==========================================================================
   CHAT TOOLTIP BUBBLE & FLOATING ACTIONS
   ========================================================================== */
.float-actions-wrap {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  pointer-events: none;
}

.float-actions-wrap * {
  pointer-events: auto;
}

.chat-tooltip-bubble {
  background: #fff;
  color: var(--ink);
  padding: 16px 20px;
  border-radius: 16px 16px 4px 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
  border: 1px solid #EAE6DF;
  max-width: 260px;
  position: relative;
  animation: floatBubble 4s ease-in-out infinite;
}

@keyframes floatBubble {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.chat-close {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 18px;
  color: #999;
  cursor: pointer;
  line-height: 1;
}

.chat-close:hover { color: #333; }

.chat-hi {
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 2px;
}

.chat-msg {
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 1.4;
}

.float-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fab {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  transition: transform .25s var(--ease);
  position: relative;
}

.fab:hover {
  transform: scale(1.1);
}

.fab-call {
  background: #0F3866;
  color: #fff;
}

.fab-whatsapp {
  background: #25D366;
  color: #fff;
  animation: pulse 2.4s ease-in-out infinite;
}

.unread-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: #E53935;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}

/* ==========================================================================
   LOGO CONTRAST & STYLING FIX
   ========================================================================== */
.site-logo-img {
  max-height: 44px;
  width: auto;
  display: block;
  filter: none !important;
  background: #ffffff;
  padding: 6px 14px;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  transition: transform .2s ease;
}

.site-logo-img:hover {
  transform: scale(1.02);
}

.site-header:not(.scrolled) .site-logo-img {
  filter: none !important;
}

.site-header.scrolled .site-logo-img {
  filter: none !important;
}

.footer-logo-img {
  max-height: 48px;
  width: auto;
  display: inline-block;
  margin: 0 auto;
  filter: none !important;
  background: #ffffff;
  padding: 6px 18px;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}