/* =========================================================
   ELDECO TERRA & SOL — PREMIUM LANDING PAGE CSS
   Ultra-luxury dark/gold theme · Mobile-first responsive
   ========================================================= */

/* === TOKENS === */
:root {
  --gold: #c9a84c;
  --gold-l: #e8c97a;
  --gold-d: #9b7a30;
  --green: #134e1c;
  --green-l: #1b5e20;
  --green-d: #0c3513;
  --dark: #0d0e12;
  --dark2: #151720;
  --dark3: #1e2030;
  --white: #ffffff;
  --surface: #f8f7f4;
  --surface2: #efeae2;
  --txt: #3a3a4a;
  --txt-m: #6b6b7a;
  --txt-l: #9a9aac;
  --r-sm: 8px;
  --r: 16px;
  --r-lg: 24px;
  --sh: 0 4px 24px rgba(0, 0, 0, .08);
  --sh-lg: 0 20px 60px rgba(0, 0, 0, .18);
  --ease: .35s cubic-bezier(.4, 0, .2, 1);
  --mw: 1180px;
}

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

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--txt);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden
}

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

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

ul {
  list-style: none
}

button {
  font-family: inherit
}

/* === UTILITIES === */
.container {
  max-width: var(--mw);
  margin: 0 auto;
  padding: 0 1.25rem
}

/* === HEADER === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, .08);
  border-bottom: 1px solid var(--surface2);
  transition: var(--ease)
}

.header.scrolled {
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, .97)
}

.header__inner {
  max-width: var(--mw);
  margin: 0 auto;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0
}

.logo__main {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--green-l)
}

.logo__sub {
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-d)
}

.nav {
  display: flex;
  align-items: center;
  gap: .35rem
}

@media (min-width: 769px) {
  .nav {
    margin-left: auto;
    margin-right: auto;
  }
}

.nav__link {
  font-size: .8rem;
  font-weight: 500;
  color: var(--txt);
  padding: .45rem .7rem;
  border-radius: 6px;
  transition: var(--ease);
  white-space: nowrap
}

.nav__link:hover,
.nav__link.active {
  color: var(--green-l);
  background: rgba(27, 94, 32, .06)
}

.nav__cta {
  background: linear-gradient(135deg, var(--green-l), var(--green-d));
  color: var(--white) !important;
  font-weight: 600;
  border-radius: 6px;
  padding: .5rem 1.2rem
}

.nav__cta:hover {
  box-shadow: 0 4px 16px rgba(27, 94, 32, .3);
  transform: translateY(-1px)
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  z-index: 10
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--ease)
}

.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)
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .8rem 1.8rem;
  font-size: .88rem;
  font-weight: 600;
  border: none;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: var(--ease);
  letter-spacing: .02em;
  position: relative;
  overflow: hidden
}

.btn--gold {
  background: linear-gradient(135deg, var(--green-l), var(--green-d));
  color: var(--white)
}

.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27, 94, 32, .3);
  background: linear-gradient(135deg, var(--gold), var(--gold-d))
}

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

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

.btn--outline-light {
  color: var(--gold-l);
  border-color: var(--gold-l)
}

.btn--outline-light:hover {
  background: var(--gold-l);
  color: var(--dark)
}

.btn--white {
  background: var(--white);
  color: var(--gold-d);
  border: 2px solid var(--gold)
}

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

.btn--full {
  width: 100%
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 10, 16, .87), rgba(10, 10, 16, .55) 55%, rgba(10, 10, 16, .35))
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  padding: 7rem 1.25rem 3rem;
  width: 100%;
  text-align: center
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(201, 168, 76, .14);
  border: 1px solid rgba(201, 168, 76, .35);
  color: var(--gold-l);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  animation: fadeUp .6s ease both
}

.pulse-dot {
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 1.8s infinite
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .4;
    transform: scale(1.4)
  }
}

.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: .8rem;
  animation: fadeUp .7s .1s ease both
}

.hero__accent {
  display: block;
  color: var(--gold)
}

.hero__location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-size: .95rem;
  color: rgba(255, 255, 255, .7);
  margin-bottom: 1.3rem;
  animation: fadeUp .7s .18s ease both
}

.hero__location i {
  color: var(--gold)
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem;
  margin-bottom: 1.8rem;
  animation: fadeUp .7s .24s ease both
}

.chip {
  font-size: .75rem;
  font-weight: 500;
  color: var(--white);
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .18);
  padding: .3rem .75rem;
  border-radius: 50px
}

.hero__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: .5rem;
  margin-bottom: 2rem;
  animation: fadeUp .7s .3s ease both
}

.hero__price small {
  font-size: .82rem;
  color: rgba(255, 255, 255, .5)
}

.hero__price strong {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: var(--gold-l);
  line-height: 1
}

.hero__price sup {
  font-size: .5em
}

.hero__btns {
  display: flex;
  gap: .8rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp .7s .36s ease both
}

.hero__stats {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(201, 168, 76, .1);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(201, 168, 76, .18);
  padding: 1.3rem .5rem;
  flex-wrap: wrap;
  gap: .5rem
}

.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: .4rem 1.6rem;
  text-align: center
}

.hero__stat-num,
.hero__stat-num-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-l);
  line-height: 1
}

.hero__stat-label {
  font-size: .7rem;
  color: rgba(255, 255, 255, .5);
  margin-top: .25rem
}

.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(201, 168, 76, .2)
}

.scroll-cue {
  position: absolute;
  bottom: 7rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2
}

.scroll-cue__mouse {
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, .35);
  border-radius: 13px;
  display: flex;
  justify-content: center;
  padding-top: 7px
}

.scroll-cue__dot {
  width: 4px;
  height: 9px;
  background: var(--gold-l);
  border-radius: 2px;
  animation: scrollDot 1.6s infinite
}

@keyframes scrollDot {
  0% {
    transform: translateY(0);
    opacity: 1
  }

  100% {
    transform: translateY(14px);
    opacity: 0
  }
}

/* === STRIP === */
.strip {
  background: var(--surface2);
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  padding: .75rem 0;
  overflow: hidden
}

.strip__inner {
  max-width: var(--mw);
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: .3rem
}

.strip__inner>span {
  font-size: .78rem;
  color: var(--txt);
  padding: .2rem .8rem;
  display: flex;
  align-items: center;
  gap: .35rem
}

.strip__inner i {
  color: var(--green-l);
  font-size: .7rem
}

.strip__inner b {
  color: var(--green-l)
}

.strip__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold)
}

/* === SECTIONS === */
.sec {
  padding: 5rem 0
}

.sec--dark {
  background: var(--surface)
}

.sec--muted {
  background: var(--surface)
}

.sec__header {
  margin-bottom: 2.8rem
}

.sec__header--center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center
}

.tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--green-l);
  border: 1px solid var(--gold);
  padding: .22rem .8rem;
  border-radius: 50px;
  margin-bottom: .85rem;
  background: rgba(201, 168, 76, .04)
}

.tag--light {
  color: var(--green-l);
  border-color: var(--gold)
}

.heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--dark);
  margin-bottom: .7rem;
  line-height: 1.2
}

.heading--light {
  color: var(--dark)
}

.sub {
  font-size: .95rem;
  color: var(--txt-m);
  max-width: 500px
}

.sub--light {
  color: var(--txt-m)
}

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

.overview__text p {
  font-size: .95rem;
  line-height: 1.8;
  margin-bottom: .8rem
}

.overview__cards {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin: 1.5rem 0 2rem
}

.info-card {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: .75rem 1rem;
  background: var(--surface);
  border-radius: var(--r-sm);
  border-left: 3px solid var(--gold)
}

.info-card i {
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0
}

.info-card strong {
  display: block;
  font-size: .88rem;
  color: var(--dark)
}

.info-card small {
  font-size: .75rem;
  color: var(--txt-m)
}

.overview__img {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-lg)
}

.overview__img img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  transition: transform .5s ease
}

.overview__img:hover img {
  transform: scale(1.03)
}

.overview__badge {
  position: absolute;
  bottom: 1.2rem;
  right: 1.2rem;
  background: rgba(10, 10, 16, .85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(201, 168, 76, .3);
  border-radius: 12px;
  padding: .5rem .9rem;
  text-align: center
}

.overview__badge span {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold)
}

.overview__badge small {
  font-size: .65rem;
  color: rgba(255, 255, 255, .55)
}

/* === HIGHLIGHTS === */
.highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.3rem
}

.hl-card {
  background: var(--white);
  border: 1px solid var(--surface2);
  border-radius: var(--r);
  padding: 1.8rem 1.3rem;
  text-align: center;
  box-shadow: var(--sh);
  transition: var(--ease)
}

.hl-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--sh-lg)
}

.hl-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(27, 94, 32, 0.06);
  border: 1px solid rgba(201, 168, 76, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.2rem;
  color: var(--green-l);
  transition: var(--ease)
}

.hl-card:hover .hl-card__icon {
  background: var(--green-l);
  color: var(--white)
}

.hl-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: .4rem
}

.hl-card p {
  font-size: .78rem;
  color: var(--txt-m);
  line-height: 1.6
}

/* === PRICING === */
.pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 780px;
  margin: 0 auto 1.5rem
}

.price-card {
  background: var(--white);
  border: 2px solid var(--surface2);
  border-radius: var(--r-lg);
  padding: 2.2rem 1.8rem;
  position: relative;
  transition: var(--ease);
  box-shadow: var(--sh);
  text-align: center
}

.price-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: var(--sh-lg)
}

.price-card--featured {
  background: var(--dark2);
  border-color: var(--gold)
}

.price-card__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--dark);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .25rem .9rem;
  border-radius: 50px;
  white-space: nowrap
}

.price-card__badge--gold {
  background: var(--gold-l)
}

.price-card__type {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  margin-top: .5rem
}

.price-card--featured .price-card__type {
  color: var(--white)
}

.price-card__area {
  font-size: .85rem;
  color: var(--txt-m);
  margin-bottom: 1.2rem
}

.price-card--featured .price-card__area {
  color: var(--txt-l)
}

.price-card__price {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1
}

.price-card--featured .price-card__price {
  color: var(--gold-l)
}

.price-card__rs {
  font-size: 1rem;
  color: var(--gold);
  vertical-align: top;
  margin-right: .15rem
}

.price-card__price sup {
  font-size: .5em;
  color: var(--gold)
}

.price-card__onwards {
  font-size: .78rem;
  color: var(--txt-m);
  margin-bottom: 1.2rem
}

.price-card--featured .price-card__onwards {
  color: var(--txt-l)
}

.price-card__list {
  display: flex;
  flex-direction: column;
  gap: .45rem;
  margin-bottom: 1.8rem;
  text-align: left
}

.price-card__list li {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .83rem;
  color: var(--txt)
}

.price-card--featured .price-card__list li {
  color: rgba(255, 255, 255, .8)
}

.price-card__list i {
  color: var(--gold);
  font-size: .72rem;
  flex-shrink: 0
}

.disclaimer-sm {
  text-align: center;
  font-size: .75rem;
  color: var(--txt-m);
  max-width: 550px;
  margin: 0 auto
}

/* === FLOOR PLAN === */
.fp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem
}

.fp-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh);
  border: 1px solid var(--surface2);
  background: var(--white)
}

.fp-card__head {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: 1rem 1.3rem;
  background: var(--dark2);
  color: var(--gold-l);
  font-weight: 600;
  font-size: .88rem
}

.fp-card__body {
  position: relative;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface)
}

.fp-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(6px);
  opacity: 0.8;
  z-index: 0;
}

.fp-card__blur {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  z-index: 1;
}

.fp-card__blur i {
  font-size: 3.5rem;
  color: var(--gold)
}

.fp-card__blur p {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--dark)
}

.fp-card__cta {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(248, 247, 244, .6);
  backdrop-filter: blur(4px)
}

/* === AMENITIES === */
.amenity-hero {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 2.5rem
}

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

.amenity-hero__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.8rem;
  background: linear-gradient(to top, rgba(0, 0, 0, .8), transparent)
}

.amenity-hero__overlay h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--gold-l);
  margin-bottom: .3rem
}

.amenity-hero__overlay p {
  font-size: .85rem;
  color: rgba(255, 255, 255, .7)
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: .9rem
}

.am-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  padding: 1rem .6rem;
  background: var(--white);
  border: 1px solid var(--surface2);
  border-radius: var(--r);
  text-align: center;
  transition: var(--ease);
  box-shadow: var(--sh)
}

.am-item:hover {
  background: rgba(27, 94, 32, 0.04);
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--sh-lg)
}

.am-item__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(27, 94, 32, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--green-l)
}

.am-item span {
  font-size: .7rem;
  color: var(--txt-m);
  line-height: 1.3
}

.center-cta {
  text-align: center;
  margin-top: 2rem
}

/* === GALLERY === */
.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: .8rem
}

.gallery__item {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  cursor: pointer
}

.gallery__item--tall {
  grid-row: span 2
}

.gallery__item img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  transition: transform .45s ease
}

.gallery__item--tall img {
  min-height: 420px
}

.gallery__item:hover img {
  transform: scale(1.05)
}

.gallery__cap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: .8rem 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, .7), transparent);
  font-size: .78rem;
  font-weight: 600;
  color: var(--white);
  opacity: 0;
  transition: var(--ease);
  transform: translateY(8px)
}

.gallery__item:hover .gallery__cap {
  opacity: 1;
  transform: translateY(0)
}

/* === LOCATION === */
.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start
}

.loc-map {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  height: 420px
}

.loc-map iframe {
  width: 100%;
  height: 100%
}

.loc-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-bottom: 1.2rem
}

.loc-tab {
  display: flex;
  align-items: center;
  gap: .35rem;
  padding: .4rem .85rem;
  background: transparent;
  border: 1px solid var(--surface2);
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--ease);
  color: var(--txt-m);
  font-family: inherit
}

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

.loc-list {
  display: none;
  flex-direction: column;
  gap: .6rem
}

.loc-list.active {
  display: flex
}

.loc-list li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .85rem;
  color: var(--txt);
  padding: .6rem .9rem;
  background: var(--surface);
  border-radius: var(--r-sm);
  border-left: 3px solid transparent;
  transition: var(--ease)
}

.loc-list li:hover {
  border-left-color: var(--gold)
}

.loc-list li i {
  color: var(--gold);
  font-size: .55rem;
  flex-shrink: 0
}

.loc-list li span {
  flex: 1
}

.loc-list li b {
  font-size: .75rem;
  color: var(--gold-d);
  background: rgba(201, 168, 76, .1);
  padding: .1rem .55rem;
  border-radius: 50px;
  white-space: nowrap
}

/* === VIDEO === */
.video-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  position: relative
}

.video-gate {
  position: relative
}

.video-gate__thumb {
  width: 100%;
  height: 420px;
  object-fit: cover
}

.video-gate__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .8rem
}

.play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gold);
  border: 4px solid rgba(255, 255, 255, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--ease);
  color: var(--white);
  font-size: 1.3rem;
  padding-left: 4px
}

.play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 36px rgba(201, 168, 76, .5)
}

.video-gate__overlay p {
  color: var(--white);
  font-size: .9rem;
  font-weight: 500
}

.video-player {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  position: relative
}

.video-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%
}

/* === DEVELOPER === */
.dev-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center
}

.dev-text p {
  font-size: .95rem;
  line-height: 1.8;
  margin-bottom: 1rem
}

.dev-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .9rem;
  margin-top: 1.5rem
}

.dev-stat {
  padding: 1rem;
  background: var(--white);
  border-radius: var(--r);
  box-shadow: var(--sh);
  text-align: center
}

.dev-stat__num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-d);
  line-height: 1
}

.dev-stat small {
  font-size: .72rem;
  color: var(--txt-m)
}

.dev-visual {
  display: flex;
  justify-content: center
}

.dev-logo-circle {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--dark3), var(--dark2));
  border: 2px solid rgba(201, 168, 76, .25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--sh-lg)
}

.dev-logo-circle__main {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold)
}

.dev-logo-circle__sub {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5)
}

.dev-logo-circle__since {
  font-size: .7rem;
  color: var(--txt-l);
  margin-top: .4rem
}

/* === CONTACT === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center
}

.contact-img {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-lg)
}

.contact-img img {
  width: 100%;
  height: 500px;
  object-fit: cover
}

.contact-form-wrap p {
  font-size: .92rem;
  color: var(--txt-m);
  margin-bottom: .5rem
}

/* === FORM === */
.form {
  margin-top: 1rem
}

.form__group {
  margin-bottom: 1rem
}

.form__group label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: .35rem
}

.form__group label span {
  color: var(--gold)
}

.form__group input,
.form__group select,
.form__group textarea {
  width: 100%;
  padding: .78rem 1rem;
  border: 1.5px solid var(--surface2);
  border-radius: var(--r-sm);
  font-family: inherit;
  font-size: .88rem;
  color: var(--dark);
  background: var(--surface);
  transition: var(--ease);
  outline: none
}

.form__group input:focus,
.form__group select:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, .1)
}

.form__consent {
  display: flex;
  gap: .65rem;
  align-items: flex-start;
  margin-bottom: 1.3rem;
  font-size: .74rem;
  color: var(--txt-m);
  line-height: 1.5
}

.form__consent input {
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--gold)
}

.form__consent a {
  color: var(--gold);
  text-decoration: underline
}

.input-error {
  border-color: #e53935 !important;
  box-shadow: 0 0 0 3px rgba(229, 57, 53, .1) !important;
  animation: shake .35s ease
}

@keyframes shake {

  0%,
  100% {
    transform: translateX(0)
  }

  25% {
    transform: translateX(-5px)
  }

  75% {
    transform: translateX(5px)
  }
}

/* === FOOTER === */
.footer__top {
  background: var(--surface2);
  padding: 3.5rem 0 2.5rem;
  border-top: 1px solid var(--gold)
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 2.5rem
}

.footer__brand p {
  font-size: .82rem;
  color: var(--txt);
  margin: .8rem 0
}

.footer__rera {
  font-size: .75rem;
  color: var(--txt);
  line-height: 1.8
}

.footer__rera strong {
  color: var(--green-l)
}

.footer__col h4 {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green-l);
  margin-bottom: 1rem
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: .4rem
}

.footer__col a,
.footer__col span {
  font-size: .82rem;
  color: var(--txt);
  transition: var(--ease);
  display: flex;
  align-items: center;
  gap: .5rem
}

.footer__col a:hover {
  color: var(--green-l)
}

.footer__col i {
  width: 14px;
  text-align: center;
  color: var(--gold);
  font-size: .75rem
}

.footer__bottom {
  background: var(--surface);
  padding: 1.2rem 0;
  border-top: 1px solid var(--surface2)
}

.footer__disclaimer {
  font-size: .68rem;
  color: var(--txt-m);
  line-height: 1.7;
  margin-bottom: .5rem
}

.footer__copy {
  font-size: .72rem;
  color: var(--txt-l)
}

/* === MODAL === */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .65);
  backdrop-filter: blur(5px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 1.25rem
}

.modal.open {
  display: flex
}

.modal__box {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 2.2rem;
  max-width: 460px;
  width: 100%;
  position: relative;
  animation: slideUp .3s ease;
  max-height: 92vh;
  overflow-y: auto
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(28px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.modal__close {
  position: absolute;
  top: .8rem;
  right: .8rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--surface);
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--txt);
  transition: var(--ease);
  line-height: 1
}

.modal__close:hover {
  background: var(--dark);
  color: var(--white)
}

.modal__header {
  text-align: center;
  margin-bottom: 1.5rem
}

.modal__badge {
  display: inline-block;
  background: rgba(201, 168, 76, .1);
  color: var(--gold-d);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .2rem .7rem;
  border-radius: 50px;
  margin-bottom: .6rem
}

.modal__header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--dark)
}

.modal__header p {
  font-size: .82rem;
  color: var(--txt-m)
}

.modal__success {
  text-align: center;
  padding: 1.5rem 0
}

.modal__success-icon {
  font-size: 3.5rem;
  color: var(--gold);
  margin-bottom: .8rem
}

.modal__success h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--dark);
  margin-bottom: .4rem
}

.modal__success p {
  color: var(--txt-m);
  margin-bottom: 1.2rem
}

/* === FLOATING === */
.floats {
  position: fixed;
  left: 1.2rem;
  bottom: 1.2rem;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: .6rem
}

.float-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
  box-shadow: var(--sh-lg);
  transition: var(--ease)
}

.float-btn:hover {
  transform: scale(1.1)
}

.float-btn--wa {
  background: #25D366
}

.float-btn--call {
  background: var(--gold)
}

/* === BOTTOM BAR (MOBILE) === */
.bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--dark);
  border-top: 1px solid rgba(201, 168, 76, .18);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, .3)
}

.bb__btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .15rem;
  padding: .75rem .5rem;
  font-size: .65rem;
  font-weight: 600;
  font-family: inherit;
  text-decoration: none;
  cursor: pointer;
  border: none;
  background: none;
  transition: var(--ease);
  color: rgba(255, 255, 255, .65);
  letter-spacing: .02em
}

.bb__btn i {
  font-size: 1rem
}

.bb__btn--call {
  color: #4FC3F7
}

.bb__btn--enquire {
  background: var(--gold);
  color: var(--white)
}

.bb__btn--enquire:hover {
  background: var(--gold-l)
}

.bb__btn--wa {
  color: #69F0AE
}

/* === ANIMATIONS === */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .5s ease, transform .5s ease
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0)
}

/* =========================================================
   RESPONSIVE — TABLET (max 1200px)
   ========================================================= */
@media(max-width:1200px) {
  .highlights {
    grid-template-columns: repeat(2, 1fr)
  }

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

  .hero__stat {
    padding: .4rem 1rem
  }

  .floats {
    left: auto;
    right: 1.2rem;
  }

  .fp-card__head {
    justify-content: center;
  }
}

/* =========================================================
   RESPONSIVE — TABLET PORTRAIT (max 900px)
   ========================================================= */
@media(max-width:900px) {

  .overview,
  .dev-grid,
  .contact-grid,
  .loc-grid {
    grid-template-columns: 1fr;
    gap: 2rem
  }

  .overview__img img {
    height: 300px
  }

  .contact-img img {
    height: 280px
  }

  .fp-grid {
    grid-template-columns: 1fr
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr
  }

  .loc-map {
    height: 300px
  }
}

/* =========================================================
   RESPONSIVE — MOBILE (max 768px)
   ========================================================= */
@media(max-width:768px) {
  .sec {
    padding: 3.5rem 0
  }

  /* Nav */
  .hamburger {
    display: flex
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(255, 255, 255, .98);
    backdrop-filter: blur(14px);
    padding: 1rem 1.25rem;
    gap: .2rem;
    border-top: 1px solid var(--surface2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08)
  }

  .nav.open {
    display: flex
  }

  .nav__link,
  .nav__cta {
    width: 100%;
    text-align: center;
    padding: .7rem
  }

  /* Hero */
  .hero__content {
    padding: 6.5rem 1rem 2.5rem;
    text-align: center
  }

  .hero__stats {
    padding: .8rem .5rem;
    gap: .3rem
  }

  .hero__stat {
    padding: .3rem .7rem
  }

  .hero__stat-divider {
    height: 30px
  }

  .scroll-cue {
    display: none
  }

  /* Strip */
  .strip__inner {
    flex-direction: column;
    gap: .2rem
  }

  .strip__dot {
    display: none
  }

  .strip__inner>span {
    font-size: .75rem;
    padding: .15rem .5rem
  }

  /* Grids */
  .highlights {
    grid-template-columns: 1fr 1fr;
    gap: .8rem
  }

  .amenities-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: .6rem
  }

  .pricing {
    grid-template-columns: 1fr;
    max-width: 400px
  }

  .gallery {
    grid-template-columns: 1fr 1fr
  }

  .gallery__item--tall {
    grid-row: auto
  }

  .gallery__item img,
  .gallery__item--tall img {
    min-height: 160px;
    height: 180px
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }

  .footer .logo {
    align-items: center;
  }

  .footer__col {
    align-items: center;
  }

  .footer__bottom {
    text-align: center;
  }

  .dev-stats {
    grid-template-columns: 1fr 1fr;
    gap: .6rem
  }

  /* Floating / Bottom */
  .floats {
    display: none
  }

  .bottom-bar {
    display: flex
  }

  body {
    padding-bottom: 62px
  }

  /* Video */
  .video-gate__thumb {
    height: 240px
  }

  /* Location tabs scroll */
  .loc-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: .3rem
  }

  .loc-tabs::-webkit-scrollbar {
    display: none
  }

  .loc-tab {
    flex-shrink: 0
  }
}

/* =========================================================
   RESPONSIVE — SMALL MOBILE (max 480px)
   ========================================================= */
@media(max-width:480px) {
  .sec {
    padding: 2.5rem 0
  }

  .container {
    padding: 0 1rem
  }

  .hero__content {
    padding: 5.5rem .8rem 2rem
  }

  .hero__btns {
    flex-direction: column;
    gap: .5rem
  }

  .hero__btns .btn {
    width: 100%
  }

  .hero__stats {
    gap: 0
  }

  .hero__stat-divider {
    display: none
  }

  .hero__stat {
    flex: 1 0 45%;
    padding: .4rem .5rem
  }

  .highlights {
    grid-template-columns: 1fr;
    gap: .6rem
  }

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

  .gallery {
    grid-template-columns: 1fr
  }

  .gallery__item img,
  .gallery__item--tall img {
    height: 200px
  }

  .overview__img img {
    height: 240px
  }

  .contact-img img {
    height: 220px
  }

  .video-gate__thumb {
    height: 180px
  }

  .amenity-hero img {
    height: 220px
  }

  .fp-card__body {
    height: 220px
  }

  .dev-logo-circle {
    width: 200px;
    height: 200px
  }

  .dev-logo-circle__main {
    font-size: 2rem
  }

  .modal__box {
    padding: 1.5rem 1.2rem;
    margin: 0 .5rem
  }

  .price-card {
    padding: 1.8rem 1.2rem
  }

  .loc-map {
    height: 240px
  }
}

/* =========================================================
   SPLIT LAYOUT & SIDEBAR REDESIGN
   ========================================================= */
.logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
}

.logo-wrap .logo__main {
  font-size: 1.45rem;
}

.logo-wrap .logo__sub {
  font-size: 0.52rem;
}

.affiliate-badge {
  font-size: 0.55rem;
  font-weight: 600;
  color: var(--gold-l);
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  white-space: nowrap;
}

.header.scrolled .affiliate-badge {
  background: rgba(201, 168, 76, 0.08);
}

@media (min-width: 769px) {
  .header__inner {
    max-width: 100% !important;
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
}

.main-container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0;
}

.left-section {
  flex: 1;
  min-width: 0;
  width: calc(100% - 370px);
}

@media (min-width: 1201px) {
  .left-section .container {
    max-width: 1000px;
    margin: 0 auto;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

.desktop-summary {
  width: 370px;
  flex-shrink: 0;
  position: sticky;
  top: 90px;
  height: calc(100vh - 90px);
  z-index: 99;
}

.sidebar-box {
  background: var(--white);
  border-left: 1px solid var(--surface2);
  box-shadow: var(--sh-lg);
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.sidebar__top {
  display: flex;
  background: #0d0e12;
  /* Dark black to match competitor */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar__top-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.9rem 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: var(--ease);
  color: var(--white);
  text-align: center;
}

.sidebar__top-btn--visit {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--gold-l);
}

.sidebar__top-btn--visit:hover {
  background: rgba(255, 255, 255, 0.05);
}

.sidebar__top-btn--phone {
  color: var(--white);
}

.sidebar__top-btn--phone:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--gold-l);
}

.sidebar__body {
  padding: 0 1.5rem;
  flex: 1;
  overflow-y: auto;
}

.sidebar__title-wrap {
  text-align: center;
  margin-bottom: 1.25rem;
}

.sidebar__title-wrap h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.sidebar__body .form__group {
  margin-bottom: 0.8rem;
}

.sidebar__body .form__group input {
  padding: 0.75rem 0.9rem;
  font-size: 0.85rem;
  border-radius: 6px;
  background: #ffffff;
  border: 1px solid #ced4da;
  width: 100%;
  outline: none;
  transition: var(--ease);
  color: var(--dark);
}

.sidebar__body .form__group input:focus {
  border-color: #006a4e;
  box-shadow: 0 0 0 3px rgba(0, 106, 78, 0.15);
}

.sidebar__body .form__consent {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 0.65rem;
  color: var(--txt-m);
  line-height: 1.4;
  margin-bottom: 1.2rem;
}

.sidebar__body .form__consent input {
  margin-top: 2px;
  accent-color: #006a4e;
}

.sidebar__body .form__consent a {
  color: var(--gold-d);
  text-decoration: underline;
}

.btn--green-gradient {
  background: #006a4e !important;
  color: var(--white) !important;
  border: none !important;
  font-weight: 700 !important;
  font-size: 0.9rem !important;
  border-radius: 50px !important;
  box-shadow: 0 4px 15px rgba(0, 106, 78, 0.2) !important;
}

.btn--green-gradient:hover {
  transform: translateY(-1px);
  background: #004d39 !important;
  box-shadow: 0 6px 20px rgba(0, 106, 78, 0.35) !important;
}

.sidebar__benefits {
  display: flex;
  justify-content: space-between;
  gap: 0.4rem;
  margin-top: 1.5rem;
}

.sidebar__benefit {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.sidebar__benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid #3a3a4a;
  color: #3a3a4a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .04);
}

.sidebar__benefit span {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--txt-m);
  line-height: 1.2;
}

/* Sidebar Chat Assistant Widget */
.sidebar__chat-widget {
  background: #fdfcfa;
  border: 1px solid var(--surface2);
  border-radius: var(--r-sm);
  padding: 1rem 0.8rem;
  margin-top: 1.5rem;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .03);
}

.sidebar__chat-close {
  position: absolute;
  top: 0.25rem;
  right: 0.4rem;
  background: transparent;
  border: none;
  font-size: 1.15rem;
  line-height: 1;
  color: var(--txt-l);
  cursor: pointer;
  transition: var(--ease);
}

.sidebar__chat-close:hover {
  color: var(--dark);
}

.sidebar__chat-body {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.sidebar__chat-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold-l);
  flex-shrink: 0;
  box-shadow: var(--sh);
}

.sidebar__chat-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sidebar__chat-text {
  flex: 1;
  text-align: left;
}

.sidebar__chat-text h4 {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.1rem;
}

.sidebar__chat-text p {
  font-size: 0.72rem;
  color: var(--txt-m);
  margin-bottom: 0.45rem;
}

.btn--chat {
  background: #d82b2b !important;
  color: var(--white) !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  padding: 0.35rem 0.9rem !important;
  border-radius: 50px !important;
  border: none !important;
  cursor: pointer;
  transition: var(--ease);
  box-shadow: 0 3px 8px rgba(216, 43, 43, 0.3) !important;
}

.btn--chat:hover {
  background: #bd2020 !important;
  transform: translateY(-1px);
}

/* intl-tel-input overrides */
.iti {
  width: 100% !important;
  display: block !important;
}

.iti__flag-container {
  z-index: 10;
}

.iti__selected-flag {
  background-color: #f8f9fa !important;
  border-right: 1px solid #ced4da;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}

.iti__country-list {
  z-index: 1000 !important;
  white-space: normal;
}

.sidebar__footer {
  padding: 0 1.5rem;
  background: var(--surface);
  border-top: 1px dashed var(--surface2);
}

.btn--callback {
  background: #006a4e !important;
  color: var(--white) !important;
  border: none !important;
  border-radius: 50px !important;
  padding: 0.78rem 1rem !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 15px rgba(0, 106, 78, 0.15) !important;
}

.btn--callback:hover {
  background: #004d39 !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 106, 78, 0.3) !important;
}

.mobile-lead-form {
  display: none;
}

/* === MOBILE & TABLET STYLING OVERRIDES === */
@media (max-width: 1200px) {
  .logo-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .affiliate-badge {
    font-size: 0.55rem;
    padding: 0.15rem 0.45rem;
  }

  .main-container {
    flex-direction: column;
    padding: 0;
    gap: 0;
  }

  .left-section {
    width: 100%;
  }

  .desktop-summary {
    display: none;
  }

  .mobile-lead-form {
    display: block;
    background: var(--surface);
    padding: 2.5rem 1.25rem;
    border-bottom: 1px solid var(--surface2);
  }

  .mobile-lead-form__inner {
    background: var(--white);
    border: 1px solid var(--surface2);
    border-radius: var(--r);
    padding: 2rem 1.5rem;
    box-shadow: var(--sh);
    max-width: 100%;
    margin: 0 auto;
  }

  .mobile-lead-form__inner h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    text-align: center;
    margin-bottom: 0.35rem;
  }

  .mobile-lead-form__inner p {
    font-size: 0.8rem;
    color: var(--txt-m);
    text-align: center;
    margin-bottom: 1.5rem;
  }

  .mobile-lead-form__inner .form__consent {
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
    font-size: 0.72rem;
    color: var(--txt-m);
    line-height: 1.4;
    margin-bottom: 1.2rem;
  }

  .mobile-lead-form__inner .form__consent input {
    margin-top: 3px;
    accent-color: #198754;
  }

  .mobile-lead-form__inner .form__consent a {
    color: var(--gold-d);
    text-decoration: underline;
  }

  .mobile-lead-form__inner .form__group input {
    width: 100%;
    padding: .78rem 1rem;
    border: 1.5px solid var(--surface2);
    border-radius: var(--r-sm);
    font-family: inherit;
    font-size: .88rem;
    color: var(--dark);
    background: var(--surface);
    transition: var(--ease);
    outline: none;
    margin-bottom: 1rem;
  }

  .mobile-lead-form__inner .form__group input:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, .1);
  }

  .mobile-lead-form__benefits {
    display: flex;
    justify-content: space-around;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding-top: 1.2rem;
    border-top: 1px solid var(--surface2);
  }

  .mb-benefit {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--txt-m);
  }

  .mb-benefit i {
    color: #198754;
    font-size: 0.9rem;
  }
}

/* Override bottom bar enquire CTA to conversion green */
.bottom-bar .bb__btn--enquire {
  background: #198754 !important;
}

.bottom-bar .bb__btn--enquire:hover {
  background: #146c43 !important;
}

/* Header Right CTA Container */
.header__right {
  display: none;
}

@media (min-width: 1201px) {
  .header__right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 370px;
    /* matches the sidebar width */
    padding-right: 0;
  }
}

.header__cta-btn {
  padding: 0.5rem 1.4rem !important;
  font-size: 0.8rem !important;
  border-radius: 6px !important;
  background: linear-gradient(135deg, var(--gold), var(--gold-d)) !important;
  color: var(--white) !important;
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.3) !important;
  border: none !important;
  font-weight: 600 !important;
  cursor: pointer;
  transition: var(--ease);
}

.header__cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.5) !important;
}
/* Fix mobile click-to-call bubbling issue */
a[href^="tel:"] * {
  pointer-events: none;
}


a[href^="https://wa.me"] * {
  pointer-events: none;
}

