/* =========================================
   HIRANANDANI CHEMBUR — COMPLETE STYLE.CSS
   Light theme + Premium Bold Hero (Video)
   Amenities Carousel + Gallery Carousel
   Modal + Drawer + Fixed Enquiry Bar + Floating Buttons
   Legal Footer (builder-style)
   ========================================= */

:root{
  --bg:#f6f7fb;
  --paper:#ffffff;
  --text:#0f172a;
  --muted:rgba(15,23,42,.68);
  --line:rgba(15,23,42,.12);
  --line2:rgba(15,23,42,.18);
  --shadow: 0 14px 34px rgba(15,23,42,.10);
  --shadow2: 0 22px 55px rgba(15,23,42,.14);
  --radius:18px;

  /* Luxe gold */
  --accent:#c8a25a;
  --accent2:#e0c07a;

  /* Maroon (section titles like screenshots) */
  --maroon:#7a0b3a;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.w100{width:100%}
.container{width:min(1220px,92%);margin:0 auto}
.muted{color:var(--muted)}
.small{font-size:.92rem}

/* =========================
   Header
   ========================= */
.header{
  position:fixed;top:0;left:0;right:0;z-index:50;
  background:rgba(255,255,255,.82);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
  transition: background .25s ease, box-shadow .25s ease;
}
.header.is-solid{
  background:rgba(255,255,255,.94);
  box-shadow:0 10px 25px rgba(15,23,42,.06);
}
.header__inner{
  display:flex;align-items:center;justify-content:space-between;gap:16px;
  padding:16px 0;
}
.brand{display:flex;gap:12px;align-items:center}
.brand__logo{height:36px}
.brand__top{font-weight:800;letter-spacing:.14em;font-size:.82rem}
.brand__bottom{font-weight:950;letter-spacing:.12em;font-size:.88rem}

.nav{display:flex;gap:28px;align-items:center}
.nav__link{
  color:rgba(15,23,42,.72);
  font-weight:700;
  padding:8px 0;
  position:relative;
}
.nav__link:hover{color:rgba(15,23,42,.96)}

.header__actions{display:flex;gap:12px;align-items:center}

/* =========================
   Buttons
   ========================= */
.btn{
  border-radius:999px;
  padding:12px 18px;
  border:1px solid rgba(15,23,42,.55);
  background:rgba(255,255,255,.9);
  color:rgba(15,23,42,.95);
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  cursor:pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover{transform:translateY(-1px);box-shadow:var(--shadow)}
.btn--outline{background:rgba(255,255,255,.9)}
.btn--primary{border-color:transparent;background:linear-gradient(135deg,var(--accent),var(--accent2));color:#1c1407}
.btn--ghost{background:rgba(15,23,42,.04);border-color:rgba(15,23,42,.18)}
.btn--ghost:hover{background:rgba(15,23,42,.07)}

/* Gold button used in brochure */
.btn--gold{
  border:none;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color:#1c1407;
  font-weight:950;
  letter-spacing:.04em;
  text-transform:none;
  padding:14px 18px;
  border-radius:14px;
  display:inline-flex;
  justify-content:center;
  align-items:center;
  gap:10px;
  box-shadow:0 16px 28px rgba(200,162,90,.18);
}
.btn--gold:hover{
  transform:translateY(-1px);
  box-shadow:0 22px 42px rgba(200,162,90,.22);
}

/* =========================
   Mobile hamburger
   ========================= */
.iconBtn{
  display:none;
  width:46px;height:42px;border-radius:999px;
  border:1px solid var(--line2);
  background:rgba(255,255,255,.95);
  cursor:pointer;
  position:relative;
}
.iconBtn span, .iconBtn:before, .iconBtn:after{
  content:"";
  position:absolute;
  left:14px; right:14px;
  height:2px;
  background:rgba(15,23,42,.95);
}
.iconBtn span{top:50%;transform:translateY(-50%)}
.iconBtn:before{top:14px}
.iconBtn:after{bottom:14px}

/* =========================
   HERO (default baseline)
   ========================= */
.hero{
  height:92vh;
  margin-top:72px;
  position:relative;
  overflow:hidden;
  background:#eef2f7;
}
.hero__media{position:absolute;inset:0}
.hero__video{
  position:absolute;inset:0;width:100%;height:100%;object-fit:cover;
}
.hero__image{
  position:absolute;inset:0;
  background:url("assets/hero.jpg") center/cover no-repeat;
  display:none;
}
.hero__overlay{
  position:absolute;inset:0;
  background:
    radial-gradient(900px 520px at 18% 72%, rgba(255,255,255,.90), rgba(255,255,255,.34) 56%, rgba(255,255,255,.16) 78%),
    linear-gradient(90deg, rgba(255,255,255,.88) 0%, rgba(255,255,255,.45) 44%, rgba(255,255,255,.22) 78%);
}

.hero__content{
  position:relative;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:0 0 78px;
  gap:14px;
}
.pill{
  display:inline-flex;
  padding:8px 12px;border-radius:999px;
  border:1px solid rgba(15,23,42,.14);
  background:rgba(255,255,255,.60);
  font-weight:900;font-size:.78rem;letter-spacing:.12em;color:rgba(15,23,42,.80);
  width:fit-content;
}
.accent{color:#8b6b2a}
.hero__title{
  margin:0;
  font-size:clamp(2.2rem,4.2vw,3.9rem);
  line-height:1.05;
  font-weight:950;
}
.hero__sub{
  margin:0;
  max-width:62ch;
  color:rgba(15,23,42,.72);
  line-height:1.7;
  font-size:1.05rem;
}
.hero__cta{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:8px
}
.hero__trust{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  margin-top:14px
}
.trustItem{
  background:rgba(255,255,255,.70);
  border:1px solid rgba(15,23,42,.12);
  border-radius:16px;
  padding:14px 16px;
  min-width:170px;
  box-shadow:0 12px 26px rgba(15,23,42,.08);
}
.trustNum{font-weight:950;font-size:1.45rem}
.trustTxt{color:rgba(15,23,42,.68);font-weight:800;margin-top:4px}

.scroll{
  margin-top:28px;
  width:44px;height:64px;border-radius:999px;
  border:1px solid rgba(15,23,42,.28);
  display:inline-flex;align-items:center;justify-content:center;
  background:rgba(255,255,255,.55);
}
.scroll span{
  width:6px;height:10px;border-radius:999px;
  background:rgba(15,23,42,.90);
  animation:wheel 1.4s infinite
}
@keyframes wheel{
  0%{transform:translateY(-6px);opacity:.25}
  35%{opacity:1}
  100%{transform:translateY(10px);opacity:.12}
}

/* =========================================
   BOLD PREMIUM HERO (VIDEO) — OVERRIDES
   (User requested: bold premium + video)
   ========================================= */
.hero{
  height:96vh;
  background:#0b1220;
}
.hero__video{
  filter: contrast(1.12) saturate(1.1);
  transform: scale(1.02);
}
.hero__overlay{
  background:
    radial-gradient(1200px 650px at 18% 68%,
      rgba(15,23,42,.15) 0%,
      rgba(15,23,42,.55) 55%,
      rgba(15,23,42,.82) 100%),
    linear-gradient(90deg,
      rgba(11,18,32,.88) 0%,
      rgba(11,18,32,.62) 46%,
      rgba(11,18,32,.36) 70%,
      rgba(11,18,32,.10) 100%),
    linear-gradient(135deg, rgba(200,162,90,.18), rgba(0,0,0,0));
}
.hero__content{padding-bottom:64px}
.hero__content > .pill,
.hero__content > .hero__title,
.hero__content > .hero__sub,
.hero__content > .hero__cta,
.hero__content > .hero__trust{
  position:relative;
  z-index:2;
}
.hero__content:before{
  content:"";
  position:absolute;
  left:0;
  bottom:44px;
  width:min(720px, 92vw);
  border-radius:22px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 26px 70px rgba(0,0,0,.35);
  backdrop-filter: blur(14px);
  z-index:1;
  top:auto;
  height: auto;
}
.pill{
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.88);
}
.hero__title{
  color:#fff;
  letter-spacing:-0.03em;
  text-shadow:0 20px 50px rgba(0,0,0,.55);
}
.hero__sub{
  color:rgba(255,255,255,.82);
  max-width:58ch;
}
.accent{color:var(--accent2)}
.hero__cta .btn--primary{
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border:none;
  color:#1c1407;
  box-shadow:0 18px 40px rgba(200,162,90,.20);
}
.hero__cta .btn--ghost{
  background: rgba(0,0,0,.28);
  border-color: rgba(255,255,255,.18);
  color: rgba(255,255,255,.92);
}
.hero__cta .btn--ghost:hover{background: rgba(0,0,0,.38)}
.trustItem{
  background: rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 14px 30px rgba(0,0,0,.30);
}
.trustNum{color:#fff}
.trustTxt{color:rgba(255,255,255,.78)}
.scroll{
  background: rgba(0,0,0,.25);
  border-color: rgba(255,255,255,.18);
}
.scroll span{background: rgba(255,255,255,.95)}

@media (max-width:768px){
  .hero__content{padding-bottom:44px}
  .hero__content:before{
    bottom:28px;
    width:100%;
    border-radius:18px;
  }
}

/* =========================
   Sections (tight premium)
   ========================= */
.section{padding:72px 0}
.section--alt{
  background:rgba(255,255,255,.70);
  border-top:1px solid rgba(15,23,42,.06);
  border-bottom:1px solid rgba(15,23,42,.06);
}
.sectionHead h2{
  margin:0;
  font-size:clamp(1.55rem,2.4vw,2.2rem);
  font-weight:950;
}
.sectionHead p{
  margin:10px 0 0;
  color:rgba(15,23,42,.70);
  max-width:72ch;
  line-height:1.65;
}

.grid{display:grid;gap:18px;margin-top:22px}
.grid--2{grid-template-columns:1fr 1fr}
.grid--3{grid-template-columns:repeat(3,1fr)}

/* Premium cards (glass-ish) */
.card,
.priceCard,
.featurePanel,
.tableWrap{
  background:rgba(255,255,255,.88);
  border:1px solid rgba(15,23,42,.10);
  border-radius:18px;
  box-shadow:0 12px 22px rgba(15,23,42,.06);
  backdrop-filter: blur(10px);
}
.card{
  padding:22px;
}
.card--soft{
  background:linear-gradient(180deg,rgba(255,255,255,.96),rgba(15,23,42,.02));
}

.card:hover,
.priceCard:hover{
  transform:translateY(-2px);
  transition:transform .2s ease, box-shadow .2s ease;
  box-shadow:0 18px 40px rgba(15,23,42,.10);
}

.list{
  margin:0;
  padding-left:18px;
  color:rgba(15,23,42,.74);
  line-height:1.75;
}
.list b{color:rgba(15,23,42,.95)}
.miniCTA{display:flex;gap:10px;flex-wrap:wrap;margin-top:14px}

/* Image card */
.imageCard{
  border-radius:18px;overflow:hidden;min-height:260px;
  border:1px solid rgba(15,23,42,.10);
  background-size:cover;background-position:center;
  box-shadow:0 18px 40px rgba(15,23,42,.12);
  position:relative;
}
.imageCard__shade{position:absolute;inset:0;background:linear-gradient(180deg,rgba(0,0,0,.02),rgba(0,0,0,.35))}
.imageCard__text{position:absolute;left:18px;bottom:18px;color:#fff}
.imageCard__title{font-weight:950;font-size:1.2rem}
.imageCard__sub{opacity:.92;margin-top:4px}

/* =========================
   PRICING
   ========================= */
.priceCard{
  padding:22px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.priceCard__top{display:flex;justify-content:space-between;align-items:baseline;gap:10px}
.priceCard__name{font-weight:950;font-size:1.15rem}
.priceCard__area{color:rgba(15,23,42,.65);font-weight:900}
.priceCard__price{font-weight:950;font-size:1.75rem}
.priceCard__note{color:rgba(15,23,42,.70);line-height:1.5}
.priceCard--highlight{
  border-color:rgba(200,162,90,.35);
  box-shadow:0 20px 55px rgba(200,162,90,.18);
  position:relative;
}
.priceCard__badge{
  position:absolute;top:14px;right:14px;
  background:linear-gradient(135deg,var(--accent),var(--accent2));
  color:#1c1407;
  font-weight:950;
  padding:8px 10px;
  border-radius:999px;
  font-size:.78rem;
  letter-spacing:.08em;
  text-transform:uppercase;
}

/* Table */
.tableWrap{margin-top:18px;overflow:hidden}
.table{width:100%;border-collapse:collapse;font-size:.95rem}
.table thead th{
  text-align:left;padding:14px 16px;
  background:rgba(15,23,42,.03);
  border-bottom:1px solid rgba(15,23,42,.08);
  font-weight:950;
}
.table td{
  padding:14px 16px;
  border-bottom:1px solid rgba(15,23,42,.06);
  color:rgba(15,23,42,.78)
}
.table tbody tr:hover td{background:rgba(200,162,90,.08)}

/* =========================
   Legacy Beige Section
   ========================= */
.legacyBeige{
  background:#efe1cd;
  padding:86px 0;
}
.legacyBeige__wrap{
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap:40px;
  align-items:center;
}
.legacyBeige__image{
  height:540px;
  border-radius:22px;
  background-size:cover;
  background-position:center;
  box-shadow:0 28px 60px rgba(0,0,0,.12);
}
.legacyBeige__title{
  margin:0;
  font-size: clamp(2rem, 3.6vw, 3.1rem);
  line-height:1.05;
  font-weight:900;
  color:var(--maroon);
}
.legacyBeige__title span{
  display:block;
  font-style:italic;
  font-weight:900;
}
.legacyBeige__text{
  margin:16px 0 26px;
  max-width: 520px;
  color: rgba(15,23,42,.80);
  line-height:1.75;
  font-size: 1.02rem;
}
.legacyBeige__stats{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:18px;
  margin-top: 14px;
}
.legacyStat{
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 22px rgba(15,23,42,.08);
}
.legacyStat .n{
  font-weight:950;
  font-size: 1.6rem;
  color:var(--maroon);
}
.legacyStat .t{
  margin-top:6px;
  font-weight:800;
  color: rgba(15,23,42,.72);
}
@media(max-width:980px){
  .legacyBeige__wrap{grid-template-columns:1fr}
  .legacyBeige__image{height:320px}
  .legacyBeige__stats{grid-template-columns: repeat(2, 1fr)}
}

/* =========================
   About + Walkthrough (cream)
   ========================= */
.section--cream{
  background: #fbf4ea;
  border-top: 1px solid rgba(15,23,42,.06);
  border-bottom: 1px solid rgba(15,23,42,.06);
}
.about{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
  padding: 10px 0;
}
.about__left{
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 14px 30px rgba(15,23,42,.08);
}
.about__title{
  margin: 0 0 10px;
  font-size: clamp(1.5rem, 2.3vw, 2.1rem);
  font-weight: 950;
  color: var(--maroon);
}
.about__text{
  margin: 0;
  color: rgba(15,23,42,.72);
  line-height: 1.75;
  font-size: 1rem;
}
.about__ctaRow{margin-top: 18px}

.ytCard{
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 18px;
  overflow:hidden;
  box-shadow: 0 14px 30px rgba(15,23,42,.10);
}
.ytCard__frame{
  width:100%;
  height: 320px;
  display:block;
}
.ytCaption{
  text-align:center;
  margin-top: 10px;
  font-weight: 900;
  color: rgba(15,23,42,.70);
}
@media (max-width: 980px){
  .about{grid-template-columns:1fr}
  .ytCard__frame{height:240px}
}

/* =========================
   Amenities — Carousel
   ========================= */
.amenitiesHead{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:14px;
}
.amenitiesNav{display:flex;gap:10px}
.aBtn{
  width:44px;height:44px;border-radius:999px;
  border:1px solid rgba(15,23,42,.18);
  background:rgba(255,255,255,.92);
  cursor:pointer;
  box-shadow:0 10px 20px rgba(15,23,42,.08);
  font-size:20px;
  line-height:1;
}
.aBtn:hover{transform:translateY(-1px)}
.aBtn:disabled{opacity:.45;cursor:not-allowed;transform:none}

.amenitiesCarousel{
  margin-top:18px;
  display:flex;
  gap:14px;
  overflow:auto;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;
  padding-bottom:6px;
}
.amenitiesCarousel::-webkit-scrollbar{height:8px}
.amenitiesCarousel::-webkit-scrollbar-thumb{
  background:rgba(15,23,42,.18);
  border-radius:999px;
}

.aCard{
  flex:0 0 auto;
  width:min(320px,80vw);
  scroll-snap-align:start;
  border-radius:20px;
  overflow:hidden;
  border:1px solid rgba(15,23,42,.10);
  background:#fff;
  box-shadow:0 12px 22px rgba(15,23,42,.06);
}
.aImg{
  height:220px;
  background-size:cover;
  background-position:center;
}
.aMeta{
  padding:14px 14px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.aMeta span{
  font-weight:950;
  color:rgba(15,23,42,.88);
}

.aDots{
  margin-top:14px;
  display:flex;
  justify-content:center;
  gap:8px;
}
.aDot{
  width:9px;height:9px;border-radius:999px;
  border:1px solid rgba(15,23,42,.22);
  background:rgba(15,23,42,.12);
  cursor:pointer;
}
.aDot.is-active{background:linear-gradient(135deg,var(--accent),var(--accent2));border-color:rgba(200,162,90,.35)}

/* =========================
   Gallery — Carousel (like screenshot)
   ========================= */
.gTitle{
  margin:0;
  font-size:clamp(1.55rem,2.4vw,2.2rem);
  font-weight:950;
}
.gWrap{
  margin-top:16px;
  display:grid;
  grid-template-columns: auto 1fr auto;
  align-items:center;
  gap:12px;
}
.gArrow{
  width:44px;height:44px;border-radius:999px;
  border:1px solid rgba(15,23,42,.18);
  background:rgba(255,255,255,.92);
  cursor:pointer;
  box-shadow:0 10px 20px rgba(15,23,42,.08);
  font-size:20px;
  line-height:1;
}
.gArrow:hover{transform:translateY(-1px)}
.gArrow:disabled{opacity:.45;cursor:not-allowed;transform:none}

.gTrack{
  display:flex;
  gap:18px;
  overflow:auto;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;
  padding-bottom:6px;
}
.gTrack::-webkit-scrollbar{height:8px}
.gTrack::-webkit-scrollbar-thumb{
  background:rgba(15,23,42,.18);
  border-radius:999px;
}

.gSlide{
  flex:0 0 auto;
  width:min(360px, 82vw);
  scroll-snap-align:start;
  border-radius:20px;
  overflow:hidden;
  border:1px solid rgba(15,23,42,.10);
  background:#fff;
  box-shadow:0 12px 22px rgba(15,23,42,.06);
}
.gSlide img{
  width:100%;
  height:240px;
  object-fit:cover;
  display:block;
}

/* =========================
   Map Box
   ========================= */
.mapBox{
  border-radius:18px;
  border:1px solid rgba(15,23,42,.10);
  background:rgba(255,255,255,.92);
  box-shadow:0 12px 22px rgba(15,23,42,.06);
  min-height:280px;
  overflow:hidden;
}
.mapBox__ph{
  height:100%;
  display:grid;
  place-items:center;
  color:rgba(15,23,42,.60);
  font-weight:950
}
.mapBox iframe{width:100%;height:100%;min-height:280px;border:0}

/* =========================
   CTA band
   ========================= */
.cta{
  background:linear-gradient(135deg, rgba(200,162,90,.22), rgba(255,255,255,.85));
  border-top:1px solid rgba(15,23,42,.06);
  border-bottom:1px solid rgba(15,23,42,.06);
  padding:40px 0;
}
.cta__inner{display:flex;justify-content:space-between;gap:18px;align-items:center;flex-wrap:wrap}
.cta__title{font-weight:950;font-size:1.55rem}
.cta__sub{color:rgba(15,23,42,.70);margin-top:6px}
.cta__actions{display:flex;gap:10px;flex-wrap:wrap}

/* =========================
   Basic footer (simple)
   ========================= */
.footer{padding:30px 0}
.footer__inner{display:flex;justify-content:space-between;gap:18px;flex-wrap:wrap}
.footer__brand{font-weight:950}
.footer__note{margin-top:6px;color:rgba(15,23,42,.65)}
.footer__right a{font-weight:900;color:rgba(15,23,42,.78)}
.footer__right a:hover{color:rgba(15,23,42,.95)}

/* =========================
   Modal
   ========================= */
.modal{position:fixed;inset:0;display:none;z-index:80}
.modal.is-open{display:block}
.modal__backdrop{position:absolute;inset:0;background:rgba(15,23,42,.40)}
.modal__panel{
  position:relative;
  width:min(520px,92%);
  margin:10vh auto 0;
  background:rgba(255,255,255,.96);
  border:1px solid rgba(15,23,42,.12);
  border-radius:18px;
  box-shadow:var(--shadow2);
  padding:18px 18px 14px;
  z-index:2;
}
.modal__head{display:flex;justify-content:space-between;align-items:center}
.modal__title{font-weight:950}
.modal__close{
  width:44px;height:44px;border-radius:999px;
  border:1px solid rgba(15,23,42,.14);
  background:rgba(15,23,42,.04);
  cursor:pointer;
}
.form{margin-top:14px}
.field{display:block;margin-bottom:12px}
.field span{
  display:block;
  font-size:.9rem;
  color:rgba(15,23,42,.70);
  margin-bottom:6px;
  font-weight:900
}
.field input{
  width:100%;
  padding:12px 12px;
  border-radius:12px;
  border:1px solid rgba(15,23,42,.16);
  background:#fff;
  color:rgba(15,23,42,.95);
  outline:none;
}
.field input:focus{
  border-color:rgba(200,162,90,.55);
  box-shadow:0 0 0 4px rgba(200,162,90,.18)
}
.fine{margin:12px 0 0;font-size:.82rem;color:rgba(15,23,42,.60);line-height:1.5}

/* =========================
   Drawer (Mobile menu)
   ========================= */
.drawer{position:fixed;inset:0;display:none;z-index:90}
.drawer.is-open{display:block}
.drawer__backdrop{position:absolute;inset:0;background:rgba(15,23,42,.35)}
.drawer__panel{
  position:absolute;right:0;top:0;bottom:0;
  width:min(360px,92%);
  background:rgba(255,255,255,.96);
  border-left:1px solid rgba(15,23,42,.10);
  box-shadow:var(--shadow2);
  padding:18px;z-index:2;
}
.drawer__top{display:flex;justify-content:space-between;align-items:center;margin-bottom:16px}
.drawer__title{font-weight:950}
.drawer__close{
  width:44px;height:44px;border-radius:999px;
  border:1px solid rgba(15,23,42,.14);
  background:rgba(15,23,42,.04);
  cursor:pointer;
}
.drawer__nav a{
  display:block;
  padding:14px 12px;
  border-radius:14px;
  border:1px solid rgba(15,23,42,.10);
  background:rgba(15,23,42,.03);
  margin-bottom:10px;
  font-weight:950;
  color:rgba(15,23,42,.86);
}
.drawer__bottom{margin-top:14px;display:grid;gap:10px}

/* =========================
   Fixed Enquiry Bar (desktop)
   ========================= */
.fixedBar{
  position:fixed;
  left:0;right:0;bottom:0;
  z-index:70;
  background:rgba(255,255,255,.96);
  border-top:1px solid rgba(15,23,42,.10);
  box-shadow:0 -16px 40px rgba(15,23,42,.10);
}
.fixedBar__inner{
  padding:14px 0;
  display:flex;
  align-items:flex-end;
  gap:14px;
  justify-content:space-between;
  flex-wrap:wrap;
}
.fixedBar__title{
  font-weight:950;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.fixedBar__form{
  display:grid;
  grid-template-columns: 1.2fr 1.1fr 1.4fr auto;
  gap:12px;
  align-items:end;
  flex:1;
}
.fField label{
  display:block;
  font-weight:900;
  color:rgba(15,23,42,.70);
  font-size:.85rem;
  margin-bottom:6px;
}
.fField input{
  width:100%;
  padding:12px 12px;
  border-radius:12px;
  border:1px solid rgba(15,23,42,.16);
  outline:none;
}
.fField input:focus{
  border-color:rgba(200,162,90,.55);
  box-shadow:0 0 0 4px rgba(200,162,90,.18);
}
.fBtn{
  border:none;
  padding:13px 16px;
  border-radius:12px;
  background:linear-gradient(135deg,var(--accent),var(--accent2));
  color:#1c1407;
  font-weight:950;
  cursor:pointer;
  box-shadow:0 16px 30px rgba(200,162,90,.18);
  white-space:nowrap;
}
.fBtn:hover{transform:translateY(-1px)}

/* Hide fixedBar on mobile (requested) */
@media (max-width:768px){
  .fixedBar{display:none !important;}
}

/* =========================
   Floating Contact Buttons (Call + WhatsApp)
   ========================= */
.floatContact{
  position:fixed;
  right:16px;
  bottom:16px;
  z-index:95;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.floatBtn{
  width:54px;height:54px;
  border-radius:999px;
  display:grid;
  place-items:center;
  font-size:22px;
  background:#fff;
  border:1px solid rgba(15,23,42,.14);
  box-shadow:0 16px 34px rgba(15,23,42,.14);
}
.floatBtn:hover{transform:translateY(-1px)}
.floatCall{background:#ffffff}
.floatWhats{
  background:linear-gradient(135deg,var(--accent),var(--accent2));
  border:none;
  color:#1c1407;
}

/* =========================
   Legal Footer (builder style)
   ========================= */
.legalFooter{
  background:#0b1220;
  color:rgba(255,255,255,.86);
  padding:56px 0 26px;
  margin-top:0; /* avoid gaps */
}
.legalTop{
  display:grid;
  grid-template-columns: 360px 1fr;
  gap:26px;
  align-items:start;
}
.legalBrand{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  border-radius:18px;
  padding:18px;
  box-shadow:0 18px 50px rgba(0,0,0,.30);
}
.legalLogoRow{
  display:flex;
  gap:12px;
  align-items:center;
}
.legalTitle{
  font-weight:950;
  letter-spacing:.14em;
  font-size:.82rem;
  color:rgba(255,255,255,.82);
}
.legalSub{
  font-weight:950;
  font-size:1.2rem;
  margin-top:4px;
  color:#fff;
}
.legalReg{
  margin-top:14px;
  color:rgba(255,255,255,.78);
  font-size:.92rem;
  line-height:1.55;
}
.legalReg b{color:#fff}

.legalList{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  padding:18px 18px 6px;
}
.legalList ul{
  margin:0;
  padding-left:18px;
  line-height:1.7;
  color:rgba(255,255,255,.78);
}
.legalList li{margin-bottom:10px}
.legalList b{color:#fff}

.legalDisclaimer{
  margin-top:18px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  padding:16px 18px;
}
.legalDisclaimer p{
  margin:0;
  line-height:1.75;
  color:rgba(255,255,255,.74);
  font-size:.92rem;
}
.legalDisclaimer b{color:#fff}

.legalBottom{
  margin-top:18px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.12);
  display:flex;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}
.legalLinks{
  display:flex;
  gap:10px;
  align-items:center;
  color:rgba(255,255,255,.76);
  font-weight:800;
}
.legalLinks a{color:rgba(255,255,255,.86)}
.legalLinks a:hover{color:#fff}
.legalCopy{
  color:rgba(255,255,255,.70);
  font-weight:700;
}

/* =========================
   Responsive
   ========================= */
@media (max-width:980px){
  .nav{display:none}
  .iconBtn{display:inline-block}
  .grid--2{grid-template-columns:1fr}
  .grid--3{grid-template-columns:1fr}
  .legacyBeige{padding:64px 0}
  .section{padding:52px 0}

  .fixedBar__inner{align-items:stretch}
  .fixedBar__form{grid-template-columns:1fr 1fr;gap:10px}
  .fBtn{grid-column:1 / -1}

  .legalTop{grid-template-columns:1fr}
}

@media (max-width:520px){
  .gWrap{grid-template-columns: 1fr;gap:10px}
  .gArrow{display:none}
  .gSlide img{height:220px}
  .aCard{width:min(320px,86vw)}
  .aImg{height:210px}
}
/* =========================
   PRELOADER (WHITE SPLASH)
   ========================= */
.preloader{
  position:fixed;
  inset:0;
  background:#ffffff;
  display:grid;
  place-items:center;
  z-index:9999;
  transition: opacity .35s ease, visibility .35s ease;
}
.preloader__box{
  display:grid;
  place-items:center;
  gap:16px;
}
.preloader__logo{
  width:min(220px,60vw);
  height:auto;
}
.preloader__line{
  width:120px;
  height:3px;
  border-radius:999px;
  background:rgba(15,23,42,.12);
  overflow:hidden;
  position:relative;
}
.preloader__line:before{
  content:"";
  position:absolute;
  top:0;left:-40%;
  width:40%;
  height:100%;
  background:linear-gradient(135deg, var(--accent), var(--accent2));
  animation: preloadMove 1.1s infinite;
}
@keyframes preloadMove{
  0%{left:-40%}
  100%{left:120%}
}
.preloader.is-hide{
  opacity:0;
  visibility:hidden;
}
