/* =========================================================
   VILLA4YOU — Premium Luxury Booking Site
   Brand: Forest Green + Warm Orange (from One 5 Resources)
   ========================================================= */

:root {
  /* Brand */
  --brand-green: #2C3B2D;
  --brand-green-deep: #1F2B20;
  --brand-green-soft: #3F5440;
  --brand-orange: #E87C3C;
  --brand-orange-deep: #D26A2A;
  --brand-orange-soft: #F19661;

  /* LIGHT THEME */
  --bg: #FAF7F0;
  --bg-soft: #F2EDE2;
  --surface: #FFFFFF;
  --surface-2: #FAF7F0;
  --text: #1A201B;
  --text-soft: #5A5F56;
  --text-muted: #8A8F86;
  --border: #E5DFCF;
  --border-soft: #EFEAD9;
  --primary: var(--brand-green);
  --primary-hover: var(--brand-green-deep);
  --accent: var(--brand-orange);
  --accent-hover: var(--brand-orange-deep);
  --on-primary: #FAF7F0;
  --shadow-sm: 0 1px 2px rgba(28, 32, 26, 0.04), 0 1px 3px rgba(28, 32, 26, 0.06);
  --shadow-md: 0 4px 6px rgba(28, 32, 26, 0.04), 0 10px 25px rgba(28, 32, 26, 0.08);
  --shadow-lg: 0 20px 50px rgba(28, 32, 26, 0.15);

  /* Type */
  --font-serif: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Sizing */
  --container: 1280px;
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

[data-theme="dark"] {
  --bg: #0E1310;
  --bg-soft: #161C18;
  --surface: #1A211C;
  --surface-2: #232A24;
  --text: #F2EDE2;
  --text-soft: #C5C0B0;
  --text-muted: #8A8F86;
  --border: #2C3B2D;
  --border-soft: #232A24;
  --primary: #E87C3C;          /* In dark, orange becomes primary CTA */
  --primary-hover: #F19661;
  --accent: #E87C3C;
  --accent-hover: #F19661;
  --on-primary: #0E1310;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 25px 60px rgba(0, 0, 0, 0.7);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background 0.4s ease, color 0.4s ease;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
svg { width: 1em; height: 1em; flex-shrink: 0; }

em { font-style: italic; font-family: var(--font-serif); color: var(--accent); font-weight: 500; }

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--brand-green-deep);
  color: #F2EDE2;
  font-size: 13px;
  letter-spacing: 0.01em;
}
[data-theme="dark"] .top-bar { background: #050807; border-bottom: 1px solid var(--border); }
.top-bar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 10px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.top-bar-left { display: flex; align-items: center; gap: 10px; opacity: 0.92; }
.top-bar-right { display: flex; align-items: center; gap: 24px; }
.top-link {
  opacity: 0.85;
  transition: opacity 0.2s, color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.top-link:hover { opacity: 1; color: var(--brand-orange-soft); }
.dot {
  width: 6px; height: 6px;
  background: var(--brand-orange);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 4px rgba(232, 124, 60, 0.18);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(232, 124, 60, 0.18); }
  50% { box-shadow: 0 0 0 8px rgba(232, 124, 60, 0.06); }
}
.icn-phone::before { content: "✆"; }
.icn-mail::before { content: "✉"; }
.icn-pin::before { content: "📍"; }

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 240, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border-soft);
  transition: background 0.4s ease, border-color 0.4s ease;
}
[data-theme="dark"] .nav { background: rgba(14, 19, 16, 0.85); }
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--primary);
}
[data-theme="dark"] .logo { color: var(--text); }
.logo-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: var(--brand-green);
  color: #F2EDE2;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(44, 59, 45, 0.25);
}
.logo-mark svg { width: 24px; height: 24px; }
[data-theme="dark"] .logo-mark { background: var(--brand-orange); color: var(--brand-green-deep); }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--brand-green);
}
[data-theme="dark"] .logo-title { color: var(--text); }
.logo-sub {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 3px;
  color: var(--text-muted);
  font-weight: 500;
}

.nav-menu { display: flex; gap: 36px; }
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-soft);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width 0.3s ease;
}
.nav-link:hover { color: var(--text); }
.nav-link:hover::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 14px; }
.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  transition: all 0.2s;
  color: var(--text);
}
.theme-toggle:hover { background: var(--bg-soft); border-color: var(--text-muted); transform: rotate(15deg); }
.theme-toggle svg { width: 18px; height: 18px; }
.theme-toggle .icn-sun { display: none; }
.theme-toggle .icn-moon { display: block; }
[data-theme="dark"] .theme-toggle .icn-sun { display: block; }
[data-theme="dark"] .theme-toggle .icn-moon { display: none; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 999px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  cursor: pointer;
  border: 1.5px solid transparent;
}
.btn svg { width: 16px; height: 16px; }
.btn-primary {
  background: var(--primary);
  color: var(--on-primary);
  box-shadow: 0 4px 12px rgba(44, 59, 45, 0.2);
}
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(44, 59, 45, 0.3); }
[data-theme="dark"] .btn-primary { box-shadow: 0 4px 14px rgba(232, 124, 60, 0.35); }
[data-theme="dark"] .btn-primary:hover { box-shadow: 0 8px 24px rgba(232, 124, 60, 0.5); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}
.btn-outline:hover { background: var(--text); color: var(--bg); }
.btn-outline-light {
  background: transparent;
  color: #F2EDE2;
  border-color: rgba(242, 237, 226, 0.3);
}
.btn-outline-light:hover { background: rgba(242, 237, 226, 0.1); border-color: #F2EDE2; }

.btn-ghost {
  background: var(--bg-soft);
  color: var(--text);
}
.btn-ghost:hover { background: var(--primary); color: var(--on-primary); }

.btn-sm { padding: 9px 16px; font-size: 13px; }
.btn-lg { padding: 16px 30px; font-size: 15px; }
.btn-block { width: 100%; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 80px 32px 100px;
  color: #F2EDE2;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.72) saturate(1.05); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center top, transparent 0%, rgba(14, 19, 16, 0.4) 60%, rgba(14, 19, 16, 0.85) 100%),
    linear-gradient(180deg, rgba(14, 19, 16, 0.35) 0%, rgba(14, 19, 16, 0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  width: 100%;
  text-align: center;
  animation: fadeUp 0.5s ease-out;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(242, 237, 226, 0.85);
  margin-bottom: 28px;
  font-weight: 500;
}
.eyebrow .line {
  width: 36px;
  height: 1px;
  background: var(--brand-orange);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 6.5vw, 88px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.hero-title em {
  color: var(--brand-orange-soft);
  font-style: italic;
  font-weight: 500;
}

.hero-sub {
  font-size: clamp(15px, 1.6vw, 19px);
  line-height: 1.65;
  max-width: 720px;
  margin: 0 auto 48px;
  color: rgba(242, 237, 226, 0.85);
  font-weight: 300;
}

/* Booking bar */
.booking-bar {
  background: rgba(250, 247, 240, 0.97);
  backdrop-filter: blur(20px);
  border-radius: 80px;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 0;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  max-width: 980px;
  margin: 0 auto 56px;
  color: var(--text);
}
[data-theme="dark"] .booking-bar { background: rgba(26, 33, 28, 0.97); }
.bk-field {
  flex: 1;
  padding: 12px 22px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
  cursor: pointer;
  border-radius: 60px;
  transition: background 0.2s;
}
.bk-field:hover { background: rgba(44, 59, 45, 0.05); }
[data-theme="dark"] .bk-field:hover { background: rgba(232, 124, 60, 0.08); }
.bk-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}
.bk-input {
  background: transparent;
  border: none;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  outline: none;
  padding: 2px 0;
  cursor: pointer;
  font-family: inherit;
}
.bk-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
}
.bk-search {
  background: var(--brand-orange);
  color: white;
  border-radius: 999px;
  padding: 16px 28px;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 8px;
  transition: all 0.2s;
  box-shadow: 0 6px 16px rgba(232, 124, 60, 0.4);
}
.bk-search:hover { background: var(--brand-orange-deep); transform: scale(1.03); }
.bk-search svg { width: 18px; height: 18px; }

.hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.meta-item { display: flex; flex-direction: column; align-items: center; }
.meta-num {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
  color: white;
}
.meta-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(242, 237, 226, 0.7);
  margin-top: 6px;
}
.meta-sep {
  width: 1px;
  height: 28px;
  background: rgba(242, 237, 226, 0.2);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(242, 237, 226, 0.7);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bounce 2.4s ease-in-out infinite;
}
.hero-scroll svg { width: 18px; height: 18px; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

/* ===== SECTION HEAD ===== */
.section-head {
  max-width: 920px;
  margin: 0 auto 64px;
  padding: 0 32px;
}
.section-head.center { text-align: center; }
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}
.section-eyebrow.light { color: var(--brand-orange-soft); }
.dot-orange {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(34px, 4.6vw, 56px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 17px;
  color: var(--text-soft);
  max-width: 640px;
  line-height: 1.65;
}
.section-head.center .section-desc { margin: 0 auto; }

/* ===== VILLAS ===== */
.villas {
  padding: 100px 32px;
  background: var(--bg);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}
.section-head.center .filters { justify-content: center; }
.filter {
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-soft);
  transition: all 0.2s;
}
.filter:hover { border-color: var(--text); color: var(--text); }
.filter.active {
  background: var(--brand-green);
  color: #F2EDE2;
  border-color: var(--brand-green);
}
[data-theme="dark"] .filter.active { background: var(--brand-orange); color: var(--brand-green-deep); border-color: var(--brand-orange); }

/* ===== FEATURED VILLA (Horizontal Hero Card) ===== */
.villa-featured {
  max-width: var(--container);
  margin: 0 auto 28px;
  background: var(--surface);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  box-shadow: var(--shadow-md);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.villa-featured:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.vf-img {
  position: relative;
  overflow: hidden;
  min-height: 460px;
}
.vf-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s ease;
}
.villa-featured:hover .vf-img img { transform: scale(1.05); }
.vf-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(44, 59, 45, 0.25) 100%);
}

.vf-fav {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
}

.vf-body {
  padding: 48px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}
.vf-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.vf-eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}
.vf-name {
  font-family: var(--font-serif);
  font-size: clamp(34px, 3.4vw, 46px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.vf-loc {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.vf-loc svg { width: 15px; height: 15px; color: var(--accent); }
.vf-desc {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--text-soft);
  margin-bottom: 28px;
}

.vf-specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 22px;
  background: var(--bg-soft);
  border-radius: var(--radius);
  margin-bottom: 24px;
}
.vf-spec {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-right: 1px solid var(--border-soft);
}
.vf-spec:last-child { border-right: none; }
.vf-spec-num {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.vf-spec-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}

.vf-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.vf-amenities span {
  font-size: 12.5px;
  padding: 7px 14px;
  background: var(--bg-soft);
  color: var(--text-soft);
  border-radius: 999px;
  font-weight: 500;
}

.vf-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--border-soft);
}
.vf-foot .price-amount { font-size: 32px; }
.vf-foot .price-unit { font-size: 14px; font-weight: 400; color: var(--text-muted); font-family: var(--font-sans); }

/* ===== VILLA GRID (Standard) ===== */
.villa-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.villa-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  flex-direction: column;
}
.villa-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border);
}

.badge-featured {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  background: var(--brand-orange);
  color: white;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 4px 12px rgba(232, 124, 60, 0.4);
}
.badge-featured svg { width: 12px; height: 12px; }

.villa-img {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
}
.villa-card.featured .villa-img { aspect-ratio: 16 / 9.5; }
.villa-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.villa-card:hover .villa-img img { transform: scale(1.06); }
.img-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(14, 19, 16, 0.65) 100%);
}
.img-actions {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
}
.img-fav {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(250, 247, 240, 0.92);
  backdrop-filter: blur(8px);
  color: var(--text);
  display: grid;
  place-items: center;
  transition: all 0.2s;
}
.img-fav svg { width: 16px; height: 16px; }
.img-fav:hover { background: white; color: var(--brand-orange); transform: scale(1.1); }

.img-meta {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.img-tag {
  background: rgba(250, 247, 240, 0.95);
  backdrop-filter: blur(8px);
  color: var(--brand-green-deep);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}

.villa-body {
  padding: 24px 26px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.villa-card.featured .villa-body { padding: 30px 32px 30px; }

.villa-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}
.villa-name {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.villa-card.featured .villa-name { font-size: 30px; }
.villa-loc {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
}
.villa-loc svg { width: 13px; height: 13px; color: var(--accent); }

.villa-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: var(--text-soft);
  background: var(--bg-soft);
  padding: 6px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.villa-rating svg { width: 13px; height: 13px; color: var(--accent); }
.villa-rating strong { color: var(--text); font-weight: 600; }

.villa-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-soft);
  margin-bottom: 18px;
  flex: 1;
}

.villa-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px dashed var(--border);
}
.villa-amenities span {
  font-size: 12px;
  color: var(--text-soft);
  padding: 5px 11px;
  background: var(--bg-soft);
  border-radius: 6px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.villa-amenities span svg { width: 12px; height: 12px; color: var(--text-muted); }

.villa-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.price { display: flex; flex-direction: column; line-height: 1.1; }
.price-from {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}
.price-amount {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
  margin-top: 2px;
}
.price-unit { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

.villas-foot {
  text-align: center;
  margin-top: 56px;
}

/* ===== OTHER SERVICES ===== */
.services {
  padding: 100px 32px;
  background: var(--bg);
  border-top: 1px solid var(--border-soft);
}
.services-grid {
  max-width: var(--container);
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-hover));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border);
  box-shadow: var(--shadow-md);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icn {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(232, 124, 60, 0.12), rgba(232, 124, 60, 0.04));
  color: var(--accent);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  transition: all 0.3s;
}
.service-icn svg { width: 28px; height: 28px; }
.service-card:hover .service-icn {
  background: var(--accent);
  color: white;
  transform: rotate(-6deg) scale(1.05);
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-soft);
  margin-bottom: 18px;
}
.service-meta {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  padding-top: 14px;
  border-top: 1px dashed var(--border);
  display: block;
}

/* Fleet */
.services-fleet {
  max-width: var(--container);
  margin: 0 auto;
  background: var(--surface);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-soft);
  padding: 48px;
}
[data-theme="dark"] .services-fleet { background: var(--bg-soft); }
.fleet-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-soft);
  margin-bottom: 32px;
}
.fleet-eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  display: block;
  margin-bottom: 6px;
}
.fleet-title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.fleet-item {
  padding: 18px 20px;
  background: var(--bg-soft);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-left: 3px solid var(--accent);
  transition: all 0.25s;
}
.fleet-item:hover {
  background: var(--brand-green);
  border-left-color: var(--brand-orange);
  transform: translateX(4px);
}
.fleet-item:hover .fleet-name { color: #F2EDE2; }
.fleet-item:hover .fleet-cap { color: rgba(242, 237, 226, 0.7); }
.fleet-name {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  transition: color 0.25s;
}
.fleet-cap {
  font-size: 12.5px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  transition: color 0.25s;
}

/* ===== MOBILE MENU ===== */
.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 8px;
  transition: background 0.2s;
}
.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.menu-toggle:hover { background: var(--bg-soft); }
body.menu-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-20px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  overflow-y: auto;
}
body.menu-open .mobile-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 100px 32px 40px;
  max-width: 480px;
  margin: 0 auto;
}
.mobile-link {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--text);
  padding: 14px 0;
  border-bottom: 1px solid var(--border-soft);
  transition: color 0.2s, padding-left 0.25s;
}
.mobile-link:hover { color: var(--accent); padding-left: 8px; }
.mobile-menu-foot {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 15px;
  color: var(--text-soft);
}
.mobile-menu-foot a { transition: color 0.2s; }
.mobile-menu-foot a:hover { color: var(--accent); }

/* ===== FLOATING ACTIONS ===== */
.floating-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 80;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-end;
}

.float-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  border: none;
  color: white;
}
.float-btn:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25); }
.float-btn svg { width: 24px; height: 24px; }

.float-font {
  background: var(--brand-green);
  color: #F2EDE2;
}
[data-theme="dark"] .float-font { background: var(--surface); color: var(--accent); border: 1px solid var(--border); }

.float-wa {
  background: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  text-decoration: none;
}
.float-wa svg { width: 28px; height: 28px; }
.wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.5;
  animation: wapulse 2s ease-out infinite;
  pointer-events: none;
}
@keyframes wapulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.55); opacity: 0; }
}

.float-tooltip {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: var(--brand-green-deep);
  color: #F2EDE2;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
  box-shadow: var(--shadow-md);
}
.float-tooltip::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--brand-green-deep);
}
.float-btn:hover .float-tooltip,
.float-wa:hover .float-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.font-icn-aa {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}

.font-panel {
  position: absolute;
  bottom: calc(100% + 12px);
  right: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  min-width: 260px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.25s, transform 0.25s;
}
.float-wrap.open .font-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.font-panel-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
  padding: 0 4px;
}
.font-options-stack {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.font-opt {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: var(--radius);
  border: 1.5px solid var(--border-soft);
  background: var(--bg-soft);
  color: var(--text);
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: left;
  width: 100%;
}
.font-opt:hover {
  border-color: var(--accent);
  background: var(--surface);
  transform: translateX(2px);
}
.font-opt-sample {
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  width: 38px;
  text-align: center;
  flex-shrink: 0;
}
.font-opt-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-soft);
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.font-opt-name em {
  font-style: italic;
  font-weight: 500;
  font-size: 11px;
  color: var(--text-muted);
  font-family: inherit;
}

/* Per-option font preview */
.font-opt.font-classic .font-opt-sample,
.font-opt.font-classic .font-opt-name em {
  font-family: 'Playfair Display', Georgia, serif;
}
.font-opt.font-modern .font-opt-sample,
.font-opt.font-modern .font-opt-name em {
  font-family: 'Manrope', sans-serif;
}
.font-opt.font-editorial .font-opt-sample,
.font-opt.font-editorial .font-opt-name em {
  font-family: 'DM Serif Display', 'Cormorant Garamond', Georgia, serif;
}

.font-opt.active {
  background: var(--brand-green);
  color: #F2EDE2;
  border-color: var(--brand-green);
}
.font-opt.active .font-opt-name { color: rgba(242, 237, 226, 0.95); }
.font-opt.active .font-opt-name em { color: var(--brand-orange-soft); }
[data-theme="dark"] .font-opt.active {
  background: var(--accent);
  color: var(--brand-green-deep);
  border-color: var(--accent);
}
[data-theme="dark"] .font-opt.active .font-opt-name { color: var(--brand-green-deep); }
[data-theme="dark"] .font-opt.active .font-opt-name em { color: var(--brand-green); }

/* ===== EXPERIENCE ===== */
.experience {
  padding: 100px 32px;
  background: var(--surface);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
[data-theme="dark"] .experience { background: var(--bg-soft); }
.exp-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.exp-left .section-title { margin-bottom: 20px; }
.exp-features {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.exp-feat {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.exp-icn {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--bg-soft);
  display: grid;
  place-items: center;
  color: var(--accent);
}
.exp-icn svg { width: 22px; height: 22px; }
.exp-feat h4 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
  letter-spacing: -0.01em;
}
.exp-feat p { font-size: 14.5px; color: var(--text-soft); line-height: 1.6; }

.exp-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 220px 220px 180px;
  gap: 16px;
  position: relative;
}
.exp-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.exp-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.exp-img:hover img { transform: scale(1.08); }
.exp-img-1 { grid-column: 1; grid-row: 1 / span 2; }
.exp-img-2 { grid-column: 2; grid-row: 1; }
.exp-img-3 { grid-column: 2; grid-row: 2 / span 2; }

.exp-quote {
  grid-column: 1;
  grid-row: 3;
  background: var(--brand-green);
  color: #F2EDE2;
  padding: 22px 24px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.exp-quote svg {
  width: 24px;
  height: 24px;
  color: var(--brand-orange);
  margin-bottom: 8px;
}
.exp-quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 15px;
  line-height: 1.45;
  margin-bottom: 10px;
}
.exp-quote span {
  font-size: 12px;
  opacity: 0.7;
  letter-spacing: 0.05em;
}
[data-theme="dark"] .exp-quote { background: var(--brand-orange); color: var(--brand-green-deep); }
[data-theme="dark"] .exp-quote svg { color: var(--brand-green-deep); }

/* ===== HOW IT WORKS ===== */
.how {
  padding: 100px 32px;
  background: var(--bg);
}
.how-steps {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.how-step {
  position: relative;
  padding: 8px 0;
}
.step-num {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 600;
  color: var(--accent);
  display: block;
  line-height: 1;
  margin-bottom: 20px;
  font-style: italic;
}
.step-line {
  position: absolute;
  top: 22px;
  left: 70px;
  right: -20px;
  height: 1px;
  background: linear-gradient(90deg, var(--border) 50%, transparent 100%);
  background-size: 8px 1px;
  background-repeat: repeat-x;
}
.how-step h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.how-step p {
  font-size: 14.5px;
  color: var(--text-soft);
  line-height: 1.6;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 100px 32px;
  background: var(--surface);
  border-top: 1px solid var(--border-soft);
}
[data-theme="dark"] .testimonials { background: var(--bg-soft); }
.testi-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testi {
  background: var(--bg);
  padding: 36px 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
}
.testi:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--border); }
[data-theme="dark"] .testi { background: var(--surface); }
.testi-stars {
  color: var(--accent);
  font-size: 18px;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.testi p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.55;
  color: var(--text);
  margin-bottom: 24px;
  flex: 1;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border-soft);
}
.testi-author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.testi-author strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
}
.testi-author span {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* ===== CTA ===== */
.cta {
  padding: 100px 32px;
  background: var(--brand-green-deep);
  color: #F2EDE2;
  position: relative;
  overflow: hidden;
}
[data-theme="dark"] .cta { background: #050807; border-top: 1px solid var(--border); }
.cta::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232, 124, 60, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.cta::after {
  content: "";
  position: absolute;
  bottom: -50px; left: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(232, 124, 60, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.cta-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  position: relative;
  z-index: 2;
  align-items: center;
}
.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(34px, 4.6vw, 56px);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.cta-title em { color: var(--brand-orange-soft); }
.cta-desc {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(242, 237, 226, 0.8);
  margin-bottom: 32px;
  max-width: 560px;
}
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.cta-card {
  background: rgba(250, 247, 240, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(250, 247, 240, 0.12);
  padding: 36px;
  border-radius: var(--radius-xl);
}
.cta-card h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.cta-card > p {
  font-size: 14px;
  color: rgba(242, 237, 226, 0.65);
  margin-bottom: 22px;
}
.cta-form { display: flex; flex-direction: column; gap: 12px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cta-form input,
.cta-form select,
.cta-form textarea {
  background: rgba(250, 247, 240, 0.07);
  border: 1px solid rgba(250, 247, 240, 0.15);
  padding: 13px 16px;
  border-radius: 10px;
  color: #F2EDE2;
  font-size: 14px;
  font-family: inherit;
  transition: all 0.2s;
  width: 100%;
}
.cta-form input::placeholder,
.cta-form textarea::placeholder { color: rgba(242, 237, 226, 0.4); }
.cta-form input:focus,
.cta-form select:focus,
.cta-form textarea:focus {
  outline: none;
  border-color: var(--brand-orange);
  background: rgba(250, 247, 240, 0.1);
}
.cta-form select option { background: var(--brand-green-deep); color: #F2EDE2; }
.cta-form textarea { resize: vertical; min-height: 80px; }
.cta-form .btn-primary {
  background: var(--brand-orange);
  color: white;
  margin-top: 6px;
  padding: 15px 22px;
}
.cta-form .btn-primary:hover { background: var(--brand-orange-deep); }

/* ===== FOOTER ===== */
.footer {
  background: var(--brand-green-deep);
  color: rgba(242, 237, 226, 0.75);
  padding: 80px 32px 32px;
}
[data-theme="dark"] .footer { background: #050807; border-top: 1px solid var(--border); }
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(242, 237, 226, 0.1);
}
.footer-brand .logo { margin-bottom: 18px; color: #F2EDE2; }
.footer-brand .logo-mark { background: var(--brand-orange); color: var(--brand-green-deep); }
.footer-brand .logo-title { color: #F2EDE2; }
.footer-brand .logo-sub { color: rgba(242, 237, 226, 0.5); }
.footer-brand p {
  font-size: 14px;
  line-height: 1.65;
  max-width: 320px;
  margin-bottom: 24px;
}
.social { display: flex; gap: 10px; }
.social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(242, 237, 226, 0.2);
  display: grid;
  place-items: center;
  transition: all 0.2s;
}
.social a:hover {
  background: var(--brand-orange);
  border-color: var(--brand-orange);
  color: white;
  transform: translateY(-2px);
}
.social svg { width: 16px; height: 16px; }
.footer-col h5 {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  color: #F2EDE2;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col li { font-size: 14px; }
.footer-col a { transition: color 0.2s; }
.footer-col a:hover { color: var(--brand-orange-soft); }
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.contact-list .hours {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px solid rgba(242, 237, 226, 0.1);
  font-size: 13px;
  line-height: 1.55;
}
.contact-list .hours strong {
  color: #F2EDE2;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(242, 237, 226, 0.5);
}
.footer-links { display: flex; gap: 24px; }
.footer-links a:hover { color: #F2EDE2; }

/* ===== RESPONSIVE ===== */

/* Large tablet / small desktop */
@media (max-width: 1200px) {
  .villa-grid { grid-template-columns: repeat(2, 1fr); }
  .exp-grid { gap: 56px; }
  .nav-menu { gap: 22px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .vf-body { padding: 40px 40px; }
}

/* Tablet */
@media (max-width: 1024px) {
  .nav-menu { display: none; }
  .menu-toggle { display: flex; }
  .btn-book-nav { display: none; }

  .villa-featured { grid-template-columns: 1fr; }
  .vf-img { min-height: 360px; }
  .vf-body { padding: 36px; }
  .vf-name { font-size: 36px; }

  .exp-grid { grid-template-columns: 1fr; gap: 48px; }
  .exp-right { grid-template-columns: 1fr 1fr; grid-template-rows: 240px 240px 180px; }
  .cta-inner { grid-template-columns: 1fr; gap: 48px; }
  .how-steps { grid-template-columns: repeat(2, 1fr); gap: 36px 32px; }
  .step-line { display: none; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .testi:nth-child(3) { grid-column: span 2; max-width: 600px; margin: 0 auto; }
  .footer-inner { grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: span 3; }
}

/* Mobile + small tablet */
@media (max-width: 768px) {
  .top-bar-inner { flex-direction: column; gap: 6px; padding: 10px 20px; }
  .top-bar-right { gap: 14px; flex-wrap: wrap; justify-content: center; }
  .top-bar { font-size: 12px; }
  .nav-inner { padding: 14px 20px; gap: 12px; }
  .logo-sub { display: none; }
  .logo-mark { width: 38px; height: 38px; }
  .logo-mark svg { width: 22px; height: 22px; }
  .logo-title { font-size: 19px; }

  .hero { padding: 56px 20px 72px; min-height: auto; }
  .hero-title { font-size: 38px; line-height: 1.1; }
  .hero-sub { font-size: 15px; margin-bottom: 32px; }
  .hero-meta { gap: 20px; }
  .meta-sep { display: none; }
  .meta-num { font-size: 28px; }

  .booking-bar {
    border-radius: var(--radius-lg);
    flex-direction: column;
    padding: 14px;
    gap: 6px;
    margin-bottom: 40px;
  }
  .bk-field { padding: 12px 16px; width: 100%; border-bottom: 1px solid var(--border); border-radius: 0; }
  .bk-field:last-of-type { border-bottom: none; }
  .bk-divider { display: none; }
  .bk-search { width: 100%; margin: 6px 0 0; justify-content: center; padding: 16px; }

  .trusted-inner { gap: 24px; }
  .trusted-logos { gap: 22px; }
  .trust-logo { font-size: 12px; }

  .villas, .experience, .how, .testimonials, .cta, .services { padding: 64px 20px; }
  .section-head { margin-bottom: 44px; padding: 0; }
  .section-title { font-size: 30px; }
  .section-desc { font-size: 15px; }
  .filters { gap: 8px; }
  .filter { padding: 8px 14px; font-size: 12px; }

  .villa-featured { margin-bottom: 24px; border-radius: var(--radius-lg); }
  .vf-img { min-height: 260px; }
  .vf-body { padding: 28px 24px; }
  .vf-name { font-size: 30px; }
  .vf-top { flex-direction: column; align-items: flex-start; gap: 10px; }
  .vf-specs { grid-template-columns: repeat(2, 1fr); padding: 18px; }
  .vf-spec { padding: 6px 0; }
  .vf-spec:nth-child(2) { border-right: none; }
  .vf-spec:nth-child(1), .vf-spec:nth-child(2) { border-bottom: 1px solid var(--border-soft); padding-bottom: 14px; }
  .vf-spec:nth-child(3), .vf-spec:nth-child(4) { padding-top: 14px; }
  .vf-spec-num { font-size: 24px; }
  .vf-foot { flex-direction: column; align-items: flex-start; gap: 16px; }
  .vf-foot .btn { width: 100%; }

  .villa-grid { grid-template-columns: 1fr; gap: 20px; }
  .villa-body { padding: 22px; }
  .villa-name { font-size: 22px; }

  .services-grid { grid-template-columns: 1fr; gap: 16px; margin-bottom: 56px; }
  .service-card { padding: 28px 24px; }
  .services-fleet { padding: 32px 24px; border-radius: var(--radius-lg); }
  .fleet-head { padding-bottom: 24px; margin-bottom: 24px; }
  .fleet-grid { grid-template-columns: 1fr; }

  .exp-right { grid-template-rows: 200px 200px 160px; gap: 12px; }
  .exp-feat { gap: 14px; }
  .exp-icn { width: 44px; height: 44px; }
  .exp-feat h4 { font-size: 18px; }

  .how-steps { grid-template-columns: 1fr; gap: 32px; }
  .step-num { font-size: 40px; margin-bottom: 14px; }
  .how-step h3 { font-size: 20px; }

  .testi-grid { grid-template-columns: 1fr; }
  .testi:nth-child(3) { grid-column: span 1; }
  .testi { padding: 28px 24px; }
  .testi p { font-size: 16px; }

  .cta-title { font-size: 32px; }
  .cta-card { padding: 28px 24px; }
  .form-row { grid-template-columns: 1fr; }

  .footer { padding: 56px 24px 28px; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; padding-bottom: 36px; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .floating-actions { bottom: 18px; right: 16px; gap: 12px; }
  .float-btn { width: 52px; height: 52px; }
  .float-btn svg { width: 22px; height: 22px; }
  .float-wa { width: 56px; height: 56px; }
  .float-wa svg { width: 26px; height: 26px; }
  .float-tooltip { display: none; }
  .font-panel { min-width: 160px; padding: 12px; }
}

/* Small mobile */
@media (max-width: 420px) {
  .hero-title { font-size: 32px; }
  .section-title { font-size: 26px; }
  .vf-name { font-size: 26px; }
  .meta-num { font-size: 24px; }
  .hero-meta { gap: 14px; }
  .nav-right { gap: 8px; }
}

/* Font family theme overrides */
html.font-classic {
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
html.font-modern {
  --font-serif: 'Manrope', 'Inter', -apple-system, sans-serif;
  --font-display: 'Manrope', 'Inter', -apple-system, sans-serif;
  --font-sans: 'Manrope', 'Inter', -apple-system, sans-serif;
}
html.font-modern em {
  font-family: 'Manrope', sans-serif;
  font-style: italic;
  font-weight: 600;
}
html.font-editorial {
  --font-serif: 'DM Serif Display', 'Cormorant Garamond', Georgia, serif;
  --font-display: 'DM Serif Display', 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* =========================================================
   ANIMATION LAYER — Premium motion design
   ========================================================= */

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 200;
  background: linear-gradient(90deg, var(--brand-orange), var(--brand-orange-soft));
  box-shadow: 0 0 12px rgba(232, 124, 60, 0.5);
  transition: width 0.1s ease;
}

/* Hero — Ken Burns zoom + parallax-ready */
.hero-bg img {
  animation: kenBurns 12s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes kenBurns {
  0%   { transform: scale(1.02) translate(0, 0); }
  100% { transform: scale(1.12) translate(-1.5%, -1%); }
}

/* Hero title — split word reveal */
.hero-title {
  overflow: visible;
}
.hero-title .reveal-line {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
.hero-title em {
  position: relative;
  background: linear-gradient(90deg, var(--brand-orange-soft) 0%, #F5C49A 50%, var(--brand-orange-soft) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: shimmerText 2.6s ease-in-out infinite;
}
@keyframes shimmerText {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Eyebrow lines — draw in */
.eyebrow .line {
  animation: drawLine 0.6s 0.1s cubic-bezier(0.16, 1, 0.3, 1) backwards;
  transform-origin: left center;
}
.eyebrow .line:last-child { transform-origin: right center; }
@keyframes drawLine {
  from { transform: scaleX(0); opacity: 0; }
  to { transform: scaleX(1); opacity: 1; }
}

/* Booking bar — slide up with delay */
.booking-bar {
  animation: floatUp 0.5s 0.25s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}
@keyframes floatUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hero meta counter — pop in */
.meta-item {
  animation: fadeUpIn 0.45s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}
.meta-item:nth-child(1) { animation-delay: 0.35s; }
.meta-item:nth-child(3) { animation-delay: 0.42s; }
.meta-item:nth-child(5) { animation-delay: 0.49s; }
.meta-item:nth-child(7) { animation-delay: 0.56s; }
@keyframes fadeUpIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Logo mark — gentle floating */
.logo-mark {
  animation: logoFloat 2.4s ease-in-out infinite;
  transition: transform 0.25s ease;
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-3px) rotate(-1.5deg); }
}
.logo:hover .logo-mark {
  animation-play-state: paused;
  transform: scale(1.06) rotate(-4deg);
}

/* Button shine sweep on hover */
.btn-primary {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.25) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.4s ease;
}
.btn-primary:hover::before { transform: translateX(120%); }

.btn-outline { position: relative; overflow: hidden; }
.btn-outline::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--text);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.65, 0, 0.35, 1);
}
.btn-outline:hover::after { transform: scaleX(1); transform-origin: left center; }
.btn-outline { transition: color 0.25s ease, border-color 0.25s ease; }

/* Booking search button — magnetic feel */
.bk-search { transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); }
.bk-search:hover { transform: translateY(-2px) scale(1.04); }
.bk-search svg { transition: transform 0.3s ease; }
.bk-search:hover svg { transform: rotate(-8deg) scale(1.1); }

/* Section title underline — draw on scroll */
.section-title {
  position: relative;
  display: inline-block;
}
.section-head.center .section-title { display: inline-block; }
.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  margin-top: 14px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.section-head.center .section-title::after { margin: 14px auto 0; transform-origin: center; }
.section-head.in-view .section-title::after { transform: scaleX(1); }

/* Eyebrow dot pulse */
.dot-orange {
  animation: dotPulse 1.4s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232, 124, 60, 0.5); }
  50% { box-shadow: 0 0 0 6px rgba(232, 124, 60, 0); }
}

/* Villa card — refined lift */
.villa-card { will-change: transform; }
.villa-card:hover { transform: translateY(-8px) scale(1.005); }
.villa-card .villa-img img { transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
.villa-card:hover .villa-img img { transform: scale(1.08); }

/* Featured villa — premium hover */
.villa-featured { will-change: transform; }
.villa-featured:hover { transform: translateY(-6px); }
.vf-img img { transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }

/* Image tags — staggered fade in on hover */
.img-tag { transition: transform 0.25s ease, opacity 0.25s ease; }
.villa-card .img-tag,
.vf-img .img-tag { transform: translateY(4px); opacity: 0.92; }
.villa-card:hover .img-tag,
.villa-featured:hover .img-tag { transform: translateY(0); opacity: 1; }
.villa-card:hover .img-tag:nth-child(2),
.villa-featured:hover .img-tag:nth-child(2) { transition-delay: 0.04s; }
.villa-card:hover .img-tag:nth-child(3),
.villa-featured:hover .img-tag:nth-child(3) { transition-delay: 0.08s; }

/* Heart fav button — beat on click */
.img-fav { transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.2s, color 0.2s; }
.img-fav:active { transform: scale(0.85); }
.img-fav.fav-active { color: var(--brand-orange); animation: heartBeat 0.5s ease; }
@keyframes heartBeat {
  0% { transform: scale(1); }
  30% { transform: scale(1.3); }
  60% { transform: scale(0.95); }
  100% { transform: scale(1.1); }
}

/* Filter button — active slide */
.filter {
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.filter::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--brand-green);
  z-index: -1;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}
.filter.active::before { transform: translateY(0); }
.filter:not(.active):hover::before { transform: translateY(85%); background: var(--bg-soft); }
[data-theme="dark"] .filter::before { background: var(--brand-orange); }

/* Service card — icon spin in */
.service-card .service-icn svg { transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1); }
.service-card:hover .service-icn svg { transform: rotate(360deg); }

/* Fleet item — slide-in indicator */
.fleet-item {
  position: relative;
  overflow: hidden;
}
.fleet-item::after {
  content: "→";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) translateX(-12px);
  opacity: 0;
  color: var(--accent);
  font-size: 18px;
  transition: opacity 0.2s, transform 0.2s;
}
.fleet-item:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
  color: var(--brand-orange-soft);
}

/* How-step number — gradient on hover */
.how-step { transition: transform 0.25s ease; }
.how-step:hover { transform: translateY(-4px); }
.step-num {
  background: linear-gradient(135deg, var(--accent), var(--brand-orange-soft));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  transition: transform 0.25s ease;
}
.how-step:hover .step-num { transform: scale(1.08); }

/* Testimonial card — diagonal glow on hover */
.testi {
  position: relative;
  overflow: hidden;
}
.testi::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 80px;
  height: 200%;
  background: linear-gradient(110deg, transparent, rgba(232, 124, 60, 0.08), transparent);
  transform: translateX(-300px) rotate(15deg);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
.testi:hover::before { transform: translateX(600px) rotate(15deg); }

/* Quote SVG gentle bounce */
.testi-stars { letter-spacing: 0.15em; animation: starShimmer 3s linear infinite; }
@keyframes starShimmer {
  0%, 100% { opacity: 0.85; }
  50% { opacity: 1; transform: translateX(2px); }
}

/* Exp quote — subtle float */
.exp-quote { animation: floatGentle 2.6s ease-in-out infinite; }
@keyframes floatGentle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* CTA glow rotation */
.cta::before { animation: orbitGlow 10s linear infinite; }
.cta::after { animation: orbitGlow 14s linear infinite reverse; }
@keyframes orbitGlow {
  0% { transform: rotate(0deg) translate(0, 0); }
  50% { transform: rotate(180deg) translate(20px, -10px); }
  100% { transform: rotate(360deg) translate(0, 0); }
}

/* CTA form — input focus glow */
.cta-form input,
.cta-form select,
.cta-form textarea { position: relative; transition: all 0.3s ease; }
.cta-form input:focus,
.cta-form select:focus,
.cta-form textarea:focus { box-shadow: 0 0 0 4px rgba(232, 124, 60, 0.15); }

/* Social links — subtle rotation on hover */
.social a { transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1); }
.social a:hover { transform: translateY(-3px) rotate(-6deg) scale(1.08); }

/* Floating actions — entrance */
.floating-actions {
  animation: floatActionsIn 0.5s 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
}
@keyframes floatActionsIn {
  from { opacity: 0; transform: translateY(20px) scale(0.6); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Float buttons — gentle idle */
.float-wa { animation: gentleBob 2.2s ease-in-out infinite; }
.float-font { animation: gentleBob 2.2s 0.4s ease-in-out infinite; }
@keyframes gentleBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
.float-wa:hover, .float-font:hover { animation: none; }

/* WhatsApp ripple - dual pulse */
.float-wa::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.3;
  animation: wapulse 1.4s 0.5s ease-out infinite;
  pointer-events: none;
}

/* Hero scroll cue */
.hero-scroll { transition: transform 0.3s ease; }
.hero-scroll:hover { color: var(--brand-orange-soft); }

/* Smooth tab focus ring */
*:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Decorative: villas section — backdrop subtle pattern */
.villas::before {
  content: "";
  position: absolute;
  top: 80px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232, 124, 60, 0.06) 0%, transparent 70%);
  pointer-events: none;
  animation: orbDrift 12s ease-in-out infinite alternate;
  z-index: 0;
}
.villas { position: relative; }
.villas .section-head, .villas .villa-featured, .villas .villa-grid, .villas .villas-foot { position: relative; z-index: 1; }
@keyframes orbDrift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-80px, 60px) scale(1.15); }
}

/* Page entry — body reveal */
body { animation: pageIn 0.3s ease-out; }
@keyframes pageIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Reduced motion — respect user preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
}
