/* =============================================================
   Amina Holidays — style.css
   Font: Cabinet Grotesk (headings) + DM Sans (body)
   Accent: Electric Blue #2563eb / dark #1d4ed8
   ============================================================= */

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

:root {
  --accent:      #2563eb;
  --accent-dark: #1d4ed8;
  --accent-light: rgba(37,99,235,0.10);
  --font-head:   'Cabinet Grotesk', system-ui, sans-serif;
  --font-body:   'DM Sans', system-ui, sans-serif;
  --navbar-h:    80px;
  --footer-bg:   #0f172a;
  --text-primary: #1e293b;
  --text-muted:  #64748b;
  --text-light:  #94a3b8;
}

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--navbar-h) + 24px); }

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  color: var(--text-primary);
  background: #fff;
  line-height: 1.65;
}

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

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

ul { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-family: 'Cabinet Grotesk', 'DM Sans', sans-serif;
  line-height: 1.2;
  font-weight: 600;
}

.section-heading {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: #0f172a;
  margin-bottom: 1.25rem;
}

.section-intro {
  font-size: 1.05rem;
  color: #475569;
  max-width: 760px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .65rem 1.5rem;
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, box-shadow .2s;
  border: 2px solid transparent;
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: #2563eb;
  color: #fff;
  border-color: #2563eb;
}
.btn-primary:hover { background: #1d4ed8; border-color: #1d4ed8; }

.btn-outline {
  background: transparent;
  color: #2563eb;
  border-color: #2563eb;
}
.btn-outline:hover { background: #2563eb; color: #fff; }

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.75);
}
.btn-outline-light:hover { background: rgba(255,255,255,.15); border-color: #fff; }

.btn-sm { padding: .45rem 1rem; font-size: 0.9375rem; }

/* ---- Navbar ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: transparent;
  transition: background .3s, box-shadow .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,0,0,.07);
  box-shadow: 0 2px 16px rgba(0,0,0,.1);
}

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

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

.logo-navbar {
  height: 80px !important;
  padding: 0;
  margin: 0;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.navbar.scrolled .logo-navbar {
  filter: none;
}

.navbar-links, .nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.navbar-links li a, .nav-links li a, .nav-links a {
  padding: .45rem .7rem;
  font-size: 1.0625rem;
  font-weight: 600;
  color: #fff;
  border-radius: 5px;
  transition: color .2s, background .2s;
}
.navbar.scrolled .nav-links a,
.navbar.scrolled .navbar-links li a { color: #334155; }
.nav-links a:hover, .navbar-links li a:hover { color: var(--accent, #2563eb); }

.btn-nav-cta {
  padding: 0.55em 1.3em;
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.navbar.scrolled .btn-nav-cta { color: #fff; }

/* Language Switcher */
.lang-switch--x14 {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 2rem;
  overflow: hidden;
  font-size: 0.8125rem;
  font-weight: 600;
  flex-shrink: 0;
}
.lang-switch--x14 .lang-active,
.lang-switch--x14 .lang-link {
  padding: 0.25rem 0.65rem;
  line-height: 1;
  display: inline-block;
}
.lang-switch--x14 .lang-active { background: rgba(255,255,255,0.2); color: #fff; }
.lang-switch--x14 .lang-link { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.lang-switch--x14 .lang-link:hover { background: rgba(255,255,255,0.15); color: #fff; }
.navbar.scrolled .lang-switch--x14 { border-color: #cbd5e1; }
.navbar.scrolled .lang-switch--x14 .lang-active { background: rgba(0,0,0,0.06); color: #334155; }
.navbar.scrolled .lang-switch--x14 .lang-link { color: var(--text-primary, #334155); }

.lang-switch-mobile--xm12 {
  display: none;
  align-items: center;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 2rem;
  overflow: hidden;
  font-size: 0.8125rem;
  font-weight: 600;
  flex-shrink: 0;
}
.lang-switch-mobile--xm12 .lang-active,
.lang-switch-mobile--xm12 .lang-link {
  padding: 0.2rem 0.5rem;
  line-height: 1;
  display: inline-block;
}
.lang-switch-mobile--xm12 .lang-active { background: rgba(255,255,255,0.2); color: #fff; }
.lang-switch-mobile--xm12 .lang-link { color: rgba(255,255,255,0.7); }
.navbar.scrolled .lang-switch-mobile--xm12 { border-color: rgba(0,0,0,0.15); }
.navbar.scrolled .lang-switch-mobile--xm12 .lang-active { background: rgba(0,0,0,0.08); color: var(--text-muted); }
.navbar.scrolled .lang-switch-mobile--xm12 .lang-link { color: var(--text-muted); }

.footer-lang-flags { display: flex; align-items: center; gap: 0.5rem; margin-top: 1rem; }
.footer-flag { display: inline-flex; opacity: 0.5; transition: opacity 0.2s; border-radius: 2px; overflow: hidden; }
.footer-flag:hover { opacity: 0.8; }
.footer-flag--active { opacity: 1; cursor: default; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
  border-radius: 5px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .25s, opacity .25s, background .25s;
}
.navbar.scrolled .hamburger span {
  background: #334155;
}

.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-sentinel { position: absolute; top: 0; left: 0; width: 100%; height: 0; overflow: hidden; pointer-events: none; }

/* ---- Mobile Menu ---- */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 85vw);
  height: 100%;
  background: #fff;
  z-index: 1000;
  padding: 5rem 2rem 2rem;
  box-shadow: -4px 0 24px rgba(0,0,0,.12);
  transition: right .3s cubic-bezier(.4,0,.2,1);
}

.mobile-menu.open { right: 0; }

.mobile-menu-close {
  position: absolute;
  top: 1.1rem;
  right: 1.25rem;
  background: none;
  border: none;
  font-size: 1.3rem;
  color: #475569;
  cursor: pointer;
  padding: .4rem;
  border-radius: 5px;
}

.mobile-menu-close:hover { color: #2563eb; }

.mobile-nav-links li { border-bottom: 1px solid #f1f5f9; }

.mobile-nav-links li a {
  display: block;
  padding: .9rem 0;
  font-size: 1.25rem;
  font-weight: 500;
  color: #1e293b;
  transition: color .2s;
}

.mobile-nav-links li a:hover { color: #2563eb; }

.menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}

.menu-backdrop.open { opacity: 1; pointer-events: all; }

/* ---- Section anchor offset ---- */
section[id] { scroll-margin-top: 68px; }

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 140px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), transparent);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 600px;
  margin-left: max(100px, 6vw);
  margin-right: 200px;
}

.hero h1, .hero-title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  margin-bottom: .6rem;
}

.hero-tagline {
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  opacity: .92;
  margin-bottom: 2rem;
  font-weight: 400;
  line-height: 1.6;
}

.hero-cta, .hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

/* ---- About ---- */
.section-about {
  padding: 5rem 0;
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.about-text p {
  color: #475569;
  margin-bottom: 1.1rem;
  line-height: 1.8;
}

.quick-facts-card {
  margin-top: 2rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.5rem;
}

.quick-facts-title {
  font-size: 1.1875rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}

.quick-facts-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .5rem 0;
  border-bottom: 1px solid #e2e8f0;
  font-size: 1.0625rem;
  color: #475569;
  line-height: 1.5;
}

.quick-facts-list li:last-child { border-bottom: none; }

.quick-facts-list li i {
  color: #2563eb;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: .15rem;
  width: 18px;
  text-align: center;
}

.about-media { position: relative; }

.about-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 14px;
}

/* ---- Activities ---- */
.section-activities {
  padding: 1.5rem 0 3rem;
  background: #f8fafc;
}

.activities-intro {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 100%;
}

/* Core Activity Cards */
.core-activities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.core-activity-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 6px rgba(0,0,0,.07);
  transition: transform .25s, box-shadow .25s;
}

.core-activity-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(37,99,235,.12);
}

.core-activity-img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.core-activity-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}

.core-activity-card:hover .core-activity-img-wrap img { transform: scale(1.04); }

.core-activity-body {
  padding: 1.1rem 1.1rem 1.25rem;
}

.core-activity-icon {
  width: 36px;
  height: 36px;
  background: #eff6ff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  font-size: 1rem;
  margin-bottom: .75rem;
}

.core-activity-body h3 {
  font-size: 1.1875rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: .4rem;
}

.core-activity-body p {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.65;
}

/* On-site activities */
.onsite-activities {
  background: #fff;
  border-radius: 12px;
  padding: 1.75rem 2rem;
  margin-bottom: 3rem;
  border: 1px solid #e2e8f0;
}

.onsite-heading {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}

.onsite-list {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem .75rem;
}

.onsite-list li {
  display: flex;
  align-items: center;
  gap: .45rem;
  background: #f1f5f9;
  border-radius: 99px;
  padding: .35rem .85rem;
  font-size: 1rem;
  color: #334155;
  font-weight: 500;
}

.onsite-list li i { color: #2563eb; font-size: 1rem; }

/* Tour Blocks */
.tours-section { margin-top: 1rem; }

.tours-heading {
  font-size: 1.35rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1.75rem;
}

.tour-block {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 2rem;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: 0 1px 5px rgba(0,0,0,.06);
  border: 1px solid #e2e8f0;
}

.tour-img-wrap {
  aspect-ratio: 1/1;
  overflow: hidden;
  flex-shrink: 0;
}

.tour-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}

.tour-block:hover .tour-img-wrap img { transform: scale(1.04); }

.tour-body {
  padding: 1.5rem 1.5rem 1.5rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tour-body h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: .65rem;
}

.tour-body p {
  font-size: 1rem;
  color: #475569;
  line-height: 1.75;
}

/* ---- Rooms ---- */
.section-rooms {
  padding: 1.5rem 0 3rem;
  background: #fff;
}

.rooms-book-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 1rem 1.25rem;
  margin-bottom: 2.5rem;
}

.rooms-book-bar label {
  font-size: 1rem;
  font-weight: 600;
  color: #334155;
  white-space: nowrap;
}

.rooms-book-bar select {
  flex: 1;
  min-width: 200px;
  padding: .55rem .85rem;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: #1e293b;
  background: #fff;
  cursor: pointer;
}

.rooms-book-bar select:focus { outline: 2px solid #2563eb; outline-offset: 1px; }

/* Room Card */
.room-card {
  display: flex;
  flex-direction: column;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
}

.room-carousel-wrap { background: #0f172a; }

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

/* Carousel */
.carousel {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
  flex-shrink: 0;
}

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

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,.45);
  color: #fff;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9375rem;
  z-index: 10;
  transition: background .2s;
}

.carousel-btn:hover { background: rgba(37,99,235,.8); }
.carousel-btn.prev { left: .65rem; }
.carousel-btn.next { right: .65rem; }

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

.carousel-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,.55);
  border: none;
  cursor: pointer;
  transition: background .2s, transform .2s;
  padding: 0;
}

.carousel-dot.active {
  background: #fff;
  transform: scale(1.25);
}

/* Room Info */
.room-info {
  padding: 2rem 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}

.room-name {
  font-size: 1.35rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: .5rem;
}

.room-description {
  font-size: 1rem;
  color: #475569;
  line-height: 1.75;
  margin-bottom: .75rem;
}

.room-features {
  display: flex;
  flex-direction: column;
  gap: .45rem;
  margin-bottom: .75rem;
}

.room-features li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: 1rem;
  color: #475569;
}

.room-features li i {
  color: #2563eb;
  width: 16px;
  text-align: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.room-cta-row {
  display: flex;
  gap: .75rem;
  align-items: center;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: .75rem;
}

/* ---- Meals ---- */
.section-meals {
  padding: 1.5rem 0 3rem;
  background: #f8fafc;
}

.meals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.meals-text .section-heading { margin-bottom: 1.1rem; }

.meals-text p {
  color: #475569;
  margin-bottom: 1rem;
  line-height: 1.8;
  font-size: 1.0625rem;
}

.meals-breakdown {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.meal-item {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 1.1rem 1.25rem;
}

.meal-label {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-weight: 600;
  font-size: 1.125rem;
  color: #0f172a;
  margin-bottom: .45rem;
}

.meal-label i { color: #2563eb; font-size: 1rem; }

.meal-item p {
  font-size: 1.0625rem;
  color: #64748b;
  line-height: 1.65;
  margin: 0;
}

.meals-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 14px;
}

/* ---- Getting There ---- */
.section-getting-there {
  padding: 3.5rem 0;
  background: #fff;
}

.getting-there-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}

.getting-there-block {
  padding: 1.5rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.getting-there-block:last-child { border-bottom: none; }

.getting-there-block h3 {
  font-size: 1.1875rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: .8rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}

.getting-there-block h3 i { color: #2563eb; font-size: 1rem; }

.getting-there-block p {
  font-size: 1rem;
  color: #475569;
  line-height: 1.75;
  margin-bottom: .65rem;
}

.getting-there-block p:last-child { margin-bottom: 0; }

.getting-there-block ul {
  margin: .65rem 0 .65rem 1rem;
  display: flex;
  flex-direction: column;
  gap: .35rem;
}

.getting-there-block ul li {
  list-style: disc;
  font-size: 1rem;
  color: #475569;
  line-height: 1.6;
}

.boat-transfer-card {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  margin: .5rem 0;
}

/* Sidebar cards */
.getting-there-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: sticky;
  top: 80px;
}

.sidebar-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
}

.sidebar-card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  padding: 1rem 1.25rem .75rem;
  border-bottom: 1px solid #e2e8f0;
}

.map-embed-wrap {
  width: 100%;
  overflow: hidden;
}

.map-embed-wrap iframe { display: block; }

.location-label {
  font-size: 1rem;
  color: #475569;
  padding: .75rem 1.25rem .5rem;
  line-height: 1.5;
}

.location-card .btn { margin: 0 1.25rem 1.25rem; }

.travel-tips-list {
  padding: .75rem 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.travel-tips-list li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size: 1rem;
  color: #475569;
  line-height: 1.6;
}

.travel-tips-list li i {
  color: #2563eb;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: .18rem;
  width: 16px;
  text-align: center;
}

/* ---- Contact ---- */
.section-contact {
  padding: 3.5rem 0;
  background: #f8fafc;
}

.form-notice {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: 1rem 1.25rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.form-notice--success { background: #f0fdf4; color: #15803d; border: 1px solid #bbf7d0; }
.form-notice--error { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2.5rem;
  align-items: start;
}
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-sidebar .sidebar-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
}
.contact-sidebar .sidebar-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.6rem;
}
.contact-sidebar .sidebar-card h4 i {
  margin-right: 0.4rem;
  color: var(--accent, #2563eb);
}
.contact-sidebar .sidebar-card p,
.contact-sidebar .sidebar-card li {
  font-size: 1rem;
  color: #475569;
  line-height: 1.6;
}
.contact-sidebar .sidebar-card ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.contact-sidebar .sidebar-card .quick-facts-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.contact-sidebar .sidebar-card .quick-facts-list li i {
  color: var(--accent, #2563eb);
  width: 16px;
  text-align: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-form-wrap form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}

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

.form-group label {
  font-size: 1rem;
  font-weight: 600;
  color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: .65rem .85rem;
  border: 1px solid #cbd5e1;
  border-radius: 7px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: #1e293b;
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}
.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364748b' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2.5rem;
}
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}

.form-group textarea { resize: vertical; min-height: 110px; }
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea { border-color: #dc2626; }
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #94a3b8 !important;
  font-family: var(--font-body) !important;
  font-size: 1rem !important;
  opacity: 1 !important;
}

.btn-submit {
  width: 100%;
  justify-content: center;
  padding: .8rem 2rem;
  font-size: 1rem;
}

/* ---- Reviews ---- */
.section-reviews {
  padding: 1.5rem 0 3rem;
  background: #fff;
}

.reviews-aggregate {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.aggregate-score {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1;
}

.aggregate-stars { display: flex; gap: .2rem; color: #f59e0b; font-size: 1.15rem; }

.aggregate-count { font-size: 1rem; color: #64748b; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.review-card {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .45s ease, transform .45s ease;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.review-stars { display: flex; gap: .2rem; color: #f59e0b; font-size: 1rem; }

.review-text, .review-body {
  font-size: 1rem;
  font-style: normal;
  color: #475569;
  line-height: 1.65;
  flex: 1;
}

.review-author, .review-footer {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-top: .75rem;
}

.review-name, .review-footer .review-author { font-weight: 700; font-size: 1rem; color: #1e293b; }
.review-country { font-size: 0.9375rem; color: #94a3b8; }
.review-card.visible { opacity: 1; transform: none; }

/* ---- Footer ---- */
.site-footer {
  background: #0f172a;
  color: rgba(255,255,255,0.75);
  padding: 0;
}

.site-footer .footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 2.5rem;
  padding: 3.5rem clamp(1.5rem, 4vw, 3rem) 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.footer-col--brand {}
.footer-brand {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 0.75rem;
}
.footer-desc {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.75rem;
}
.footer-location {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
}
.footer-location i { margin-right: 0.35rem; }

.footer-col--links h4,
.footer-col--contact h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}
.footer-col--links ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-col--links a {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer-col--links a:hover { color: #fff; }

.footer-enquiry-link {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #fff;
  display: inline-block;
  margin-bottom: 1rem;
  transition: color 0.2s;
}
.footer-enquiry-link:hover { color: #60a5fa; }

.social-icons {
  display: flex;
  gap: 0.75rem;
}
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  transition: background 0.2s, color 0.2s;
}
.social-icons a:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.4);
  margin: 0;
}

.footer-legal { font-size: 0.9375rem; color: rgba(255,255,255,0.4); }

/* ---- Modal ---- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal.open { display: flex; }

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.6);
  cursor: pointer;
}

.modal-box {
  position: relative;
  background: #fff;
  border-radius: 14px;
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
}

.modal-close {
  position: absolute;
  top: .9rem;
  right: 1rem;
  background: #f1f5f9;
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #475569;
  z-index: 10;
  transition: background .2s;
}

.modal-close:hover { background: #e2e8f0; }

.modal-body { padding: 2rem 2rem 1.75rem; }
.modal-body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e2e8f0;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .core-activities-grid { grid-template-columns: repeat(2, 1fr); }
  .getting-there-grid { grid-template-columns: 1fr; }
  .getting-there-sidebar { position: static; display: grid; grid-template-columns: 1fr 1fr; }
}


/* ── Room card layout fixes ─────────────────────────────── */
.room-view-details-wrap {
  text-align: center;
  padding: 0.75rem 0;
}
.room-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1rem 1.25rem 1.25rem;
}
.room-book-wrap {
  margin-top: auto;
  text-align: center;
  padding-top: 0.75rem;
}


/* ── Room card layout fixes ──────────────────────────────── */
.room-view-details-wrap {
  text-align: center;
  margin-top: 0.5rem;
}
.room-book-wrap {
  margin-top: auto;
  padding-top: 0.75rem;
}
.room-book-wrap .btn-room-cta {
  width: 100%;
  text-align: center;
  justify-content: center;
}

/* ── Modal amenities ─────────────────────────────────────── */
.modal-amenities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem 1rem;
  margin-top: 1rem;
  list-style: none;
  padding: 0;
}
.modal-amenities li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 1rem;
  color: #475569;
}
.modal-amenities li i { color: var(--accent); font-size: 1rem; }
.modal-body .btn-room-cta { margin-top: 1.25rem; }

/* ── Hero View Rooms button fix ──────────────────────────── */
.hero-cta .btn-outline,
.hero-actions .btn-outline {
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.8);
  color: #fff;
  backdrop-filter: blur(4px);
}
.hero-cta .btn-outline:hover,
.hero-actions .btn-outline:hover {
  background: rgba(255,255,255,0.3);
  border-color: #fff;
}

/* ── Navbar transparent state fix ────────────────────────── */
.navbar:not(.scrolled) .nav-links a,
.navbar:not(.scrolled) .navbar-links li a {
  color: rgba(255,255,255,0.9);
}
.navbar:not(.scrolled) .logo-navbar {
  filter: brightness(0) invert(1);
}
.navbar.scrolled .logo-navbar {
  filter: none;
}

/* ── Mobile lang switcher at top (white on transparent) ─── */
.navbar:not(.scrolled) .lang-switch-mobile--xm12 {
  border-color: rgba(255,255,255,0.4);
}
.navbar:not(.scrolled) .lang-switch-mobile--xm12 .lang-active {
  background: rgba(255,255,255,0.2);
  color: #fff;
}
.navbar:not(.scrolled) .lang-switch-mobile--xm12 .lang-link {
  color: rgba(255,255,255,0.7);
}

@media (max-width: 900px) {
  .about-grid,
  .meals-grid { grid-template-columns: 1fr; }

  .about-media { order: -1; }
  .about-img { aspect-ratio: 16/9; }

  .meals-img { aspect-ratio: 16/9; }

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

  .room-card { grid-template-columns: 1fr; }
  .rooms-grid { grid-template-columns: 1fr; }
  .carousel { min-height: 260px; }

  .tour-block { grid-template-columns: 1fr; }
  .tour-img-wrap { aspect-ratio: 16/9; }
  .tour-body { padding: 1.25rem; }
}

@media (max-width: 768px) {
  .nav-inner, .navbar-inner { padding-left: 24px; padding-right: 24px; }
  .navbar-links, .nav-links { display: none; }
  .btn-nav-cta { display: none; }
  .lang-switch--x14 { display: none; }
  .hamburger { display: flex; margin-left: 0.5rem; }
  .lang-switch-mobile--xm12 { display: inline-flex; margin-left: auto; }

  .section-heading { font-size: 1.65rem; }

  .room-card { grid-template-columns: 1fr; }
  .rooms-grid { grid-template-columns: 1fr; }
  .carousel { min-height: 260px; }

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

  .core-activities-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .getting-there-sidebar { display: flex; flex-direction: column; }

  .hero { min-height: 80vh; }
  .hero-content { margin-left: 24px; margin-right: 24px; }
  .hero::before { height: 110px; }

  .site-footer .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}


/* Mobile font floor (≤ 768px): body text minimum 1rem */
@media (max-width: 768px) {
  body { font-size: 1.0625rem; }
  
  /* All body text minimum 1.0625rem (17px) on mobile */
  .section-intro,
  .activities-intro,
  .about-text p,
  .room-description,
  .room-features li,
  .room-name { font-size: 1.2rem; }
  .tour-body p,
  .tour-body li,
  .tour-body h4,
  .core-activity-body h3,
  .core-activity-body p,
  .onsite-heading,
  .onsite-list li,
  .meal-label,
  .meal-item p,
  .meals-text p,
  .getting-there-block h3,
  .getting-there-block p,
  .getting-there-block ul li,
  .travel-tips-list li,
  .sidebar-card p,
  .sidebar-card li,
  .sidebar-card-title,
  .location-label,
  .quick-facts-title,
  .quick-facts-list li,
  .review-body, .review-text,
  .review-name, .review-footer .review-author,
  .form-group label,
  .form-group input,
  .form-group select,
  .form-group textarea,
  .form-notice,
  .contact-sidebar .sidebar-card h4,
  .contact-sidebar .sidebar-card p,
  .contact-sidebar .sidebar-card li,
  .info-card p,
  .info-card li,
  .footer-col--links a,
  .footer-location,
  .footer-desc,
  .btn,
  .btn-submit,
  .aggregate-count {
    font-size: 1.0625rem;
  }
  .modal-body p,
  .modal-body h3 { font-size: 1.25rem; }
  .modal-amenities li {
    font-size: 1.125rem;
  }
  .footer-bottom p,
  .form-reassurance,
  .review-country,
  .footer-legal {
    font-size: 1rem;
  }
  
  /* Rooms: single column on mobile */
  .rooms-grid { grid-template-columns: 1fr; }
  .room-card { max-width: 100%; }

  /* Hero button spacing on mobile */
  .hero-cta, .hero-actions { 
    flex-direction: column; 
    align-items: stretch; 
    gap: 0.75rem;
    margin-top: 1.5rem;
  }

  /* Form placeholders on mobile */
  .form-group input::placeholder,
  .form-group textarea::placeholder {
    font-size: 1.0625rem !important;
  }

  /* Quick facts on mobile */
  .sidebar-card h4 { font-size: 1.25rem !important; }
  .sidebar-card p,
  .sidebar-card li,
  .quick-facts-list li { font-size: 1.125rem !important; }
  .quick-facts-title { font-size: 1.25rem !important; }

  /* Mobile heading sizes - bump by 1px */
  .core-activity-body h3,
  .onsite-heading,
  .tour-body h4,
  .getting-there-block h3,
  .meal-label,
  .sidebar-card-title,
  .location-label {
    font-size: 1.25rem !important;
  }
  
  /* Contact sidebar cards */
  .contact-sidebar .sidebar-card h4 { font-size: 1.25rem !important; }
  .contact-sidebar .sidebar-card p,
  .contact-sidebar .sidebar-card li { font-size: 1.125rem !important; }

  /* Modal amenities single column on mobile */
  .modal-amenities { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .core-activities-grid { grid-template-columns: 1fr; }
  .room-cta-row { flex-direction: column; }
  .room-cta-row .btn { width: 100%; justify-content: center; }
}
