/* F-Lina Water Villa Resort — style.css
   Generated: 2026-04-24 | Skill round 5.9.1
   Font: Recoleta + Manrope | Accent: Dark Emerald #065f46 */

/* ── Custom Properties ── */
:root {
  --accent:          #065f46;
  --accent-hover:    #047857;
  --accent-light:    #d1fae5;
  --footer-bg:       #010e0a;
  --footer-text:     rgba(255,255,255,0.65);
  --footer-head:     #ffffff;
  --font-heading:    'Recoleta', Georgia, serif;
  --font-body:       'Manrope', system-ui, sans-serif;
  --navbar-h:        80px;
  --max-w:           1240px;
  --btn-radius:      8px;
  --section-pad:     72px;
  --img-radius:      12px;
  --bg:              #ffffff;
  --bg-alt:          #f0fdf4;
  --text:            #1a2e20;
  --text-muted:      #4b6455;
  --border:          #d1fae5;
  --shadow-sm:       0 2px 8px rgba(6,95,70,0.08);
  --shadow-md:       0 6px 24px rgba(6,95,70,0.12);
  --shadow-lg:       0 12px 40px rgba(6,95,70,0.16);
  --transition:      0.25s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scroll-padding-top: 0;
}

section[id] { scroll-margin-top: 0; }
#contact { scroll-margin-top: 20px; }

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

button { cursor: pointer; border: none; background: none; font-family: inherit; }

input, select, textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
}

/* ── Container ── */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 24px;
}

/* ── Typography Helpers ── */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 18px;
}

.section-intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 680px;
  margin-bottom: 48px;
  line-height: 1.75;
}

.eyebrow-light { color: rgba(255,255,255,0.75); }
.title-light   { color: #ffffff; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--btn-radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}

.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255,255,255,0.7);
}

.btn-outline:hover, .btn-outline:focus-visible {
  background: rgba(255,255,255,0.12);
  border-color: #ffffff;
}

.btn-submit {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
  border-radius: var(--btn-radius);
  padding: 14px 36px;
  font-size: 1rem;
  font-weight: 700;
  width: 100%;
  justify-content: center;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
}

.btn-submit:hover, .btn-submit:focus-visible {
  background: var(--accent-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

/* ── Sections ── */
.section {
  padding-block: var(--section-pad);
  background: var(--bg);
}

.section-alt {
  background: var(--bg-alt);
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--navbar-h);
  background: transparent;
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--border);
}

.navbar-inner {
  padding: 0 max(1.5rem, 3vw) 0 max(75px, 5vw);
  height: var(--navbar-h);
  display: flex;
  align-items: center;
}

.navbar-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: auto;
}

.logo-navbar {
  height: calc(var(--navbar-h) - 16px);
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter var(--transition);
}

.navbar.scrolled .logo-navbar { filter: none; }

.navbar-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.navbar-links a {
  font-size: 1.0625rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 6px;
  color: rgba(255,255,255,0.9);
  transition: color var(--transition), background var(--transition);
}

.navbar-links a:hover { color: rgba(255,255,255,0.7); }
.navbar.scrolled .navbar-links a { color: var(--text-muted); }
.navbar.scrolled .navbar-links a:hover { color: var(--accent); background: rgba(6,95,70,0.07); }

.nav-cta a {
  background: #fff;
  color: var(--text) !important;
  padding: 9px 18px;
  border-radius: var(--btn-radius);
  font-size: 1rem;
  font-weight: 700;
  transition: background var(--transition);
}

.nav-cta a:hover { background: rgba(255,255,255,0.7) !important; }
.navbar.scrolled .nav-cta a { background: var(--accent); color: #fff !important; }
.navbar.scrolled .nav-cta a:hover { background: var(--accent-hover) !important; }

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 8px;
  border-radius: 6px;
  width: 40px;
  height: 40px;
}

.hamburger-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: background var(--transition), transform var(--transition), opacity var(--transition);
}

.navbar.scrolled .hamburger-bar { background: var(--text); }

/* ── Language Switcher — Desktop ── */
.lang-switch-desk { display: flex; align-items: center; margin-left: 18px; flex-shrink: 0; }
.lang-switch-desk .lang-link { color: rgba(255,255,255,0.7); text-decoration: none; transition: color var(--transition); }
.lang-switch-desk .lang-link:hover { color: #fff; }
.lang-switch-desk .lang-active { color: #fff; }
.navbar.scrolled .lang-switch-desk .lang-link { color: var(--text-muted); }
.navbar.scrolled .lang-switch-desk .lang-link:hover { color: var(--accent); }
.navbar.scrolled .lang-switch-desk .lang-active { color: var(--text); }
.lang-x13 { font-size: 0.875rem; gap: 6px; border: 1px solid rgba(37,99,235,0.5); border-radius: 20px; padding: 4px 12px; }
.navbar.scrolled .lang-x13 { border-color: rgba(37,99,235,0.3); }
.lang-x21 { font-size: 0.9375rem; gap: 8px; }
.lang-x21 .lang-divider { color: rgba(255,255,255,0.3); font-weight: 300; }
.navbar.scrolled .lang-x21 .lang-divider { color: var(--border); }
.lang-x22 { font-size: 0.875rem; gap: 4px; background: rgba(255,255,255,0.12); border-radius: 20px; padding: 4px 12px; }
.navbar.scrolled .lang-x22 { background: var(--bg-alt); }

/* ── Language Switcher — Mobile ── */
.lang-mob-wrap { display: none; align-items: center; gap: 8px; }
.lang-switch-mob { display: flex; align-items: center; gap: 6px; font-size: 0.6875rem; }
.lang-switch-mob .lang-link { color: rgba(255,255,255,0.7); text-decoration: none; }
.lang-switch-mob .lang-active { color: #fff; font-weight: 600; }
.navbar.scrolled .lang-switch-mob .lang-link { color: var(--text-muted); }
.navbar.scrolled .lang-switch-mob .lang-active { color: var(--text); }
.lang-xm14 { flex-direction: column; }
.lang-xm14 .lang-switch-mob { order: -1; }

@media (max-width: 1023px) {
  .lang-switch-desk { display: none; }
  .lang-mob-wrap { display: flex; }
  .navbar-links { display: none; }
  .hamburger { display: flex; }
  .navbar-inner { padding: 0 clamp(1.25rem, 4vw, 2rem); }
}

/* nav sentinel */
.nav-sentinel { height: var(--navbar-h); }

/* ── MOBILE MENU ── */
.mobile-menu {
  position: fixed;
  top: var(--navbar-h);
  right: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: var(--bg);
  z-index: 1000;
  padding: 0.375rem 28px 40px;
  max-height: calc(100vh - var(--navbar-h));
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
}

.mobile-menu.open { transform: translateX(0); }

.mobile-menu-close {
  align-self: flex-end;
  font-size: 1.4rem;
  color: var(--text-muted);
  padding: 4px;
  margin-bottom: 24px;
  transition: color var(--transition);
}

.mobile-menu-close:hover { color: var(--accent); }

.mobile-nav-links { display: flex; flex-direction: column; gap: 4px; }

.mobile-nav-links a {
  display: block;
  padding: 12px 16px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  border-radius: 8px;
  transition: background var(--transition), color var(--transition);
}

.mobile-nav-links a:hover { background: var(--bg-alt); color: var(--accent); }

.menu-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 999;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.menu-backdrop.open { display: block; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  margin-top: calc(-1 * var(--navbar-h));
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  background: #010e0a;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    160deg,
    rgba(1,14,10,0.55) 0%,
    rgba(1,14,10,0.30) 55%,
    rgba(1,14,10,0.15) 100%
  );
}

@media (min-width: 768px) {
  .hero-overlay {
    background: linear-gradient(
      160deg,
      rgba(1,14,10,0.42) 0%,
      rgba(1,14,10,0.18) 60%,
      rgba(1,14,10,0.06) 100%
    );
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding-top: 33vh;
  padding-bottom: 80px;
  margin-left: max(100px, 6vw);
  margin-right: 200px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  font-weight: 400;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.25);
  white-space: nowrap;
}

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.88);
  margin-bottom: 36px;
  line-height: 1.65;
  text-shadow: 0 1px 8px rgba(0,0,0,0.2);
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-start;
}

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image-col { position: relative; }

.about-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--img-radius);
  box-shadow: var(--shadow-lg);
}

.about-text-col .section-eyebrow { margin-bottom: 8px; }
.about-text-col .section-title   { margin-bottom: 20px; }

.about-text-col p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.78;
}

.about-text-col .btn { margin-top: 12px; }

/* ── VILLAS ── */
.villa-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 12px;
}

.villa-card {
  background: var(--bg);
  border-radius: var(--img-radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: auto 1fr;
  transition: box-shadow var(--transition);
}

.villa-card:hover {
  box-shadow: var(--shadow-lg);
}

.villa-card .carousel {
  grid-column: 1;
  grid-row: 1;
}

.villa-card .villa-view-link {
  grid-column: 1;
  grid-row: 2;
  padding: 12px 16px;
  align-self: start;
  text-align: center;
}

.villa-info {
  grid-column: 2;
  grid-row: 1 / -1;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ── CAROUSEL ── */
.carousel {
  position: relative;
  overflow: hidden;
  background: #0a1a12;
  flex-shrink: 0;
}

.carousel::before {
  content: '';
  display: block;
  padding-top: 75%; /* 4:3 */
}

.carousel-track {
  position: absolute;
  inset: 0;
  display: flex;
  transition: transform 0.42s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 100%;
  position: relative;
  overflow: hidden;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.88);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9375rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  transition: background var(--transition), transform var(--transition), opacity var(--transition);
  opacity: 0.9;
}

.carousel-btn:hover {
  background: #ffffff;
  opacity: 1;
  transform: translateY(-50%) scale(1.08);
}

.carousel-btn.prev { left: 10px; }
.carousel-btn.next { right: 10px; }

.carousel-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}

.carousel-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  transition: background var(--transition), transform var(--transition);
  flex-shrink: 0;
}

.carousel-dot.active,
.carousel-dot:hover {
  background: #ffffff;
  transform: scale(1.2);
}

/* villa view-link: centered, full-width, accent text */
.villa-view-link {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px 16px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  letter-spacing: 0.03em;
  transition: background var(--transition), color var(--transition);
}

.villa-view-link:hover { background: var(--border); color: var(--accent-hover); }

.villa-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.villa-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 14px;
}

.villa-specs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  flex: 1;
}

.villa-specs li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.villa-specs li i {
  width: 16px;
  text-align: center;
  color: var(--accent);
  flex-shrink: 0;
}

.btn-room-cta {
  display: block;
  width: 100%;
  padding: 13px 24px;
  background: var(--accent);
  color: #ffffff;
  border-radius: var(--btn-radius);
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
  margin-top: auto;
  transition: background var(--transition), box-shadow var(--transition);
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}

.btn-room-cta:hover {
  background: var(--accent-hover);
  box-shadow: var(--shadow-md);
}

/* ── ACTIVITIES ── */
#activities {
  padding-top: 0;
  padding-bottom: var(--section-pad);
  background: var(--bg);
}

.activities-banner {
  position: relative;
  height: 380px;
  overflow: hidden;
  margin-bottom: 56px;
}

.activities-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.activities-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(1,14,10,0.7) 0%, rgba(1,14,10,0.35) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding-bottom: 36px;
}

/* Core activity cards — 3-column grid */
.core-activity-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.activity-card {
  background: var(--bg-alt);
  border-radius: var(--img-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}

.activity-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.activity-card > img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.activity-card-body {
  padding: 20px;
  flex: 1;
}

.activity-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.activity-card-body h3 i { color: var(--accent); font-size: 0.9rem; }

.activity-card-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* On-site activities */
.onsite-activities {
  margin-bottom: 56px;
  padding: 32px 36px;
  background: var(--bg-alt);
  border-radius: var(--img-radius);
  border: 1px solid var(--border);
}

.onsite-heading {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 20px;
}

.onsite-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
}

.onsite-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}

.onsite-item i {
  color: var(--accent);
  width: 18px;
  text-align: center;
  flex-shrink: 0;
}

/* Tour blocks */
.tour-blocks {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.tour-block {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

.tour-block-reverse {
  grid-template-columns: 1.4fr 1fr;
  direction: rtl;
}

.tour-block-reverse > * { direction: ltr; }

.tour-block-img {
  min-width: 0;
  overflow: hidden;
}

.tour-block-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--img-radius);
  box-shadow: var(--shadow-md);
}

.tour-block-text {
  min-width: 0;
  overflow-wrap: break-word;
}

.tour-block-text h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.25;
}

.tour-block-text p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.75;
}

.tour-highlights {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.tour-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.tour-highlights li i {
  color: var(--accent);
  margin-top: 2px;
  flex-shrink: 0;
}

/* ── MEALS ── */
.meals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.meals-text-col .section-eyebrow { margin-bottom: 8px; }
.meals-text-col .section-title   { margin-bottom: 20px; }

.meals-text-col > p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.75;
}

.meal-breakdown {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 24px 0;
  padding: 24px;
  background: var(--bg);
  border-radius: var(--img-radius);
  border: 1px solid var(--border);
}

.meal-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.meal-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.meal-detail { flex: 1; }

.meal-detail strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.meal-detail p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.meals-note {
  font-size: 0.9375rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 4px;
}

.meals-image-col { position: relative; }

.meals-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--img-radius);
  box-shadow: var(--shadow-lg);
}

/* ── GETTING HERE ── */
.getting-here-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 56px;
  align-items: start;
}

.travel-step {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.travel-step:last-child { border-bottom: none; }

.travel-step-heading {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.travel-step-heading i { color: var(--accent); }

.travel-step p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 12px;
}

.flight-routes {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 8px;
}

.flight-routes li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.flight-routes li i {
  color: var(--accent);
  margin-top: 3px;
  font-size: 0.9375rem;
  flex-shrink: 0;
}

/* Getting here sidebar */
.getting-here-sidebar {
  position: sticky;
  top: calc(var(--navbar-h) + 20px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.location-image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--img-radius);
  box-shadow: var(--shadow-md);
}

.maps-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  background: var(--accent);
  color: #ffffff;
  border-radius: var(--btn-radius);
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
  transition: background var(--transition), box-shadow var(--transition);
  text-decoration: none;
}

.maps-btn:hover {
  background: var(--accent-hover);
  box-shadow: var(--shadow-md);
}

.map-embed {
  border-radius: var(--img-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  line-height: 0;
}

.map-embed iframe {
  display: block;
  width: 100%;
  border: none;
}

.travel-tips {
  background: var(--bg-alt);
  border-radius: var(--img-radius);
  padding: 20px;
  border: 1px solid var(--border);
}

.travel-tips h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.travel-tips h4 i { color: var(--accent); }

.travel-tips-list { display: flex; flex-direction: column; gap: 10px; }

.travel-tips-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.travel-tips-list li i {
  color: var(--accent);
  margin-top: 2px;
  flex-shrink: 0;
  width: 14px;
  text-align: center;
}

/* Travel Tips — full-width 3-column */
.travel-tips-fullwidth {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.travel-tips-heading {
  font-family: var(--font-heading);
  font-size: 1.1875rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.travel-tips-heading i { color: var(--accent); }

.travel-tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.travel-tip-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--img-radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.travel-tip-icon {
  color: var(--accent);
  font-size: 1.25rem;
}

.travel-tip-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
  margin-top: 8px;
}

/* Form banners */
.form-banner {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 8px;
  margin-bottom: 24px;
  font-size: 0.9375rem;
}

.form-banner i { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }

.form-banner p { margin-top: 4px; color: inherit; opacity: 0.85; font-size: 0.9375rem; }

.form-banner-success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.form-banner-error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* Booking form */
.booking-form { display: flex; flex-direction: column; gap: 18px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group-full { grid-column: 1 / -1; }

.form-group label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
}

.required-asterisk { color: #dc2626; }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.9375rem;
  background: var(--bg);
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(6,95,70,0.1);
}

.form-group input.has-error,
.form-group select.has-error,
.form-group textarea.has-error {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220,38,38,0.1);
}

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

.form-reassurance {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-top: -8px;
}

/* Contact info column */
.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: sticky;
  top: calc(var(--navbar-h) + 20px);
}

.info-card {
  background: var(--bg);
  border-radius: var(--img-radius);
  padding: 22px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.info-card-heading {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.info-card-heading i { color: var(--accent); }

.info-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 6px;
}

.info-card p:last-of-type { margin-bottom: 0; }

.info-card-note {
  font-size: 0.9375rem;
  color: var(--text-muted);
  font-style: italic;
  opacity: 0.85;
}

.quick-facts { display: flex; flex-direction: column; gap: 8px; }

.quick-facts li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.quick-facts li > i:first-child {
  color: var(--accent);
  margin-top: 2px;
  flex-shrink: 0;
}

.quick-facts li span {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
}

.quick-facts li span > i {
  color: var(--text-muted);
  font-size: 0.85em;
}

/* ── REVIEWS ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}

.review-card {
  background: var(--bg-alt);
  border-radius: var(--img-radius);
  padding: 28px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 14px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow var(--transition);
}
.review-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.review-card:hover {
  box-shadow: var(--shadow-md);
}

.review-stars { display: flex; gap: 3px; color: #f59e0b; font-size: 0.9375rem; }

.review-body {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.72;
  flex: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  padding-top: 12px;
  margin-top: auto;
}

.review-name {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--text);
}

.review-country {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

/* ── FOOTER ── */
.footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding-block: 56px 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
  align-items: start;
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 400;
  color: var(--footer-head);
  margin-bottom: 14px;
}

.footer-description {
  font-size: 1rem;
  color: var(--footer-text);
  line-height: 1.75;
  margin-bottom: 14px;
}

.footer-location-line {
  font-size: 0.9375rem;
  color: var(--footer-text);
  display: flex;
  align-items: center;
  gap: 7px;
}

.footer-location-line i { color: var(--accent-light); }

.footer-col-heading {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--footer-head);
  margin-bottom: 18px;
}

.footer-links { display: flex; flex-direction: column; gap: 9px; }

.footer-links a {
  font-size: 0.9375rem;
  color: var(--footer-text);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--footer-head); }

.footer-enquiry {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-light);
  margin-bottom: 20px;
  transition: color var(--transition);
  text-decoration: none;
}

.footer-enquiry:hover { color: #ffffff; }

.footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9375rem;
  color: var(--footer-text);
  transition: background var(--transition), color var(--transition);
}

.footer-social a:hover {
  background: var(--accent);
  color: #ffffff;
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 20px;
}

.footer-copyright {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
}
.footer-lang-flags { display: flex; gap: 10px; margin-top: 16px; align-items: center; }
.footer-flag-link { display: inline-block; opacity: 0.75; transition: opacity var(--transition); }
.footer-flag-link:hover { opacity: 1; }
.flag-svg { width: 28px; height: auto; display: block; }

/* ── MODAL ── */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1100;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal.open { display: flex; }

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.modal-content {
  position: relative;
  background: var(--bg);
  border-radius: var(--img-radius);
  padding: 36px;
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  z-index: 1;
  animation: modal-in 0.25s ease;
}

@keyframes modal-in {
  from { opacity: 0; transform: scale(0.95) translateY(12px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 1.6rem;
  color: var(--text-muted);
  line-height: 1;
  padding: 4px 8px;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}

.modal-close:hover { color: var(--text); background: var(--bg-alt); }

.modal-room-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 14px;
  padding-right: 32px;
}

.modal-room-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

.modal-room-specs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  padding: 16px;
  background: var(--bg-alt);
  border-radius: 8px;
  border: 1px solid var(--border);
}

.modal-room-specs li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.modal-room-specs li i {
  color: var(--accent);
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}

.modal-room-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* ── RESPONSIVE ── */

/* Tablet: 1024px */
@media (max-width: 1024px) {
  :root { --section-pad: 56px; }

  .about-grid    { gap: 40px; }
  .meals-grid    { gap: 40px; }
  .tour-block    { gap: 32px; }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-grid .footer-brand-col { grid-column: 1 / -1; }

  .core-activity-cards { grid-template-columns: repeat(2, 1fr); }

  .getting-here-grid { grid-template-columns: 1fr; }
  .getting-here-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .location-image { grid-row: 1; }
  .maps-btn       { align-self: start; }
  .map-embed      { grid-column: 1 / -1; }
  .travel-tips    { grid-column: 1 / -1; }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-info-col { position: static; }
}

/* Medium tablet: 900px */
@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .tour-block   { grid-template-columns: 1fr; gap: 24px; }
  .tour-block-reverse { direction: ltr; }
}

/* Hamburger breakpoint: 780px */
/* Mobile: 640px */
@media (max-width: 640px) {
  :root { --section-pad: 48px; }

  .hero { min-height: 100vh; }
  .hero-content { margin-left: 24px; margin-right: 24px; padding-top: 33vh; }
  .hero-title { white-space: normal; }
  .hero-cta-row { flex-direction: column; gap: 12px; align-items: flex-start; }
  .hero-cta-row .btn { justify-content: center; width: 100%; }

  .about-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-image-col { order: -1; }

  .meals-grid { grid-template-columns: 1fr; gap: 28px; }
  .meals-image-col { order: -1; }

  .form-row { grid-template-columns: 1fr; }

  .core-activity-cards { grid-template-columns: 1fr; }

  .reviews-grid { grid-template-columns: 1fr; }

  .villa-grid { grid-template-columns: 1fr; }
  .villa-card { grid-template-columns: 1fr; grid-template-rows: auto; }
  .villa-card .carousel { grid-row: auto; }
  .villa-card .villa-view-link { padding: 16px 20px 0; }
  .villa-info { padding: 12px 20px 24px; }

  .onsite-list { gap: 10px 20px; }

  .getting-here-sidebar { grid-template-columns: 1fr; }

  .travel-tips-grid { grid-template-columns: 1fr; }

  .activities-banner { height: 260px; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-grid .footer-brand-col { grid-column: auto; }

  .modal-content { padding: 28px 22px; }

  /* Mobile font floor: body 1.0625rem, floor 1rem */
  body { font-size: 1.0625rem; }
  p, li, label, input, select, textarea, .tour-block-text p, .review-body,
  .review-name, .info-card p, .quick-facts li, .travel-tips-list li,
  .flight-routes li, .onsite-item, .form-reassurance, .footer-links a,
  .footer-description, .footer-location-line, .footer-enquiry,
  .modal-room-desc, .modal-room-specs li { font-size: 1rem !important; }
  .footer-copyright, .review-country { font-size: 0.9375rem !important; }
  .footer-lang-flags { justify-content: flex-start; }
  .flag-svg { width: 32px; }
  .footer-flag-link { opacity: 0.9; }
}

/* Small mobile: 400px */
@media (max-width: 400px) {
  .onsite-list { flex-direction: column; }
  .hero-title  { font-size: 1.9rem; }
}
