/* ============================================================
   TOBEST PROPERTIES — styles.css
   Fonts loaded in index.html via Google Fonts
   ============================================================ */


/* ── RESET & BASE ──────────────────────────────────────────── */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Barlow', sans-serif;
  background: #f9f7f3;
  color: #111;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 2px;
}

::-webkit-scrollbar-thumb {
  background: #c4a44a;
}


/* ── CSS VARIABLES ─────────────────────────────────────────── */

:root {
  --ink:   #0e0e0e;
  --ink2:  #555;
  --ink3:  #999;
  --gold:  #c4a44a;
  --cream: #f9f7f3;
  --warm:  #f2ede4;
  --white: #fff;
  --rule:  rgba(0, 0, 0, 0.09);
}


/* ── LAYOUT UTILITY ────────────────────────────────────────── */

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 56px;
}


/* ── SHARED TYPOGRAPHY ─────────────────────────────────────── */

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.eyebrow span {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

h2.serif {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -1px;
  color: var(--ink);
}

h2.serif em {
  font-style: italic;
}

.body-text {
  font-size: 15px;
  line-height: 1.85;
  color: var(--ink2);
  font-weight: 300;
}


/* ── SCROLL REVEAL ─────────────────────────────────────────── */

.r {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.r.in {
  opacity: 1;
  transform: none;
}


/* ── ANIMATIONS ────────────────────────────────────────────── */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

@keyframes scrollLine {
  0%,  100% { opacity: 0.4; transform: scaleY(1);   transform-origin: top; }
  50%        { opacity: 0.9; transform: scaleY(0.7); transform-origin: top; }
}

@keyframes mq {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ── NAVIGATION ────────────────────────────────────────────── */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 56px;
  transition: padding 0.4s, background 0.4s;
}

nav.solid {
  background: rgba(249, 247, 243, 0.97);
  backdrop-filter: blur(16px);
  padding: 18px 56px;
  border-bottom: 1px solid var(--rule);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.nav-logo-box {
  width: 32px;
  height: 32px;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 500;
  color: #fff;
  transition: border-color 0.3s, color 0.3s;
}

nav.solid .nav-logo-box {
  border-color: var(--gold);
  color: var(--gold);
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.nav-logo-text b {
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  transition: color 0.3s;
}

nav.solid .nav-logo-text b {
  color: var(--ink);
}

.nav-logo-text span {
  font-size: 8px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s;
}

nav.solid .nav-logo-text span {
  color: var(--ink3);
}

/* Nav links */
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.25s;
}

.nav-links a:hover {
  color: #fff;
}

nav.solid .nav-links a {
  color: var(--ink2);
}

nav.solid .nav-links a:hover {
  color: var(--ink);
}

/* Enquire button */
.nav-enquire {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 10px 22px;
  transition: all 0.25s;
}

.nav-enquire:hover {
  background: rgba(255, 255, 255, 0.1);
}

nav.solid .nav-enquire {
  color: var(--ink);
  border-color: var(--rule);
}

nav.solid .nav-enquire:hover {
  background: var(--ink);
  color: var(--cream);
}

.nav-logo-img {
  height: 70px;
  width: auto;
  object-fit: contain;

  /* Logo is white/light on the transparent hero — 
     when nav goes solid it switches to the natural logo colours */
  filter: brightness(0) invert(1);
  transition: filter 0.3s;
}

nav.solid .nav-logo-img {
  filter: none;
}


/* ── HERO ──────────────────────────────────────────────────── */

.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  /* ↓ Replace this URL with an actual Tobest property photo */
  background: url('asset/image/hero_image.png') center / cover no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease;
}

.hero-bg.loaded {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.30) 50%,
    rgba(0, 0, 0, 0.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 56px 72px;
}

/* Hero eyebrow */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}

.hero-eyebrow-line {
  width: 32px;
  height: 1px;
  background: rgba(255, 255, 255, 0.45);
}

.hero-eyebrow span {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}

/* Hero headline */
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(64px, 8.5vw, 130px);
  font-weight: 300;
  line-height: 0.95;
  color: #fff;
  letter-spacing: -2px;
  max-width: 900px;
  opacity: 0;
  animation: fadeUp 0.9s 0.15s forwards;
}

.hero h1 em {
  font-style: italic;
  font-weight: 300;
}

/* Hero bottom row */
.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 40px;
  opacity: 0;
  animation: fadeUp 0.8s 0.45s forwards;
}

.hero-desc {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  max-width: 380px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-shrink: 0;
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 72px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s forwards;
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}


/* ── BUTTONS ───────────────────────────────────────────────── */

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--ink);
  padding: 15px 32px;
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
}

.btn-white:hover {
  background: var(--gold);
  color: #fff;
}

.btn-outline-w {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  padding: 15px 32px;
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.25s;
}

.btn-outline-w:hover {
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}

/* Dark outline button used in listings header */
.btn-outline-dark {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding: 13px 26px;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink2);
  text-decoration: none;
  transition: all 0.25s;
  background: transparent;
}

.btn-outline-dark:hover {
  background: var(--ink);
  color: #fff;
}


/* ── STATS BAR ─────────────────────────────────────────────── */

.stats-bar {
  background: var(--ink);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: 44px 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s;
}

.stat-item:last-child {
  border-right: none;
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.03);
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 300;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -1px;
}

.stat-num sup {
  font-size: 22px;
  font-weight: 300;
}

.stat-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 400;
}

.stat-gold {
  color: var(--gold);
}


/* ── MARQUEE ───────────────────────────────────────────────── */

.marquee {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.02);
  padding: 14px 0;
}

.mtrack {
  display: flex;
  gap: 0;
  animation: mq 30s linear infinite;
  width: max-content;
}

.mitem {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 28px;
  font-size: 10px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  white-space: nowrap;
  font-weight: 400;
}

.mdot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.5;
  flex-shrink: 0;
}


/* ── ABOUT ─────────────────────────────────────────────────── */

.about {
  padding: 160px 0;
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
}

.about-left {
  padding-right: 80px;
}

.about-left h2 {
  margin-bottom: 28px;
}

.about-left .body-text {
  max-width: 420px;
  margin-bottom: 52px;
}

/* Pillars grid */
.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--rule);
}

.pillar {
  background: var(--cream);
  padding: 28px 24px;
  transition: background 0.25s;
}

.pillar:hover {
  background: var(--warm);
}

.pillar-title {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 10px;
}

.pillar-body {
  font-size: 13px;
  color: var(--ink2);
  line-height: 1.7;
  font-weight: 300;
}

/* Photo side */
.about-right {
  position: relative;
}

.about-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  /* ↓ Replace with an actual Tobest team or property photo */
  background: url('asset/image/about2.png') center / cover;
  position: relative;
  z-index: 1;
}

.about-badge {
  position: absolute;
  bottom: -28px;
  left: -28px;
  z-index: 2;
  background: var(--gold);
  padding: 28px 32px;
  text-align: center;
  min-width: 140px;
}

.about-badge-big {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: #fff;
  line-height: 1;
  display: block;
}

.about-badge-sm {
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 4px;
  display: block;
}

.about-corner {
  position: absolute;
  top: -20px;
  right: -20px;
  z-index: 0;
  width: 100px;
  height: 100px;
  border: 1px solid rgba(196, 164, 74, 0.25);
}


/* ── LISTINGS ──────────────────────────────────────────────── */

.listings {
  padding: 160px 0;
  background: var(--warm);
}

.listings-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 80px;
}

.listings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(0, 0, 0, 0.07);
}

/* Card */
.card {
  background: var(--white);
  overflow: hidden;
  cursor: pointer;
  transition: background 0.3s;
  display: flex;
  flex-direction: column;
}

.card:hover {
  background: #fdfcf9;
}

.card-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.card-img-inner {
  width: 100%;
  height: 100%;
  transform: scale(1);
  transition: transform 0.6s ease;
}

.card:hover .card-img-inner {
  transform: scale(1.04);
}

.card-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 1;
  background: #fff;
  color: var(--ink);
  padding: 4px 12px;
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 500;
}

.card-body {
  padding: 32px 28px 36px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-location {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 10px;
}

.card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 14px;
}

.card-desc {
  font-size: 13px;
  color: var(--ink2);
  line-height: 1.75;
  font-weight: 300;
  flex: 1;
  margin-bottom: 28px;
}

.card-foot {
  border-top: 1px solid var(--rule);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
}

.card-price-note {
  font-size: 10px;
  color: var(--ink3);
  margin-top: 3px;
}

.card-arrow {
  width: 38px;
  height: 38px;
  border: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--ink2);
  transition: all 0.25s;
  flex-shrink: 0;
}

.card:hover .card-arrow {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}


/* ── VIDEO SECTION ─────────────────────────────────────────── */

.video-sec {
  position: relative;
  padding: 160px 0;
  background: var(--ink);
  overflow: hidden;
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

/* Text side */
.video-left .eyebrow::before { background: var(--gold); }

.video-left h2 {
  color: #fff;
  margin-bottom: 28px;
}

.video-left h2 em {
  color: var(--gold);
}

.video-left .body-text {
  color: rgba(255, 255, 255, 0.45);
  max-width: 400px;
  margin-bottom: 52px;
}

/* Numbered points */
.video-points {
  display: flex;
  flex-direction: column;
}

.vpoint {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 0;
  align-items: start;
}

.vpoint:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.vpoint-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--gold);
  padding-top: 2px;
}

.vpoint-title {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  margin-bottom: 4px;
}

.vpoint-body {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 300;
  line-height: 1.6;
}

/* Video frame */
.video-frame {
  aspect-ratio: 9 / 10;
  /* ↓ Replace with a Tobest estate thumbnail when available */
  background: url('asset/image/IG.png') center / cover;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
  transition: background 0.3s;
}

.video-frame:hover::before {
  background: rgba(0, 0, 0, 0.3);
}

.play-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  transition: transform 0.3s;
}

.video-frame:hover .play-wrap {
  transform: scale(1.04);
}

.play-ring {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  padding-left: 4px;
}

.play-lbl {
  font-size: 9px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.video-ig {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.video-ig a {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.25s;
}

.video-ig a:hover {
  color: var(--gold);
}


/* ── WHY TOBEST ────────────────────────────────────────────── */

.why {
  padding: 160px 0;
  background: var(--cream);
}

.why-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule);
}

.why-card {
  background: var(--cream);
  padding: 44px 32px 40px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.why-card:hover {
  background: var(--warm);
}

.why-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.why-card:hover::after {
  transform: scaleX(1);
}

.why-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.05);
  line-height: 1;
  margin-bottom: 20px;
  transition: color 0.3s;
}

.why-card:hover .why-n {
  color: rgba(196, 164, 74, 0.1);
}

.why-title {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 12px;
}

.why-body {
  font-size: 13px;
  color: var(--ink2);
  line-height: 1.75;
  font-weight: 300;
}


/* ── TESTIMONIALS ──────────────────────────────────────────── */

.testi {
  padding: 160px 0;
  background: var(--warm);
}

.testi-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 80px;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
}

.tcard {
  background: var(--white);
  padding: 44px 36px;
  position: relative;
  transition: background 0.3s;
}

.tcard:hover {
  background: #fefdfb;
}

.tcard-q {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  color: rgba(0, 0, 0, 0.05);
  line-height: 0.7;
  margin-bottom: 20px;
  font-style: italic;
}

.tcard-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  line-height: 1.65;
  color: var(--ink2);
  font-style: italic;
  font-weight: 400;
  margin-bottom: 32px;
}

.tcard-rule {
  width: 24px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 18px;
}

.tcard-name {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--ink);
  margin-bottom: 4px;
}

.tcard-role {
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 2.5px;
  text-transform: uppercase;
}


/* ── CONTACT ───────────────────────────────────────────────── */

.contact {
  padding: 160px 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 120px;
}

.contact-left h2 {
  margin-bottom: 24px;
}

.contact-left .body-text {
  max-width: 340px;
  margin-bottom: 56px;
}

/* Contact info */
.cinfo {
  display: flex;
  flex-direction: column;
}

.cinfo-item {
  padding: 22px 0;
  border-bottom: 1px solid var(--rule);
}

.cinfo-item:first-child {
  border-top: 1px solid var(--rule);
}

.cinfo-label {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 5px;
}

.cinfo-val {
  font-size: 14px;
  color: var(--ink);
  line-height: 1.6;
  font-weight: 300;
}

/* Contact form */
.cform {
  background: var(--warm);
  padding: 52px 48px;
}

.cform-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 6px;
}

.cform-sub {
  font-size: 13px;
  color: var(--ink3);
  margin-bottom: 40px;
  font-weight: 300;
}

.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.fg {
  margin-bottom: 16px;
}

.fg label {
  display: block;
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ink3);
  font-weight: 500;
  margin-bottom: 7px;
}

.fg input,
.fg select,
.fg textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: var(--white);
  color: var(--ink);
  padding: 14px 15px;
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 300;
  outline: none;
  -webkit-appearance: none;
  transition: border-color 0.25s;
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--gold);
}

.fg select option {
  background: #fff;
}

.fg textarea {
  resize: vertical;
  min-height: 100px;
}

.fg input::placeholder,
.fg textarea::placeholder {
  color: rgba(0, 0, 0, 0.2);
}

.cbtn {
  width: 100%;
  padding: 17px;
  background: var(--ink);
  color: var(--cream);
  border: none;
  cursor: pointer;
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 6px;
  transition: background 0.25s;
}

.cbtn:hover {
  background: var(--gold);
}


/* ── FOOTER ────────────────────────────────────────────────── */

footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.35);
  padding: 80px 0 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 40px;
}

.fbrand-name {
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 500;
  margin-bottom: 3px;
}

.fbrand-sub {
  font-size: 8px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: 20px;
}

.fbrand-p {
  font-size: 13px;
  line-height: 1.8;
  max-width: 260px;
  font-weight: 300;
}

.fsocials {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}

.fsoc {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.35);
  font-size: 14px;
  transition: all 0.25s;
}

.fsoc:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.fcol h5 {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 24px;
  font-weight: 500;
}

.fcol ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.fcol ul a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.3);
  font-size: 13px;
  font-weight: 300;
  transition: color 0.25s;
}

.fcol ul a:hover {
  color: rgba(255, 255, 255, 0.75);
}

.footer-bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bot p {
  font-size: 12px;
  font-weight: 300;
}

.footer-bot span {
  font-size: 11px;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.2);
}


/* ── FLOATING WHATSAPP ─────────────────────────────────────── */

.float-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 99;
  width: 50px;
  height: 50px;
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: all 0.25s;
}

.float-wa:hover {
  background: var(--gold);
  transform: translateY(-3px);
}


---------------




/* ── RESPONSIVE ────────────────────────────────────────────── */

@media (max-width: 1100px) {
  nav,
  nav.solid               { padding-left: 32px; padding-right: 32px; }
  .container              { padding: 0 32px; }
  .hero-content           { padding: 0 32px 60px; }

  .about-grid,
  .video-grid,
  .contact-grid,
  .why-head,
  .testi-head             { grid-template-columns: 1fr; gap: 52px; }

  .about-left             { padding-right: 0; }
  .about-badge            { left: 0; bottom: -20px; }

  .listings-grid,
  .testi-grid             { grid-template-columns: 1fr 1fr; }
  .why-grid               { grid-template-columns: 1fr 1fr; }
  .stats-bar              { grid-template-columns: 1fr 1fr; }
  .footer-top             { grid-template-columns: 1fr 1fr; gap: 40px; }
  .listings-header        { flex-direction: column; align-items: flex-start; gap: 20px; }
}

@media (max-width: 700px) {
  nav,
  nav.solid               { padding-left: 20px; padding-right: 20px; }
  .container              { padding: 0 20px; }
  .hero-content           { padding: 0 20px 48px; }
  .hero h1                { font-size: 52px; }
  .hero-bottom            { flex-direction: column; align-items: flex-start; gap: 28px; }

  .listings-grid,
  .testi-grid,
  .why-grid,
  .stats-bar              { grid-template-columns: 1fr; }

  .footer-top             { grid-template-columns: 1fr; }
  .frow                   { grid-template-columns: 1fr; }
  .cform                  { padding: 32px 20px; }
  .nav-links,
  .nav-enquire            { display: none; }
  .video-grid             { grid-template-columns: 1fr; }
}


/* ── VIDEO MODAL ───────────────────────────────────────────── */

.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 24px;
}

/* Shown state — JS toggles this class */
.video-modal.open {
  display: flex;
}

.video-modal-box {
  position: relative;
  background: var(--ink);
  width: 100%;
  max-width: 860px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.video-modal-close {
  position: absolute;
  top: -44px;
  right: 0;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
  cursor: pointer;
  letter-spacing: 1px;
  transition: color 0.25s;
  z-index: 1;
}

.video-modal-close:hover {
  color: #fff;
}

.video-modal-player {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-modal-player video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.video-modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.video-modal-footer p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 300;
}

.video-modal-ig-btn {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold);
  text-decoration: none;
  border: 1px solid rgba(196, 164, 74, 0.35);
  padding: 10px 22px;
  transition: all 0.25s;
}

.video-modal-ig-btn:hover {
  background: var(--gold);
  color: var(--ink);
}