/* =========================================================
   BELEK HOLIDAY VILLAS — ANA STİL DOSYASI
   ========================================================= */

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--bhv-font-body);
  color: var(--bhv-ink);
  background: var(--bhv-cream);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; font-size: 1rem; }
h1, h2, h3, h4 { font-family: var(--bhv-font-display); margin: 0 0 0.5em; line-height: 1.15; font-weight: 500; color: var(--bhv-pine-dark); }
p { margin: 0 0 1em; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

/* Keyboard focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--bhv-clay);
  outline-offset: 2px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--bhv-pine); color: #fff; padding: 10px 18px; z-index: 9999;
}
.skip-link:focus { left: 10px; top: 10px; }

/* ---------- LAYOUT ---------- */
.bhv-container {
  max-width: var(--bhv-container);
  margin: 0 auto;
  padding: 0 24px;
}
.bhv-section { padding: 88px 0; }
.bhv-section--sm { padding: 56px 0; }
.bhv-section--pine { background: var(--bhv-pine); color: var(--bhv-sand-light); }
.bhv-section--pine h2, .bhv-section--pine h3 { color: #fff; }
.bhv-section--sand { background: var(--bhv-sand-light); }

.bhv-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--bhv-font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bhv-clay);
  margin-bottom: 14px;
}
.bhv-eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--bhv-clay);
  display: inline-block;
}
.bhv-section--pine .bhv-eyebrow { color: var(--bhv-gold); }
.bhv-section--pine .bhv-eyebrow::before { background: var(--bhv-gold); }

.bhv-section-head { max-width: 680px; margin-bottom: 48px; }
.bhv-section-head.bhv-section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.bhv-section-head h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
.bhv-section-head p { color: var(--bhv-ink-soft); font-size: 1.08rem; }
.bhv-section--pine .bhv-section-head p { color: var(--bhv-sand-light); opacity: 0.85; }

/* ---------- BUTTONS ---------- */
.bhv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: var(--bhv-radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.bhv-btn--primary {
  background: var(--bhv-clay);
  color: #fff;
  box-shadow: var(--bhv-shadow-sm);
}
.bhv-btn--primary:hover { background: var(--bhv-clay-dark); transform: translateY(-2px); box-shadow: var(--bhv-shadow-md); }

.bhv-btn--secondary {
  background: var(--bhv-pine);
  color: #fff;
}
.bhv-btn--secondary:hover { background: var(--bhv-pine-light); transform: translateY(-2px); }

.bhv-btn--ghost {
  background: transparent;
  border-color: var(--bhv-pine);
  color: var(--bhv-pine);
}
.bhv-btn--ghost:hover { background: var(--bhv-pine); color: #fff; }

.bhv-section--pine .bhv-btn--ghost { border-color: var(--bhv-sand); color: var(--bhv-sand); }
.bhv-section--pine .bhv-btn--ghost:hover { background: var(--bhv-sand); color: var(--bhv-pine-dark); }

.bhv-btn--sm { padding: 9px 18px; font-size: 0.85rem; }
.bhv-btn--full { width: 100%; }
.bhv-btn--whatsapp { background: #1f9e54; color: #fff; }
.bhv-btn--whatsapp:hover { background: #18803f; }

/* =========================================================
   TOP BAR + HEADER
   ========================================================= */
.bhv-topbar {
  background: var(--bhv-pine-dark);
  color: var(--bhv-sand-light);
  font-size: 0.85rem;
}
.bhv-topbar .bhv-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 9px;
  padding-bottom: 9px;
  flex-wrap: wrap;
  gap: 10px;
}
.bhv-topbar a { opacity: 0.92; }
.bhv-topbar a:hover { opacity: 1; color: var(--bhv-gold); }
.bhv-topbar__contact { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.bhv-topbar__contact span { display: inline-flex; align-items: center; gap: 6px; }
.bhv-topbar__social { display: flex; gap: 14px; }
.bhv-topbar__lang { display: flex; gap: 10px; align-items: center; }

.bhv-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(247, 244, 236, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--bhv-border);
}
.bhv-header .bhv-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 24px;
}
.bhv-logo { display: flex; align-items: center; gap: 10px; font-family: var(--bhv-font-display); font-size: 1.5rem; color: var(--bhv-pine-dark); font-weight: 600; }
.bhv-logo img { max-height: 52px; width: auto; }
.bhv-logo span.bhv-logo__accent { color: var(--bhv-clay); }

.bhv-primary-nav { display: flex; }
.bhv-primary-nav ul { display: flex; gap: 6px; align-items: center; }
.bhv-primary-nav > ul > li { position: relative; }
.bhv-primary-nav > ul > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 16px;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--bhv-radius-sm);
  transition: background 0.15s ease, color 0.15s ease;
}
.bhv-primary-nav > ul > li > a:hover,
.bhv-primary-nav > ul > li.current-menu-item > a { background: var(--bhv-pine); color: #fff; }
.bhv-dropdown-arrow { font-size: 0.6em; margin-left: 2px; }

.bhv-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 230px;
  border-radius: var(--bhv-radius-md);
  box-shadow: var(--bhv-shadow-lg);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  z-index: 50;
}
.bhv-has-dropdown:hover > .bhv-submenu,
.bhv-has-dropdown:focus-within > .bhv-submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.bhv-submenu li a { display: block; padding: 10px 14px; border-radius: var(--bhv-radius-sm); font-weight: 500; color: var(--bhv-ink); }
.bhv-submenu li a:hover { background: var(--bhv-sand-light); color: var(--bhv-pine-dark); }

.bhv-header__actions { display: flex; align-items: center; gap: 12px; }
.bhv-header__phone { display: flex; align-items: center; gap: 8px; font-weight: 700; color: var(--bhv-pine-dark); }
.bhv-header__phone svg { color: var(--bhv-clay); }

.bhv-menu-toggle {
  display: none;
  background: var(--bhv-pine);
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: var(--bhv-radius-sm);
  align-items: center;
  justify-content: center;
}

/* =========================================================
   HERO + ARAMA / REZERVASYON WIDGET
   ========================================================= */
.bhv-hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, rgba(15,38,32,0.55), rgba(15,38,32,0.82)), var(--bhv-pine-dark);
  background-size: cover;
  background-position: center;
  color: #fff;
  overflow: hidden;
}
.bhv-hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  z-index: 0;
}
.bhv-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,38,32,0.5) 0%, rgba(15,38,32,0.78) 65%, rgba(15,38,32,0.94) 100%);
  z-index: 1;
}
.bhv-hero__pattern {
  position: absolute;
  right: -120px;
  top: -120px;
  width: 560px;
  height: 560px;
  opacity: 0.12;
  z-index: 1;
  pointer-events: none;
}
.bhv-hero__content { position: relative; z-index: 2; padding: 160px 0 230px; width: 100%; }
.bhv-hero__eyebrow {
  font-weight: 700;
  letter-spacing: 0.22em;
  font-size: 0.82rem;
  color: var(--bhv-gold);
  text-transform: uppercase;
  margin-bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.bhv-hero__eyebrow::before { content:''; width: 36px; height: 2px; background: var(--bhv-gold); }
.bhv-hero h1 {
  color: #fff;
  font-size: clamp(2.4rem, 5.4vw, 4.4rem);
  max-width: 780px;
  margin-bottom: 24px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.bhv-hero p.bhv-hero__sub {
  font-size: 1.2rem;
  max-width: 560px;
  color: var(--bhv-sand-light);
  margin-bottom: 36px;
}
.bhv-hero__cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 10px; }

.bhv-search-widget {
  position: relative;
  z-index: 3;
  margin-top: -110px;
  background: #fff;
  border-radius: var(--bhv-radius-lg);
  box-shadow: var(--bhv-shadow-lg);
  padding: 28px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 0.9fr auto;
  gap: 16px;
  align-items: end;
}
.bhv-search-field { display: flex; flex-direction: column; gap: 8px; }
.bhv-search-field label {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bhv-ink-soft);
}
.bhv-search-field select,
.bhv-search-field input {
  border: 1.5px solid var(--bhv-border);
  border-radius: var(--bhv-radius-sm);
  padding: 13px 14px;
  background: var(--bhv-cream);
  color: var(--bhv-ink);
  font-weight: 600;
}
.bhv-search-field select:focus,
.bhv-search-field input:focus { border-color: var(--bhv-clay); outline: none; }
.bhv-search-widget .bhv-btn { height: 52px; padding: 0 28px; }

.bhv-trust-row {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.bhv-trust-row__item { display: flex; align-items: baseline; gap: 8px; }
.bhv-trust-row__num { font-family: var(--bhv-font-display); font-size: 1.9rem; color: var(--bhv-gold); }
.bhv-trust-row__label { font-size: 0.85rem; color: var(--bhv-sand-light); opacity: 0.85; }

/* =========================================================
   VİLLA KARTLARI
   ========================================================= */
.bhv-villa-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.bhv-villa-card {
  background: #fff;
  border-radius: var(--bhv-radius-md);
  overflow: hidden;
  box-shadow: var(--bhv-shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  display: flex;
  flex-direction: column;
}
.bhv-villa-card:hover { transform: translateY(-6px); box-shadow: var(--bhv-shadow-md); }
.bhv-villa-card__media { position: relative; aspect-ratio: 4/3; overflow: hidden; display: block; background: var(--bhv-sand-light); }
.bhv-villa-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.bhv-villa-card:hover .bhv-villa-card__media img { transform: scale(1.07); }
.bhv-villa-card__placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, var(--bhv-sand-light), var(--bhv-sand)); }
.bhv-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--bhv-clay); color: #fff;
  font-size: 0.72rem; font-weight: 700;
  padding: 6px 12px; border-radius: 100px;
  letter-spacing: 0.02em;
}
.bhv-villa-card__body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.bhv-villa-card__region { font-size: 0.78rem; font-weight: 700; color: var(--bhv-clay); text-transform: uppercase; letter-spacing: 0.04em; }
.bhv-villa-card__title { font-size: 1.28rem; margin: 6px 0 12px; }
.bhv-villa-card__title a:hover { color: var(--bhv-clay); }
.bhv-villa-card__meta { display: flex; gap: 14px; flex-wrap: wrap; font-size: 0.86rem; color: var(--bhv-ink-soft); margin-bottom: 18px; padding-bottom: 18px; border-bottom: 1px solid var(--bhv-border); }
.bhv-villa-card__footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; gap: 10px; }
.bhv-villa-card__price { font-family: var(--bhv-font-display); font-size: 1.3rem; color: var(--bhv-pine-dark); font-weight: 600; }
.bhv-villa-card__price small { font-family: var(--bhv-font-body); font-size: 0.7rem; font-weight: 600; color: var(--bhv-ink-soft); }

/* =========================================================
   HİZMETLER / OLANAKLAR ŞERİDİ
   ========================================================= */
.bhv-amenity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.bhv-amenity-card {
  background: #fff;
  border-radius: var(--bhv-radius-md);
  padding: 30px 24px;
  text-align: center;
  box-shadow: var(--bhv-shadow-sm);
  transition: transform 0.2s ease;
}
.bhv-amenity-card:hover { transform: translateY(-4px); }
.bhv-amenity-card__icon {
  width: 60px; height: 60px;
  margin: 0 auto 18px;
  background: var(--bhv-sand-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--bhv-pine);
}
.bhv-amenity-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.bhv-amenity-card p { font-size: 0.92rem; color: var(--bhv-ink-soft); margin: 0; }

/* =========================================================
   BÖLGELER
   ========================================================= */
.bhv-region-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.bhv-region-card {
  position: relative;
  border-radius: var(--bhv-radius-md);
  overflow: hidden;
  aspect-ratio: 3/4;
  display: flex;
  align-items: flex-end;
  box-shadow: var(--bhv-shadow-sm);
}
.bhv-region-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.bhv-region-card:hover img { transform: scale(1.08); }
.bhv-region-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15,38,32,0.9) 100%);
}
.bhv-region-card__body { position: relative; z-index: 2; padding: 22px; color: #fff; }
.bhv-region-card__body h3 { color: #fff; font-size: 1.25rem; margin-bottom: 4px; }
.bhv-region-card__body span { font-size: 0.85rem; opacity: 0.85; }

/* =========================================================
   NASIL ÇALIŞIR / SÜREÇ
   ========================================================= */
.bhv-process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; position: relative; }
.bhv-process-step { position: relative; }
.bhv-process-step__num {
  font-family: var(--bhv-font-display);
  font-size: 2.6rem;
  color: var(--bhv-gold);
  opacity: 0.5;
  margin-bottom: 10px;
}
.bhv-process-step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.bhv-process-step p { color: var(--bhv-ink-soft); font-size: 0.94rem; }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.bhv-testimonial-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.bhv-testimonial-card {
  background: #fff;
  border-radius: var(--bhv-radius-md);
  padding: 30px;
  box-shadow: var(--bhv-shadow-sm);
}
.bhv-testimonial-card__stars { color: var(--bhv-gold); margin-bottom: 14px; letter-spacing: 2px; }
.bhv-testimonial-card p.bhv-quote { font-style: italic; color: var(--bhv-ink); margin-bottom: 18px; }
.bhv-testimonial-card__author { display: flex; align-items: center; gap: 12px; }
.bhv-testimonial-card__author img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.bhv-testimonial-card__author strong { display: block; font-size: 0.95rem; }
.bhv-testimonial-card__author span { font-size: 0.82rem; color: var(--bhv-ink-soft); }

/* =========================================================
   FAQ ACCORDION
   ========================================================= */
.bhv-faq-list { max-width: 820px; margin: 0 auto; }
.bhv-faq-item { border-bottom: 1px solid var(--bhv-border); }
.bhv-faq-item__q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--bhv-pine-dark);
}
.bhv-faq-item__icon { font-size: 1.4rem; color: var(--bhv-clay); transition: transform 0.2s ease; flex-shrink: 0; margin-left: 16px; }
.bhv-faq-item[open] .bhv-faq-item__icon { transform: rotate(45deg); }
.bhv-faq-item__a { padding: 0 4px 22px; color: var(--bhv-ink-soft); }

/* =========================================================
   FOOTER
   ========================================================= */
.bhv-footer { background: var(--bhv-pine-dark); color: var(--bhv-sand-light); }
.bhv-footer__top { padding: 70px 0 50px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.bhv-footer__brand .bhv-logo { color: #fff; }
.bhv-footer__brand p { opacity: 0.75; margin: 18px 0 22px; max-width: 320px; }
.bhv-footer__social { display: flex; gap: 12px; }
.bhv-footer__social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease;
}
.bhv-footer__social a:hover { background: var(--bhv-clay); }
.bhv-footer h4 { color: #fff; font-size: 1.05rem; margin-bottom: 20px; font-family: var(--bhv-font-body); font-weight: 700; }
.bhv-footer ul li { margin-bottom: 12px; opacity: 0.8; }
.bhv-footer ul li a:hover { opacity: 1; color: var(--bhv-gold); }
.bhv-footer address { font-style: normal; opacity: 0.8; line-height: 1.7; }
.bhv-footer-newsletter input {
  width: 100%; padding: 12px 14px; border-radius: var(--bhv-radius-sm); border: none;
  margin-bottom: 10px; background: rgba(255,255,255,0.08); color: #fff;
}
.bhv-footer-newsletter input::placeholder { color: rgba(255,255,255,0.5); }
.bhv-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 22px 0;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: 0.85rem; opacity: 0.7;
}

/* Sticky mobile call bar */
.bhv-mobile-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  background: #fff; z-index: 600;
  box-shadow: 0 -8px 24px rgba(0,0,0,0.12);
  padding: 10px 14px;
}
.bhv-mobile-bar__inner { display: flex; gap: 10px; }
.bhv-mobile-bar .bhv-btn { flex: 1; padding: 13px; font-size: 0.88rem; }

/* =========================================================
   BREADCRUMB
   ========================================================= */
.bhv-breadcrumb-wrap { background: var(--bhv-sand-light); padding: 16px 0; }
.bhv-breadcrumb { font-size: 0.88rem; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.bhv-breadcrumb a { color: var(--bhv-ink-soft); }
.bhv-breadcrumb a:hover { color: var(--bhv-clay); }
.bhv-breadcrumb__sep { opacity: 0.4; }
.bhv-breadcrumb [aria-current] { color: var(--bhv-pine-dark); font-weight: 700; }

/* =========================================================
   PAGE HERO (iç sayfalar — Villalar, Hakkımızda, İletişim vb.)
   ========================================================= */
.bhv-page-hero {
  background: var(--bhv-pine-dark);
  color: #fff;
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
}
.bhv-page-hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 14px; }
.bhv-page-hero p { color: var(--bhv-sand-light); opacity: 0.85; max-width: 620px; font-size: 1.08rem; margin: 0; }

/* =========================================================
   VİLLA DETAY SAYFASI
   ========================================================= */
.bhv-villa-header { padding: 40px 0 0; }
.bhv-villa-header__top { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 20px; margin-bottom: 24px; }
.bhv-villa-header h1 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); margin-bottom: 10px; }
.bhv-villa-header__location { display: flex; align-items: center; gap: 8px; color: var(--bhv-ink-soft); font-weight: 600; }
.bhv-villa-header__price { text-align: right; }
.bhv-villa-header__price .amount { font-family: var(--bhv-font-display); font-size: 2rem; color: var(--bhv-clay); }
.bhv-villa-header__price small { display: block; color: var(--bhv-ink-soft); font-size: 0.85rem; }

.bhv-villa-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  border-radius: var(--bhv-radius-lg);
  overflow: hidden;
  margin-bottom: 56px;
  max-height: 520px;
}
.bhv-villa-gallery img { width: 100%; height: 100%; object-fit: cover; }
.bhv-villa-gallery a:first-child { grid-row: span 2; }
.bhv-villa-gallery a { position: relative; display: block; overflow: hidden; }
.bhv-villa-gallery a:last-child::after {
  content: attr(data-more);
  position: absolute; inset: 0;
  background: rgba(15,38,32,0.55);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.1rem;
}

.bhv-villa-layout { display: grid; grid-template-columns: 1.6fr 1fr; gap: 56px; align-items: start; }
.bhv-villa-facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; padding: 26px; background: #fff; border-radius: var(--bhv-radius-md); box-shadow: var(--bhv-shadow-sm); margin-bottom: 40px; }
.bhv-villa-fact { text-align: center; }
.bhv-villa-fact strong { display: block; font-family: var(--bhv-font-display); font-size: 1.4rem; color: var(--bhv-pine-dark); }
.bhv-villa-fact span { font-size: 0.82rem; color: var(--bhv-ink-soft); }

.bhv-villa-content h2 { font-size: 1.6rem; margin-top: 44px; }
.bhv-villa-content p { color: var(--bhv-ink-soft); }

.bhv-amenity-pill-list { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.bhv-amenity-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bhv-sand-light); padding: 10px 16px; border-radius: 100px;
  font-size: 0.9rem; font-weight: 600; color: var(--bhv-pine-dark);
}

.bhv-villa-map { border-radius: var(--bhv-radius-md); overflow: hidden; margin-top: 24px; box-shadow: var(--bhv-shadow-sm); }
.bhv-villa-map iframe { width: 100%; height: 360px; border: 0; display: block; }

/* ---------- BOOKING WIDGET (sticky sidebar) ---------- */
.bhv-booking-widget {
  position: sticky;
  top: 110px;
  background: #fff;
  border-radius: var(--bhv-radius-lg);
  box-shadow: var(--bhv-shadow-lg);
  padding: 28px;
  border: 1px solid var(--bhv-border);
}
.bhv-booking-widget__price { font-family: var(--bhv-font-display); font-size: 1.9rem; color: var(--bhv-pine-dark); margin-bottom: 4px; }
.bhv-booking-widget__price small { font-family: var(--bhv-font-body); font-size: 0.85rem; color: var(--bhv-ink-soft); font-weight: 600; }
.bhv-booking-widget__rating { display: flex; align-items: center; gap: 6px; color: var(--bhv-gold); font-weight: 700; margin-bottom: 22px; font-size: 0.92rem; }
.bhv-booking-widget__rating span.muted { color: var(--bhv-ink-soft); font-weight: 500; }

.bhv-booking-form { display: flex; flex-direction: column; gap: 14px; }
.bhv-booking-form .bhv-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.bhv-booking-form label { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--bhv-ink-soft); display: block; margin-bottom: 6px; }
.bhv-booking-form input, .bhv-booking-form textarea {
  width: 100%; border: 1.5px solid var(--bhv-border); border-radius: var(--bhv-radius-sm); padding: 12px 14px;
  background: var(--bhv-cream);
}
.bhv-booking-form input:focus, .bhv-booking-form textarea:focus { border-color: var(--bhv-clay); outline: none; }

.bhv-availability-msg {
  font-size: 0.88rem; padding: 12px 14px; border-radius: var(--bhv-radius-sm);
  display: none;
}
.bhv-availability-msg.is-success { display: block; background: #E8F3EC; color: var(--bhv-success); }
.bhv-availability-msg.is-error { display: block; background: #FBEAE7; color: var(--bhv-danger); }

.bhv-booking-summary {
  display: none;
  background: var(--bhv-sand-light);
  border-radius: var(--bhv-radius-sm);
  padding: 14px;
  font-size: 0.9rem;
}
.bhv-booking-summary.is-visible { display: block; }
.bhv-booking-summary__row { display: flex; justify-content: space-between; margin-bottom: 6px; }
.bhv-booking-summary__row.total { font-weight: 800; border-top: 1px solid var(--bhv-border); padding-top: 8px; margin-top: 4px; }

.bhv-booking-widget__divider { border: none; border-top: 1px solid var(--bhv-border); margin: 22px 0; }
.bhv-booking-widget__whatsapp { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 14px; }
.bhv-booking-widget__note { font-size: 0.78rem; color: var(--bhv-ink-soft); text-align: center; margin-top: 14px; }

/* ---------- Custom date picker mini-calendar ---------- */
.bhv-datepicker-wrap { position: relative; }
.bhv-datepicker {
  position: absolute; top: calc(100% + 8px); left: 0; z-index: 100;
  background: #fff; border-radius: var(--bhv-radius-md); box-shadow: var(--bhv-shadow-lg);
  padding: 18px; width: 300px; display: none;
}
.bhv-datepicker.is-open { display: block; }
.bhv-datepicker__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; font-weight: 700; }
.bhv-datepicker__head button { background: none; border: none; font-size: 1.1rem; color: var(--bhv-pine); padding: 4px 8px; }
.bhv-datepicker__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; text-align: center; font-size: 0.82rem; }
.bhv-datepicker__grid span.dow { color: var(--bhv-ink-soft); font-weight: 700; font-size: 0.72rem; padding-bottom: 6px; }
.bhv-datepicker__day {
  padding: 7px 0; border-radius: 6px; cursor: pointer; background: none; border: none; font-size: 0.85rem;
}
.bhv-datepicker__day:hover:not(.is-disabled) { background: var(--bhv-sand-light); }
.bhv-datepicker__day.is-disabled { color: #ccc; text-decoration: line-through; cursor: not-allowed; }
.bhv-datepicker__day.is-selected { background: var(--bhv-clay); color: #fff; }
.bhv-datepicker__day.is-empty { visibility: hidden; }

/* =========================================================
   VİLLALAR — FİLTRE SAYFASI
   ========================================================= */
.bhv-filter-bar {
  background: #fff;
  border-radius: var(--bhv-radius-md);
  box-shadow: var(--bhv-shadow-sm);
  padding: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr auto;
  gap: 14px;
  margin-bottom: 40px;
  align-items: end;
}
.bhv-filter-bar select, .bhv-filter-bar input { width: 100%; border: 1.5px solid var(--bhv-border); border-radius: var(--bhv-radius-sm); padding: 11px 12px; background: var(--bhv-cream); }
.bhv-results-bar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; color: var(--bhv-ink-soft); }

/* =========================================================
   BLOG
   ========================================================= */
.bhv-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.bhv-post-card { background: #fff; border-radius: var(--bhv-radius-md); overflow: hidden; box-shadow: var(--bhv-shadow-sm); }
.bhv-post-card__media { aspect-ratio: 16/10; overflow: hidden; }
.bhv-post-card__media img { width: 100%; height: 100%; object-fit: cover; }
.bhv-post-card__body { padding: 20px; }
.bhv-post-card__date { font-size: 0.78rem; color: var(--bhv-clay); font-weight: 700; text-transform: uppercase; }
.bhv-post-card__body h3 { font-size: 1.18rem; margin: 8px 0; }
.bhv-post-card__excerpt { color: var(--bhv-ink-soft); font-size: 0.92rem; }

.bhv-single-post { max-width: 760px; margin: 0 auto; }
.bhv-single-post img { border-radius: var(--bhv-radius-md); }
.bhv-single-post .bhv-post-meta { display: flex; gap: 16px; color: var(--bhv-ink-soft); font-size: 0.9rem; margin-bottom: 24px; }

/* =========================================================
   İLETİŞİM SAYFASI
   ========================================================= */
.bhv-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.bhv-contact-info-card { display: flex; gap: 16px; padding: 22px; background: #fff; border-radius: var(--bhv-radius-md); box-shadow: var(--bhv-shadow-sm); margin-bottom: 16px; }
.bhv-contact-info-card__icon { width: 46px; height: 46px; border-radius: 50%; background: var(--bhv-sand-light); display: flex; align-items: center; justify-content: center; color: var(--bhv-pine); flex-shrink: 0; }
.bhv-contact-info-card h4 { margin-bottom: 4px; font-size: 1rem; font-family: var(--bhv-font-body); }
.bhv-contact-info-card p { margin: 0; color: var(--bhv-ink-soft); font-size: 0.92rem; }
.bhv-contact-form-wrap { background: #fff; padding: 32px; border-radius: var(--bhv-radius-lg); box-shadow: var(--bhv-shadow-sm); }
.bhv-contact-form-wrap .bhv-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.bhv-contact-form-wrap label { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--bhv-ink-soft); display: block; margin-bottom: 6px; }
.bhv-contact-form-wrap input, .bhv-contact-form-wrap textarea { width: 100%; border: 1.5px solid var(--bhv-border); border-radius: var(--bhv-radius-sm); padding: 13px 14px; background: var(--bhv-cream); margin-bottom: 14px; }
.bhv-contact-map { border-radius: var(--bhv-radius-lg); overflow: hidden; margin-top: 50px; box-shadow: var(--bhv-shadow-sm); }
.bhv-contact-map iframe { width: 100%; height: 420px; border: 0; display: block; }

/* =========================================================
   404 / EMPTY STATES
   ========================================================= */
.bhv-empty-state { text-align: center; padding: 80px 20px; }
.bhv-empty-state h2 { font-size: 2rem; }
.bhv-empty-state p { color: var(--bhv-ink-soft); max-width: 460px; margin: 0 auto 28px; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
  .bhv-villa-grid, .bhv-region-grid, .bhv-amenity-grid, .bhv-process, .bhv-testimonial-track, .bhv-blog-grid { grid-template-columns: repeat(2, 1fr); }
  .bhv-villa-layout { grid-template-columns: 1fr; }
  .bhv-booking-widget { position: static; }
  .bhv-search-widget { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 880px) {
  .bhv-primary-nav, .bhv-topbar, .bhv-header__phone span.hide-mobile { display: none; }
  .bhv-menu-toggle { display: flex; }
  .bhv-villa-facts { grid-template-columns: repeat(2, 1fr); }
  .bhv-villa-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr 1fr; max-height: none; }
  .bhv-villa-gallery a:first-child { grid-column: span 2; grid-row: auto; aspect-ratio: 16/10; }
  .bhv-contact-grid, .bhv-filter-bar { grid-template-columns: 1fr; }
  .bhv-footer__top { grid-template-columns: 1fr 1fr; }
  .bhv-mobile-bar { display: block; }
  body { padding-bottom: 70px; }
}

@media (max-width: 640px) {
  .bhv-villa-grid, .bhv-region-grid, .bhv-amenity-grid, .bhv-process, .bhv-testimonial-track, .bhv-blog-grid { grid-template-columns: 1fr; }
  .bhv-search-widget { grid-template-columns: 1fr; margin-top: -60px; padding: 20px; }
  .bhv-hero__content { padding: 120px 0 90px; }
  .bhv-section { padding: 56px 0; }
  .bhv-footer__top { grid-template-columns: 1fr; padding: 50px 0 30px; }
  .bhv-villa-header__top { flex-direction: column; }
  .bhv-villa-header__price { text-align: left; }
  .bhv-contact-form-wrap .bhv-field-row, .bhv-booking-form .bhv-field-row { grid-template-columns: 1fr; }
  .bhv-trust-row { gap: 22px; }
}


/* =========================================================
   V2 — MOBILE, ACCESSIBILITY, PRIVACY & POLISH
   ========================================================= */
html, body { width: 100%; max-width: 100%; overflow-x: clip; }
*, *::before, *::after { min-width: 0; }
img, svg, video, iframe, canvas { max-width: 100%; }
.bhv-container { width: min(calc(100% - 40px), var(--bhv-container)); max-width: 100%; }
.bhv-hero, .bhv-section, .bhv-footer, .bhv-header, .bhv-topbar, main { max-width: 100%; overflow: clip; }
.bhv-hero::after { pointer-events: none; }
.bhv-honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.bhv-consent { display:flex !important; align-items:flex-start; gap:9px; margin:10px 0 16px; font-size:.78rem !important; line-height:1.5; text-transform:none !important; letter-spacing:0 !important; }
.bhv-consent input { width:17px !important; height:17px; margin:2px 0 0 !important; flex:0 0 auto; accent-color:var(--bhv-pine); }
.bhv-consent--footer { color:rgba(255,255,255,.78); }
.bhv-newsletter-msg { margin:8px 0; font-size:.84rem; }
.bhv-newsletter-msg.is-success { color:#d9f5e5; }
.bhv-newsletter-msg.is-error { color:#ffd3cf; }
:focus-visible { outline:3px solid var(--bhv-gold); outline-offset:3px; }
.bhv-villa-card, .bhv-region-card, .bhv-testimonial-card, .bhv-booking-widget { transition:transform .25s ease, box-shadow .25s ease; }
@media (hover:hover) { .bhv-villa-card:hover, .bhv-region-card:hover { transform:translateY(-4px); box-shadow:var(--bhv-shadow-lg); } }
@media (prefers-reduced-motion:reduce) { *,*::before,*::after { scroll-behavior:auto !important; animation-duration:.01ms !important; animation-iteration-count:1 !important; transition-duration:.01ms !important; } }
@media (max-width: 880px) {
  .bhv-primary-nav.is-open { left:0; right:0; width:100%; max-width:100%; overflow-x:hidden; }
  .bhv-header__actions { flex-shrink:0; }
  .bhv-villa-gallery, .bhv-filter-bar, .bhv-search-widget, .bhv-contact-grid { width:100%; max-width:100%; }
}
@media (max-width: 640px) {
  .bhv-container { width:min(calc(100% - 28px), var(--bhv-container)); }
  .bhv-hero::after { display:none !important; }
  .bhv-hero__content { width:100%; max-width:100%; padding-left:0; padding-right:0; }
  .bhv-hero h1, .bhv-page-hero h1, .bhv-villa-header h1 { overflow-wrap:anywhere; }
  .bhv-search-widget { width:100%; margin-left:0; margin-right:0; }
  .bhv-contact-form-wrap, .bhv-booking-widget { padding:22px 16px; border-radius:18px; }
  .bhv-villa-gallery { gap:6px; }
  .bhv-mobile-bar__inner { width:100%; max-width:100%; padding-left:10px; padding-right:10px; }
  input, select, textarea, button { max-width:100%; }
}

/* Native multilingual language switcher */
.bhv-language-switcher{display:inline-flex;align-items:center;gap:4px;padding:4px;border:1px solid rgba(26,70,57,.16);border-radius:999px;background:rgba(255,255,255,.9);box-shadow:0 7px 22px rgba(14,45,36,.08)}
.bhv-language-switcher__item{display:inline-flex;align-items:center;justify-content:center;min-width:34px;height:30px;padding:0 8px;border-radius:999px;color:#24483e;font-size:11px;font-weight:800;letter-spacing:.05em;text-decoration:none;transition:.2s ease}
.bhv-language-switcher__item:hover{background:#edf4f1;color:#0f3d31}.bhv-language-switcher__item.is-active{background:var(--bhv-primary,#123d32);color:#fff;box-shadow:0 4px 12px rgba(18,61,50,.25)}
@media(max-width:900px){.bhv-language-switcher--header{margin-left:auto}.bhv-header__actions{gap:8px}.bhv-language-switcher__item{min-width:30px;height:28px;padding:0 6px}}
@media(max-width:480px){.bhv-language-switcher{gap:2px;padding:3px}.bhv-language-switcher__item{min-width:27px;height:26px;font-size:10px;padding:0 5px}}

/* V2.3 — clean responsive navigation and language controls */
.bhv-mobile-language-wrap{display:none}
@media(max-width:880px){
  .bhv-header{overflow:visible}
  .bhv-header>.bhv-container{min-height:72px;display:flex;align-items:center;gap:12px}
  .bhv-logo{flex:1;min-width:0;font-size:clamp(18px,5vw,26px);white-space:nowrap}
  .bhv-header__actions{margin-left:auto;display:flex;align-items:center;gap:8px;flex:0 0 auto}
  .bhv-language-switcher--header{display:none!important}
  .bhv-menu-toggle{width:44px;height:44px;border-radius:12px;border:1px solid rgba(18,61,50,.16);background:#fff;box-shadow:0 6px 18px rgba(15,48,39,.09);align-items:center;justify-content:center;color:var(--bhv-pine)}
  .bhv-primary-nav{display:none;position:absolute;left:16px;right:16px;top:calc(100% + 8px);z-index:999;background:#fff;border:1px solid rgba(18,61,50,.12);border-radius:18px;padding:12px;box-shadow:0 18px 45px rgba(12,42,34,.18);max-height:calc(100vh - 110px);overflow:auto}
  .bhv-primary-nav.is-open{display:block}
  .bhv-primary-nav>ul{display:flex!important;flex-direction:column!important;align-items:stretch!important;gap:4px!important;margin:0!important;padding:0!important}
  .bhv-primary-nav li{display:block!important;width:100%!important;margin:0!important}
  .bhv-primary-nav a{display:flex!important;align-items:center;justify-content:space-between;width:100%!important;min-height:46px;padding:11px 14px!important;border-radius:11px;color:#173e33!important;font-weight:700;text-decoration:none;background:transparent}
  .bhv-primary-nav a:hover,.bhv-primary-nav .current-menu-item>a{background:#edf5f1!important;color:#0d4b39!important}
  .bhv-primary-nav .bhv-submenu{position:static!important;display:none!important;width:100%!important;min-width:0!important;opacity:1!important;visibility:visible!important;transform:none!important;box-shadow:none!important;border:0!important;background:#f5f8f6!important;padding:5px!important;margin:3px 0 7px!important;border-radius:10px!important}
  .bhv-primary-nav .is-open>.bhv-submenu{display:block!important}
  .bhv-primary-nav .bhv-submenu a{min-height:40px;padding-left:20px!important;font-size:.92rem}
  .bhv-mobile-language-wrap{display:block;border-top:1px solid #e3ebe7;margin-top:10px;padding-top:12px}
  .bhv-language-switcher--mobile{display:grid!important;grid-template-columns:repeat(4,1fr);gap:7px;padding:0;border:0;background:transparent;box-shadow:none;border-radius:0}
  .bhv-language-switcher--mobile .bhv-language-switcher__item{height:40px;border:1px solid #c9d7d1;border-radius:10px;background:#fff;color:#36584e;font-size:12px}
  .bhv-language-switcher--mobile .bhv-language-switcher__item.is-active{background:#123d32;color:#fff;border-color:#123d32;box-shadow:none}
}
@media(max-width:420px){
  .bhv-header>.bhv-container{width:min(calc(100% - 24px),var(--bhv-container))}
  .bhv-logo{font-size:17px}
  .bhv-menu-toggle{width:42px;height:42px}
}

/* v2.4 multilingual URL + premium availability calendar */
.bhv-datepicker-wrap{position:relative;min-width:0}.bhv-datepicker-wrap>input{cursor:pointer;background-image:linear-gradient(45deg,transparent 50%,var(--bhv-pine) 50%),linear-gradient(135deg,var(--bhv-pine) 50%,transparent 50%);background-position:calc(100% - 17px) 50%,calc(100% - 12px) 50%;background-size:5px 5px,5px 5px;background-repeat:no-repeat;padding-right:34px!important}.bhv-datepicker{display:none;position:absolute;z-index:10050;top:calc(100% + 10px);left:0;width:min(390px,calc(100vw - 32px));padding:18px;background:#fff;border:1px solid rgba(16,55,47,.14);border-radius:20px;box-shadow:0 24px 70px rgba(12,42,36,.22)}.bhv-datepicker.is-open{display:block;animation:bhvCalendarIn .18s ease-out}.bhv-datepicker__top{border-bottom:1px solid #e7ece9;padding-bottom:12px;margin-bottom:12px}.bhv-datepicker__head{display:flex;align-items:center;justify-content:space-between;gap:12px;margin:0}.bhv-datepicker__head strong{font-size:1rem;color:var(--bhv-pine)}.bhv-datepicker__head button{width:38px;height:38px;border:1px solid #dce5e1;border-radius:12px;background:#f7faf8;color:var(--bhv-pine);font-size:1.5rem;line-height:1;cursor:pointer}.bhv-datepicker__head button:hover{background:var(--bhv-pine);color:#fff}.bhv-datepicker__legend{display:flex;gap:16px;align-items:center;margin-top:10px;font-size:.72rem;color:#596963}.bhv-datepicker__legend span{display:flex;align-items:center;gap:6px}.bhv-datepicker__legend i{width:10px;height:10px;border-radius:3px;display:inline-block}.bhv-datepicker__legend i.is-available{background:#dff3e6;border:1px solid #8fc9a2}.bhv-datepicker__legend i.is-blocked{background:#d7dbd9;border:1px solid #b7bfbb}.bhv-datepicker__grid{display:grid;grid-template-columns:repeat(7,1fr);gap:6px;text-align:center}.bhv-datepicker__grid .dow{font-size:.7rem;font-weight:800;color:#87938e;padding:5px 0}.bhv-datepicker__day{aspect-ratio:1;border:1px solid transparent;border-radius:10px;background:#fff;color:#173d34;font-weight:700;font-size:.82rem;cursor:pointer;transition:.15s ease}.bhv-datepicker__day.is-available{background:#e8f7ed;border-color:#c9ead4}.bhv-datepicker__day.is-available:hover{background:#bfe5cb;border-color:#79b88d;transform:translateY(-1px)}.bhv-datepicker__day.is-blocked,.bhv-datepicker__day.is-past{background:#ecefed;color:#a2aaa6;border-color:#e0e4e2;cursor:not-allowed;text-decoration:none}.bhv-datepicker__day.is-selected{background:var(--bhv-clay)!important;border-color:var(--bhv-clay)!important;color:#fff!important;box-shadow:0 5px 14px rgba(190,102,29,.28)}.bhv-datepicker__day.is-empty{visibility:hidden}@keyframes bhvCalendarIn{from{opacity:0;transform:translateY(-5px)}to{opacity:1;transform:none}}
@media(min-width:900px){.bhv-search-widget .bhv-datepicker{left:50%;transform:translateX(-50%)}.bhv-search-widget .bhv-search-field:nth-of-type(3) .bhv-datepicker{left:auto;right:0;transform:none}}
@media(max-width:640px){.bhv-datepicker{position:fixed;left:12px!important;right:12px!important;top:auto!important;bottom:16px;width:auto;transform:none!important;border-radius:22px;padding:16px;max-height:72vh;overflow:auto}.bhv-datepicker__day{font-size:.78rem}.bhv-datepicker__grid{gap:5px}}

/* =========================================================
   V2.4.1 — HERO RESERVATION BAR LAYOUT FIX
   Prevents field overlap and horizontal drift at desktop widths.
   ========================================================= */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

.bhv-hero > .bhv-container,
.bhv-hero .bhv-container {
  min-width: 0;
  max-width: min(var(--bhv-container), calc(100% - 40px));
  margin-inline: auto;
}

.bhv-search-widget {
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  grid-template-columns: minmax(170px, 1.35fr) minmax(145px, 1fr) minmax(145px, 1fr) minmax(125px, .8fr) minmax(110px, auto);
  gap: clamp(10px, 1.15vw, 18px);
  padding: clamp(20px, 2vw, 30px);
  border: 1px solid rgba(27,58,47,.08);
  box-shadow: 0 24px 70px rgba(15,38,32,.18);
}

.bhv-search-widget > *,
.bhv-search-field,
.bhv-datepicker-wrap {
  min-width: 0;
}

.bhv-search-field select,
.bhv-search-field input,
.bhv-search-widget .bhv-btn {
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  height: 54px;
}

.bhv-search-field select,
.bhv-search-field input {
  padding-inline: 14px 34px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.bhv-search-widget .bhv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding-inline: 20px;
  white-space: nowrap;
  border-radius: 12px;
}

@media (max-width: 1240px) and (min-width: 881px) {
  .bhv-search-widget {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    align-items: end;
  }
  .bhv-search-widget .bhv-search-field:nth-of-type(1) { grid-column: span 4; }
  .bhv-search-widget .bhv-search-field:nth-of-type(2),
  .bhv-search-widget .bhv-search-field:nth-of-type(3) { grid-column: span 4; }
  .bhv-search-widget .bhv-search-field:nth-of-type(4) { grid-column: span 6; }
  .bhv-search-widget > .bhv-btn { grid-column: span 6; }
}

@media (max-width: 880px) {
  .bhv-hero > .bhv-container,
  .bhv-hero .bhv-container {
    max-width: min(var(--bhv-container), calc(100% - 28px));
  }
  .bhv-search-widget {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: 22px;
  }
  .bhv-search-widget > .bhv-btn {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .bhv-search-widget {
    grid-template-columns: 1fr;
    gap: 13px;
    padding: 18px;
    border-radius: 20px;
  }
  .bhv-search-widget > .bhv-btn {
    grid-column: auto;
  }
  .bhv-search-field label {
    font-size: .72rem;
    letter-spacing: .055em;
  }
}

/* =========================================================
   V2.4.2 — COMPACT MOBILE HEADER + ABOVE-THE-FOLD HERO
   ========================================================= */
@media (max-width: 880px) {
  /* Mobile header: language controls replace phone/CTA clutter */
  .bhv-topbar { display: none !important; }
  .bhv-header { position: relative; z-index: 1000; }
  .bhv-header > .bhv-container {
    min-height: 64px;
    width: min(calc(100% - 20px), var(--bhv-container));
    gap: 7px;
  }
  .bhv-logo {
    flex: 1 1 auto;
    max-width: 148px;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 18px;
    letter-spacing: -.025em;
  }
  .bhv-header__actions {
    flex: 0 0 auto;
    gap: 6px;
  }
  .bhv-header__phone,
  .bhv-header__actions > .bhv-btn,
  .bhv-header__actions > .hide-mobile {
    display: none !important;
  }
  .bhv-language-switcher--header {
    display: inline-flex !important;
    gap: 1px;
    padding: 2px;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(14,45,36,.08);
  }
  .bhv-language-switcher--header .bhv-language-switcher__item {
    min-width: 25px;
    width: 25px;
    height: 27px;
    padding: 0;
    border-radius: 9px;
    font-size: 9px;
    letter-spacing: 0;
  }
  .bhv-menu-toggle {
    display: inline-flex !important;
    width: 40px;
    height: 40px;
    border-radius: 11px;
  }
  /* Do not repeat the language bar inside the opened mobile menu. */
  .bhv-mobile-language-wrap { display: none !important; }

  /* Compact hero: all key content visible without a long first scroll. */
  .bhv-hero {
    display: block;
    min-height: calc(100svh - 64px);
    height: auto;
    padding: 0 0 18px;
    background-position: 58% center;
  }
  .bhv-hero__overlay {
    background: linear-gradient(180deg, rgba(10,34,28,.52) 0%, rgba(10,34,28,.80) 68%, rgba(10,34,28,.94) 100%);
  }
  .bhv-hero > .bhv-container,
  .bhv-hero .bhv-container {
    width: min(calc(100% - 28px), var(--bhv-container));
    max-width: min(calc(100% - 28px), var(--bhv-container));
  }
  .bhv-hero__content {
    padding: 28px 0 14px;
  }
  .bhv-hero__eyebrow {
    margin-bottom: 10px;
    gap: 8px;
    font-size: .68rem;
    letter-spacing: .17em;
  }
  .bhv-hero__eyebrow::before { width: 24px; }
  .bhv-hero h1 {
    max-width: 100%;
    margin: 0 0 10px;
    font-size: clamp(2rem, 9.3vw, 2.75rem);
    line-height: 1.01;
    letter-spacing: -.025em;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }
  .bhv-hero p.bhv-hero__sub {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    max-width: 100%;
    margin: 0;
    font-size: .94rem;
    line-height: 1.45;
  }
  .bhv-hero__cta { display: none !important; }

  /* Two-column booking panel instead of a tall vertical stack. */
  .bhv-search-widget {
    margin-top: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px 10px;
    padding: 13px;
    border-radius: 17px;
    box-shadow: 0 16px 42px rgba(9,30,25,.22);
    align-items: end;
  }
  .bhv-search-field { gap: 4px; }
  .bhv-search-field label {
    min-height: 14px;
    font-size: .61rem;
    line-height: 1.15;
    letter-spacing: .045em;
  }
  .bhv-search-field select,
  .bhv-search-field input,
  .bhv-search-widget .bhv-btn {
    height: 43px;
    min-height: 43px;
    border-radius: 10px;
    font-size: .84rem;
  }
  .bhv-search-field select,
  .bhv-search-field input {
    padding: 0 27px 0 10px;
  }
  .bhv-search-widget > .bhv-btn {
    grid-column: 1 / -1;
    width: 100%;
    padding: 0 14px;
  }
  .bhv-trust-row { display: none !important; }
}

@media (max-width: 390px) {
  .bhv-header > .bhv-container { width: calc(100% - 14px); gap: 4px; }
  .bhv-logo { max-width: 118px; font-size: 16px; }
  .bhv-language-switcher--header .bhv-language-switcher__item {
    min-width: 23px;
    width: 23px;
    height: 26px;
    font-size: 8.5px;
  }
  .bhv-menu-toggle { width: 38px; height: 38px; }
  .bhv-hero > .bhv-container,
  .bhv-hero .bhv-container {
    width: calc(100% - 20px);
    max-width: calc(100% - 20px);
  }
  .bhv-hero__content { padding-top: 22px; }
  .bhv-hero h1 { font-size: clamp(1.78rem, 9.1vw, 2.2rem); }
  .bhv-hero p.bhv-hero__sub { font-size: .86rem; }
  .bhv-search-widget { padding: 11px; gap: 7px 8px; }
  .bhv-search-field select,
  .bhv-search-field input,
  .bhv-search-widget .bhv-btn {
    height: 40px;
    min-height: 40px;
    font-size: .78rem;
  }
}

/* When logged in on mobile, keep the compact hero calculation accurate. */
@media (max-width: 782px) {
  body.admin-bar .bhv-hero { min-height: calc(100svh - 110px); }
}

/* =========================================================
   V2.4.3 — COMPACT TWO-COLUMN MOBILE FEATURE/PROCESS GRIDS
   ========================================================= */
@media (max-width: 640px) {
  /* Keep the high-value feature cards visible without a long vertical scroll. */
  .bhv-amenity-grid,
  .bhv-process {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  .bhv-amenity-card {
    min-height: 0;
    padding: 18px 12px 16px;
    border-radius: 18px;
  }
  .bhv-amenity-card__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 11px;
  }
  .bhv-amenity-card__icon[style] { font-size: 1.3rem !important; }
  .bhv-amenity-card h3 {
    margin-bottom: 6px;
    font-size: .96rem;
    line-height: 1.18;
  }
  .bhv-amenity-card p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    font-size: .78rem;
    line-height: 1.4;
  }

  /* Process steps become compact 2-up cards for faster scanning. */
  .bhv-process-step {
    min-height: 154px;
    padding: 16px 14px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 17px;
    background: rgba(255,255,255,.045);
  }
  .bhv-process-step__num {
    margin-bottom: 8px;
    font-size: 2rem;
    line-height: 1;
    opacity: .72;
  }
  .bhv-process-step h3 {
    margin-bottom: 6px;
    font-size: .98rem;
    line-height: 1.2;
  }
  .bhv-process-step p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    font-size: .76rem;
    line-height: 1.4;
  }

  /* Reduce surrounding vertical space so both sections feel intentionally compact. */
  .bhv-section:has(.bhv-amenity-grid),
  .bhv-section:has(.bhv-process) {
    padding-top: 42px;
    padding-bottom: 42px;
  }
  .bhv-section:has(.bhv-amenity-grid) .bhv-section-head,
  .bhv-section:has(.bhv-process) .bhv-section-head {
    margin-bottom: 24px;
  }
  .bhv-section:has(.bhv-amenity-grid) .bhv-section-head h2,
  .bhv-section:has(.bhv-process) .bhv-section-head h2 {
    font-size: clamp(1.7rem, 7vw, 2.1rem);
    line-height: 1.08;
  }
}

@media (max-width: 360px) {
  .bhv-amenity-grid,
  .bhv-process { gap: 9px !important; }
  .bhv-amenity-card { padding: 15px 9px 13px; }
  .bhv-amenity-card h3,
  .bhv-process-step h3 { font-size: .88rem; }
  .bhv-amenity-card p,
  .bhv-process-step p { font-size: .71rem; }
  .bhv-process-step { min-height: 146px; padding: 14px 10px; }
}

/* =========================================================
   V2.4.4 — MOBILE CONTRAST + COMPACT TESTIMONIALS
   ========================================================= */
@media (max-width: 640px) {
  /* Restore strong contrast inside the dark process section. */
  .bhv-section--pine .bhv-process-step h3 {
    color: #ffffff !important;
    opacity: 1 !important;
  }
  .bhv-section--pine .bhv-process-step p {
    color: rgba(255,255,255,.82) !important;
    opacity: 1 !important;
  }
  .bhv-section--pine .bhv-process-step__num {
    color: #d6b451 !important;
    opacity: 1 !important;
  }
  .bhv-section--pine .bhv-eyebrow {
    color: #e2c35f !important;
  }
  .bhv-section--pine .bhv-section-head h2 {
    color: #ffffff !important;
  }

  /* Show testimonials in a compact two-column mobile grid. */
  .bhv-testimonial-track {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }
  .bhv-testimonial-card {
    min-width: 0;
    padding: 17px 13px 15px;
    border-radius: 18px;
  }
  .bhv-testimonial-card__stars {
    margin-bottom: 9px;
    font-size: .78rem;
    letter-spacing: 1px;
    white-space: nowrap;
  }
  .bhv-testimonial-card p.bhv-quote {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    min-height: 5.45em;
    margin-bottom: 12px;
    font-size: .76rem;
    line-height: 1.36;
  }
  .bhv-testimonial-card__author {
    gap: 8px;
    align-items: center;
  }
  .bhv-testimonial-card__author > div:first-child {
    flex: 0 0 34px;
    width: 34px !important;
    height: 34px !important;
    font-size: .8rem;
  }
  .bhv-testimonial-card__author strong {
    font-size: .78rem;
    line-height: 1.15;
  }
  .bhv-testimonial-card__author span {
    display: block;
    margin-top: 2px;
    font-size: .68rem;
    line-height: 1.2;
  }
  .bhv-section:has(.bhv-testimonial-track) {
    padding-top: 42px;
    padding-bottom: 42px;
  }
  .bhv-section:has(.bhv-testimonial-track) .bhv-section-head {
    margin-bottom: 22px;
  }
}

@media (max-width: 360px) {
  .bhv-testimonial-track { gap: 9px !important; }
  .bhv-testimonial-card { padding: 14px 10px 13px; }
  .bhv-testimonial-card p.bhv-quote { font-size: .71rem; }
}


/* =========================================================
   V2.4.6 — SITE ICON + CUSTOM LOGO BRAND LOCKUP
   ========================================================= */
.bhv-header .bhv-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 1 auto;
  gap: 11px;
  min-width: 0;
  max-width: min(360px, 32vw);
  line-height: 1;
  text-decoration: none;
}
.bhv-header .bhv-brand__icon,
.bhv-header .bhv-brand__logo {
  display: block;
  height: 48px;
  max-height: 48px;
  width: auto;
  margin: 0;
  object-fit: contain;
  object-position: center;
}
.bhv-header .bhv-brand__icon {
  flex: 0 0 48px;
  width: 48px;
  border-radius: 10px;
}
.bhv-header .bhv-brand__logo {
  flex: 0 1 auto;
  max-width: 245px;
}
.bhv-header .bhv-brand__text {
  display: inline-block;
  white-space: nowrap;
  font-family: var(--bhv-font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--bhv-pine-dark);
}
/* WordPress'in custom-logo sınıfındaki varsayılan ölçüleri etkisizleştir. */
.bhv-header .bhv-brand img.custom-logo { height: 48px; width: auto; max-width: 245px; }

@media (max-width: 1100px) {
  .bhv-header .bhv-brand { max-width: 265px; gap: 8px; }
  .bhv-header .bhv-brand__icon,
  .bhv-header .bhv-brand__logo,
  .bhv-header .bhv-brand img.custom-logo { height: 42px; max-height: 42px; }
  .bhv-header .bhv-brand__icon { width: 42px; flex-basis: 42px; }
  .bhv-header .bhv-brand__logo,
  .bhv-header .bhv-brand img.custom-logo { max-width: 190px; }
}

@media (max-width: 880px) {
  .bhv-header .bhv-brand {
    flex: 1 1 auto;
    max-width: min(190px, 46vw);
    gap: 6px;
    overflow: visible;
  }
  .bhv-header .bhv-brand__icon,
  .bhv-header .bhv-brand__logo,
  .bhv-header .bhv-brand img.custom-logo { height: 34px; max-height: 34px; }
  .bhv-header .bhv-brand__icon {
    width: 34px;
    flex: 0 0 34px;
    border-radius: 8px;
  }
  .bhv-header .bhv-brand__logo,
  .bhv-header .bhv-brand img.custom-logo {
    max-width: 142px;
    min-width: 0;
  }
  .bhv-header .bhv-brand__text { font-size: 16px; }
}

@media (max-width: 390px) {
  .bhv-header .bhv-brand { max-width: 148px; gap: 5px; }
  .bhv-header .bhv-brand__icon,
  .bhv-header .bhv-brand__logo,
  .bhv-header .bhv-brand img.custom-logo { height: 30px; max-height: 30px; }
  .bhv-header .bhv-brand__icon { width: 30px; flex-basis: 30px; }
  .bhv-header .bhv-brand__logo,
  .bhv-header .bhv-brand img.custom-logo { max-width: 110px; }
}

/* =========================================================
   V2.4.7 — FOOTER BRAND LOCKUP + PROCESS CONTRAST
   ========================================================= */
/* Footer uses the same Site Icon + Custom Logo structure as the header. */
.bhv-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  max-width: 100%;
  min-width: 0;
  color: #fff;
  line-height: 1;
  text-decoration: none;
}
.bhv-footer-brand__icon,
.bhv-footer-brand__logo {
  display: block;
  width: auto;
  height: 56px;
  max-height: 56px;
  margin: 0;
  object-fit: contain;
  object-position: center;
}
.bhv-footer-brand__icon {
  width: 56px;
  flex: 0 0 56px;
  border-radius: 11px;
}
.bhv-footer-brand__logo {
  flex: 0 1 auto;
  max-width: 260px;
}
.bhv-footer-brand__text {
  font-family: var(--bhv-font-display);
  font-size: 1.55rem;
  font-weight: 600;
  white-space: nowrap;
  color: #fff;
}
.bhv-footer-brand__text span { color: var(--bhv-gold); }

/* Keep all copy readable on the pine process section at every viewport size. */
.bhv-section--pine .bhv-process-step h3 {
  color: #fff;
  opacity: 1;
}
.bhv-section--pine .bhv-process-step p {
  color: rgba(255,255,255,.80);
  opacity: 1;
}
.bhv-section--pine .bhv-process-step__num {
  color: #d6b451;
  opacity: .92;
}
.bhv-section--pine .bhv-section-head h2 { color: #fff; }
.bhv-section--pine .bhv-eyebrow { color: #e2c35f; }

@media (max-width: 760px) {
  .bhv-footer-brand { gap: 9px; }
  .bhv-footer-brand__icon,
  .bhv-footer-brand__logo {
    height: 44px;
    max-height: 44px;
  }
  .bhv-footer-brand__icon {
    width: 44px;
    flex-basis: 44px;
    border-radius: 9px;
  }
  .bhv-footer-brand__logo { max-width: 205px; }
  .bhv-footer-brand__text { font-size: 1.25rem; }
}

@media (max-width: 390px) {
  .bhv-footer-brand__icon,
  .bhv-footer-brand__logo {
    height: 38px;
    max-height: 38px;
  }
  .bhv-footer-brand__icon { width: 38px; flex-basis: 38px; }
  .bhv-footer-brand__logo { max-width: 170px; }
}


/* v2.4.8 — Takvim dolu gün kontrastı ve açık kalma davranışı */
.bhv-datepicker__day.is-blocked {
  background: #5d6360 !important;
  border-color: #4c514f !important;
  color: #ffffff !important;
  opacity: 1 !important;
  cursor: not-allowed;
  text-decoration: none !important;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}
.bhv-datepicker__day.is-blocked:hover {
  background: #5d6360 !important;
  color: #ffffff !important;
  transform: none !important;
}
.bhv-datepicker__legend i.is-blocked {
  background: #5d6360 !important;
  border-color: #4c514f !important;
}

/* =========================================================
   V2.4.9 — LIGHT FOOTER PALETTE
   ========================================================= */
.bhv-footer {
  background: #f4eee2;
  color: var(--bhv-pine-dark);
  border-top: 1px solid rgba(18, 67, 55, .12);
}
.bhv-footer h4 {
  color: var(--bhv-pine-dark);
}
.bhv-footer__brand p,
.bhv-footer__newsletter p,
.bhv-footer address,
.bhv-footer ul li,
.bhv-footer__bottom {
  color: #52635d;
  opacity: 1;
}
.bhv-footer a {
  color: #40544d;
}
.bhv-footer ul li a:hover {
  color: var(--bhv-clay);
}
.bhv-footer-brand,
.bhv-footer-brand__text {
  color: var(--bhv-pine-dark);
}
.bhv-footer-brand__text span {
  color: var(--bhv-clay);
}
.bhv-footer__social a {
  background: rgba(18, 67, 55, .09);
  color: var(--bhv-pine-dark);
  border: 1px solid rgba(18, 67, 55, .10);
}
.bhv-footer__social a:hover {
  background: var(--bhv-pine-dark);
  color: #fff;
}
.bhv-footer__newsletter input[type="email"] {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--bhv-radius-sm);
  border: 1px solid rgba(18, 67, 55, .20);
  margin-bottom: 10px;
  background: #fff;
  color: var(--bhv-pine-dark);
  box-shadow: 0 5px 18px rgba(18, 67, 55, .05);
}
.bhv-footer__newsletter input[type="email"]::placeholder {
  color: #82908b;
  opacity: 1;
}
.bhv-footer__newsletter input[type="email"]:focus {
  border-color: var(--bhv-clay);
  box-shadow: 0 0 0 3px rgba(190, 105, 32, .12);
  outline: none;
}
.bhv-consent--footer {
  color: #52635d;
}
.bhv-newsletter-msg.is-success {
  color: #24734f;
}
.bhv-newsletter-msg.is-error {
  color: #a83f34;
}
.bhv-footer__bottom {
  border-top-color: rgba(18, 67, 55, .14);
}

@media (max-width: 760px) {
  .bhv-footer__top {
    padding-top: 48px;
  }
}

/* =========================================================
   V2.5.0 — NOTEBOOK / DESKTOP HERO FIT & TYPOGRAPHY
   Keeps the entire first-screen composition inside common
   1366×768 notebooks without changing the mobile layout.
   ========================================================= */
@media (min-width: 881px) {
  .bhv-hero {
    min-height: 600px;
    height: clamp(600px, calc(100svh - 132px), 800px);
    max-height: 800px;
    align-items: stretch;
  }

  body.admin-bar .bhv-hero {
    height: clamp(570px, calc(100svh - 164px), 770px);
    min-height: 570px;
  }

  .bhv-hero > .bhv-container {
    position: absolute;
    inset: 0;
    width: min(calc(100% - 40px), var(--bhv-container));
    max-width: var(--bhv-container);
  }

  .bhv-hero > .bhv-container:first-of-type {
    z-index: 2;
    display: flex;
    align-items: center;
    pointer-events: none;
  }

  .bhv-hero > .bhv-container:first-of-type a,
  .bhv-hero > .bhv-container:first-of-type button {
    pointer-events: auto;
  }

  .bhv-hero__content {
    width: min(47%, 590px);
    padding: 42px 0 58px;
  }

  .bhv-hero__eyebrow {
    margin-bottom: 14px;
    font-size: .72rem;
    letter-spacing: .19em;
  }

  .bhv-hero h1 {
    max-width: 590px;
    margin-bottom: 18px;
    font-size: clamp(2.45rem, 3.55vw, 3.75rem);
    line-height: 1.07;
    letter-spacing: -.022em;
  }

  .bhv-hero p.bhv-hero__sub {
    max-width: 500px;
    margin-bottom: 24px;
    font-size: clamp(.94rem, 1.1vw, 1.05rem);
    line-height: 1.55;
  }

  .bhv-hero__cta {
    gap: 12px;
    margin-bottom: 0;
  }

  .bhv-hero__cta .bhv-btn {
    min-height: 48px;
    padding: 0 22px;
  }

  .bhv-hero > .bhv-container:nth-of-type(2) {
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    padding-top: 62px;
    pointer-events: none;
  }

  .bhv-hero > .bhv-container:nth-of-type(2) > * {
    pointer-events: auto;
  }

  .bhv-search-widget {
    width: min(59%, 760px);
    margin: 0;
    padding: 20px;
    gap: 11px;
    grid-template-columns: minmax(150px, 1.35fr) minmax(125px, 1fr) minmax(125px, 1fr) minmax(105px, .78fr) minmax(94px, auto);
    border-radius: 22px;
  }

  .bhv-search-field {
    gap: 6px;
  }

  .bhv-search-field label {
    font-size: .68rem;
    letter-spacing: .055em;
  }

  .bhv-search-field select,
  .bhv-search-field input,
  .bhv-search-widget .bhv-btn {
    height: 48px;
    min-height: 48px;
    font-size: .88rem;
  }

  .bhv-search-field select,
  .bhv-search-field input {
    padding-inline: 12px 30px;
  }

  .bhv-search-widget .bhv-btn {
    padding-inline: 16px;
  }

  .bhv-trust-row {
    width: min(59%, 760px);
    justify-content: space-between;
    gap: 16px;
    margin-top: 26px;
    padding-top: 20px;
  }

  .bhv-trust-row__num {
    font-size: 1.55rem;
  }

  .bhv-trust-row__label {
    font-size: .74rem;
  }
}

/* Notebook widths: keep one-line reservation bar fully visible. */
@media (min-width: 881px) and (max-width: 1440px) {
  .bhv-hero > .bhv-container {
    width: min(calc(100% - 32px), 1180px);
  }

  .bhv-hero__content {
    width: 44%;
    max-width: 520px;
  }

  .bhv-hero h1 {
    max-width: 520px;
    font-size: clamp(2.25rem, 3.55vw, 3.2rem);
    line-height: 1.06;
  }

  .bhv-hero p.bhv-hero__sub {
    max-width: 460px;
    font-size: .92rem;
  }

  .bhv-search-widget,
  .bhv-trust-row {
    width: 58%;
    max-width: 690px;
  }

  .bhv-search-widget {
    grid-template-columns: minmax(132px, 1.28fr) minmax(112px, 1fr) minmax(112px, 1fr) minmax(92px, .78fr) minmax(86px, auto);
    padding: 17px;
    gap: 9px;
  }

  .bhv-search-field select,
  .bhv-search-field input,
  .bhv-search-widget .bhv-btn {
    height: 46px;
    min-height: 46px;
    font-size: .82rem;
  }

  .bhv-trust-row {
    margin-top: 20px;
    gap: 10px;
  }

  .bhv-trust-row__item {
    gap: 5px;
  }

  .bhv-trust-row__num {
    font-size: 1.4rem;
  }

  .bhv-trust-row__label {
    font-size: .68rem;
  }
}

/* Short notebook screens (typically 1366×768). */
@media (min-width: 881px) and (max-height: 820px) {
  .bhv-hero {
    min-height: 560px;
    height: calc(100svh - 126px);
  }

  body.admin-bar .bhv-hero {
    min-height: 540px;
    height: calc(100svh - 158px);
  }

  .bhv-hero__content {
    padding-top: 26px;
    padding-bottom: 34px;
  }

  .bhv-hero h1 {
    margin-bottom: 14px;
    font-size: clamp(2.15rem, 3.35vw, 2.95rem);
  }

  .bhv-hero p.bhv-hero__sub {
    margin-bottom: 18px;
    font-size: .88rem;
  }

  .bhv-hero__cta .bhv-btn {
    min-height: 44px;
  }

  .bhv-hero > .bhv-container:nth-of-type(2) {
    padding-top: 42px;
  }

  .bhv-search-widget {
    padding: 15px;
  }

  .bhv-search-field select,
  .bhv-search-field input,
  .bhv-search-widget .bhv-btn {
    height: 44px;
    min-height: 44px;
  }

  .bhv-trust-row {
    margin-top: 16px;
    padding-top: 16px;
  }
}


/* =========================================================
   V2.5.1 — HERO LAYOUT HOTFIX
   Explicit wrappers replace fragile nth-of-type positioning.
   Mobile rules below 880px remain untouched.
   ========================================================= */
@media (min-width: 881px) {
  .bhv-hero {
    min-height: 560px;
    height: clamp(560px, calc(100svh - 132px), 760px);
    max-height: 760px;
    display: block;
  }

  body.admin-bar .bhv-hero {
    min-height: 540px;
    height: clamp(540px, calc(100svh - 164px), 730px);
  }

  .bhv-hero > .bhv-container {
    position: absolute;
    inset: 0;
    width: min(calc(100% - 48px), 1240px);
    max-width: 1240px;
    margin-inline: auto;
    padding: 0;
  }

  .bhv-hero__copy-wrap {
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    pointer-events: none;
  }

  .bhv-hero__copy-wrap a,
  .bhv-hero__copy-wrap button {
    pointer-events: auto;
  }

  .bhv-hero__content {
    width: 43%;
    max-width: 520px;
    padding: 28px 0 36px;
  }

  .bhv-hero__eyebrow {
    margin-bottom: 12px;
    font-size: .72rem;
    letter-spacing: .18em;
  }

  .bhv-hero h1 {
    max-width: 520px;
    margin: 0 0 16px;
    font-size: clamp(2.4rem, 3.35vw, 3.45rem);
    line-height: 1.06;
    letter-spacing: -.02em;
  }

  .bhv-hero p.bhv-hero__sub {
    max-width: 490px;
    margin: 0 0 20px;
    font-size: clamp(.9rem, 1vw, 1rem);
    line-height: 1.5;
  }

  .bhv-hero__cta {
    gap: 10px;
    margin: 0;
  }

  .bhv-hero__cta .bhv-btn {
    min-height: 44px;
    padding: 0 20px;
    font-size: .9rem;
  }

  .bhv-hero__booking-wrap {
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    padding-left: 47%;
    pointer-events: none;
  }

  .bhv-hero__booking-wrap > * {
    pointer-events: auto;
  }

  .bhv-search-widget {
    width: 100%;
    max-width: 690px;
    margin: 0;
    padding: 18px;
    gap: 10px;
    grid-template-columns: minmax(145px, 1.35fr) minmax(115px, 1fr) minmax(115px, 1fr) minmax(95px, .78fr) auto;
    border-radius: 22px;
  }

  .bhv-search-field {
    min-width: 0;
    gap: 6px;
  }

  .bhv-search-field label {
    font-size: .67rem;
    letter-spacing: .05em;
    white-space: nowrap;
  }

  .bhv-search-field select,
  .bhv-search-field input,
  .bhv-search-widget .bhv-btn {
    width: 100%;
    min-width: 0;
    height: 46px;
    min-height: 46px;
    font-size: .82rem;
  }

  .bhv-search-field select,
  .bhv-search-field input {
    padding: 0 30px 0 11px;
    text-overflow: ellipsis;
  }

  .bhv-search-widget .bhv-btn {
    padding-inline: 16px;
    white-space: nowrap;
  }

  .bhv-trust-row {
    width: 100%;
    max-width: 690px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin: 22px 0 0;
    padding: 18px 0 0;
  }

  .bhv-trust-row__item {
    min-width: 0;
    display: flex;
    align-items: baseline;
    gap: 5px;
  }

  .bhv-trust-row__num {
    flex: 0 0 auto;
    font-size: 1.42rem;
  }

  .bhv-trust-row__label {
    min-width: 0;
    font-size: .68rem;
    line-height: 1.25;
  }
}

@media (min-width: 881px) and (max-width: 1440px) {
  .bhv-hero > .bhv-container {
    width: min(calc(100% - 40px), 1160px);
  }

  .bhv-hero__content {
    width: 41%;
    max-width: 455px;
  }

  .bhv-hero h1 {
    max-width: 455px;
    font-size: clamp(2.15rem, 3.2vw, 2.8rem);
  }

  .bhv-hero p.bhv-hero__sub {
    max-width: 430px;
    font-size: .88rem;
  }

  .bhv-hero__booking-wrap {
    padding-left: 43%;
  }

  .bhv-search-widget,
  .bhv-trust-row {
    max-width: 640px;
  }

  .bhv-search-widget {
    padding: 15px;
    gap: 8px;
    grid-template-columns: minmax(132px, 1.32fr) minmax(106px, 1fr) minmax(106px, 1fr) minmax(86px, .72fr) auto;
  }

  .bhv-search-field select,
  .bhv-search-field input,
  .bhv-search-widget .bhv-btn {
    height: 44px;
    min-height: 44px;
    font-size: .78rem;
  }

  .bhv-search-widget .bhv-btn {
    padding-inline: 13px;
  }

  .bhv-trust-row {
    margin-top: 18px;
    padding-top: 15px;
    gap: 8px;
  }

  .bhv-trust-row__num { font-size: 1.3rem; }
  .bhv-trust-row__label { font-size: .63rem; }
}

@media (min-width: 881px) and (max-width: 1180px) {
  .bhv-hero__content {
    width: 39%;
    max-width: 390px;
  }

  .bhv-hero h1 {
    max-width: 390px;
    font-size: clamp(1.95rem, 3.1vw, 2.4rem);
  }

  .bhv-hero__booking-wrap {
    padding-left: 40%;
  }

  .bhv-search-widget {
    grid-template-columns: 1.25fr 1fr 1fr .72fr auto;
  }
}

@media (min-width: 881px) and (max-height: 820px) {
  .bhv-hero {
    min-height: 520px;
    height: calc(100svh - 126px);
  }

  body.admin-bar .bhv-hero {
    min-height: 500px;
    height: calc(100svh - 158px);
  }

  .bhv-hero__content {
    padding-top: 16px;
    padding-bottom: 20px;
  }

  .bhv-hero h1 {
    margin-bottom: 12px;
  }

  .bhv-hero p.bhv-hero__sub {
    margin-bottom: 15px;
  }

  .bhv-trust-row {
    margin-top: 14px;
    padding-top: 13px;
  }
}

/* =========================================================
   V2.5.2 — TABLET CALENDAR MODAL / LAYERING FIX
   Keep the availability calendar above the hero and following
   sections while the page is scrolled on tablets.
   ========================================================= */
@media (max-width: 1100px) {
  body.bhv-calendar-modal-open {
    overflow: hidden;
  }

  .bhv-datepicker-backdrop {
    position: fixed;
    inset: 0;
    z-index: 2147483000;
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: rgba(8, 31, 26, .48);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    cursor: default;
  }

  .bhv-datepicker.is-tablet-modal {
    position: fixed !important;
    z-index: 2147483001 !important;
    top: 50% !important;
    left: 50% !important;
    right: auto !important;
    bottom: auto !important;
    width: min(430px, calc(100vw - 40px)) !important;
    max-height: min(680px, calc(100dvh - 48px));
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translate(-50%, -50%) !important;
    margin: 0 !important;
    border-radius: 22px;
    box-shadow: 0 30px 90px rgba(4, 24, 19, .38);
  }

  .bhv-datepicker.is-tablet-modal .bhv-datepicker__day {
    min-height: 42px;
  }
}


/* =========================================================
   V2.5.3 — MOBILE + TABLET CALENDAR TRUE TOP-LAYER MODAL
   The calendar is portaled to <body> by booking.js on screens
   up to 1100px, so no hero/container overflow can clip it.
   ========================================================= */
@media (max-width: 1100px) {
  html.bhv-calendar-modal-open,
  body.bhv-calendar-modal-open {
    overflow: hidden !important;
    overscroll-behavior: none;
  }

  .bhv-datepicker-backdrop {
    position: fixed !important;
    inset: 0 !important;
    z-index: 2147483600 !important;
    display: block !important;
    width: 100vw !important;
    height: 100dvh !important;
    min-height: 100vh;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: rgba(7, 27, 23, .58) !important;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }

  body > .bhv-datepicker.is-tablet-modal {
    position: fixed !important;
    z-index: 2147483601 !important;
    top: 50dvh !important;
    left: 50vw !important;
    right: auto !important;
    bottom: auto !important;
    display: block !important;
    width: min(440px, calc(100vw - 24px)) !important;
    max-width: calc(100vw - 24px) !important;
    max-height: calc(100dvh - 28px) !important;
    margin: 0 !important;
    padding: 16px !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    overscroll-behavior: contain;
    transform: translate(-50%, -50%) !important;
    border-radius: 20px !important;
    box-shadow: 0 28px 90px rgba(3, 20, 16, .48) !important;
    isolation: isolate;
    -webkit-overflow-scrolling: touch;
  }

  body > .bhv-datepicker.is-tablet-modal .bhv-datepicker__top {
    position: sticky;
    top: -16px;
    z-index: 2;
    margin: -16px -16px 12px;
    padding: 16px 16px 12px;
    background: #fff;
    border-radius: 20px 20px 0 0;
  }
}

@media (max-width: 640px) {
  body > .bhv-datepicker.is-tablet-modal {
    top: max(12px, env(safe-area-inset-top)) !important;
    bottom: max(12px, env(safe-area-inset-bottom)) !important;
    left: 12px !important;
    right: 12px !important;
    width: auto !important;
    max-width: none !important;
    max-height: none !important;
    transform: none !important;
    border-radius: 18px !important;
    padding: 14px !important;
  }

  body > .bhv-datepicker.is-tablet-modal .bhv-datepicker__top {
    top: -14px;
    margin: -14px -14px 10px;
    padding: 14px 14px 10px;
    border-radius: 18px 18px 0 0;
  }

  body > .bhv-datepicker.is-tablet-modal .bhv-datepicker__grid {
    gap: 4px;
  }

  body > .bhv-datepicker.is-tablet-modal .bhv-datepicker__day {
    min-height: 40px;
    aspect-ratio: auto;
  }
}
