/* =========================
   THEME & BASE
   ========================= */
:root{
  --teal:#0e8f90;
  --teal-dark:#064b4b;
  --ink:#122;
  --muted:#556277;
  --glass: rgba(255,255,255,0.06);
  --card-shadow: 0 10px 30px rgba(12,25,40,.08);
  --ring: 0 0 0 3px rgba(14,143,144,.18);

  /* Footer palette */
  --footer-bg:#0b0f14;
  --footer-ink:#dce3ea;
  --footer-muted:#9aa8b6;
  --divider:rgba(255,255,255,.08);
  --wa:#25D366;
}

*,
*::before,
*::after{ box-sizing:border-box }

html,body{ height:100% }

body{
  margin:0;
  color:var(--ink);
  background:#f6f8fa;
  font-family:Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

a{ color:var(--teal); text-decoration:none }
a:hover{ text-decoration:underline }

h1,h2,h3,h4,h5{ margin:0 0 .5em; font-weight:700 }
h2{ font-weight:700 }

img{ max-width:100%; height:auto; display:block }

.container{
  width:100%;
  max-width:1140px;
  margin:0 auto;
  padding:0 16px;
}

/* Utilities */
.muted{ color:var(--muted) }
.rounded-8{ border-radius:8px }
.emoji{ font-size:20px; margin-right:6px }
.small-muted{ font-size:16px; color:#000 }

/* Motion respect */
@media (prefers-reduced-motion: reduce){
  *{ transition:none !important; animation:none !important }
}

/* Focus ring (a11y) */
a:focus,
button:focus,
[role="button"]:focus,
input:focus,
select:focus,
textarea:focus{
  outline:none;
  box-shadow:var(--ring);
  border-radius:6px;
}

/* =========================
   HEADER
   ========================= */
/* Mobile toggle */
.nav-toggle{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:40px; height:40px;
  border:1px solid rgba(0,0,0,0.15);
  border-radius:10px;
  background:#fff;
  color:var(--ink);
}

/* Backdrop behind drawer */
.nav-backdrop{
  position:fixed; inset:0;
  background:rgba(0,0,0,.35);
  backdrop-filter:blur(2px);
  z-index:1199;
  opacity:0;
  transition:opacity .25s ease;
  display:block;
}

/* Drawer */
.mobile-nav{
  position:fixed;
  top:0; right:0; bottom:0;
  width:min(85vw,340px);
  background:#fff;
  box-shadow:-12px 0 30px rgba(8,12,20,.12);
  z-index:1200;
  padding:72px 20px 24px;
  display:flex; flex-direction:column; gap:8px;
  transform:translateX(100%);
  transition:transform .28s ease;
}

/* Links inside drawer */
.mobile-nav a{
  padding:14px 12px;
  font-size:16px;
  color:#122;
  text-decoration:none;
  border-radius:8px;
}
.mobile-nav a:hover{ background:#f2f6f8; }
.mobile-nav .whatsapp{
  margin-top:8px;
  background:var(--teal); color:#fff;
  text-align:center;
}

/* Open state */
.site-header.is-open .mobile-nav{ transform:translateX(0) }
.site-header.is-open .nav-backdrop{ opacity:1 }

/* Hide backdrop/drawer on md+ */
@media (min-width:768px){
  .nav-backdrop, .mobile-nav{ display:none !important }
}

/* Header scrolled look */
header.scrolled .nav-toggle{
  background:#fff;
  border-color:rgba(0,0,0,0.15);
}

/* =========================
   HERO
   ========================= */
.masaar-hero{
  position:relative;
  min-height:84vh;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  color:#fff;
}

.hero-bg{
  position:absolute; inset:0;
  background-size:cover; background-position:center;
  transform:scale(1.03);
  filter:saturate(1.03) contrast(.96);
}

.hero-tint{
  position:absolute; inset:0; z-index:1;
  background:linear-gradient(180deg, rgba(2,24,24,.75) 0%, rgba(6,106,108,.60) 40%, rgba(0,0,0,.10) 100%);
}

.hero-content{
  position:relative; z-index:2;
  width:100%; max-width:1100px;
  padding:48px 18px;
  display:flex; flex-direction:column; align-items:center; gap:16px;
}

.hero-top{ display:flex; flex-direction:column; align-items:center; gap:10px }
.hero-brand{ height:58px; filter:drop-shadow(0 10px 24px rgba(0,0,0,.35)) }
.hero-location{ display:flex; align-items:center; gap:8px; font-weight:600; letter-spacing:.2px; color:rgba(230,255,251,.95) }
.hero-location i{ color:#c8fff3 }

.hero-title{
  margin:6px 0 0;
  display:flex; flex-direction:column; align-items:center; gap:4px;
  text-transform:none;
}
.hero-title .kicker{ font-size:clamp(14px,1.2vw,16px); letter-spacing:.22em; opacity:.95; text-transform:uppercase }
.hero-title .headline{ font-weight:800; font-size:clamp(28px,4.2vw,48px); letter-spacing:.02em; line-height:1.1 }
.hero-title .subline{ font-size:clamp(14px,1.6vw,18px); opacity:.92 }

.hero-cta{
  display:flex; gap:12px; flex-wrap:wrap; justify-content:center; margin-top:10px;
}
.btn-hero-primary,
.btn-hero-ghost{
  border-radius:10px; padding:12px 16px; font-weight:800; cursor:pointer;
}
.btn-hero-primary{
  background:#fff; color:var(--teal-dark);
  box-shadow:0 12px 28px rgba(0,0,0,.18);
}
.btn-hero-primary:hover{ transform:translateY(-1px) }
.btn-hero-ghost{ background:transparent; border:1px solid rgba(255,255,255,.25); color:#fff }
.btn-hero-ghost:hover{ background:rgba(255,255,255,.06) }

.price-frame{
  border:3px solid rgba(255,255,255,.94);
  border-radius:12px; overflow:hidden; margin-top:12px;
  box-shadow:0 18px 44px rgba(0,0,0,.28); background:transparent;
}
.price-frame .frame-top{
  padding:14px 22px; background:rgba(255,255,255,.06);
  font-weight:800; letter-spacing:.04em;
}
.price-frame .frame-bottom{
  padding:16px 26px; background:#fff; color:var(--teal);
  font-weight:900; display:flex; gap:8px; align-items:center; justify-content:center;
}
.price-frame .onwards{ font-size:14px; margin-left:8px; color:#164 }

.hero-trust{
  display:flex; gap:14px; flex-wrap:wrap; justify-content:center;
  margin:8px 0 0; padding:0; list-style:none;
}
.hero-trust li{
  display:flex; align-items:center; gap:8px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.12);
  padding:8px 12px; border-radius:999px; font-weight:600;
}
.hero-trust i{ color:#bdf6f0 }

.footer-badge{
  display:flex; gap:18px; padding:10px 14px;
  border:2px solid rgba(255,255,255,.95);
  width:min(680px,92%);
  justify-content:center; font-weight:800;
  background:transparent; margin-top:12px; border-radius:10px;
  backdrop-filter:blur(1px);
}

/* =========================
   MOBILE MICRO FORM
   ========================= */
.mob-form{ display:none }
@media (max-width:991.98px){
  .mob-form{
    display:block; width:86%; margin:8% auto;
    background:var(--teal); color:#fff;
    padding:18px; border-radius:10px;
  }
  .micro-form-field{
    width:100%;
    background:transparent; border:1px solid rgba(255,255,255,.18);
    color:#fff; padding:12px; border-radius:6px;
  }
  .micro-form-field::placeholder{ color:rgba(255,255,255,.9) }
  .micro-form-btn{
    background:#042524; border:0; color:#fff;
    padding:10px 14px; border-radius:8px; font-weight:700; width:100%;
  }
}

/* =========================
   SECTIONS & CARDS
   ========================= */
.section{ padding:54px 0 }
.section-alt{ background:#fbfeff }

.card-soft{
  background:#fff;
  border-radius:12px;
  padding:18px;
  box-shadow:var(--card-shadow);
  border:0;
}

/* =========================
   HIGHLIGHTS
   ========================= */
.hi-grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap:16px;
  justify-content:center;
}
.hi-card{
  background:#fff; border-radius:12px;
  padding:18px; box-shadow:var(--card-shadow); text-align:center;
  transition:transform .22s ease;
}
.hi-card:hover{ transform:translateY(-8px) }

.hi-badge{
  width:64px; height:64px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  color:#fff; margin:0 auto 10px; font-size:22px;
  box-shadow:inset 0 0 12px rgba(255,255,255,.12);
}
.hi-beach{ background:linear-gradient(135deg,#00bfa6,#00d2ff) }
.hi-globe{ background:linear-gradient(135deg,#ff8a65,#ff7043) }
.hi-build{ background:linear-gradient(135deg,#5c6bc0,#3f51b5) }
.hi-city{ background:linear-gradient(135deg,#ffca28,#ffb300) }

.hi-title{ font-weight:700; margin:8px 0 2px }
.hi-text{ color:var(--muted); margin:0 }

/* =========================
   PAYMENT PLAN
   ========================= */
.plan-grid{
  display:grid;
  gap:16px;
  grid-template-columns: repeat(4, minmax(0,1fr));
}
.plan-step{
  background:#fff; border-radius:10px; padding:12px; text-align:center;
  box-shadow:var(--card-shadow); position:relative;
}
.plan-step .percent{ font-weight:900; font-size:20px; color:var(--teal) }
.percent-lg{ font-size:18px }
.plan-step .date{ color:var(--muted); font-size:13px; margin-top:6px }

/* =========================
   PRICE TABLE
   ========================= */
.price-table{ width:100%; border-collapse:collapse; margin-top:8px }
.price-table th{
  background:#f2fbfa; padding:12px; text-align:left;
  border-bottom:1px solid #eee;
}
.price-table td{ padding:12px; border-bottom:1px solid #f1f1f1 }

/* =========================
   AMENITIES
   ========================= */
.amen-grid{
  display:grid; gap:16px;
  grid-template-columns: repeat(4, minmax(0,1fr));
}
.amen-card{ background:#fff; border-radius:10px; padding:14px; text-align:center; box-shadow:var(--card-shadow) }
.amen-icon{
  width:56px; height:56px; border-radius:10px;
  display:flex; align-items:center; justify-content:center;
  margin:0 auto 10px; color:#fff; font-size:20px;
}
.amen-icon.green{ background:linear-gradient(135deg,#66bb6a,#43a047) }
.amen-icon.blue{ background:linear-gradient(135deg,#29b6f6,#0288d1) }
.amen-icon.pink{ background:linear-gradient(135deg,#f06292,#d81b60) }

/* =========================
   GALLERY
   ========================= */
.gallery-img{ height:420px; object-fit:cover; width:100% }
.thumb-row{ display:flex; justify-content:center; margin-top:12px; gap:8px; padding:0 }
.thumb-img{ width:110px; height:70px; object-fit:cover; border-radius:6px; border:1px solid #e6e6e6 }

/* =========================
   LOCATION
   ========================= */
.loc-grid{
  display:grid; grid-template-columns: repeat(3, minmax(0,1fr));
  gap:16px; justify-content:center;
}
.loc-card{
  background:#fff; border-radius:12px; padding:14px; min-width:0;
  box-shadow:var(--card-shadow); text-align:center;
}
.map-embed{ width:100%; height:320px; border:0; border-radius:8px }

/* =========================
   FAQ
   ========================= */
.faq-btn{
  display:flex; align-items:center; gap:12px; width:100%; text-align:left;
  padding:12px; border-radius:10px;
  background:linear-gradient(180deg,#fff,#fbfdff);
  border:1px solid rgba(15,30,60,.05);
  box-shadow:var(--card-shadow);
}

/* =========================
   SECTION CTA (Shared)
   ========================= */
.section-cta{
  display:flex; justify-content:center; gap:10px;
  padding:10px 20px; border-radius:10px;
  background:linear-gradient(90deg, rgba(2,50,50,.95), rgba(16,112,114,.95));
  box-shadow:0 12px 30px rgba(2,20,20,.18);
  color:#fff; margin:18px auto; width:fit-content; max-width:480px;
}
.section-cta .cta-btn{
  padding:10px 16px; border-radius:8px; font-weight:700;
  border:0; cursor:pointer; white-space:nowrap;
}
.section-cta .cta-primary{ background:#fff; color:var(--teal-dark) }
.section-cta .cta-ghost{
  background:transparent; color:#fff; border:1px solid rgba(255,255,255,.2)
}

/* Scoped overrides for specific sections */
#payment > .section-cta,
#site > .section-cta,
#gallery > .section-cta{
  display:inline-flex !important;
  width:auto !important;
  max-width:none !important;
  margin:18px auto !important;
}
#payment .section-cta .cta-btn,
#site .section-cta .cta-btn,
#gallery .section-cta .cta-btn{ white-space:nowrap }

/* =========================
   MODAL
   ========================= */
.auto-modal{
  background:linear-gradient(180deg,#0f7b7c,#1c9295);
  color:#fff; border-radius:12px; padding:18px;
  box-shadow:var(--card-shadow);
}
.modal-close{ color:#fff; opacity:.95; font-size:22px; cursor:pointer }
.modal-brand{
  height:68px; margin-bottom:10%; margin-left:20%;
  filter:drop-shadow(0 10px 20px rgba(0,0,0,.3));
  text-align:center; width:60%;
}
.modal-sub{ margin:0 0 14px; opacity:.95 }
.modal-form{ max-width:360px; margin:0 auto }
.modal-actions{ display:flex; gap:8px; justify-content:center }
.cta-btn{ padding:10px 14px; border-radius:8px; font-weight:800; border:0; cursor:pointer }
.cta-primary{ background:#fff; color:var(--teal-dark) }
.cta-ghost{ background:transparent; color:#fff; border:1px solid rgba(255,255,255,.12) }
.whatsapp{
  color:#1a8e90; padding:.6em; background:#fff;
  border-radius:4px; font-weight:700;
}

/* =========================
   MOBILE ACTION BAR
   ========================= */
.mob-action{ display:none }
@media (max-width:991.98px){
  .mob-action{
    position:fixed; left:12px; right:12px; bottom:12px; z-index:1200;
    display:flex; gap:10px; align-items:center; justify-content:space-between;
    padding:10px; border-radius:12px;
    background:linear-gradient(180deg,#054c4c,#0b7f7f);
    box-shadow:0 18px 40px rgba(2,20,20,.25);
  }
  .mob-action .nav-item{
    display:inline-flex; align-items:center; gap:10px;
    padding:10px 12px; color:#fff; font-weight:700;
    border-radius:10px; background:rgba(255,255,255,.06); cursor:pointer;
  }
  .mob-action .action-icon{
    width:36px; height:36px; border-radius:50%;
    display:inline-flex; align-items:center; justify-content:center;
    background:rgba(255,255,255,.06);
  }
  .mob-action .action-icon svg{ width:18px; height:18px; fill:currentColor }
  .mob-action .nav-item.whatsapp .action-icon{
    background:linear-gradient(135deg,#25D366,#128C7E);
    box-shadow:0 10px 26px rgba(18,140,126,.28);
  }
  .mob-action .nav-item.whatsapp .label{ display:none }
  .mob-action .nav-item.call,
  .mob-action .nav-item.enqModal{ flex:1 1 auto; justify-content:center }
}

/* =========================
   FOOTER
   ========================= */
.site-footer{
  background:var(--footer-bg);
  color:var(--footer-ink);
  padding-top:40px;
  border-top:1px solid var(--divider);
  font-size:14px;
}
.site-footer a{ color:var(--footer-ink); text-decoration:none }
.site-footer a:hover{ color:#fff }

.footer-top{
  display:grid;
  grid-template-columns: 1.2fr .9fr 1.1fr;
  gap:36px;
  align-items:flex-start;
  max-width:1100px;
  margin:0 auto;
  padding:0 20px 28px;
}
.footer-logo{ height:38px; opacity:.9; margin-bottom:10px }
.footer-contact{ color:var(--footer-muted); line-height:1.6 }
.footer-contact a{ color:#e6f7f7 }
.footer-links{ display:flex; flex-direction:column; gap:10px }
.footer-links strong{ color:#fff; margin-bottom:8px }
.footer-links a{ color:var(--footer-muted); padding:6px 0 }
.footer-links a:hover{ color:#fff }

.footer-cta{ display:flex; gap:12px; flex-wrap:wrap; margin-top:14px }
.btn-footer{
  background:var(--teal); color:#fff; border:0; border-radius:12px;
  padding:10px 14px; font-weight:700;
  box-shadow:0 8px 22px rgba(14,143,144,.25);
  cursor:pointer; transition: transform .12s ease, box-shadow .12s ease, filter .12s ease;
}
.btn-footer:hover{ transform:translateY(-1px); filter:brightness(1.05) }
.btn-ghost{
  background:transparent; color:var(--footer-ink);
  border:1px solid var(--divider);
  border-radius:12px; padding:10px 14px; font-weight:700;
}
.btn-ghost:hover{ background:rgba(255,255,255,.06) }

/* WhatsApp link in footer */
.wa-link{
  display:inline-flex; align-items:center; gap:8px;
  color:#c9f7d6; font-weight:700;
  padding:4px 8px; border-radius:10px;
  transition:background .14s ease, transform .12s ease;
}
.wa-link:hover{ background:rgba(37,211,102,.15); transform:translateY(-1px) }
.wa-ico{
  width:16px; height:16px; background:#c9f7d6;
  -webkit-mask:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path fill="%23000" d="M19.11 17.19c-.31-.16-1.81-.89-2.09-.99-.28-.1-.49-.16-.7.16-.2.31-.8.99-.98 1.2-.18.2-.36.23-.67.08-.31-.16-1.3-.48-2.47-1.53-.91-.81-1.52-1.81-1.7-2.12-.18-.31-.02-.48.14-.64.14-.14.31-.36.47-.54.16-.18.21-.31.31-.52.1-.2.05-.39-.03-.54-.08-.16-.7-1.69-.96-2.32-.25-.6-.51-.52-.71-.53l-.61-.01c-.2 0-.52.07-.79.39-.27.31-1.04 1.02-1.04 2.49 0 1.46 1.07 2.87 1.22 3.06.15.2 2.1 3.2 5.08 4.48.71.31 1.26.5 1.68.64.71.23 1.37.2 1.88.12.57-.08 1.81-.74 2.07-1.46.26-.72.26-1.34.18-1.46-.08-.12-.28-.2-.59-.35zM15.97 4C9.37 4 4 9.35 4 15.92c0 2.08.54 4.02 1.49 5.71L4 28l6.49-1.73a12 12 0 0 0 5.48 1.34c6.59 0 11.97-5.36 11.97-11.92C27.94 9.35 22.56 4 15.97 4z"/></svg>') center/contain no-repeat;
          mask:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path fill="%23000" d="M19.11 17.19c-.31-.16-1.81-.89-2.09-.99-.28-.1-.49-.16-.7.16-.2.31-.8.99-.98 1.2-.18.2-.36.23-.67.08-.31-.16-1.3-.48-2.47-1.53-.91-.81-1.52-1.81-1.7-2.12-.18-.31-.02-.48.14-.64.14-.14.31-.36.47-.54.16-.18.21-.31.31-.52.1-.2.05-.39-.03-.54-.08-.16-.7-1.69-.96-2.32-.25-.6-.51-.52-.71-.53l-.61-.01c-.2 0-.52.07-.79.39-.27.31-1.04 1.02-1.04 2.49 0 1.46 1.07 2.87 1.22 3.06.15.2 2.1 3.2 5.08 4.48.71.31 1.26.5 1.68.64.71.23 1.37.2 1.88.12.57-.08 1.81-.74 2.07-1.46.26-.72.26-1.34.18-1.46-.08-.12-.28-.2-.59-.35zM15.97 4C9.37 4 4 9.35 4 15.92c0 2.08.54 4.02 1.49 5.71L4 28l6.49-1.73a12 12 0 0 0 5.48 1.34c6.59 0 11.97-5.36 11.97-11.92C27.94 9.35 22.56 4 15.97 4z"/></svg>') center/contain no-repeat;
}

/* Divider + disclaimer */
.footer-disclaimer{
  max-width:1100px; margin:8px auto 0; padding:18px 20px 22px;
  border-top:1px solid var(--divider);
  color:var(--footer-muted);
  line-height:1.6;
}

/* Bottom strip */
.footer-bottom{
  border-top:1px solid var(--divider);
  margin-top:8px;
  padding:16px 20px 28px;
  text-align:center;
  color:var(--footer-muted);
}
.legal-links{
  display:flex; gap:10px; justify-content:center; align-items:center; margin-bottom:6px;
}
.legal-links a{ color:var(--footer-muted) }
.legal-links a:hover{ color:#fff }

/* =========================
   FLOOR PLAN VIEWER
   ========================= */
.plan-viewer .viewer-head{
  display:flex; align-items:center; justify-content:space-between; gap:12px; margin-bottom:10px;
}
.plan-tabs{ display:flex; gap:8px; flex-wrap:wrap }
.plan-tabs .planTab{
  appearance:none; border:1px solid rgba(15,30,60,.08); background:#fff; color:#122;
  padding:8px 12px; border-radius:999px; font-weight:700; cursor:pointer;
}
.plan-tabs .planTab.active{ background:var(--teal); color:#fff; border-color:transparent }

.planContent{ display:block }
.planContent.d-none{ display:none !important }
.planContent[hidden]{ display:none !important }

.plan-media{ position:relative }
.plan-media img{ width:100%; border-radius:6px; box-shadow:var(--card-shadow); cursor:zoom-in }

.plan-meta{
  display:flex; align-items:flex-start; justify-content:space-between; gap:12px; margin-top:10px; flex-wrap:wrap;
}
.plan-name{ margin:0 0 6px; font-weight:800 }
.spec-table{ border-collapse:collapse; width:100%; max-width:480px }
.spec-table th, .spec-table td{ padding:8px 10px; border-bottom:1px solid #f1f1f1; text-align:left; font-size:14px }
.spec-table th{ color:var(--muted); font-weight:600 }

.btn-view{ white-space:nowrap }

/* Lightbox (native dialog) */
.lightbox{
  width:min(96vw,1100px); padding:0; border:0; border-radius:10px; overflow:hidden;
  background:#000; color:#fff;
}
.lightbox::backdrop{ background:rgba(0,0,0,.65) }
#lightbox-img{ width:100%; height:auto; display:block }
.lightbox-close{
  position:absolute; right:12px; top:8px;
  font-size:28px; padding:2px 10px;
  background:#becab4; border:0; color:#241a1a;
  cursor:pointer; line-height:1;
}

/* =========================
   FORMS (lead form)
   ========================= */
#leadForm .form-control{
  border:1px solid rgba(12,25,40,.14);
  border-radius:12px;
  padding:12px 14px;
  height:calc(2em + .75rem + 2px);
  font-size:15px;
  transition:box-shadow .12s ease, border-color .12s ease, transform .06s ease;
}
#leadForm .form-control:focus{
  outline:0;
  border-color:var(--teal);
  box-shadow:0 0 0 4px rgba(14,143,144,.25);
  transform:translateY(-1px);
}
#leadForm .btn{
  width:100%;
  border-radius:12px;
  padding:12px 16px;
  font-weight:700;
  box-shadow:0 10px 24px rgba(14,143,144,.18);
}

/* Promise badge box */
.promise-box{
  margin-top:14px;
  padding:14px 18px;
  background:linear-gradient(135deg,#f9fdfb,#effcf7);
  border:1px solid rgba(14,143,144,.18);
  border-radius:14px;
  box-shadow:0 6px 18px rgba(14,143,144,.10);
  display:flex; flex-wrap:wrap; gap:12px 22px; align-items:center;
  color:#0e4e4f; font-size:14px; font-weight:600;
}
.promise-item{ display:inline-flex; align-items:center; gap:8px; white-space:nowrap }
.promise-item .icon{
  width:16px; height:16px; background:currentColor; opacity:.9;
  -webkit-mask:var(--mask) center/contain no-repeat;
          mask:var(--mask) center/contain no-repeat;
}
.icon-callback{ --mask:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23000" d="M6.62 10.79a15 15 0 0 0 6.59 6.59l2.2-2.2a1 1 0 0 1 1.01-.24c1.12.37 2.33.57 3.58.57a1 1 0 0 1 1 1V20a1 1 0 0 1-1 1C10.61 21 3 13.39 3 4a1 1 0 0 1 1-1h3.5a1 1 0 0 1 1 1c0 1.25.2 2.46.57 3.58a1 1 0 0 1-.25 1.01l-2.2 2.2z"/></svg>') }
.icon-visit{ --mask:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23000" d="M12 2a10 10 0 1 0 0 20c5.52 0 10-4.48 10-10S17.52 2 12 2Zm0 17.93A7.94 7.94 0 0 1 4.07 12c0-1.93.69-3.68 1.84-5.07L12 17.93Z"/></svg>') }
.icon-price{ --mask:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23000" d="M12 1C5.93 1 1 5.93 1 12s4.93 11 11 11 11-4.93 11-11S18.07 1 12 1Zm.5 17.5h-1v-1.18c-1.16-.14-2.07-.74-2.63-1.57l.91-.91c.37.57.97.96 1.72 1.07v-2.9c-1.16-.32-2.12-.83-2.12-2.17 0-1.16.93-2.05 2.12-2.22V6.5h1v1.12c.9.13 1.63.61 2.05 1.29l-.88.88c-.28-.46-.72-.75-1.17-.84v2.68c1.36.36 2.34.97 2.34 2.29 0 1.24-.9 2.21-2.34 2.39v1.19z"/></svg>') }

/* WhatsApp CTA button */
.btn-whatsapp{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  background:linear-gradient(180deg,#25D366,#1ebe57);
  border:0; color:#fff; font-weight:800;
  padding:12px 16px; border-radius:12px;
  box-shadow:0 10px 30px rgba(37,211,102,.28);
  transition:transform .14s ease, box-shadow .14s ease, filter .14s ease;
}
.btn-whatsapp:hover{ transform:translateY(-1px); filter:saturate(1.05); box-shadow:0 14px 36px rgba(37,211,102,.36) }
.btn-whatsapp:focus-visible{ outline:3px solid rgba(37,211,102,.5); outline-offset:3px }
.btn-whatsapp .wa-icon{
  width:18px; height:18px; background:currentColor;
  -webkit-mask:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path fill="%23000" d="M19.11 17.19c-.31-.16-1.81-.89-2.09-.99-.28-.1-.49-.16-.7.16-.2.31-.8.99-.98 1.2-.18.2-.36.23-.67.08-.31-.16-1.3-.48-2.47-1.53-.91-.81-1.52-1.81-1.7-2.12-.18-.31-.02-.48.14-.64.14-.14.31-.36.47-.54.16-.18.21-.31.31-.52.1-.2.05-.39-.03-.54-.08-.16-.7-1.69-.96-2.32-.25-.6-.51-.52-.71-.53l-.61-.01c-.2 0 -.52.07 -.79.39 -.27 .31 -1.04 1.02 -1.04 2.49 0 1.46 1.07 2.87 1.22 3.06 .15 .2 2.1 3.2 5.08 4.48 .71 .31 1.26 .5 1.68 .64 .71 .23 1.37 .2 1.88 .12 .57 -.08 1.81 -.74 2.07 -1.46 .26 -.72 .26 -1.34 .18 -1.46 -.08 -.12 -.28 -.2 -.59 -.35zM15.97 4C9.37 4 4 9.35 4 15.92c0 2.08 .54 4.02 1.49 5.71L4 28l6.49 -1.73a12 12 0 0 0 5.48 1.34c6.59 0 11.97 -5.36 11.97 -11.92C27.94 9.35 22.56 4 15.97 4z"/></svg>') center/contain no-repeat;
          mask:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path fill="%23000" d="M19.11 17.19c-.31-.16-1.81-.89-2.09-.99-.28-.1-.49-.16-.7.16-.2.31-.8.99-.98 1.2-.18.2-.36.23-.67.08-.31-.16-1.3-.48-2.47-1.53-.91-.81-1.52-1.81-1.7-2.12-.18-.31-.02-.48.14-.64.14-.14.31-.36.47-.54.16-.18.21-.31.31-.52.1-.2.05-.39-.03-.54-.08-.16-.7-1.69-.96-2.32-.25-.6-.51-.52-.71-.53l-.61-.01c-.2 0 -.52.07 -.79.39 -.27 .31 -1.04 1.02 -1.04 2.49 0 1.46 1.07 2.87 1.22 3.06 .15 .2 2.1 3.2 5.08 4.48 .71 .31 1.26 .5 1.68 .64 .71 .23 1.37 .2 1.88 .12 .57 -.08 1.81 -.74 2.07 -1.46 .26 -.72 .26 -1.34 .18 -1.46 -.08 -.12 -.28 -.2 -.59 -.35zM15.97 4C9.37 4 4 9.35 4 15.92c0 2.08 .54 4.02 1.49 5.71L4 28l6.49 -1.73a12 12 0 0 0 5.48 1.34c6.59 0 11.97 -5.36 11.97 -11.92C27.94 9.35 22.56 4 15.97 4z"/></svg>') center/contain no-repeat;
}

/* =========================
   IMAGES (helpers)
   ========================= */
.img-card{ width:100%; border-radius:8px; box-shadow:0 10px 30px rgba(0,0,0,.06) }
.img-plan{ width:100%; border-radius:6px }

/* =========================
   RESPONSIVE BREAKPOINTS
   ========================= */

/* tiny phones */
@media (max-width:360px){
  html{ font-size:15px }
  .container{ padding:0 12px }
  .hero-title .headline{ font-size:clamp(24px,9vw,30px) }
  .footer-badge{ padding:8px 10px }
}

/* phones */
@media (max-width:576px){
  .container{ padding:0 14px }
  .masaar-hero{ min-height:78vh }
  .hero-content{ padding:32px 14px }
  .hero-title .kicker{ letter-spacing:.18em }
  .hero-title .headline{ font-size:clamp(26px,8.6vw,34px); line-height:1.15; text-align:center }
  .hero-title .subline{ font-size:14px; text-align:center }
  .hero-cta{ gap:10px; margin-top:8px }
  .btn-hero-primary, .btn-hero-ghost{ width:100%; padding:12px 14px }
  .price-frame{ width:100% }
  .footer-badge{ flex-direction:column; width:100%; gap:8px }

  .mob-form{ width:92%; margin:6% auto }

  .section{ padding:40px 0 }
  .card-soft{ padding:14px; border-radius:10px }

  .hi-grid,
  .amen-grid,
  .plan-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); gap:12px }

  .hi-card{ padding:14px }
  .plan-step{ padding:12px }
  .plan-step .percent{ font-size:18px }

  .gallery-img{ height:260px }
  .thumb-row{display:none; }
  .thumb-img{ width:84px; height:56px } /* show small thumbs on mobile */

  .loc-grid{ grid-template-columns:1fr; gap:12px }
  .map-embed{ height:260px }

  .plan-viewer .viewer-head{ flex-direction:column; align-items:stretch }
  .plan-tabs{ width:100% }
  .plan-tabs .planTab{ flex:1 1 auto }
  .plan-meta{ flex-direction:column }
  .spec-table{ max-width:100%; font-size:13px }

  #leadForm .form-control{ height:auto; padding:12px; font-size:14px }
  #leadForm .btn{ padding:12px 14px }

  .promise-box{ padding:12px 14px; gap:10px 16px; font-size:13px }

  .footer-top{
    grid-template-columns:1fr;
    gap:24px;
    padding:0 16px 24px;
  }
  .footer-cta{ justify-content:flex-start }
  .footer-bottom{ padding:14px 16px 24px }

  .auto-modal{
    width:92%; margin:0 auto; padding:16px; border-radius:12px;
  }
  .modal-brand{ width:70%; margin:6% auto 8%; height:56px }

  .section-cta{ width:100%; max-width:520px; gap:8px }
  .section-cta .cta-btn{ flex:1 1 auto }
}

/* phablets / small tablets */
@media (max-width:768px){
  .site-header .desktop-nav{ display:none !important }
  .nav-toggle{ display:inline-flex }

  .footer-top{ grid-template-columns:1fr 1fr; gap:24px }
  
  .section-cta .cta-btn {
  
    font-size: 14px!important;
}
}

/* medium tablets */
@media (max-width:900px){
  .container{ max-width:720px }
  .footer-top{ grid-template-columns:1fr 1fr }
}

/* larger tablets */
@media (max-width:1024px){
  .container{ max-width:920px }
}

/* Floating action buttons */
.fab-stack {
  position: fixed;
  right: 18px;
  bottom: 20px;
  z-index: 1050; /* above content, below modals */
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fab-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0,0,0,.18);
  color: #fff;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, opacity .2s ease;
  opacity: 0.98;
}

.fab-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,.22); text-decoration: none; color: #fff; }
.fab-wa  { background:#25D366; }
.fab-enq { background: var(--teal, #0aa7a1); }

/* Small label chips next to FABs (optional but nice) */
.fab-label {
  position: absolute;
  right: 66px;
  background: #111;
  color: #fff;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 12px;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(0,0,0,.18);
  opacity: 0;
  transform: translateX(6px);
  pointer-events: none;
  transition: opacity .15s ease, transform .15s ease;
}
.fab-wrap { position: relative; }
.fab-wrap:hover .fab-label { opacity: 1; transform: translateX(0); }

/* Tweak for mobile so it doesn’t block footer */
@media (max-width: 575.98px){
  .fab-stack { right: 12px; bottom: 14px; gap: 10px; }
  .fab-btn { width: 52px; height: 52px; }
}
