/* =========================================================
   VARIABLES
========================================================= */
:root {
  --bg: #faf9f6;
  --dark: #161412;
  --card: #ffffff;
  --terra: #c45c2e;
  --terra-light: #e8724a;
  --terra-pale: #fdf0eb;
  --gold: #d4a853;
  --soft: #6b6560;
  --border: #e8e4df;
  --header-h: 76px;
}

/* =========================================================
   RESET & BASE
========================================================= */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--dark);
  padding-top: var(--header-h);
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; }

/* =========================================================
   SHARED
========================================================= */
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 12px;
}
.section-label.light { color: #f0c9b4; }

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}
.section-header.centered {
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.section-header h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.15;
}
.view-all {
  font-size: 13px;
  font-weight: 500;
  color: var(--terra);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s;
}
.view-all:hover { gap: 10px; }

/* BUTTONS */
.btn {
  padding: 13px 28px;
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all .25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
}
.btn.solid { background: var(--terra); color: #fff; }
.btn.solid:hover {
  background: var(--terra-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,92,46,0.3);
}
.btn.outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.6);
  color: #fff;
}
.btn.outline:hover { background: rgba(255,255,255,0.12); }

/* =========================================================
   HEADER
========================================================= */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: var(--header-h);
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6%;
  z-index: 1000;
  transition: box-shadow .3s;
}
.header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.3); }

.logo {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: #fff;
}
.logo span { color: var(--terra); }

.nav { display: flex; align-items: center; gap: 4px; }
.nav > a {
  padding: 8px 14px;
  font-size: 14px;
  color: #b0aa9f;
  transition: color .2s;
  border-radius: 5px;
}
.nav > a:hover, .nav > a.active { color: #fff; }
.nav > a.active { color: var(--gold); }

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* =========================================================
   LANGUAGE SWITCHER
========================================================= */
.lang-switcher {
  position: relative;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  padding: 7px 12px;
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: .2s;
  white-space: nowrap;
}
.lang-btn:hover { background: rgba(255,255,255,0.14); }
.lang-btn .fa-chevron-down { transition: transform .2s; font-size: 10px; color: #888; }
.lang-switcher.open .lang-btn .fa-chevron-down { transform: rotate(180deg); }

.lang-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: #fff;
  border-radius: 10px;
  min-width: 150px;
  padding: 8px 0;
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: .2s ease;
  z-index: 200;
}
.lang-switcher.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 16px;
  background: none;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #333;
  cursor: pointer;
  transition: .15s;
  text-align: left;
}
.lang-option:hover { background: var(--terra-pale); color: var(--terra); }
.lang-option.active { color: var(--terra); font-weight: 600; }
.lang-option span { font-size: 18px; line-height: 1; }

.call-btn {
  background: var(--terra);
  color: #fff;
  padding: 9px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: .25s;
}
.call-btn:hover { background: var(--terra-light); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: .3s;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  position: fixed;
  top: var(--header-h);
  left: 0;
  width: 100%;
  background: var(--dark);
  padding: 16px 6% 24px;
  z-index: 999;
  border-top: 1px solid #2a2520;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 12px 0;
  font-size: 15px;
  color: #b0aa9f;
  border-bottom: 1px solid #2a2520;
}
.mobile-nav a:last-child { border: none; }

/* =========================================================
   HERO
========================================================= */
.hero {
  min-height: calc(100vh - var(--header-h));
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
  background: var(--dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(196,92,46,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(212,168,83,0.08) 0%, transparent 50%);
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 8%;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 24px;
}
.hero-tag::before {
  content: '';
  display: block;
  width: 30px;
  height: 1.5px;
  background: var(--terra);
}
.hero-content h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(38px, 4.5vw, 64px);
  line-height: 1.1;
  color: #fff;
  margin-bottom: 24px;
}
.hero-content h1 em { font-style: italic; color: var(--terra); }
.hero-content > p {
  font-size: 16px;
  color: #9a9287;
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 36px;
}
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats {
  display: flex;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-stat { padding: 0 28px 0 0; }
.hero-stat:first-child { padding-left: 0; }
.hero-stat strong {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 32px;
  color: var(--gold);
  line-height: 1;
}
.hero-stat span {
  font-size: 12px;
  color: #665e55;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
  display: block;
}
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  margin: 0 24px;
}
.hero-image-panel { position: relative; overflow: hidden; }
.hero-image-panel img { transition: transform 8s ease; }
.hero-image-panel:hover img { transform: scale(1.04); }
.hero-image-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--dark) 0%, transparent 30%);
}
.hero-img-card {
  position: absolute;
  bottom: 40px;
  left: 40px;
  z-index: 10;
  background: rgba(22,20,18,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
}
.hero-img-card i { font-size: 22px; color: var(--terra); }
.hero-img-card strong { display: block; font-size: 14px; margin-bottom: 2px; }
.hero-img-card span { font-size: 11px; color: #776f66; }

/* =========================================================
   SEARCH
========================================================= */
.search-section { background: #fff; padding: 0 6%; position: relative; z-index: 5; }
.search-box {
  display: flex;
  align-items: center;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  transform: translateY(-32px);
  background: #fff;
}
.search-item {
  flex: 1;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.search-item label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--terra);
  display: flex;
  align-items: center;
  gap: 5px;
}
.search-item input,
.search-item select {
  border: none;
  outline: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--dark);
  background: transparent;
  cursor: pointer;
}
.search-divider { width: 1px; height: 48px; background: var(--border); flex-shrink: 0; }
.search-btn {
  background: var(--terra);
  color: #fff;
  border: none;
  padding: 0 36px;
  min-height: 80px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: .25s;
  flex-shrink: 0;
}
.search-btn:hover { background: var(--terra-light); }

/* =========================================================
   FEATURES
========================================================= */
.features { padding: 80px 6% 100px; }
.features-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--terra);
  text-align: center;
  margin-bottom: 48px;
}
.features-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.feature-box {
  background: #fff;
  padding: 40px 32px;
  transition: .3s;
}
.feature-box:hover { background: var(--terra-pale); }
.feature-icon { font-size: 32px; margin-bottom: 20px; }
.feature-box h3 { font-family: 'DM Serif Display', serif; font-size: 20px; margin-bottom: 12px; }
.feature-box p { font-size: 13.5px; color: var(--soft); line-height: 1.7; }

/* =========================================================
   RENTALS / TOURS
========================================================= */
.tours { padding: 100px 6%; background: #fff; }
.tour-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tour-card {
  background: var(--bg);
  border-radius: 14px;
  overflow: hidden;
  border: 1.5px solid var(--border);
  transition: .3s;
  display: flex;
  flex-direction: column;
}
.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}
.tour-img { position: relative; height: 220px; flex-shrink: 0; }
.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--terra);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
}
.tour-type {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(22,20,18,0.75);
  color: #fff;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 4px;
  backdrop-filter: blur(6px);
}
.tour-content { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.stars { font-size: 13px; color: var(--gold); margin-bottom: 8px; }
.stars span { color: var(--soft); font-size: 12px; }
.tour-content h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  margin-bottom: 4px;
}
.prop-address {
  font-size: 12px;
  color: var(--terra);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.tour-meta {
  font-size: 13.5px;
  color: var(--soft);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}
.prop-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.prop-amenities span {
  background: var(--terra-pale);
  color: var(--terra);
  font-size: 11.5px;
  padding: 4px 10px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.price .old { text-decoration: line-through; color: #aaa; margin-right: 6px; font-size: 13px; }
.price .new { color: var(--terra); font-weight: 600; font-size: 20px; }
.price .new small { font-size: 12px; font-weight: 400; color: var(--soft); }
.price-currency-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  background: var(--terra);
  padding: 2px 7px;
  border-radius: 4px;
  margin-left: 5px;
  vertical-align: middle;
  transition: background .3s, color .3s;
}

.interested-btn {
  background: var(--dark);
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: .25s;
  white-space: nowrap;
  flex-shrink: 0;
}
.interested-btn i { color: var(--terra); }
.interested-btn:hover {
  background: var(--terra);
  transform: translateY(-1px);
}
.interested-btn:hover i { color: #fff; }

/* =========================================================
   TRAVEL GUIDE
========================================================= */
.guide-section { padding: 100px 6%; background: var(--dark); }
.guide-section .section-header h2 { color: #fff; }
.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.guide-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 32px 28px;
  transition: .3s;
}
.guide-card:hover {
  background: rgba(196,92,46,0.1);
  border-color: rgba(196,92,46,0.3);
}
.guide-icon { font-size: 30px; margin-bottom: 16px; }
.guide-card h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  color: #fff;
  margin-bottom: 10px;
}
.guide-card p { font-size: 13.5px; color: #776f66; line-height: 1.7; }

/* =========================================================
   CTA
========================================================= */
.cta { background: var(--terra); padding: 100px 6%; text-align: center; position: relative; overflow: hidden; }
.cta::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  top: -150px;
  right: -100px;
}
.cta::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(0,0,0,0.08);
  bottom: -80px;
  left: 5%;
}
.cta-inner { max-width: 640px; margin: auto; position: relative; z-index: 2; }
.cta-inner h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 3.5vw, 48px);
  color: #fff;
  margin-bottom: 18px;
}
.cta-inner p { font-size: 15px; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 36px; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta .btn.solid { background: var(--dark); color: #fff; }
.cta .btn.solid:hover { background: #000; }

/* =========================================================
   TESTIMONIALS
========================================================= */
.testimonials { padding: 100px 6%; background: var(--bg); text-align: center; }
.testimonial-wrapper { overflow: hidden; max-width: 700px; margin: 48px auto 0; }
.testimonial-track { display: flex; transition: transform .5s ease; }
.testimonial-card {
  min-width: 100%;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  text-align: left;
  opacity: 0.4;
  transform: scale(0.97);
  transition: .4s;
}
.testimonial-card.active { opacity: 1; transform: scale(1); }
.quote-icon { font-size: 36px; color: var(--terra); opacity: 0.25; line-height: 1; margin-bottom: 16px; font-family: serif; }
.testimonial-card > p { font-size: 15px; line-height: 1.75; color: #4a4540; margin-bottom: 28px; }
.top { display: flex; align-items: center; gap: 14px; }
.top img { width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0; }
.top h4 { font-size: 14px; font-weight: 600; }
.top span { font-size: 12px; color: var(--soft); }
.top .stars { margin-left: auto; color: var(--gold); font-size: 13px; }
.dots { margin-top: 28px; display: flex; gap: 8px; justify-content: center; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); cursor: pointer; transition: .3s; }
.dot.active { background: var(--terra); width: 24px; border-radius: 4px; }

/* =========================================================
   FOOTER
========================================================= */
.footer { background: #0d0b09; color: #7a726a; padding: 80px 6% 32px; font-size: 14px; }
.footer-container {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid #1e1a16;
}
.footer-brand .logo { margin-bottom: 16px; font-size: 18px; }
.footer-brand p { font-size: 13px; line-height: 1.7; max-width: 260px; }
.footer h4 { color: #fff; font-size: 14px; font-weight: 600; margin-bottom: 20px; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer a { color: #6a635b; transition: .2s; }
.footer a:hover { color: var(--terra); }
.footer p { margin-bottom: 8px; line-height: 1.6; }
.socials { display: flex; gap: 10px; margin-top: 20px; }
.socials a {
  width: 36px;
  height: 36px;
  border: 1px solid #2a2520;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6a635b;
  transition: .25s;
  font-size: 13px;
}
.socials a:hover { border-color: var(--terra); color: var(--terra); }
.payments { display: flex; gap: 8px; margin-top: 16px; flex-wrap: wrap; }
.payments span {
  background: #1a1612;
  color: #8a8078;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  border: 1px solid #2a2520;
}
.footer-bottom {
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #4a4340;
}
.footer-links a { margin-left: 24px; font-size: 12px; color: #4a4340; }
.footer-links a:hover { color: var(--terra); }

/* =========================================================
   POPUP / FORM
========================================================= */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  display: none;
  z-index: 1000;
}
.overlay.active { display: block; }

.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  width: min(92vw, 460px);
  max-height: 90vh;
  overflow-y: auto;
  background: #fff;
  padding: 36px;
  border-radius: 16px;
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: .3s ease;
}
.popup.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}
.close-btn {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
  color: #888;
  line-height: 1;
  z-index: 2;
}
.close-btn:hover { color: var(--dark); }
.popup-icon { font-size: 32px; margin-bottom: 10px; }
.popup h3 { font-family: 'DM Serif Display', serif; font-size: 24px; margin-bottom: 6px; }
.popup-sub { font-size: 13px; color: var(--soft); margin-bottom: 24px; }

.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-group label { font-size: 12px; font-weight: 600; color: var(--dark); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--dark);
  outline: none;
  transition: .2s;
  background: var(--bg);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--terra); }
.form-group textarea { resize: none; height: 80px; }
.form-submit-btn { width: 100%; justify-content: center; padding: 14px; margin-top: 4px; }
.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--soft);
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-wrap: wrap;
}
.form-note i { color: #25d366; }
.form-note a { color: var(--terra); font-weight: 600; }

.form-success { text-align: center; padding: 20px 0; }
.success-icon { font-size: 48px; margin-bottom: 16px; }
.form-success h4 { font-family: 'DM Serif Display', serif; font-size: 22px; margin-bottom: 10px; }
.form-success p { font-size: 14px; color: var(--soft); line-height: 1.6; }

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1100px) {
  .features-container { grid-template-columns: repeat(2, 1fr); }
  .footer-container { grid-template-columns: repeat(2, 1fr); }
  .hero { grid-template-columns: 1fr; }
  .hero-image-panel { display: none; }
  .hero-content { padding: 80px 8%; }
  .guide-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .tour-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .search-box { flex-direction: column; transform: translateY(-20px); }
  .search-item { padding: 16px 20px; width: 100%; }
  .search-divider { width: 100%; height: 1px; }
  .search-btn { width: 100%; min-height: 52px; justify-content: center; }
  .features-container { grid-template-columns: 1fr; }
  .tour-grid { grid-template-columns: 1fr; }
  .guide-grid { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-links a { margin: 0 8px; }
  .cta-actions { flex-direction: column; align-items: center; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .hero-stat-divider { display: none; }
  .price-row { flex-direction: column; align-items: flex-start; gap: 12px; }
  .interested-btn { width: 100%; justify-content: center; }
  .call-btn span { display: none; }
}

/* =========================================================
   FORM SUBMIT LOADING STATE
========================================================= */
.form-submit-btn:disabled {
  opacity: 0.75;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}
@keyframes spin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.fa-spin { animation: spin .6s linear infinite; }

/* =========================================================
   SEARCH RESULTS BANNER
========================================================= */
.search-results-banner {
  background: var(--terra-pale);
  border: 1.5px solid rgba(196,92,46,0.2);
  border-radius: 12px;
  padding: 14px 20px;
  margin-bottom: 28px;
  animation: slideDown .3s ease;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.srb-inner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.srb-icon { font-size: 18px; margin-top: 1px; }
.srb-text {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--dark);
  display: block;
  margin-bottom: 4px;
}
.srb-date-note {
  font-size: 12px;
  color: var(--soft);
  display: block;
  margin-top: 2px;
}
.srb-clear {
  background: none;
  border: 1px solid rgba(196,92,46,0.35);
  color: var(--terra);
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  cursor: pointer;
  margin-top: 6px;
  transition: .2s;
  display: inline-block;
}
.srb-clear:hover {
  background: var(--terra);
  color: #fff;
  border-color: var(--terra);
}

/* =========================================================
   NO RESULTS MESSAGE
========================================================= */
.no-results-msg {
  text-align: center;
  padding: 60px 20px;
  animation: slideDown .3s ease;
}
.nrm-icon { font-size: 48px; margin-bottom: 16px; }
.no-results-msg h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 24px;
  margin-bottom: 10px;
}
.no-results-msg p {
  font-size: 14px;
  color: var(--soft);
  max-width: 400px;
  margin: 0 auto;
  line-height: 1.6;
}

/* =========================================================
   PROPERTY CARD TRANSITION (for search animation)
========================================================= */
.tour-card[data-property] {
  transition: opacity .35s ease, transform .35s ease,
              box-shadow .3s, transform .3s;
}

/* =========================================================
   VOLUNTEER SECTION
========================================================= */
.volunteer-section {
  padding: 100px 6%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  background: var(--bg);
}
.vol-image { position: relative; height: 500px; border-radius: 16px; overflow: hidden; }
.vol-badge {
  position: absolute; top: 28px; right: 28px;
  background: var(--dark); color: #fff;
  padding: 12px 18px; border-radius: 50px;
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500; z-index: 2;
}
.vol-badge i { color: var(--terra); }
.vol-content h2 { font-family: 'DM Serif Display', serif; font-size: clamp(28px,3vw,46px); margin-bottom: 20px; line-height: 1.15; }
.vol-content > p { font-size: 15px; color: var(--soft); line-height: 1.75; margin-bottom: 36px; }
.vol-perks { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.vol-perk { display: flex; align-items: flex-start; gap: 16px; }
.vol-perk i { font-size: 18px; color: var(--terra); margin-top: 2px; width: 20px; flex-shrink: 0; }
.vol-perk strong { display: block; font-size: 15px; margin-bottom: 2px; }
.vol-perk span { font-size: 13px; color: var(--soft); }

/* =========================================================
   ADVENTURE SECTION
========================================================= */
.adventure-section {
  padding: 100px 6%;
  background: var(--dark);
}
.adv-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.adv-text .section-label { color: var(--terra); }
.adv-text h2 { font-family: 'DM Serif Display', serif; font-size: clamp(28px,3vw,46px); color: #fff; margin-bottom: 20px; line-height: 1.15; }
.adv-text > p { font-size: 15px; color: #776f66; line-height: 1.75; margin-bottom: 32px; }
.adv-highlights { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.adv-item { display: flex; align-items: center; gap: 12px; font-size: 14px; color: #9a9287; }
.adv-item i { color: var(--terra); width: 18px; }
.adv-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.adv-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 28px 24px;
  transition: .3s;
  text-align: center;
}
.adv-card:hover { background: rgba(196,92,46,0.12); border-color: rgba(196,92,46,0.3); }
.adv-card-icon { font-size: 36px; margin-bottom: 14px; }
.adv-card h4 { font-family: 'DM Serif Display', serif; font-size: 17px; color: #fff; margin-bottom: 8px; }
.adv-card p { font-size: 12.5px; color: #665e55; line-height: 1.6; }

/* =========================================================
   EXTERNAL BOOKING BUTTONS (Airbnb / FutureStay)
========================================================= */
.ext-booking-btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.ext-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  border-radius: 7px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  text-decoration: none;
  transition: .2s;
  white-space: nowrap;
}
.airbnb-btn {
  background: #FF5A5F;
  color: #fff;
}
.airbnb-btn:hover { background: #e04a4f; transform: translateY(-2px); }
.futurestay-btn {
  background: var(--dark);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.12);
}
.futurestay-btn:hover { background: var(--terra); border-color: var(--terra); transform: translateY(-2px); }

.booking-note {
  margin-top: 32px;
  padding: 16px 20px;
  background: var(--terra-pale);
  border-radius: 10px;
  border: 1px solid rgba(196,92,46,0.2);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--soft);
}
.booking-note i { color: var(--terra); margin-top: 2px; flex-shrink: 0; }

/* =========================================================
   RESPONSIVE — NEW SECTIONS
========================================================= */
@media (max-width: 1100px) {
  .volunteer-section { grid-template-columns: 1fr; }
  .vol-image { height: 340px; }
  .adv-inner { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .adv-cards { grid-template-columns: 1fr 1fr; }
  .ext-booking-btns { flex-direction: column; }
  .ext-btn { justify-content: center; }
}

/* =========================================================
   ADV CARD — FLAG & FARM IMAGES
========================================================= */
.adv-card-icon {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flag-img {
  width: 80px;
  height: 54px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.35);
  display: block;
}

.farm-img {
  width: 80px;
  height: 54px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.35);
  display: block;
}

/* =========================================================
   RENTALS — 2 COLUMN & REAL PROPERTY DETAILS
========================================================= */
.tour-grid.two-col {
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

/* Thumbnail strip under main image */
.prop-gallery-slider { position: relative; }
.prop-thumbs-strip {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  display: flex;
  gap: 6px;
  z-index: 3;
}
.prop-thumbs-strip img {
  width: 52px;
  height: 38px;
  object-fit: cover;
  border-radius: 5px;
  border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: border-color .2s, transform .2s;
  flex-shrink: 0;
}
.prop-thumbs-strip img:hover {
  border-color: #fff;
  transform: scale(1.05);
}

/* House rules list */
.house-rules {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0;
}
.rule-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--dark);
  line-height: 1.4;
}
.rule-item i {
  color: var(--terra);
  width: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 13px;
}

/* Info card — stretch height to match */
.rental-info-card {
  display: flex;
  flex-direction: column;
}
.rental-info-card .tour-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

@media (max-width: 768px) {
  .tour-grid.two-col { grid-template-columns: 1fr; }
}