/*!
 * Paradise Real Estate - Main Stylesheet (Static Site)
 * Adapted from WordPress theme + extended with all-page styles
 */

/* ============ RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Poppins', system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #e8eef5;
  background: #0a1a2f;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }

/* ============ DESIGN TOKENS ============ */
:root {
  --navy-900: #07182e;
  --navy-800: #0a1f3a;
  --navy-700: #0f2a4d;
  --navy-600: #14365e;
  --navy-500: #1c4a7e;
  --gold: #d4a544;
  --gold-light: #e8c068;
  --gold-dark: #b88a2e;
  --gold-soft: #f1d990;
  --white: #ffffff;
  --off-white: #e8eef5;
  --muted: #9eb0c6;
  --green: #25d366;
  --green-dark: #1ea952;
  --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.45);
  --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.35);
  --shadow-sm: 0 4px 10px -2px rgba(0, 0, 0, 0.25);
  --container: 1240px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ TOP UTILITY BAR ============ */
.topbar {
  background: var(--navy-900);
  color: #cdd6e2;
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(212, 165, 68, 0.12);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar__contacts { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar__contacts a { display: inline-flex; align-items: center; gap: 6px; transition: color .2s; }
.topbar__contacts a:hover { color: var(--gold); }
.topbar__socials { display: flex; gap: 12px; }
.topbar__socials a {
  width: 26px; height: 26px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  transition: all .25s;
  font-weight: 600;
  font-size: 12px;
}
.topbar__socials a:hover { background: var(--gold); color: var(--navy-900); transform: translateY(-2px); }

/* ============ HEADER / NAV ============ */
.site-header {
  background: var(--navy-800);
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid rgba(212, 165, 68, 0.1);
  transition: background .3s ease, box-shadow .3s ease;
}
.site-header.is-scrolled {
  background: rgba(7, 24, 46, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 6px 20px rgba(0,0,0,.4);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 14px 0;
}
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--white); }
.brand__mark {
  width: 54px; height: 54px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 2px solid var(--gold);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.brand__mark span {
  font-family: var(--serif);
  font-size: 28px; font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
}
.brand__wordmark { display: flex; flex-direction: column; line-height: 1; }
.brand__wordmark strong {
  font-family: var(--serif);
  font-size: 22px; font-weight: 700;
  letter-spacing: 3px;
  color: var(--white);
}
.brand__wordmark span {
  font-size: 10px; letter-spacing: 4px;
  color: var(--gold);
  margin-top: 4px;
  font-weight: 500;
}

.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  display: inline-block;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.8px;
  color: #d2dbe7;
  position: relative;
  transition: color .25s;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 50%; bottom: 4px;
  transform: translateX(-50%) scaleX(0);
  width: 18px; height: 2px;
  background: var(--gold);
  transition: transform .25s ease;
  transform-origin: center;
}
.nav a:hover, .nav a.active { color: var(--gold); }
.nav a:hover::after, .nav a.active::after { transform: translateX(-50%) scaleX(1); }

.header__cta {
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  color: var(--navy-900);
  padding: 11px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 12px rgba(212,165,68,.3);
  transition: transform .2s, box-shadow .2s;
}
.header__cta:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(212,165,68,.45); }

.nav-toggle {
  display: none;
  background: transparent; border: 1px solid rgba(255,255,255,.2);
  border-radius: 6px;
  width: 42px; height: 42px;
  color: var(--white);
  font-size: 20px;
}

/* ============ HERO SECTION ============ */
.hero {
  position: relative;
  min-height: 720px;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--navy-800);
  padding: 64px 0 80px;
}
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
.hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(7,24,46,.92) 0%, rgba(7,24,46,.72) 45%, rgba(7,24,46,.35) 100%),
    linear-gradient(180deg, rgba(7,24,46,.5) 0%, rgba(7,24,46,.85) 100%);
}
.hero__inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
  width: 100%;
}

/* Hero content */
.hero__content { color: var(--white); }
.hero__ornament {
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 14px;
  text-align: left;
}
.hero__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(48px, 6.5vw, 84px);
  line-height: 1;
  letter-spacing: 8px;
  margin-bottom: 6px;
  color: var(--white);
  text-shadow: 0 4px 30px rgba(0,0,0,.5);
}
.hero__title-row {
  display: flex; align-items: center; gap: 18px;
  margin: 4px 0 18px;
}
.hero__title-row::before, .hero__title-row::after {
  content: ''; flex: 0 0 60px;
  height: 1px; background: var(--gold);
}
.hero__subtitle {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: 12px;
  color: var(--white);
  white-space: nowrap;
}
.hero__tagline {
  color: var(--gold);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 22px 0 14px;
  display: flex; align-items: center; gap: 14px;
}
.hero__tagline::after {
  content: '';
  flex: 1; max-width: 80px;
  height: 1px; background: linear-gradient(90deg, var(--gold), transparent);
}
.hero__desc {
  font-size: 16px;
  line-height: 1.7;
  color: #d8dfe9;
  max-width: 540px;
  margin-bottom: 28px;
}

.hero__cta-row {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 22px;
}
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: all .25s;
  white-space: nowrap;
  cursor: pointer;
  border: none;
}
.btn--gold {
  background: linear-gradient(180deg, var(--gold-light), var(--gold-dark));
  color: var(--navy-900);
  box-shadow: 0 6px 18px rgba(212,165,68,.35);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(212,165,68,.5); }
.btn--outline {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--white);
}
.btn--outline:hover { background: rgba(212,165,68,.12); }
.btn--white {
  background: var(--white);
  color: var(--navy-900);
}
.btn--white:hover { transform: translateY(-2px); }
.btn .arrow { transition: transform .2s; }
.btn:hover .arrow { transform: translateX(4px); }

.hero__bullets {
  display: flex; gap: 22px; flex-wrap: wrap;
  margin-top: 10px;
}
.hero__bullets li {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500;
  color: #cfd7e2;
}
.hero__bullets .tick {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-900);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800;
  flex-shrink: 0;
}

/* Hero form */
.brochure {
  background: linear-gradient(180deg, rgba(10, 31, 58, 0.92), rgba(7, 24, 46, 0.96));
  border: 1px solid rgba(212,165,68,.35);
  border-radius: 14px;
  padding: 28px 26px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(8px);
}
.brochure__head {
  text-align: center;
  margin-bottom: 18px;
}
.brochure__head h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
  display: flex; align-items: center; justify-content: center; gap: 12px;
}
.brochure__head h3::before, .brochure__head h3::after {
  content: '➤'; color: var(--gold); font-size: 12px;
}
.brochure__head h3::before { transform: scaleX(-1); }
.brochure__head p {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.5px;
}

.brochure form { display: flex; flex-direction: column; gap: 12px; }
.brochure .field {
  position: relative;
}
.brochure .field-icon {
  position: absolute;
  left: 14px; top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  pointer-events: none;
  font-size: 14px;
}
.brochure input, .brochure select {
  width: 100%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  padding: 13px 14px 13px 44px;
  color: var(--white);
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: all .2s;
}
.brochure input::placeholder { color: #9aa6b7; }
.brochure input:focus, .brochure select:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,.1);
  box-shadow: 0 0 0 3px rgba(212,165,68,.15);
}
.brochure select { appearance: none; cursor: pointer; padding-right: 36px; }
.brochure select option { background: var(--navy-800); color: var(--white); }
.brochure .field--select::after {
  content: '▾';
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  color: var(--gold);
  pointer-events: none;
  font-size: 14px;
}

.brochure__submit {
  width: 100%;
  background: linear-gradient(180deg, var(--gold-light), var(--gold-dark));
  color: var(--navy-900);
  padding: 14px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 6px;
  transition: all .25s;
  box-shadow: 0 6px 16px rgba(212,165,68,.35);
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.brochure__submit:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(212,165,68,.5); }
.brochure__submit:disabled { opacity: .8; cursor: wait; }

.brochure__secure {
  margin-top: 10px;
  font-size: 12px;
  color: var(--muted);
  display: flex; align-items: center; justify-content: center; gap: 6px;
}

/* ============ FEATURE SHOWCASE ============ */
.showcase {
  background: var(--navy-800);
  padding: 0;
}
.showcase__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 360px;
}
.showcase__tile {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  cursor: pointer;
}
.showcase__tile + .showcase__tile { border-left: 2px solid var(--navy-900); }
.showcase__tile img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.showcase__tile::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,24,46,0) 35%, rgba(7,24,46,.85) 75%, rgba(7,24,46,.95) 100%);
  z-index: 1;
}
.showcase__tile:hover img { transform: scale(1.08); }
.showcase__caption {
  position: absolute;
  left: 24px; right: 24px; bottom: 22px;
  z-index: 2;
  color: var(--white);
}
.showcase__caption h4 {
  font-size: 17px; font-weight: 700;
  letter-spacing: 1.6px;
  margin-bottom: 6px;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0,0,0,.6);
}
.showcase__caption p {
  font-size: 12px;
  letter-spacing: 0.5px;
  color: #d2dbe7;
  line-height: 1.45;
}

/* ============ BENEFITS STRIP ============ */
.benefits {
  background: var(--navy-700);
  padding: 56px 0;
  border-top: 3px solid var(--gold);
  border-bottom: 1px solid rgba(212,165,68,.15);
}
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  text-align: center;
}
.benefit {
  padding: 8px 14px;
  position: relative;
}
.benefit + .benefit::before {
  content: '';
  position: absolute;
  left: 0; top: 18px; bottom: 18px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(212,165,68,.25), transparent);
}
.benefit__icon {
  width: 62px; height: 62px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: inline-flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  color: var(--gold);
  background: rgba(212,165,68,.05);
  transition: all .3s;
  font-size: 24px;
}
.benefit:hover .benefit__icon {
  background: var(--gold);
  color: var(--navy-900);
  transform: translateY(-3px);
}
.benefit h5 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1.2px;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.benefit p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
  max-width: 180px;
  margin: 0 auto;
}

/* ============ EMI / FAMILY CTA SECTION ============ */
.cta-band {
  background: var(--navy-700);
  padding: 30px 0 56px;
}
.cta-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,.97), rgba(245,247,250,1));
  border-radius: 22px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: stretch;
  min-height: 200px;
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
}
.cta-card__col {
  padding: 28px 30px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
}
.cta-card__col--icon {
  flex-direction: row;
  align-items: center;
  gap: 22px;
}
.cta-card__col--icon .ic {
  width: 78px; height: 78px;
  border-radius: 50%;
  background: var(--navy-700);
  color: var(--gold);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 32px;
}
.cta-card__title {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy-900);
  letter-spacing: 1px;
  margin-bottom: 10px;
  text-transform: uppercase;
  line-height: 1.15;
}
.cta-card__sub {
  font-size: 13px;
  color: #46586f;
  font-weight: 500;
  letter-spacing: 0.8px;
}
.cta-card__sub strong { color: var(--gold-dark); margin: 0 4px; }
.cta-card__img {
  position: relative;
  overflow: hidden;
}
.cta-card__img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

/* ============ PROJECTS ============ */
.projects {
  background: var(--navy-800);
  padding: 80px 0 90px;
}
.projects__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 40px;
  gap: 24px; flex-wrap: wrap;
}
.section-title { text-align: left; }
.section-title.is-center { text-align: center; margin: 0 auto; }
.section-title__eyebrow {
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 600;
  display: inline-flex; align-items: center; gap: 10px;
}
.section-title h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 600;
  color: var(--white);
  letter-spacing: 4px;
  text-transform: uppercase;
  line-height: 1.1;
}
.section-title p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
  letter-spacing: 0.5px;
}
.projects__head .btn { align-self: center; }

.project-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.project-card {
  background: var(--navy-700);
  border: 1px solid rgba(212,165,68,.1);
  border-radius: 14px;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,.4);
  border-color: rgba(212,165,68,.4);
}
.project-card__img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.project-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s;
}
.project-card:hover .project-card__img img { transform: scale(1.06); }
.project-card__badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--gold);
  color: var(--navy-900);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 2;
}
.project-card__body { padding: 18px 20px 22px; flex: 1; display: flex; flex-direction: column; }
.project-card__body h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.project-card__type {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 12px;
}
.project-card__loc {
  font-size: 13px;
  color: var(--gold);
  display: inline-flex; align-items: center; gap: 6px;
  padding-top: 12px;
  border-top: 1px dashed rgba(212,165,68,.2);
  width: 100%;
  margin-top: auto;
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--navy-900);
  padding: 70px 0 0;
  border-top: 1px solid rgba(212,165,68,.12);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer-col h6 {
  font-size: 13px;
  letter-spacing: 2.5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 22px;
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h6::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 36px; height: 2px;
  background: var(--gold);
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  color: #b8c2d2;
  font-size: 14px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: color .2s, transform .2s;
}
.footer-col ul a:hover { color: var(--gold); transform: translateX(3px); }
.footer-col ul a .chev { color: var(--gold); font-size: 11px; }

.footer-brand p {
  font-size: 13px;
  color: #a4b1c4;
  line-height: 1.7;
  margin: 16px 0 22px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--white);
  transition: transform .25s;
  font-weight: 600;
  font-size: 14px;
}
.footer-social a:hover { transform: translateY(-3px); }
.fs--fb { background: #1877f2; }
.fs--ig { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.fs--yt { background: #ff0000; }
.fs--in { background: #0a66c2; }

.footer-news .news-input {
  display: flex;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  padding: 4px;
  margin-top: 6px;
}
.footer-news .news-input input {
  flex: 1;
  background: transparent;
  border: none; outline: none;
  padding: 10px 12px;
  color: var(--white);
  font-size: 14px;
  font-family: inherit;
}
.footer-news .news-input input::placeholder { color: #889aae; }
.footer-news .news-input button {
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  color: var(--navy-900);
  width: 42px; height: 38px;
  border-radius: 6px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .2s;
}
.footer-news .news-input button:hover { transform: translateX(2px); }
.footer-news > p { font-size: 13px; color: #a4b1c4; margin-bottom: 14px; }

.footer-news .footer-social { margin-top: 28px; }

.footer-contact {
  border-top: 1px solid rgba(212,165,68,.15);
  border-bottom: 1px solid rgba(212,165,68,.15);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 13.5px;
}
.footer-contact .fc {
  display: inline-flex; align-items: center; gap: 10px;
  color: #d0d8e6;
}
.footer-contact .fc .ic {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(212,165,68,.12);
  color: var(--gold);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.footer-contact .fc a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  font-size: 13px;
  color: #8b97ab;
  flex-wrap: wrap;
}
.footer-bottom .links a { margin-left: 18px; transition: color .2s; }
.footer-bottom .links a:hover { color: var(--gold); }

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-fab {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 100;
  display: flex; flex-direction: column;
  align-items: center;
  gap: 8px;
}
.whatsapp-fab__btn {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.45);
  transition: transform .25s;
  position: relative;
}
.whatsapp-fab__btn:hover { transform: scale(1.08); }
.whatsapp-fab__btn::before {
  content: '';
  position: absolute; inset: -6px;
  border-radius: 50%;
  background: rgba(37,211,102,.4);
  z-index: -1;
  animation: pulseRing 2s infinite;
}
.whatsapp-fab__btn svg { width: 30px; height: 30px; }
@keyframes pulseRing {
  0% { transform: scale(.85); opacity: .8; }
  100% { transform: scale(1.5); opacity: 0; }
}
.whatsapp-fab__label {
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
  background: var(--navy-900);
  padding: 5px 10px;
  border-radius: 12px;
  white-space: nowrap;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0,0,0,.4);
  text-align: center;
}

/* ============ REVEAL ANIMATION ============ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.is-in { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }
.reveal[data-delay="4"] { transition-delay: .4s; }

/* ============ PAGE HEADER / BANNER ============ */
.page-banner {
  position: relative;
  padding: 90px 0 70px;
  background: var(--navy-800);
  overflow: hidden;
  isolation: isolate;
}
.page-banner__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  z-index: -1;
  opacity: .35;
}
.page-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,24,46,.7), rgba(7,24,46,.95));
  z-index: -1;
}
.page-banner__eyebrow {
  font-size: 13px;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 600;
  display: flex; align-items: center; justify-content: center; gap: 14px;
}
.page-banner__eyebrow::before, .page-banner__eyebrow::after {
  content: ''; width: 40px; height: 1px; background: var(--gold);
}
.page-banner__title {
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 600;
  color: var(--white);
  letter-spacing: 4px;
  text-transform: uppercase;
  line-height: 1.1;
  text-align: center;
  margin-bottom: 14px;
  overflow-wrap: break-word;
}
.breadcrumb {
  display: flex; align-items: center; justify-content: center;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--gold); }
.breadcrumb .current { color: var(--white); }

/* ============ GENERIC SECTION ============ */
.section { padding: 80px 0; background: var(--navy-800); }
.section--navy { background: var(--navy-700); }
.section--dark { background: var(--navy-900); }

.section-head {
  text-align: center;
  margin-bottom: 50px;
}
.section-head .section-title__eyebrow {
  display: inline-flex;
  justify-content: center;
}
.section-head h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 600;
  color: var(--white);
  letter-spacing: 4px;
  text-transform: uppercase;
  line-height: 1.1;
}
.section-head p {
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 15px;
  max-width: 640px;
  line-height: 1.7;
}

/* ============ ABOUT PAGE ============ */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-intro__img {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}
.about-intro__img img { width: 100%; height: 100%; object-fit: cover; }
.about-intro__img::before {
  content: '';
  position: absolute;
  inset: -10px;
  border: 2px solid var(--gold);
  border-radius: 18px;
  z-index: -1;
  transform: translate(16px, 16px);
}
.about-intro__content .section-title__eyebrow { margin-bottom: 10px; }
.about-intro__content h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 3.2vw, 42px);
  font-weight: 600;
  color: var(--white);
  letter-spacing: 3px;
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 20px;
}
.about-intro__content p {
  color: #b8c2d2;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-intro__signature {
  display: flex; align-items: center; gap: 16px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px dashed rgba(212,165,68,.2);
}
.about-intro__signature img,
.about-intro__signature .sig-mark {
  width: 60px; height: 60px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 28px;
  color: var(--gold);
}
.about-intro__signature h6 { font-size: 16px; color: var(--white); margin-bottom: 2px; }
.about-intro__signature span { font-size: 12px; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; }

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
  padding: 36px;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-600));
  border: 1px solid rgba(212,165,68,.2);
  border-radius: 18px;
  text-align: center;
}
.stat__num {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.stat__lbl {
  font-size: 12px;
  letter-spacing: 2px;
  color: #d2dbe7;
  text-transform: uppercase;
}

/* Vision/Mission cards */
.vm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.vm-card {
  background: var(--navy-800);
  border: 1px solid rgba(212,165,68,.15);
  border-radius: 16px;
  padding: 34px 28px;
  transition: transform .3s, box-shadow .3s;
}
.vm-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212,165,68,.4);
}
.vm-card__icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy-900);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}
.vm-card h4 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.vm-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

/* Team grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.team-card {
  background: var(--navy-700);
  border: 1px solid rgba(212,165,68,.12);
  border-radius: 14px;
  overflow: hidden;
  text-align: center;
  transition: transform .3s, border-color .3s;
}
.team-card:hover { transform: translateY(-6px); border-color: rgba(212,165,68,.4); }
.team-card__photo {
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, var(--navy-600), var(--navy-800));
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.team-card__avatar {
  width: 80%; height: 80%;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 600;
  color: var(--navy-900);
}
.team-card__body { padding: 20px 18px; }
.team-card__body h5 { font-size: 17px; color: var(--white); margin-bottom: 4px; letter-spacing: 1px; }
.team-card__body p { font-size: 12px; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; }

/* ============ FILTER TABS ============ */
.filter-bar {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.filter-tab {
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  cursor: pointer;
  transition: all .2s;
}
.filter-tab:hover { border-color: var(--gold); }
.filter-tab.is-active {
  background: linear-gradient(180deg, var(--gold-light), var(--gold-dark));
  color: var(--navy-900);
  border-color: var(--gold);
}

/* Project grid 3-col for projects.html */
.project-grid--3 { grid-template-columns: repeat(3, 1fr); }
.project-grid--2 { grid-template-columns: repeat(2, 1fr); }

/* ============ PROJECT DETAIL PAGE ============ */
.detail-hero {
  position: relative;
  height: 480px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}
.detail-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(7,24,46,.85) 80%, var(--navy-900) 100%);
}
.detail-hero__content {
  position: relative; z-index: 1;
  padding-bottom: 50px;
}
.detail-hero__type {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-900);
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.detail-hero h1 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 600;
  color: var(--white);
  letter-spacing: 4px;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 14px;
}
.detail-hero__loc {
  color: var(--gold);
  font-size: 15px;
  display: inline-flex; align-items: center; gap: 8px;
  letter-spacing: 1px;
}

.detail-body {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 50px;
  padding: 70px 0;
}
.detail-main h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.detail-main p {
  color: #c5cfdf;
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 18px;
}

.amenity-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 24px 0 36px;
}
.amenity-list li {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  background: var(--navy-700);
  border: 1px solid rgba(212,165,68,.12);
  border-radius: 10px;
  font-size: 14px;
  color: #d2dbe7;
}
.amenity-list .ic {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(212,165,68,.15);
  color: var(--gold);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--navy-700);
  border-radius: 12px;
  overflow: hidden;
  margin: 24px 0 36px;
}
.spec-table tr { border-bottom: 1px solid rgba(255,255,255,.05); }
.spec-table tr:last-child { border-bottom: none; }
.spec-table td {
  padding: 14px 22px;
  font-size: 14px;
}
.spec-table td:first-child {
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 12px;
  width: 40%;
}
.spec-table td:last-child { color: var(--white); font-weight: 500; }

/* Sidebar */
.detail-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
}
.sidebar-card {
  background: linear-gradient(180deg, var(--navy-700), var(--navy-800));
  border: 1px solid rgba(212,165,68,.25);
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 20px;
}
.sidebar-card h4 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.sidebar-card .price {
  font-size: 14px;
  color: var(--gold);
  margin-bottom: 18px;
  font-weight: 600;
}
.sidebar-card .price strong { font-size: 24px; font-family: var(--serif); }

/* Gallery in project detail */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 24px 0 36px;
}
.gallery-grid__item {
  aspect-ratio: 4/3;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-grid__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gallery-grid__item:hover img { transform: scale(1.08); }
.gallery-grid__item::after {
  content: '⊕';
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(7,24,46,0);
  color: rgba(255,255,255,0);
  font-size: 30px;
  transition: all .3s;
}
.gallery-grid__item:hover::after { background: rgba(7,24,46,.5); color: var(--gold); }

/* ============ AMENITIES PAGE ============ */
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.amenity-card {
  background: var(--navy-700);
  border: 1px solid rgba(212,165,68,.12);
  border-radius: 16px;
  padding: 30px 26px;
  text-align: center;
  transition: all .3s;
}
.amenity-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 20px 40px rgba(0,0,0,.4);
}
.amenity-card__icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212,165,68,.2), rgba(212,165,68,.05));
  border: 2px solid var(--gold);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 32px;
  margin-bottom: 22px;
  transition: all .3s;
}
.amenity-card:hover .amenity-card__icon {
  background: var(--gold);
  color: var(--navy-900);
  transform: scale(1.05);
}
.amenity-card h5 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.amenity-card p {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.6;
}

/* ============ CONTACT PAGE ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: flex-start;
}
.contact-info h3 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 600;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  line-height: 1.1;
}
.contact-info > p {
  color: #b8c2d2;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 32px;
}
.contact-block {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 22px 0;
  border-bottom: 1px dashed rgba(212,165,68,.18);
}
.contact-block:last-of-type { border-bottom: none; }
.contact-block__icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(212,165,68,.12);
  color: var(--gold);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.contact-block h6 {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-weight: 600;
}
.contact-block p { color: var(--white); font-size: 15px; line-height: 1.6; }
.contact-block a { color: var(--white); }
.contact-block a:hover { color: var(--gold); }

.contact-form {
  background: var(--navy-700);
  border: 1px solid rgba(212,165,68,.2);
  border-radius: 18px;
  padding: 36px;
  box-shadow: var(--shadow-lg);
}
.contact-form h4 {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.contact-form > p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--white);
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: all .2s;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,.1);
  box-shadow: 0 0 0 3px rgba(212,165,68,.15);
}
.form-input::placeholder, .form-textarea::placeholder { color: #889aae; }
.form-textarea { min-height: 130px; resize: vertical; }
.form-select { appearance: none; cursor: pointer; padding-right: 36px; background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%); background-position: calc(100% - 18px) 50%, calc(100% - 12px) 50%; background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; }
.form-select option { background: var(--navy-800); color: var(--white); }

.map-block {
  background: var(--navy-700);
  height: 360px;
  border-radius: 18px;
  border: 1px solid rgba(212,165,68,.2);
  overflow: hidden;
  position: relative;
  margin-top: 40px;
}
.map-block iframe { width: 100%; height: 100%; border: 0; filter: invert(0.9) hue-rotate(180deg); }
.map-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background:
    linear-gradient(135deg, rgba(7,24,46,.6), rgba(7,24,46,.85)),
    radial-gradient(circle at 30% 40%, rgba(212,165,68,.15), transparent 50%),
    var(--navy-700);
  color: var(--gold);
}
.map-fallback__pin {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-900);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  box-shadow: 0 0 0 8px rgba(212,165,68,.2), 0 0 0 24px rgba(212,165,68,.08);
  animation: pulseRing 2.5s infinite;
}
.map-fallback h5 {
  color: var(--white);
  font-size: 18px;
  letter-spacing: 2px;
}
.map-fallback p { color: var(--muted); font-size: 14px; }

/* ============ BOOK VISIT PAGE ============ */
.bv-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: flex-start;
}
.bv-steps {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
  position: relative;
  padding: 0 20px;
}
.bv-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 1;
  position: relative;
  cursor: pointer;
}
.bv-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 22px;
  left: calc(50% + 24px);
  right: calc(-50% + 24px);
  height: 2px;
  background: rgba(255,255,255,.1);
}
.bv-step.is-done:not(:last-child)::after { background: var(--gold); }
.bv-step__circle {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--navy-700);
  border: 2px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 15px;
  color: var(--muted);
  transition: all .3s;
}
.bv-step.is-active .bv-step__circle {
  background: linear-gradient(180deg, var(--gold-light), var(--gold-dark));
  border-color: var(--gold);
  color: var(--navy-900);
  box-shadow: 0 0 0 6px rgba(212,165,68,.15);
}
.bv-step.is-done .bv-step__circle {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}
.bv-step__label {
  font-size: 12px;
  letter-spacing: 1.5px;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
}
.bv-step.is-active .bv-step__label,
.bv-step.is-done .bv-step__label { color: var(--white); }

.bv-card {
  background: var(--navy-700);
  border: 1px solid rgba(212,165,68,.2);
  border-radius: 18px;
  padding: 36px;
  box-shadow: var(--shadow-md);
}
.bv-card h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.bv-card > p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 26px;
}

/* Calendar */
.calendar {
  background: var(--navy-800);
  border-radius: 14px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.05);
}
.calendar__head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px;
}
.calendar__head h5 {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--white);
  letter-spacing: 2px;
}
.calendar__nav {
  display: flex; gap: 6px;
}
.calendar__nav button {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(212,165,68,.1);
  color: var(--gold);
  display: inline-flex; align-items: center; justify-content: center;
  transition: all .2s;
  font-size: 16px;
}
.calendar__nav button:hover { background: var(--gold); color: var(--navy-900); }
.calendar__nav button:disabled { opacity: .3; cursor: not-allowed; }
.calendar__weekdays, .calendar__days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}
.calendar__weekdays div {
  text-align: center;
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  padding: 8px 0;
}
.calendar__day {
  aspect-ratio: 1/1;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  font-size: 14px;
  color: var(--white);
  cursor: pointer;
  transition: all .2s;
  background: rgba(255,255,255,.03);
  border: 1px solid transparent;
  font-weight: 500;
  position: relative;
}
.calendar__day:hover { background: rgba(212,165,68,.15); border-color: rgba(212,165,68,.3); }
.calendar__day.is-empty { background: transparent; cursor: default; pointer-events: none; }
.calendar__day.is-disabled { color: rgba(255,255,255,.18); cursor: not-allowed; pointer-events: none; }
.calendar__day.is-today { border-color: var(--gold); color: var(--gold); font-weight: 700; }
.calendar__day.is-selected {
  background: linear-gradient(180deg, var(--gold-light), var(--gold-dark));
  color: var(--navy-900);
  font-weight: 700;
  transform: scale(1.05);
  box-shadow: 0 6px 14px rgba(212,165,68,.4);
}
.calendar__day.is-weekend { color: rgba(255,255,255,.5); }

/* Time slots */
.time-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.time-slot {
  padding: 14px 12px;
  border-radius: 10px;
  background: var(--navy-800);
  border: 1px solid rgba(255,255,255,.08);
  color: var(--white);
  text-align: center;
  cursor: pointer;
  transition: all .2s;
  font-size: 14px;
  font-weight: 500;
}
.time-slot:hover { border-color: var(--gold); background: rgba(212,165,68,.08); }
.time-slot.is-selected {
  background: linear-gradient(180deg, var(--gold-light), var(--gold-dark));
  color: var(--navy-900);
  border-color: var(--gold);
  font-weight: 700;
}
.time-slot.is-disabled { opacity: .35; cursor: not-allowed; text-decoration: line-through; }
.time-slot small { display: block; font-size: 10px; opacity: .7; letter-spacing: 1px; margin-top: 2px; }

/* Project selector */
.project-pick {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.project-pick__option {
  display: flex;
  gap: 14px;
  padding: 14px;
  border-radius: 12px;
  background: var(--navy-800);
  border: 2px solid rgba(255,255,255,.08);
  cursor: pointer;
  transition: all .2s;
  align-items: center;
}
.project-pick__option:hover { border-color: rgba(212,165,68,.3); }
.project-pick__option.is-selected {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(212,165,68,.08), rgba(212,165,68,.02));
}
.project-pick__option img {
  width: 80px; height: 80px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
.project-pick__info h6 { color: var(--white); font-size: 14px; letter-spacing: 1px; margin-bottom: 4px; }
.project-pick__info p { color: var(--gold); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; }
.project-pick__info span { color: var(--muted); font-size: 11px; display: block; margin-top: 2px; }

/* Summary sidebar */
.bv-summary {
  position: sticky;
  top: 100px;
  background: linear-gradient(180deg, var(--navy-700), var(--navy-800));
  border: 1px solid rgba(212,165,68,.3);
  border-radius: 18px;
  padding: 32px 26px;
}
.bv-summary h4 {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--gold);
}
.bv-summary > p {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
  margin-top: 12px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(255,255,255,.08);
}
.summary-row:last-of-type { border-bottom: none; }
.summary-row dt {
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--muted);
  text-transform: uppercase;
  flex-shrink: 0;
}
.summary-row dd {
  font-size: 14px;
  color: var(--white);
  font-weight: 600;
  text-align: right;
}
.summary-row dd.empty { color: rgba(255,255,255,.3); font-weight: 400; font-style: italic; }

.bv-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  gap: 12px;
}
.bv-nav .btn { flex: 1; justify-content: center; }
.bv-step-pane { display: none; }
.bv-step-pane.is-active { display: block; animation: fadeUp .35s ease; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Confirmation screen */
.bv-confirm {
  text-align: center;
  padding: 30px 20px;
}
.bv-confirm__icon {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 50px;
  margin-bottom: 24px;
  box-shadow: 0 0 0 10px rgba(37,211,102,.15);
  animation: bounceIn .6s ease;
}
@keyframes bounceIn {
  0% { transform: scale(.3); opacity: 0; }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}
.bv-confirm h2 {
  font-family: var(--serif);
  font-size: 36px;
  color: var(--white);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.bv-confirm p {
  color: var(--muted);
  font-size: 15px;
  max-width: 480px;
  margin: 0 auto 24px;
  line-height: 1.7;
}
.bv-confirm__booking-id {
  display: inline-block;
  background: var(--navy-800);
  border: 1px dashed var(--gold);
  border-radius: 8px;
  padding: 12px 20px;
  font-family: 'Courier New', monospace;
  color: var(--gold);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 30px;
}

/* My bookings */
.my-bookings {
  margin-top: 40px;
}
.booking-card {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 20px 24px;
  background: var(--navy-700);
  border: 1px solid rgba(212,165,68,.15);
  border-radius: 14px;
  margin-bottom: 14px;
}
.booking-card__date {
  text-align: center;
  background: var(--navy-800);
  border-radius: 10px;
  padding: 12px 8px;
  border: 1px solid rgba(212,165,68,.2);
}
.booking-card__date .d { font-family: var(--serif); font-size: 28px; font-weight: 700; color: var(--gold); line-height: 1; }
.booking-card__date .m { font-size: 10px; letter-spacing: 2px; color: var(--white); text-transform: uppercase; margin-top: 4px; }
.booking-card__info h6 { color: var(--white); font-size: 15px; letter-spacing: 1px; margin-bottom: 6px; }
.booking-card__info p { color: var(--muted); font-size: 13px; }
.booking-card__info .id { color: var(--gold); font-family: monospace; font-size: 12px; letter-spacing: 2px; }
.booking-card__status {
  background: rgba(37,211,102,.12);
  color: var(--green);
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ============ MODAL ============ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(6px);
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity .25s;
}
.modal-overlay.is-open { display: flex; opacity: 1; }
.modal {
  background: var(--navy-800);
  border: 1px solid rgba(212,165,68,.3);
  border-radius: 18px;
  max-width: 540px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  padding: 36px;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: scale(.95);
  transition: transform .25s;
}
.modal-overlay.is-open .modal { transform: scale(1); }
.modal__close {
  position: absolute;
  top: 18px; right: 18px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 18px;
  transition: all .2s;
}
.modal__close:hover { background: var(--gold); color: var(--navy-900); }
.modal h3 {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  padding-right: 40px;
}
.modal > p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 24px;
}

/* ============ LIGHTBOX ============ */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.94);
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 88vh; border-radius: 8px; }
.lightbox__close {
  position: absolute;
  top: 24px; right: 24px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
}

/* ============ GALLERY PAGE ============ */
.masonry {
  column-count: 3;
  column-gap: 16px;
}
.masonry__item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.masonry__item img { width: 100%; display: block; transition: transform .4s; }
.masonry__item:hover img { transform: scale(1.04); }
.masonry__item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(7,24,46,.7));
  opacity: 0; transition: opacity .3s;
}
.masonry__item:hover::after { opacity: 1; }

/* ============ MOBILE NAV ============ */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(7, 24, 46, 0.98);
  z-index: 200;
  padding: 80px 30px 30px;
  backdrop-filter: blur(10px);
}
.mobile-nav.is-open { display: block; }
.mobile-nav a {
  display: block;
  padding: 14px 0;
  font-size: 17px;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.08);
  letter-spacing: 1.5px;
  font-weight: 500;
}
.mobile-nav a:hover, .mobile-nav a.active { color: var(--gold); }
.mobile-nav__close {
  position: absolute;
  top: 22px; right: 22px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.mobile-nav .btn { width: 100%; justify-content: center; margin-top: 22px; }

/* ============ 404 PAGE ============ */
.error-page {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}
.error-page__number {
  font-family: var(--serif);
  font-size: clamp(120px, 18vw, 220px);
  font-weight: 700;
  background: linear-gradient(180deg, var(--gold-light), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  letter-spacing: 10px;
}
.error-page h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 42px);
  color: var(--white);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.error-page p {
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 32px;
  font-size: 15px;
}

/* ============ TOAST ============ */
.toast {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--navy-800);
  border: 1px solid var(--gold);
  color: var(--white);
  padding: 14px 22px;
  border-radius: 10px;
  font-size: 14px;
  z-index: 500;
  opacity: 0;
  transition: all .3s;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
}
.toast.is-show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast--success { border-color: var(--green); }
.toast--error { border-color: #ff5a5a; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .project-grid, .project-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .showcase__grid { grid-template-columns: repeat(2, 1fr); }
  .showcase__tile { min-height: 260px; }
  .benefits__grid { grid-template-columns: repeat(3, 1fr); row-gap: 32px; }
  .benefit + .benefit::before { display: none; }
  .vm-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .amenity-grid { grid-template-columns: repeat(2, 1fr); }
  .detail-body { grid-template-columns: 1fr; }
  .detail-sidebar { position: static; }
  .bv-layout { grid-template-columns: 1fr; }
  .bv-summary { position: static; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .masonry { column-count: 2; }
}

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero { min-height: auto; padding: 50px 0 60px; }
  .cta-card { grid-template-columns: 1fr; }
  .cta-card__col--icon { padding: 26px 24px; }
  .cta-card__img { min-height: 220px; }
  .projects__head { flex-direction: column; align-items: flex-start; }
  .footer-contact { flex-direction: column; gap: 14px; align-items: flex-start; }
  .about-intro { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .project-pick { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav, .header__cta { display: none; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .topbar__inner { justify-content: center; }
  .topbar__socials { display: none; }
  .hero__title { letter-spacing: 4px; }
  .hero__subtitle { letter-spacing: 6px; }
  .benefits__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .amenity-list { grid-template-columns: 1fr; }
  .bv-steps { padding: 0; }
  .bv-step__label { font-size: 10px; letter-spacing: 1px; }
  .time-slots { grid-template-columns: repeat(2, 1fr); }
  .bv-card { padding: 24px; }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .project-grid, .project-grid--3, .project-grid--2 { grid-template-columns: 1fr; }
  .showcase__grid { grid-template-columns: 1fr; }
  .showcase__tile { min-height: 220px; }
  .benefits__grid { grid-template-columns: 1fr; }
  .container { padding: 0 18px; }
  .hero__cta-row .btn { width: 100%; justify-content: center; }
  .whatsapp-fab { right: 14px; bottom: 14px; }
  .whatsapp-fab__btn { width: 52px; height: 52px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom .links a { margin: 0 8px; }
  .team-grid, .amenity-grid { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: 1fr; padding: 24px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .masonry { column-count: 1; }
  .bv-step__label { display: none; }
  .booking-card { grid-template-columns: 70px 1fr; }
  .booking-card__status { grid-column: 1 / -1; justify-self: start; }
  .modal { padding: 26px; }
  .contact-form { padding: 26px; }
}
