:root {
  --green: #3b8d30;
  --teal: #008a78;
  --btn: #0b8e7c;
  --shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
  --bg: #0b0f0a;
  --card: #111;
  --text: #111;
  --muted: #6b7280;
}

* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
}
body {
  font-family:
    "Roboto",
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  background: var(--bg);
  overflow-x: hidden;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}

/* =========================================================
   HEADER (modern glass)
   ========================================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 18px 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: rgba(0, 100, 0, 0.14);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  z-index: 1000;
  transition: all 0.3s ease;
  position: fixed;
}
.header.scrolled {
  background: rgba(0, 100, 0, 0.78);
  padding: 14px 34px;
}
.brand {
  display: flex;
  align-items: center;
}

/* logo link */
.brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

/* logo image */
.brand-logo img {
  height: 46px; /* desktop size */
  width: auto;
  object-fit: contain;
  display: block;
}

/* shrink on scroll header */
.header.scrolled .brand-logo img {
  height: 38px;
}

/* ===== Mobile Menu Button ===== */
.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  /*gap: 6px;*/
  padding: 10px;
}
.hamburger span {
  display: block;
  height: 2px;
  width: 22px;
  background: #fff;
  border-radius: 99px;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}
.hamburger span + span {
  margin-top: 6px;
}

/* X animation */
.hamburger.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ===== Mobile nav panel ===== */
.mobile-nav {
  position: absolute;
  top: 100%;
  left: 12px;
  right: 12px;
  margin-top: 10px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 60, 30, 0.72);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.25);
  display: none;
  flex-direction: column;
  gap: 8px;
  z-index: 1200;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 12px;
  border-radius: 12px;
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* open state */
.mobile-nav.open {
  display: flex;
}

/* ===== Responsive switching ===== */
@media (max-width: 900px) {
  .contact {
    display: none;
  }
}

@media (max-width: 768px) {
  .menu--desktop {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .header {
    position: fixed;
  }
}

.menu ul {
  display: flex;
  list-style: none;
  gap: 18px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: center;
}
.menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.2px;
}
.menu a:hover {
  color: #28a745;
}
.contact {
  text-align: right;
  font-size: 0.95rem;
  white-space: nowrap;
}
.contact span {
  display: block;
  font-weight: 700;
}

/* =========================================================
   HERO (NO 3rd line + NO button)
   ========================================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 90px;
  padding-bottom: 320px;
}

.bg-slides {
  position: absolute;
  inset: 0;
}
.bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.8s ease;
  will-change: opacity;
  transform: none;
}
.bg-slide.active {
  opacity: 1;
}

/* overlay */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0)
  );
  z-index: 1;
}

/* subtle 3D glass blobs for modern feel */
.hero::before {
  content: none;
  position: absolute;
  inset: -120px;
  background:
    radial-gradient(
      600px 420px at 20% 30%,
      rgba(40, 167, 69, 0.2),
      transparent 60%
    ),
    radial-gradient(
      700px 520px at 80% 70%,
      rgba(11, 142, 124, 0.18),
      transparent 60%
    ),
    radial-gradient(
      520px 420px at 50% 55%,
      rgba(255, 255, 255, 0.08),
      transparent 60%
    );
  z-index: 1;
  /* filter: blur(0px);*/
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 5;
  max-width: 1100px;
  padding: 0 20px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.hero-glass {
  width: min(900px, 92vw);
  padding: 22px 22px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  text-align: center;
  transform: translateY(8px);
}

/* HERO AUDIO UI */
.hero-audio{
  margin-top: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
}

.audio-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:12px;
  cursor:pointer;
  font-weight:900;
  color:#fff;
  background: rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  transition: transform .2s ease, filter .2s ease, background .2s ease;
}
.audio-btn:hover{
  transform: translateY(-2px);
  filter: brightness(1.06);
  background: rgba(255,255,255,.14);
}
.audio-btn.is-on{
  background: rgba(11,142,124,.35);
  border-color: rgba(255,255,255,.22);
}

.audio-note{
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .2px;
  color: rgba(255,255,255,.82);
  opacity: .95;
}

.hero-kicker {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 3px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  text-transform: uppercase;
}

.hero-heading {
  margin: 16px 0 8px;
  font-size: clamp(34px, 4.2vw, 64px);
  line-height: 1.03;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.55);
}

.hero-desc {
  margin: 0 auto;
  max-width: 760px;
  font-size: clamp(14px, 1.35vw, 18px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  margin-top: 16px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.2px;
  background: var(--btn);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  transition:
    transform 0.2s ease,
    filter 0.2s ease;
}

/* Smooth text swap animation */
.hero-heading,
.hero-desc,
.hero-btn {
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}
.hero-swap-out {
  opacity: 0;
  transform: translateY(10px);
}
.hero-swap-in {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-glass {
    padding: 18px 16px;
    border-radius: 18px;
  }
}

.hero-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}

.hero-btn--ghost {
  background: rgba(255, 255, 255, 0.1);
}

.hero-content .empty-hero {
  height: 200px;
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 4px;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.55);
  opacity: 0;
  transform: translateY(60px);
  animation: fadeUp 1.1s ease forwards 0.25s;
  line-height: 1.05;
}
.hero-title span {
  display: block;
  font-size: 0.74em;
  font-weight: 800;
  letter-spacing: 2px;
}
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================================
   HERO 3D CAROUSEL
   ========================================================= */
.carousel-container {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  max-width: 1400px;
  height: 280px;
  perspective: 1200px;
  z-index: 3;
}
.carousel {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}
.slide {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 320px;
  height: 220px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.55);
  transition:
    transform 0.8s cubic-bezier(0.2, 0.8, 0.4, 1),
    opacity 0.4s ease;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(0);
  transition: transform 0.55s ease;
}
.slide:hover img {
  transform: scale(1.1);
}
.slide:hover {
  filter: saturate(1.05);
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.18);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  z-index: 10;
  backdrop-filter: blur(10px);
  transition: all 0.25s ease;
}
.carousel-nav:hover {
  background: rgba(255, 255, 255, 0.38);
  transform: translateY(-50%) scale(1.08);
}
.prev {
  left: 12px;
}
.next {
  right: 12px;
}

/* =========================================================
   GLOBAL: 3D image feel for all images (cards/tiles)
   ========================================================= */
.gh-3d {
  transform-style: preserve-3d;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
  will-change: transform;
}
.gh-3d:hover {
  transform: translateY(-6px) rotateX(4deg) rotateY(-4deg);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.25);
}

/* =========================================================
   SECTIONS (reused on all pages)
   ========================================================= */

/* Intro */
.gh-intro-section {
  background: #fff;
  padding: 90px 0;
}
.gh-container {
  text-align: center;
}
.gh-title {
  font-size: 46px;
  color: var(--teal);
  font-weight: 900;
  letter-spacing: 1px;
}
.gh-description {
  max-width: 980px;
  margin: 0 auto 14px;
  color: #444;
  line-height: 1.8;
}
.gh-cta-wrap {
  margin: 28px 0 70px;
}
.gh-cta-btn {
  background: #000;
  color: #fff;
  padding: 14px 34px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
}
.gh-services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.gh-services h4 {
  margin-top: 18px;
  color: #111;
}
.gh-circle {
  width: 210px;
  height: 210px;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid #cfcfcf;
  margin: auto;
}
.gh-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Tours */
.gh-tours-section {
  background: #fff;
  padding: 70px 0 90px;
}

.gh-tours-header {
  max-width: 1100px;
  margin-bottom: 26px;
}

.gh-tours-title {
  font-size: 56px;
  font-weight: 900;
  margin: 0 0 10px 0;
  letter-spacing: 0.5px;
}

.gh-tours-title .green {
  color: var(--teal);
}

.gh-tours-desc {
  color: #2f2f2f;
  line-height: 1.8;
  margin: 0;
  max-width: 1000px;
}

.gh-tours-grid-like {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.tour-card {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  background: #111;
  text-decoration: none;
  min-height: 290px;
  isolation: isolate;
}

.tour-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 0.5s ease;
}

.tour-card:hover img {
  transform: scale(1.08);
}

/* top row sizes */
.tour-card--big {
  grid-column: 1 / span 8;
  height: 340px;
}
.tour-card--right {
  grid-column: 9 / span 4;
  height: 340px;
}

/* second row sizes */
.tour-card--small {
  grid-column: span 4;
  height: 260px;
}

/* Overlay */
.tour-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 18px 14px;
  color: #fff;
  z-index: 2;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0));
}

.tour-title {
  font-weight: 900;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 20px;
  line-height: 1.15;
  text-shadow: 0 10px 22px rgba(0, 0, 0, 0.35);
}

.tour-meta {
  display: flex;
  gap: 14px;
  margin-top: 10px;
  opacity: 0.95;
  font-weight: 700;
  font-size: 14px;
}

.meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 6px 10px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

.meta-ico {
  font-size: 14px;
}

/* ===== Responsive ===== */
@media (max-width: 1000px) {
  .tour-card--big {
    grid-column: 1 / span 12;
    height: 320px;
  }
  .tour-card--right {
    grid-column: 1 / span 12;
    height: 260px;
  }
  .tour-card--small {
    grid-column: span 6;
    height: 240px;
  }
}

@media (max-width: 620px) {
  .gh-tours-title {
    font-size: 38px;
  }
  .tour-card--small {
    grid-column: span 12;
    height: 240px;
  }
}

/* =========================================
   1) OVERLAP HERO PARALLAX (W3Schools style)
   ========================================= */
.gh-parallax-wrap {
  min-height: 520px;
  position: relative;
  display: flex;
  align-items: center;

  /*  Parallax background on the section */
  background-image: url("https://images.unsplash.com/photo-1500375592092-40eb2168fd21?auto=format&fit=crop&w=2400&q=80");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Overlay */
.gh-parallax-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0));
}

.gh-parallax-content {
  position: relative;
  z-index: 2;
  padding: 64px 0;
  text-align: left;
}

.gh-overlap-hero__title {
  margin: 0;
  font-size: 64px;
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  text-shadow: 0 18px 35px rgba(0, 0, 0, 0.35);
}

.gh-overlap-hero__btn {
  display: inline-block;
  margin-top: 18px;
  background: var(--btn);
  color: #fff;
  padding: 12px 18px;
  text-decoration: none;
  font-weight: 900;
  border-radius: 10px;
}

/* =========================================
   2) OVERLAP PANEL
   ========================================= */
.gh-overlap-panel {
  background: #fff;
  position: relative;
  z-index: 20;
  margin-top: -120px;
  padding: 40px 0 70px;
}

.gh-overlap-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 44px;
}

.gh-overlap-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gh-day-card {
  position: relative;
  height: 440px;
  overflow: hidden;
  text-decoration: none;
  background: #111;
  border-radius: 10px;
}

.gh-day-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 0.35s ease;
}

.gh-day-card:hover img {
  transform: scale(1.08);
}

.gh-day-card__price {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #ff3b00;
  color: #000;
  font-weight: 900;
  padding: 10px 12px;
  border-radius: 8px;
}

.per-person {
  font-weight: 800;
  color: #fff;
  margin-left: 6px;
}

.gh-day-card__bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px;
  color: #fff;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.82));
  font-weight: 900;
}

/* Info side */
.gh-overlap-info {
  text-align: left;
}
.gh-overlap-info__kicker {
  letter-spacing: 6px;
  color: var(--teal);
  font-weight: 900;
  font-size: 12px;
}
.gh-overlap-info__title {
  font-size: 54px;
  font-weight: 900;
  color: var(--teal);
  margin: 12px 0 14px;
}
.gh-overlap-info__title .dark {
  color: #111;
}
.gh-overlap-info p {
  color: #444;
  line-height: 1.8;
}
.gh-overlap-info__btn {
  background: var(--btn);
  color: #fff;
  padding: 12px 18px;
  text-decoration: none;
  font-weight: 900;
  display: inline-block;
  border-radius: 10px;
}

/* =========================================
   3) BANNER PARALLAX (W3Schools style)
   ========================================= */
.gh-banner {
  min-height: 520px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;

  /*  Parallax background on the section */
  background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=2400&q=80");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.gh-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.55));
}

.gh-banner__content {
  position: relative;
  z-index: 2;
  padding: 70px 0;
}

.gh-banner__title {
  color: #fff;
  font-weight: 900;
  font-size: 64px;
  line-height: 1.05;
  text-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
  margin: 0 0 18px 0;
}

.gh-banner__btn {
  display: inline-block;
  background: var(--btn);
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
  padding: 14px 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
}

/*  Turn off parallax for phones/tablets (like example) */
@media only screen and (max-device-width: 1366px) {
  .gh-parallax-wrap,
  .gh-banner {
    background-attachment: scroll;
  }
}

/* Layout responsive */
@media (max-width: 900px) {
  .gh-overlap-grid {
    grid-template-columns: 1fr;
  }
  .gh-overlap-cards {
    grid-template-columns: 1fr;
  }
  .gh-overlap-hero__title {
    font-size: 44px;
  }
  .gh-banner__title {
    font-size: 44px;
  }
}

/* ATTRACTIONS */
.gh-attractions {
  background: #fff;
  padding: 70px 0 80px;
}
.gh-center {
  text-align: center;
}
.gh-kicker {
  color: var(--teal);
  font-weight: 900;
  letter-spacing: 8px;
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.gh-h2 {
  margin: 0;
  font-size: 54px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.gh-h2 .teal {
  color: var(--teal);
}
.gh-attractions p {
  max-width: 980px;
  margin: 14px auto 34px;
  color: #555;
  line-height: 1.8;
}
.attr-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.attr-tile {
  position: relative;
  height: 220px;
  overflow: hidden;
  text-decoration: none;
  background: #111;
}
.attr-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.03);
  transition: transform 0.35s ease;
}
.attr-tile:hover img {
  transform: scale(1.1);
}
.attr-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.7));
}
.attr-label {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 2;
  color: #fff;
  font-weight: 900;
  text-shadow: 0 10px 22px rgba(0, 0, 0, 0.35);
}

/* GOOGLE REVIEWS */
.gh-reviews {
  background: #fff;
  padding: 70px 0 80px;
}
.reviews-shell {
  position: relative;
  overflow: hidden;
  padding: 20px 8px 10px;
}
.reviews-track {
  display: flex;
  gap: 22px;
  transition: transform 0.55s ease;
  will-change: transform;
}
.review-card {
  flex: 0 0 calc((100% - 66px) / 4);
  min-width: 260px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
  padding: 18px 18px 16px;
}
.review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.stars {
  color: #f4b400;
  font-weight: 900;
  letter-spacing: 1px;
}
.g-badge {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 900;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.12);
}
.review-name {
  margin: 14px 0 0;
  font-weight: 900;
  color: #111;
}
.review-date {
  margin: 4px 0 12px;
  font-size: 12px;
  color: #777;
  font-weight: 800;
}
.review-text {
  color: #444;
  line-height: 1.65;
  font-size: 14px;
  min-height: 110px;
}
.reviews-nav {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.rev-btn {
  pointer-events: auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.95);
  cursor: pointer;
}
.rev-btn.prev {
  left: -6px;
}
.rev-btn.next {
  right: -6px;
}
.rev-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}
.rev-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.25);
  background: rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.rev-dot.active {
  background: rgba(0, 0, 0, 0.45);
}

/* WHY */
.gh-why {
  background: #dfe6ea;
  padding: 70px 0 80px;
}
.why-title {
  text-align: center;
  font-size: 42px;
  font-weight: 900;
  color: var(--teal);
  margin: 0 0 34px 0;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.why-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 26px 22px;
  text-align: center;
  min-height: 320px;
}
.why-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  background: rgba(0, 138, 120, 0.16);
  color: var(--teal);
  font-weight: 900;
}
.why-card h4 {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
}
.why-card p {
  margin: 0;
  color: #444;
  line-height: 1.75;
  font-size: 14px;
}
.why-sep {
  margin: 16px auto;
  height: 1px;
  width: 80%;
  background: rgba(0, 0, 0, 0.12);
}

/* Footer */
.gh-footer {
  background: #4a4a4a;
  color: #e9e9e9;
}
.footer-news {
  padding: 44px 0 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  text-align: center;
}
.footer-news h3 {
  margin: 0 0 8px;
  font-size: 34px;
  font-weight: 900;
}
.footer-news p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.85);
}
.news-form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 220px;
  gap: 16px;
  max-width: 980px;
  margin: 0 auto;
}
.news-form input {
  padding: 14px 14px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #6a6a6a;
  color: #fff;
  outline: none;
}
.news-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.news-form button {
  padding: 14px 16px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  background: rgba(11, 142, 124, 0.35);
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
}
.footer-links {
  padding: 40px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.footer-col h5 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 900;
}
.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  margin: 10px 0;
}
.footer-col a:hover {
  color: #fff;
  text-decoration: underline;
}
.footer-bottom {
  padding: 18px 0 22px;
  text-align: center;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

/* =========================================================
   Floating language button (left side)
   ========================================================= */
.lang-fab {
  position: fixed;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1200;
}
.lang-btn {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(10px);
  font-weight: 900;
}
.lang-panel {
  margin-top: 10px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  padding: 10px;
  display: none;
  backdrop-filter: blur(10px);
}
.lang-panel.open {
  display: grid;
  gap: 8px;
}
.lang-option {
  width: 120px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  text-align: left;
  font-weight: 800;
}
.lang-option:hover {
  background: rgba(255, 255, 255, 0.16);
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.2rem;
  }
  .slide {
    width: 260px;
    height: 180px;
  }
  .header {
    padding: 14px 18px;
  }
  .header.scrolled {
    padding: 12px 18px;
  }
  .menu ul {
    gap: 12px;
    font-size: 0.84rem;
  }
  .news-form {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 900px) {
  .contact {
    display: none;
  }
  .gh-services {
    grid-template-columns: repeat(2, 1fr);
  }
  .attr-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .menu--desktop {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .carousel-container {
    height: 200px;
    bottom: 18px;
  }
  .slide {
    width: 220px;
    height: 150px;
  }
  .carousel-nav {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
  }
  .menu {
    display: none;
  }
}
@media (max-width: 600px) {
  .menu--desktop {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .gh-title {
    font-size: 32px;
  }
  .gh-tours-title {
    font-size: 38px;
  }
  .gh-h2 {
    font-size: 36px;
  }
  .gh-banner__title {
    font-size: 40px;
  }
  .attr-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
