/* =====================================================
   Fairyland Resort — style.css
   Fonts: Cabinet Grotesk + DM Sans
   Accent: Forest Emerald #059669 / dark #047857
   ===================================================== */

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

:root {
  --accent:       #059669;
  --accent-dark:  #047857;
  --accent-light: #d1fae5;
  --text:         #1c1917;
  --text-muted:   #6b7280;
  --text-light:   #9ca3af;
  --bg:           #ffffff;
  --bg-alt:       #fafaf9;
  --bg-dark:      #04332a;
  --border:       #e5e7eb;
  --shadow-sm:    0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:    0 4px 12px rgba(0,0,0,.10), 0 2px 4px rgba(0,0,0,.06);
  --shadow-lg:    0 10px 30px rgba(0,0,0,.12);
  --radius:       8px;
  --radius-lg:    14px;
  --font-heading: 'Cabinet Grotesk', system-ui, sans-serif;
  --font-sans:    'DM Sans', system-ui, sans-serif;
  --container:    1280px;
  --container-px: 1.25rem;
  --section-pad:  5rem 1.25rem;
  --navbar-h:     80px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scroll-padding-top: calc(var(--navbar-h) + 1rem);
}

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

img { display: block; max-width: 100%; height: auto; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-dark); }
ul { list-style: none; }

/* --- Utility ---------------------------------------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.section-pad { padding: var(--section-pad); }

.section-heading-center {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  line-height: 1.25;
}

.section-intro-text {
  text-align: center;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 3rem;
  font-size: 1.0625rem;
  line-height: 1.7;
}

/* --- Buttons ---------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background .2s, color .2s, border-color .2s, box-shadow .2s;
  line-height: 1;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
  box-shadow: 0 4px 12px rgba(5,150,105,.35);
}

.hero-btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  font-size: 1rem;
  padding: .85rem 2rem;
  font-weight: 700;
  border-radius: var(--radius);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.hero-btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
}

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  border: 2px solid rgba(255,255,255,0.6);
  color: #fff;
  background: transparent;
  padding: .75rem 2rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: background .2s, border-color .2s;
  margin-left: 1rem;
}
.btn-hero-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; color: #fff; }

.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: #fff;
}

.btn-maps {
  margin-top: .75rem;
  padding: .55rem 1.1rem;
  font-size: 0.9375rem;
}

.btn-maps-full {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem 1.5rem;
  background: var(--accent);
  color: #fff !important;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  margin-top: 1rem;
}
.btn-maps-full:hover { filter: brightness(1.1); color: #fff; }

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

/* --- Navbar ----------------------------------------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--navbar-h);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .3s, box-shadow .3s, border-color .3s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-md);
}

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

.navbar-logo {
  margin-right: auto;
}
.navbar-logo img {
  height: var(--navbar-h);
  width: auto;
  object-fit: contain;
  padding: 8px 0;
}
.logo-navbar {
  transition: filter 0.3s;
}
.navbar:not(.scrolled) .logo-navbar {
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  gap: .25rem;
}
.nav-links a {
  font-size: 1.0625rem;
  font-weight: 600;
  color: #fff;
  padding: .45rem .7rem;
  border-radius: var(--radius);
  transition: background .15s, color .15s;
}
.nav-links a:hover {
  color: rgba(255,255,255,0.7);
}
.navbar.scrolled .nav-links a {
  color: var(--text);
}
.navbar.scrolled .nav-links a:hover {
  background: var(--bg-alt);
  color: var(--accent);
}

.btn-nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
  margin-left: 1rem;
}
.btn-nav-cta:hover { filter: brightness(1.1); color: #fff !important; }
.navbar.scrolled .btn-nav-cta { color: #fff !important; }

/* Hamburger base styles (before media queries) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .2s, opacity .2s, background .2s;
}
.navbar.scrolled .hamburger span {
  background: var(--text);
}

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

/* --- Mobile Menu ------------------------------------ */
.mobile-menu {
  position: fixed;
  top: var(--navbar-h); right: 0;
  width: min(320px, 85vw);
  height: calc(100vh - var(--navbar-h));
  background: #fff;
  z-index: 1000;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  padding: 0.375rem 1.5rem 1.5rem;
  box-shadow: var(--shadow-lg);
}
.mobile-menu.open { transform: translateX(0); }

.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 1.75rem;
  cursor: pointer;
  color: var(--text-muted);
  line-height: 1;
  margin-bottom: 1rem;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.mobile-nav-links a {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  padding: .75rem 1rem;
  border-radius: var(--radius);
  transition: background .15s, color .15s;
}
.mobile-nav-links a:hover {
  background: var(--bg-alt);
  color: var(--accent);
}

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

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

.hero-img-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.3) 60%, rgba(0,0,0,.25) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin-left: max(100px, 6vw);
  margin-right: 200px;
  padding-top: 275px;
  padding-bottom: 4rem;
}

.hero-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 6vw, 4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  white-space: nowrap;
}

.hero-sub {
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  color: rgba(255,255,255,.88);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

/* --- About ------------------------------------------ */
.about { background: var(--bg); }

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

.about-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform .5s;
}
.about-img-wrap:hover img { transform: scale(1.03); }

.about-copy h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.65rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.about-copy p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.1rem;
  font-size: 1.0625rem;
}
.about-copy p:last-child { margin-bottom: 0; }

/* --- Activities ------------------------------------- */
.activities { background: var(--bg-alt); }

.activities-intro-img-wrap {
  text-align: center;
  margin-bottom: 0;
}
.activities-intro-img {
  width: 35%;
  height: auto;
  display: inline-block;
  border-radius: var(--radius-lg);
}

.activities > .container { padding-top: 3.5rem; }

.activities-intro-para {
  max-width: 100%;
  text-align: justify;
  color: var(--text-muted);
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.activity-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 4.5rem;
}

.activity-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
}
.activity-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.activity-card-img-wrap {
  height: 200px;
  overflow: hidden;
}
.activity-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.activity-card:hover .activity-card-img-wrap img { transform: scale(1.05); }

.activity-card-body {
  padding: 1.5rem;
}
.activity-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.1875rem;
  font-weight: 700;
  margin-bottom: .6rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.activity-card-body h3 i {
  color: var(--accent);
  font-size: 1.1rem;
}
.activity-card-body p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* On-site activities */
.onsite-activities {
  margin-bottom: 3rem;
}
.onsite-heading {
  font-family: var(--font-heading);
  font-size: 1.1875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.onsite-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
}
.onsite-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
}
.onsite-item i {
  color: var(--accent);
  font-size: 0.9375rem;
  flex-shrink: 0;
}

/* Tour blocks */
.tours-heading { margin-top: 1rem; margin-bottom: 1rem; }

.tour-blocks {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.tour-block {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s;
}
.tour-block:hover { box-shadow: var(--shadow-md); }

.tour-block--img-right {
  grid-template-columns: 1.4fr 1fr;
}
.tour-block--img-right .tour-block-image {
  order: 2;
}
.tour-block--img-right .tour-block-content {
  order: 1;
}

.tour-block-image {
  min-width: 0;
  overflow: hidden;
}
.tour-block-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.tour-block-content {
  min-width: 0;
  overflow-wrap: break-word;
  padding: 2rem;
}
.tour-block-content h3 {
  font-family: var(--font-heading);
  font-size: 1.1875rem;
  font-weight: 700;
  margin-bottom: .75rem;
  line-height: 1.3;
}
.tour-block-content p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --- Rooms ------------------------------------------ */
.rooms { background: var(--bg); }

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 2rem;
}

.room-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, transform .2s;
}
.room-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

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

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

.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(255,255,255,.85);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  opacity: 1;
  transition: background .15s;
  color: var(--text);
  line-height: 1;
}
.carousel-btn:hover { background: #fff; }
.carousel-btn.prev { left: .5rem; }
.carousel-btn.next { right: .5rem; }

.carousel-dots {
  position: absolute;
  bottom: .6rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 80%;
}
.carousel-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  cursor: pointer;
  transition: background .2s, transform .2s;
  flex-shrink: 0;
  border: none;
  padding: 0;
}
.carousel-dot.active {
  background: #fff;
  transform: scale(1.3);
}

.room-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.room-info h3 {
  font-family: var(--font-heading);
  font-size: 1.1875rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.amenity-list {
  display: flex;
  flex-direction: column;
  gap: .45rem;
  margin-bottom: 1.5rem;
  flex: 1;
}
.amenity-list li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.amenity-list i {
  color: var(--accent);
  font-size: 0.9375rem;
  margin-top: .2rem;
  flex-shrink: 0;
}

.room-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: auto;
}
.btn-room-cta {
  width: 100%;
  justify-content: center;
  text-align: center;
}

/* --- Meals ------------------------------------------ */
.meals { background: var(--bg-alt); }

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

.meals-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: calc(var(--navbar-h) + 8px);
}
.meals-img-wrap img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.meals-copy h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.65rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.meals-copy > p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 1.0625rem;
  max-width: 100%;
}

.meals-bld {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.meal-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: #fff;
  border-radius: var(--radius);
  border-left: 4px solid var(--accent);
  box-shadow: var(--shadow-sm);
}
.meal-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.meal-icon i {
  color: var(--accent);
  font-size: 1rem;
}
.meal-details h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1875rem;
  margin-bottom: .35rem;
}
.meal-details p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- Getting There ---------------------------------- */
.getting-there { background: var(--bg); }

.transfer-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.transfer-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
}
.transfer-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.transfer-card-icon i {
  color: var(--accent);
  font-size: 1.4rem;
}
.transfer-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1875rem;
  margin-bottom: .75rem;
}
.transfer-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.route-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1rem;
  text-align: left;
}
.route-list li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: .4rem;
}
.route-list i {
  color: var(--accent);
  font-size: 0.9375rem;
  flex-shrink: 0;
}

.travel-tips {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--border);
}
.travel-tips h3 {
  font-family: var(--font-heading);
  font-size: 1.1875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.tips-dl {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: .85rem 1.5rem;
}
.tips-dl dt {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--accent-dark);
  padding-top: .05rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.tips-dl dt i {
  color: var(--accent);
}
.tips-dl dd {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* --- Contact ---------------------------------------- */
.contact { background: var(--bg-alt); }

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

.contact-sidebar h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  margin-bottom: .9rem;
  line-height: 1.25;
}
.contact-sidebar > p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.75rem;
  font-size: 1.0625rem;
}

.contact-card {
  display: flex;
  gap: 1rem;
  background: #fff;
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.contact-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-card-icon i {
  color: var(--accent);
  font-size: 1rem;
}
.contact-card-body h4 {
  font-weight: 700;
  font-size: 1.0625rem;
  margin-bottom: .3rem;
}
.contact-card-body p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.quick-facts-list {
  list-style: none;
  padding: 0;
}
.quick-facts-list li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: .3rem;
}
.quick-facts-list i {
  color: var(--accent);
  font-size: 0.9375rem;
  width: 1.2em;
  text-align: center;
  flex-shrink: 0;
}

.maps-iframe-wrap {
  margin-top: 1rem;
  border-radius: var(--radius);
  overflow: hidden;
}

/* Form */
.contact-form-wrap {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.contact-form-wrap h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.form-group label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .65rem .9rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--text);
  background: #fff;
  transition: border-color .15s, box-shadow .15s;
  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(5,150,105,.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }

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

.form-success-banner {
  background: var(--accent-light);
  color: var(--accent-dark);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  font-size: 0.9375rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.form-error-banner {
  background: #fef2f2;
  color: #991b1b;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  font-size: 0.9375rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.required { color: #dc2626; font-weight: 700; }

/* Getting Here maps */
.getting-here-maps {
  margin-bottom: 2rem;
}
.getting-here-maps .btn-maps-full {
  margin-top: 0;
  margin-bottom: 1rem;
}

/* --- Reviews ---------------------------------------- */
.reviews { background: var(--bg); }

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

.review-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s, transform .5s;
}
.review-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.review-stars {
  display: flex;
  gap: 3px;
}
.review-stars i {
  color: var(--accent);
  font-size: 0.9375rem;
}

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

.review-author {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.review-name {
  font-weight: 600;
  font-size: 0.9375rem;
}
.review-country {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

/* --- Footer ----------------------------------------- */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,.75);
  padding: 3.5rem 1.25rem 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 2.5rem;
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}
.footer-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1rem;
}
.footer-location {
  color: rgba(255,255,255,0.7);
  font-size: 0.9375rem;
}
.footer-location i {
  color: var(--accent-light);
  margin-right: 0.35rem;
}

.footer-nav-col h5 {
  font-size: 1.125rem;
  color: #fff;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-nav-col ul {
  list-style: none;
  padding: 0;
}
.footer-nav-col li + li {
  margin-top: 0.5rem;
}
.footer-nav-col a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.2s;
}
.footer-nav-col a:hover {
  color: #fff;
}

.footer-contact-col h5 {
  font-size: 1.125rem;
  color: #fff;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-enquiry-link {
  display: inline-block;
  color: #fff;
  font-size: 1.0625rem;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 1rem;
}
.footer-enquiry-link:hover { text-decoration: underline; color: #fff; }

.footer-social {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}
.footer-social a {
  color: rgba(255,255,255,0.7);
  font-size: 1.25rem;
  transition: color 0.2s;
}
.footer-social a:hover { color: #fff; }

.footer-lang-text {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-top: 1.25rem;
}
.flt-a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  opacity: .75;
  transition: opacity .2s;
  line-height: 1;
}
.flt-a:hover { opacity: 1; }
.flt-a.flt-active { opacity: .85; }
.flag-svg {
  width: 28px;
  height: auto;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(255,255,255,.1);
}

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

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

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

.modal-inner {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 560px;
  width: 100%;
  box-shadow: var(--shadow-lg);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-muted);
  line-height: 1;
  padding: .25rem;
}
.modal-close:hover { color: var(--text); }

.modal-content h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: .85rem;
}
.modal-content p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
}
.modal-go-btn { width: 100%; justify-content: center; text-align: center; }

/* =====================================================
   LANGUAGE SWITCHER
   ===================================================== */
.x13-lang{display:flex;align-items:center;gap:0;margin-left:18px;background:rgba(255,255,255,.12);border-radius:999px;padding:.15rem;border:1px solid rgba(5,150,105,.5);flex-shrink:0}.x13-t{display:flex;align-items:center;justify-content:center;padding:.2rem .55rem;font-size:.875rem;font-weight:700;color:rgba(255,255,255,.7);text-decoration:none;border-radius:999px;transition:color .2s,background .2s;line-height:1}.x13-t:hover{color:#fff}.x13-t.x13-active{color:#fff;background:rgba(255,255,255,.22)}.navbar.scrolled .x13-lang{background:var(--bg-alt,#f5f5f5);border-color:rgba(5,150,105,.3)}.navbar.scrolled .x13-t{color:var(--text-muted,#6b7280)}.navbar.scrolled .x13-t:hover{color:var(--accent)}.navbar.scrolled .x13-t.x13-active{color:var(--text,#1a1a1a);background:rgba(5,150,105,.08)}@media(max-width:1023px){.x13-lang{display:none}}
.x21-lang{display:flex;align-items:center;gap:.25rem;margin-left:18px;flex-shrink:0}.x21-t{font-size:.9375rem;font-weight:700;text-decoration:none;color:rgba(255,255,255,.45);transition:color .2s;line-height:1}.x21-t:hover{color:rgba(255,255,255,.85)}.x21-t.x21-active{color:#fff}.x21-div{width:1px;height:12px;background:rgba(255,255,255,.3)}.navbar.scrolled .x21-t{color:var(--text-muted,#6b7280)}.navbar.scrolled .x21-t:hover{color:var(--accent)}.navbar.scrolled .x21-t.x21-active{color:var(--text,#1a1a1a)}.navbar.scrolled .x21-div{background:var(--border,#e5e7eb)}@media(max-width:1023px){.x21-lang{display:none}}
.x22-lang{display:flex;align-items:center;gap:.1rem;margin-left:18px;background:rgba(255,255,255,.1);border-radius:999px;padding:.15rem .25rem;flex-shrink:0}.x22-t{display:flex;align-items:center;justify-content:center;padding:.2rem .5rem;font-size:.875rem;font-weight:700;color:rgba(255,255,255,.45);text-decoration:none;border-radius:999px;transition:color .2s,background .2s;line-height:1}.x22-t:hover{color:rgba(255,255,255,.85)}.x22-t.x22-active{color:#fff;background:rgba(255,255,255,.2)}.navbar.scrolled .x22-lang{background:var(--bg-alt,#f5f5f5)}.navbar.scrolled .x22-t{color:var(--text-muted,#6b7280)}.navbar.scrolled .x22-t:hover{color:var(--accent)}.navbar.scrolled .x22-t.x22-active{color:var(--text,#1a1a1a);background:rgba(5,150,105,.08)}@media(max-width:1023px){.x22-lang{display:none}}
.xm12-row{display:none}.xm12-lang{display:flex;align-items:center;gap:.1rem;margin-right:.4rem}.xm12-t{font-size:.6875rem;font-weight:700;letter-spacing:.03em;color:rgba(255,255,255,.7);text-decoration:none;padding:.1rem .25rem;border-radius:3px;line-height:1;transition:color .2s,background .2s}.xm12-t:hover{color:#fff}.xm12-t.xm12-active{color:#fff;background:rgba(255,255,255,.15)}.navbar.scrolled .xm12-t{color:var(--text-muted,#6b7280)}.navbar.scrolled .xm12-t.xm12-active{color:var(--text,#1a1a1a);background:var(--bg-alt,#f5f5f5)}@media(max-width:1023px){.xm12-row{display:flex;align-items:center}}

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

@media (max-width: 1023px) {
  .nav-links { display: none; }
  .btn-nav-cta { display: none; }
  .hamburger { display: flex; }
  .navbar-inner {
    padding-left: var(--container-px);
    padding-right: var(--container-px);
  }
}

@media (max-width: 1100px) {
  .activity-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  :root { --section-pad: 3.5rem 1.25rem; }

  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-img-wrap img { height: 300px; }

  .tour-block,
  .tour-block--img-right {
    grid-template-columns: 1fr;
  }
  .tour-block--img-right .tour-block-image,
  .tour-block--img-right .tour-block-content {
    order: unset;
  }
  .tour-block-content { padding: 1.5rem; }

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

  .meals-grid { grid-template-columns: 1fr; gap: 2rem; }
  .meals-img-wrap { position: static; }
  .meals-img-wrap img { height: 280px; }

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

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

  .tips-dl { grid-template-columns: 1fr; gap: .25rem; }
  .tips-dl dt { margin-top: .75rem; }
  .tips-dl dt:first-child { margin-top: 0; }

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

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

@media (max-width: 767px) {
  .footer-inner { text-align: left; }
  .footer-lang-text { justify-content: flex-start; gap: 1rem; }
  .flt-a { opacity: .9; }
  .flt-a.flt-active { opacity: 1; }
  .flag-svg { width: 32px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --section-pad: 3rem 1rem; }

  .hero { min-height: 75vh; }
  .hero-content {
    margin-left: 1.25rem;
    margin-right: 1.25rem;
    padding-top: 180px;
    padding-bottom: 3rem;
  }
  .hero-heading { white-space: normal; font-size: clamp(2rem, 8vw, 3rem); }
  .btn-hero-outline { margin-left: 0; margin-top: .75rem; }
  .hero-btns { flex-direction: column; align-items: flex-start; gap: .75rem; }

  .activity-cards-grid { grid-template-columns: 1fr; }
  .rooms-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .onsite-grid { grid-template-columns: 1fr; }

  .contact-form-wrap { padding: 1.5rem; }

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

/* Mobile font floors */
@media (max-width: 767px) {
  body { font-size: 1.0625rem; }
}
