/* ==========================================================================
   RAB Bluestone Private Limited — Premium Corporate Real Estate
   Stylesheet
   ========================================================================== */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0B1F3A;
  --navy-deep: #081530;
  --navy-soft: #142a4c;
  --gold: #F4C542;
  --gold-deep: #d9ab2c;
  --gold-soft: #fde7a8;
  --cream: #FAF7F2;
  --paper: #F3EFE6;
  --line: #E6E1D6;
  --ink: #0B1F3A;
  --muted: #5A6478;
  --soft: #8893A7;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px rgba(11,31,58,.06);
  --shadow-md: 0 8px 30px rgba(11,31,58,.08);
  --shadow-lg: 0 20px 60px rgba(11,31,58,.16);
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --container: 1240px;
  --font-display: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", "Plus Jakarta Sans", -apple-system, system-ui, sans-serif;
  --ease: cubic-bezier(.22,.61,.36,1);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 16px;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; height: auto; }
a { color: var(--navy); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--gold-deep); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

::selection { background: var(--gold); color: var(--navy); }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 400; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.85rem); font-weight: 400; }
h3 { font-size: clamp(1.3rem, 2vw, 1.65rem); }
h4 { font-size: 1.15rem; }
p { color: var(--muted); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1.25rem;
}
.eyebrow::before {
  content: ""; width: 28px; height: 1px; background: var(--gold-deep);
}

.section-title { margin-bottom: 1rem; }
.section-lead { max-width: 640px; color: var(--muted); font-size: 1.05rem; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(64px, 9vw, 120px) 0; position: relative; }
.section--paper { background: var(--paper); }
.section--navy { background: var(--navy); color: var(--cream); }
.section--navy h1, .section--navy h2, .section--navy h3, .section--navy h4 { color: var(--white); }
.section--navy p { color: rgba(250,247,242,.78); }

.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-auto { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
@media (max-width: 980px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-3.md-2, .grid-4.md-2 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) { .grid-3.md-2, .grid-4.md-2 { grid-template-columns: 1fr; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .02em;
  border-radius: var(--radius-pill);
  transition: all .35s var(--ease);
  cursor: pointer;
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn i, .btn svg { transition: transform .35s var(--ease); }
.btn:hover i, .btn:hover svg { transform: translateX(4px); }

.btn-primary { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-primary:hover { background: var(--navy); color: var(--gold); border-color: var(--navy); }

.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }

.btn-ghost { background: transparent; color: var(--cream); border-color: rgba(250,247,242,.4); }
.btn-ghost:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

.btn-light { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-light:hover { background: var(--gold); border-color: var(--gold); }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--navy-deep);
  color: rgba(250,247,242,.85);
  font-size: .82rem;
  padding: 9px 0;
  border-bottom: 1px solid rgba(244,197,66,.15);
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.topbar a { color: rgba(250,247,242,.85); display: inline-flex; align-items: center; gap: 6px; }
.topbar a:hover { color: var(--gold); }
.topbar .tb-right { display: flex; gap: 22px; align-items: center; }
.topbar .tb-cin { color: var(--gold); font-weight: 600; letter-spacing: .04em; }
@media (max-width: 720px) { .topbar { font-size: .74rem; } .topbar .tb-cin { display: none; } }

/* ---------- Header ---------- */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  transition: all .3s var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 54px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text .b-name { font-family: var(--font-display); font-size: 1.25rem; color: var(--navy); font-weight: 500; }
.brand-text .b-sub { font-size: .68rem; letter-spacing: .28em; color: var(--muted); text-transform: uppercase; margin-top: 4px; }

.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  padding: 10px 16px;
  font-size: .92rem;
  font-weight: 500;
  color: var(--navy);
  position: relative;
  border-radius: var(--radius-pill);
}
.nav a::after {
  content: "";
  position: absolute; left: 18px; right: 18px; bottom: 4px; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }
.nav a.active { color: var(--navy); }

.header-cta { display: flex; align-items: center; gap: 12px; }
.header-phone { display: flex; align-items: center; gap: 10px; padding: 8px 14px; border-radius: var(--radius-pill); background: var(--cream); }
.header-phone i { color: var(--gold-deep); }
.header-phone span { font-weight: 600; color: var(--navy); font-size: .9rem; }

.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 50%; background: var(--navy); color: var(--gold); align-items: center; justify-content: center; font-size: 1.2rem; }

@media (max-width: 1100px) {
  .nav, .header-phone { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--navy);
  color: var(--cream);
  z-index: 200;
  transform: translateX(100%);
  transition: transform .4s var(--ease);
  padding: 90px 32px 32px;
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu .mm-close { position: absolute; top: 24px; right: 24px; width: 44px; height: 44px; border-radius: 50%; background: rgba(244,197,66,.15); color: var(--gold); display: inline-flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.mobile-menu a { display: block; padding: 14px 0; border-bottom: 1px solid rgba(250,247,242,.12); color: var(--cream); font-size: 1.1rem; font-family: var(--font-display); }
.mobile-menu a:hover { color: var(--gold); padding-left: 8px; }
.mobile-menu .mm-cta { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(8,21,48,.92) 0%, rgba(11,31,58,.78) 55%, rgba(11,31,58,.55) 100%);
  z-index: -1;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  animation: heroZoom 16s var(--ease) infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.1); } }

.hero-content { max-width: 760px; padding: 80px 0; }
.hero h1 { color: var(--white); font-size: clamp(2.6rem, 5.5vw, 4.5rem); line-height: 1.05; margin-bottom: 24px; }
.hero h1 .accent { color: var(--gold); font-style: italic; }
.hero p { color: rgba(255,255,255,.85); font-size: clamp(1rem, 1.4vw, 1.18rem); max-width: 620px; margin-bottom: 36px; }
.hero .cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-marks {
  position: absolute;
  right: 0; bottom: 0;
  display: flex; gap: 0;
  z-index: 1;
}
.hero-marks > div {
  padding: 24px 32px;
  background: rgba(11,31,58,.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-left: 1px solid rgba(244,197,66,.25);
  border-top: 1px solid rgba(244,197,66,.25);
  min-width: 180px;
}
.hero-marks .n { font-family: var(--font-display); font-size: 2rem; color: var(--gold); }
.hero-marks .l { font-size: .78rem; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.7); }
@media (max-width: 880px) {
  .hero-marks { position: static; flex-wrap: wrap; }
  .hero-marks > div { flex: 1 1 50%; min-width: 0; border-left: none; border-bottom: 1px solid rgba(244,197,66,.2); }
}

/* ---------- Page Banner (other pages) ---------- */
.page-banner {
  background: var(--navy);
  color: var(--white);
  padding: clamp(80px, 14vw, 160px) 0 clamp(50px, 8vw, 90px);
  position: relative;
  overflow: hidden;
}
.page-banner::after {
  content: "";
  position: absolute; right: -120px; top: -120px;
  width: 420px; height: 420px;
  border: 1px solid rgba(244,197,66,.18);
  border-radius: 50%;
}
.page-banner::before {
  content: "";
  position: absolute; right: 80px; bottom: -160px;
  width: 280px; height: 280px;
  border: 1px solid rgba(244,197,66,.12);
  border-radius: 50%;
}
.page-banner h1 { color: var(--white); }
.page-banner h1 .accent { color: var(--gold); font-style: italic; }
.page-banner .breadcrumb { margin-top: 16px; color: rgba(255,255,255,.7); font-size: .9rem; }
.page-banner .breadcrumb a { color: var(--gold); }
.page-banner .breadcrumb span { margin: 0 8px; opacity: .5; }

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: all .4s var(--ease);
  position: relative;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }

.service-card {
  padding: 36px 32px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  transition: all .4s var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-card .icon {
  width: 64px; height: 64px;
  background: var(--cream);
  border-radius: 16px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--gold-deep);
  font-size: 1.6rem;
  margin-bottom: 22px;
  transition: all .4s var(--ease);
}
.service-card:hover .icon { background: var(--navy); color: var(--gold); transform: rotate(-6deg); }
.service-card h3 { margin-bottom: 12px; }
.service-card p { font-size: .95rem; }
.service-card .more { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; font-weight: 600; font-size: .88rem; color: var(--navy); }
.service-card .more i { transition: transform .3s var(--ease); }
.service-card:hover .more i { transform: translateX(4px); }

/* Property card */
.property-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: all .4s var(--ease);
  display: flex; flex-direction: column;
}
.property-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.property-card .media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.property-card .media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.property-card:hover .media img { transform: scale(1.08); }
.property-card .badge {
  position: absolute; top: 14px; left: 14px;
  padding: 6px 12px;
  background: var(--gold);
  color: var(--navy);
  font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  border-radius: var(--radius-pill);
}
.property-card .badge-secondary { background: var(--white); color: var(--navy); }
.property-card .info { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.property-card .ptype { font-size: .76rem; letter-spacing: .18em; color: var(--gold-deep); text-transform: uppercase; font-weight: 700; margin-bottom: 8px; }
.property-card h3 { margin-bottom: 8px; font-size: 1.3rem; }
.property-card .loc { color: var(--muted); font-size: .9rem; display: flex; align-items: center; gap: 6px; margin-bottom: 16px; }
.property-card .loc i { color: var(--gold-deep); }
.property-card .desc { font-size: .9rem; margin-bottom: 18px; flex: 1; }
.property-card .foot { display: flex; justify-content: space-between; align-items: center; padding-top: 18px; border-top: 1px solid var(--line); }
.property-card .price { font-family: var(--font-display); font-size: 1.25rem; color: var(--navy); font-weight: 500; }
.property-card .view-link { font-size: .85rem; font-weight: 600; color: var(--navy); display: inline-flex; align-items: center; gap: 6px; }
.property-card .view-link:hover { color: var(--gold-deep); }

/* Stats */
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat {
  padding: 40px 28px;
  border-right: 1px solid var(--line);
  text-align: left;
  transition: background .3s var(--ease);
}
.stat:last-child { border-right: none; }
.stat:hover { background: var(--paper); }
.stat .n { font-family: var(--font-display); font-size: clamp(2.4rem, 4vw, 3.2rem); color: var(--navy); font-weight: 400; line-height: 1; }
.stat .n sup { color: var(--gold-deep); font-size: 1.4rem; vertical-align: super; }
.stat .l { margin-top: 12px; font-size: .82rem; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
@media (max-width: 880px) {
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 520px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: none; }
}

/* Why choose */
.why-item {
  display: flex; gap: 18px; padding: 24px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--line);
  transition: all .35s var(--ease);
}
.why-item:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: var(--shadow-md); }
.why-item .ico {
  flex-shrink: 0;
  width: 52px; height: 52px;
  background: var(--cream);
  color: var(--gold-deep);
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
}
.why-item h4 { margin-bottom: 6px; font-size: 1.1rem; }
.why-item p { font-size: .9rem; }

/* Process steps */
.process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.process::before {
  content: "";
  position: absolute;
  top: 32px; left: 8%; right: 8%;
  height: 2px;
  background: linear-gradient(to right, var(--gold) 0%, var(--gold) 50%, var(--line) 50%, var(--line) 100%);
  background-size: 20px 2px;
  background-repeat: repeat-x;
  z-index: 0;
}
.process-step { text-align: center; position: relative; padding: 0 14px; }
.process-step .step-no {
  width: 64px; height: 64px;
  margin: 0 auto 20px;
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--navy);
  position: relative;
  z-index: 1;
  transition: all .35s var(--ease);
}
.process-step:hover .step-no { background: var(--gold); transform: scale(1.06); }
.process-step h4 { font-size: 1.05rem; margin-bottom: 6px; }
.process-step p { font-size: .85rem; }
@media (max-width: 880px) {
  .process { grid-template-columns: 1fr 1fr; }
  .process::before { display: none; }
}
@media (max-width: 480px) { .process { grid-template-columns: 1fr; } }

/* Testimonials */
.testimonial-track { overflow: hidden; position: relative; }
.testimonial-slider { display: flex; transition: transform .6s var(--ease); }
.testimonial {
  flex: 0 0 100%;
  padding: 40px 8%;
  text-align: center;
}
.testimonial .quote { font-family: var(--font-display); font-size: clamp(1.3rem, 2vw, 1.8rem); line-height: 1.4; color: var(--navy); margin-bottom: 24px; font-style: italic; max-width: 760px; margin-left: auto; margin-right: auto; }
.testimonial .stars { color: var(--gold); margin-bottom: 16px; letter-spacing: 2px; }
.testimonial .author { font-weight: 700; color: var(--navy); }
.testimonial .role { font-size: .85rem; color: var(--muted); }
.testimonial-dots { display: flex; gap: 8px; justify-content: center; margin-top: 24px; }
.testimonial-dots button { width: 10px; height: 10px; border-radius: 50%; background: var(--line); transition: all .3s var(--ease); }
.testimonial-dots button.active { background: var(--gold); width: 28px; border-radius: 5px; }

/* Blog cards */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: all .4s var(--ease);
  display: flex; flex-direction: column;
  height: 100%;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.blog-card .media { aspect-ratio: 16/10; overflow: hidden; }
.blog-card .media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.blog-card:hover .media img { transform: scale(1.06); }
.blog-card .body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card .meta { font-size: .78rem; color: var(--muted); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 12px; }
.blog-card .meta span { color: var(--gold-deep); font-weight: 700; }
.blog-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.blog-card h3 a { color: var(--navy); }
.blog-card h3 a:hover { color: var(--gold-deep); }
.blog-card .excerpt { font-size: .92rem; margin-bottom: 16px; flex: 1; }
.blog-card .read { font-weight: 600; font-size: .85rem; color: var(--navy); display: inline-flex; align-items: center; gap: 6px; }
.blog-card .read:hover { color: var(--gold-deep); }

/* CTA strip */
.cta-strip {
  background: var(--navy);
  background-image: radial-gradient(circle at 80% 50%, rgba(244,197,66,.12), transparent 60%);
  color: var(--white);
  padding: clamp(50px, 7vw, 90px) 0;
  border-top: 1px solid var(--navy-soft);
  border-bottom: 1px solid var(--navy-soft);
}
.cta-strip .row { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-strip h2 { color: var(--white); max-width: 640px; }
.cta-strip h2 .accent { color: var(--gold); font-style: italic; }

/* ---------- Filters bar (properties page) ---------- */
.filters {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr auto;
  gap: 14px;
  align-items: end;
  margin-top: -50px;
  position: relative;
  z-index: 2;
  border: 1px solid var(--line);
}
.filters .field { display: flex; flex-direction: column; gap: 6px; }
.filters label { font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.filters input, .filters select {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: .95rem;
  background: var(--white);
  color: var(--navy);
  width: 100%;
  transition: border-color .25s var(--ease);
}
.filters input:focus, .filters select:focus { outline: none; border-color: var(--gold); }
@media (max-width: 980px) {
  .filters { grid-template-columns: 1fr 1fr; margin-top: -30px; }
  .filters .btn-apply { grid-column: 1 / -1; }
}
@media (max-width: 520px) { .filters { grid-template-columns: 1fr; } }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 720px) { .form-grid { grid-template-columns: 1fr; } }

.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: .82rem; font-weight: 600; color: var(--navy); }
.form-field input,
.form-field select,
.form-field textarea {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: .95rem;
  background: var(--white);
  color: var(--navy);
  transition: all .25s var(--ease);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(244,197,66,.15); }
.form-field textarea { min-height: 130px; resize: vertical; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  color: rgba(250,247,242,.7);
  padding: 80px 0 0;
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
}
@media (max-width: 980px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-col h5 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: .85rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h5::after { content: ""; position: absolute; left: 0; bottom: 0; width: 28px; height: 2px; background: var(--gold); }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { color: rgba(250,247,242,.7); font-size: .92rem; }
.footer-col a:hover { color: var(--gold); padding-left: 6px; }

.footer-brand img { height: 60px; margin-bottom: 18px; filter: brightness(1.05); }
.footer-brand p { font-size: .92rem; line-height: 1.7; margin-bottom: 18px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 40px; height: 40px;
  background: rgba(250,247,242,.06);
  border: 1px solid rgba(250,247,242,.12);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--cream);
  transition: all .3s var(--ease);
}
.footer-social a:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); transform: translateY(-3px); }

.footer-contact-item { display: flex; gap: 12px; margin-bottom: 18px; }
.footer-contact-item i { color: var(--gold); margin-top: 4px; flex-shrink: 0; }
.footer-contact-item div { font-size: .9rem; line-height: 1.6; }
.footer-contact-item strong { color: var(--white); display: block; margin-bottom: 2px; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; }

.footer-bottom {
  border-top: 1px solid rgba(250,247,242,.1);
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  font-size: .85rem;
}
.footer-bottom .links { display: flex; gap: 20px; flex-wrap: wrap; }

/* ---------- Floating call/whatsapp ---------- */
.floating-actions {
  position: fixed;
  right: 20px; bottom: 20px;
  z-index: 80;
  display: flex; flex-direction: column; gap: 12px;
}
.fab {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
  box-shadow: 0 6px 22px rgba(0,0,0,.18);
  transition: transform .3s var(--ease);
  position: relative;
}
.fab:hover { transform: scale(1.08); }
.fab-call { background: var(--navy); color: var(--gold); }
.fab-wa { background: #25D366; color: var(--white); }
.fab::after {
  content: "";
  position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid currentColor;
  animation: pulse 2s infinite;
  opacity: 0;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: .6; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ---------- Misc ---------- */
.section-head { margin-bottom: 56px; max-width: 760px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }

.divider-gold { width: 60px; height: 3px; background: var(--gold); border: none; margin: 18px 0 24px; }
.center .divider-gold { margin-left: auto; margin-right: auto; }

.tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--cream);
  color: var(--navy);
  font-size: .76rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: var(--radius-pill);
}

/* FAQ Accordion */
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 4px 0;
}
.faq-q {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 20px 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--navy);
  font-weight: 500;
  text-align: left;
  width: 100%;
  transition: color .25s var(--ease);
}
.faq-q:hover { color: var(--gold-deep); }
.faq-q .ico {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--cream);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--gold-deep);
  transition: all .3s var(--ease);
}
.faq-item.open .faq-q .ico { background: var(--gold); color: var(--navy); transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .4s var(--ease);
}
.faq-a-inner { padding: 0 0 24px; color: var(--muted); font-size: .98rem; line-height: 1.75; }
.faq-item.open .faq-a { max-height: 500px; }

/* Property details */
.gallery-main { aspect-ratio: 16/10; border-radius: var(--radius-md); overflow: hidden; background: var(--paper); }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 12px; }
.gallery-thumbs img { aspect-ratio: 1; object-fit: cover; border-radius: var(--radius-sm); cursor: pointer; transition: all .3s var(--ease); border: 2px solid transparent; }
.gallery-thumbs img:hover, .gallery-thumbs img.active { border-color: var(--gold); transform: translateY(-2px); }

.detail-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; }
@media (max-width: 980px) { .detail-grid { grid-template-columns: 1fr; } }

.detail-sidebar { position: sticky; top: 120px; align-self: start; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 28px; }
.detail-sidebar h3 { margin-bottom: 4px; }
.detail-sidebar .price-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 18px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.detail-sidebar .price-row .p { font-family: var(--font-display); font-size: 1.6rem; color: var(--navy); }

.amenities { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.amenities li { display: flex; align-items: center; gap: 10px; color: var(--navy); font-size: .95rem; }
.amenities li i { color: var(--gold-deep); }

.highlight-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.highlight {
  text-align: center; padding: 24px 14px;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md);
}
.highlight i { color: var(--gold-deep); font-size: 1.6rem; margin-bottom: 12px; display: block; }
.highlight .v { font-family: var(--font-display); font-size: 1.4rem; color: var(--navy); }
.highlight .k { font-size: .8rem; color: var(--muted); letter-spacing: .1em; text-transform: uppercase; margin-top: 4px; }
@media (max-width: 720px) { .highlight-grid { grid-template-columns: repeat(2, 1fr); } }

/* Blog single */
.article-content h2 { font-size: 1.9rem; margin: 36px 0 16px; }
.article-content h3 { font-size: 1.35rem; margin: 28px 0 12px; }
.article-content p { margin-bottom: 16px; color: #3a4258; font-size: 1.02rem; line-height: 1.85; }
.article-content ul, .article-content ol { margin: 16px 0 24px 24px; }
.article-content ul li, .article-content ol li { margin-bottom: 10px; color: #3a4258; line-height: 1.8; }
.article-content ul li { list-style: disc; }
.article-content ol li { list-style: decimal; }
.article-content blockquote {
  border-left: 4px solid var(--gold);
  background: var(--paper);
  padding: 22px 28px;
  margin: 28px 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--navy);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

/* Page Not Found */
.notfound {
  min-height: 80vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 80px 24px;
  background: var(--cream);
}
.notfound .big { font-family: var(--font-display); font-size: clamp(7rem, 18vw, 14rem); line-height: 1; color: var(--navy); }
.notfound .big .a { color: var(--gold); }
.notfound h2 { margin: 12px 0 18px; }
.notfound p { max-width: 460px; margin: 0 auto 28px; }

/* ---------- Animations ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0 !important; }
.mt-4 { margin-top: 32px; }
.flex-between { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--navy-soft); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--navy); }
