*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #1b2a6b;
  --navy-dark: #162058;
  --navy-light: #253580;
  --accent: #1b2a6b;
  --white: #ffffff;
  --light-gray: #f5f6fa;
  --text: #333344;
  --text-light: #555566;
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: "Raleway", sans-serif;
  color: var(--text);
  overflow-x: hidden;
}

/* ─── NAVBAR ─────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  transition: background 0.3s;
}
.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo img {
  width: 150px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links > li {
  position: relative;
}
.nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 13px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition:
    border-color 0.2s,
    color 0.2s;
}
.nav-links > li > a:hover,
.nav-links > li > a.active {
  border-bottom-color: var(--navy);
}
.nav-links > li > a .fa-chevron-down {
  font-size: 0.62rem;
  opacity: 0.7;
}

/* Dropdown */
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  background: #fff;
  min-width: 190px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border-radius: 6px;
  overflow: hidden;
  z-index: 200;
}
.nav-links > li:hover .dropdown {
  display: block;
}
.dropdown a {
  display: block;
  padding: 11px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  transition: background 0.15s;
}
.dropdown a:hover {
  background: var(--light-gray);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.btn-book {
  background: var(--navy);
  color: #fff;
  padding: 9px 22px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.15s;
  white-space: nowrap;
}
.btn-book:hover {
  background: var(--navy-dark);
  transform: translateY(-1px);
}
.lang-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}
.audio-btn {
  background: none;
  border: none;
  color: var(--navy);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 4px;
}

/* ─── HERO ───────────────────────────────────────────── */
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url(../images/7.jpg) center center / cover no-repeat;
  animation: zoomOut 8s ease-out forwards;
  transform-origin: center center;
}
@keyframes zoomOut {
  from {
    transform: scale(1.25);
  }
  to {
    transform: scale(1);
  }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.08) 0%,
    rgba(0, 0, 0, 0) 50%,
    rgba(0, 0, 0, 0.3) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  animation: fadeUp 1.2s 0.5s both;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-content h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
  margin-bottom: 16px;
}
.hero-content p {
  font-size: 1.15rem;
  font-weight: 500;
  opacity: 0.92;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
  max-width: 500px;
  margin: 0 auto 28px;
}
.btn-hero {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  padding: 13px 36px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.15s;
}
.btn-hero:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
}

/* Slider dots */
.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}
.hero-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.2s;
}
.hero-dots span.active {
  background: #fff;
}

/* Scroll-to-top floating btn */
#scrollTop {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(27, 42, 107, 0.4);
  opacity: 0;
  transition:
    opacity 0.3s,
    transform 0.2s;
  transform: translateY(10px);
}
#scrollTop.visible {
  opacity: 1;
  transform: translateY(0);
}
#scrollTop:hover {
  background: var(--navy-dark);
}

/* ─── SECTION COMMON ─────────────────────────────────── */
section {
  width: 100%;
}
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}
.section-title {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 18px;
  line-height: 1.2;
}
.section-sub {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.75;
  max-width: 640px;
  margin-bottom: 40px;
}
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 10px;
  border-bottom: 2px solid var(--navy);
  padding-bottom: 4px;
}

/* ─── ABOUT ──────────────────────────────────────────── */
#about {
  padding: 100px 0;
  background: #fff;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(27, 42, 107, 0.15);
}
.about-image-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}
.about-image-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-align: center;
  padding: 24px;
  text-transform: uppercase;
}
.about-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 8px 20px;
  border-radius: 20px;
  border: 2px solid var(--navy);
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  color: var(--navy);
  background: transparent;
  transition: 0.2s;
  font-family: inherit;
}
.tab-btn.active,
.tab-btn:hover {
  background: var(--navy);
  color: #fff;
}
.about-text p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 18px;
}

/* ─── WHY CHOOSE US ──────────────────────────────────── */
#why {
  padding: 90px 0;
  background: var(--light-gray);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  margin-top: 50px;
}
.why-card {
  background: #fff;
  border-radius: 12px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  border-bottom: 3px solid transparent;
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(27, 42, 107, 0.14);
  border-bottom-color: var(--navy);
}
.why-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 20px;
}
.why-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}
.why-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ─── DESTINATIONS ───────────────────────────────────── */
#destinations {
  padding: 90px 0;
  background: #fff;
}
.dest-header {
  text-align: center;
  margin-bottom: 50px;
}
.dest-header .section-sub {
  margin: 0 auto;
}
.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 18px;
}
.dest-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.dest-card.featured {
  grid-column: span 2;
  grid-row: span 2;
}
.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  min-height: 200px;
}
.dest-card.featured img {
  min-height: 460px;
}
.dest-card:hover img {
  transform: scale(1.07);
}
.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(27, 42, 107, 0.75) 0%,
    transparent 50%
  );
  transition: opacity 0.3s;
}
.dest-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 22px 20px;
  color: #fff;
}
.dest-info h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 4px;
}
.dest-info span {
  font-size: 0.78rem;
  opacity: 0.8;
  letter-spacing: 0.08em;
}

/* ─── PACKAGES ───────────────────────────────────────── */
#packages {
  padding: 90px 0;
  background: var(--light-gray);
}
.pkg-header {
  text-align: center;
  margin-bottom: 50px;
}
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
}
.pkg-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.pkg-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(27, 42, 107, 0.15);
}
.pkg-img {
  position: relative;
  overflow: hidden;
  height: 220px;
}
.pkg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.pkg-card:hover .pkg-img img {
  transform: scale(1.06);
}
.pkg-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--navy);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 12px;
}
.pkg-body {
  padding: 22px 24px;
}
.pkg-body h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.pkg-body p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}
.pkg-meta {
  display: flex;
  gap: 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 18px;
}
.pkg-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.pkg-meta i {
  color: var(--navy);
}
.btn-pkg {
  display: inline-block;
  width: 100%;
  text-align: center;
  background: var(--navy);
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.87rem;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-pkg:hover {
  background: var(--navy-dark);
}

/* ─── GALLERY ────────────────────────────────────────── */
#gallery {
  padding: 90px 0;
  background: #fff;
}
.gallery-header {
  text-align: center;
  margin-bottom: 40px;
}
.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 34px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 7px 20px;
  border-radius: 20px;
  border: 2px solid var(--navy);
  font-weight: 700;
  font-size: 0.8rem;
  cursor: pointer;
  color: var(--navy);
  background: transparent;
  transition: 0.2s;
  font-family: inherit;
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--navy);
  color: #fff;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}
.gallery-item {
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
}
.gallery-item:nth-child(3) {
  grid-column: span 2;
}
.gallery-item:nth-child(6) {
  grid-row: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.gallery-item:hover img {
  transform: scale(1.07);
}
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27, 42, 107, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}
.gallery-item-overlay i {
  color: #fff;
  font-size: 1.8rem;
}

/* ─── STATS ──────────────────────────────────────────── */
#stats {
  background: var(--navy);
  padding: 70px 0;
  color: #fff;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat h3 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  margin-bottom: 8px;
}
.stat p {
  font-size: 0.9rem;
  opacity: 0.8;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ─── FOOTER ─────────────────────────────────────────── */
footer {
  background: var(--navy);
}
.footer-main {
  padding: 70px 0 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
}
.footer-logo {
  width: 160px; /* Adjust size */
  height: auto;
  display: block;
  margin-bottom: 18px; /* Space below logo */
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-top: 16px;
  margin-bottom: 22px;
}
.footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  text-decoration: none;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.social-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
}
.footer-col h4 {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: #fff;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
  margin-bottom: 12px;
}
.footer-contact-item i {
  color: rgba(255, 255, 255, 0.9);
  margin-top: 3px;
  width: 16px;
  flex-shrink: 0;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-social {
  display: flex;
  gap: 8px;
}
.footer-bottom-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  text-decoration: none;
  transition: background 0.2s;
}
.footer-bottom-social a:hover {
  background: rgba(255, 255, 255, 0.15);
}
.footer-bottom-info {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
}
.footer-bottom-info a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
}
.footer-bottom-info a i {
  font-size: 0.75rem;
}
.footer-copy {
  text-align: center;
  padding: 18px 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ─── LIGHTBOX ───────────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
}
.lightbox.open {
  display: flex;
}
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 6px;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 28px;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

/* ─── SLIDER ─────────────────────────────────────────── */
.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
  animation: zoomOut 10s ease-out forwards;
}
.hero-slide.active {
  opacity: 1;
}
.hero-slide:nth-child(1) {
  background-image: url(../images/3.jpg);
}
.hero-slide:nth-child(2) {
  background-image: url(../images/hero1.jpg);
}
.hero-slide:nth-child(3) {
  background-image: url(../images/5.jpg);
}
.hero-slide:nth-child(4) {
  background-image: url(../images/hero2.jpg);
}

/* ─── GOOGLE TRANSLATE CUSTOM DROPDOWN ──────────────── */
/* Hide the default Google Translate bar/banner */
.goog-te-banner-frame,
.skiptranslate {
  display: none !important;
}
body {
  top: 0 !important;
}

.lang-wrapper {
  position: relative;
}
.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background 0.15s;
}
.lang-btn:hover {
  background: var(--light-gray);
}
.lang-btn .flag-img {
  width: 22px;
  height: 15px;
  object-fit: cover;
  border-radius: 2px;
}
.lang-btn .chevron {
  font-size: 0.6rem;
  opacity: 0.7;
  transition: transform 0.2s;
}
.lang-wrapper.open .lang-btn .chevron {
  transform: rotate(180deg);
}

.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #fff;
  border-radius: 10px;
  min-width: 340px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid #e8eaf0;
  z-index: 500;
  padding: 8px 0;
  overflow: hidden;
}
.lang-wrapper.open .lang-dropdown {
  display: block;
}

.lang-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  transition: background 0.15s;
  border-bottom: 1px solid #f0f1f5;
  text-decoration: none;
}
.lang-option:hover {
  background: #f5f6fa;
}
.lang-option.active {
  font-weight: 800;
  color: var(--navy);
}
.lang-option .flag-img {
  width: 24px;
  height: 16px;
  object-fit: cover;
  border-radius: 2px;
  flex-shrink: 0;
}
/* single-column items (Dutch, French... that span full width) */
.lang-option.full {
  grid-column: span 1;
}

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .dest-grid {
    grid-template-columns: 1fr 1fr;
  }
  .dest-card.featured {
    grid-column: span 2;
    grid-row: span 1;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* ─── Hamburger Button ───────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  transition: background 0.2s;
  z-index: 1100;
}
.hamburger:hover {
  background: rgba(0, 0, 0, 0.06);
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    width 0.3s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ─── Overlay ────────────────────────────────────────── */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s;
}
.nav-overlay.open {
  display: block;
  opacity: 1;
}

/* ─── Mobile Book Now row ────────────────────────────── */
.mobile-book-row {
  display: none;
}

/* ─── Tablet & Mobile (≤ 1024px) ────────────────────── */
@media (max-width: 1024px) {
  .hamburger {
    display: flex;
  }
  .nav-right .btn-book {
    display: none;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 0 0;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
    overflow-y: auto;
    z-index: 1050;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .nav-links.open {
    right: 0;
  }

  .nav-links > li > a {
    padding: 14px 24px;
    font-size: 0.95rem;
    border-bottom: 1px solid #f5f5f5;
    border-bottom-color: #f5f5f5 !important;
    border-left: 3px solid transparent;
    transition:
      border-left-color 0.2s,
      background 0.2s;
  }
  .nav-links > li > a.active,
  .nav-links > li > a:hover {
    border-left-color: var(--navy);
    background: #f8f9fb;
  }

  .dropdown {
    position: static;
    box-shadow: none;
    border-radius: 0;
    background: #f8f9fb;
    padding: 4px 0;
    display: none !important;
  }
  .has-dropdown.expanded .dropdown {
    display: block !important;
  }
  .dropdown a {
    padding: 11px 24px 11px 40px;
    font-size: 0.84rem;
    border-bottom: 1px solid #eee;
  }
  .has-dropdown .fa-chevron-down {
    transition: transform 0.3s;
  }
  .has-dropdown.expanded .fa-chevron-down {
    transform: rotate(180deg);
  }

  .about-grid {
    grid-template-columns: 1fr;
  }
  .dest-grid {
    grid-template-columns: 1fr 1fr;
  }
  .dest-card.featured {
    grid-column: span 2;
    grid-row: span 1;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  /* nav-links is now a drawer — do NOT set display:none here */
  .dest-grid {
    grid-template-columns: 1fr;
  }
  .dest-card.featured {
    grid-column: 1;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-item:nth-child(3) {
    grid-column: span 1;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .nav-inner {
    padding: 0 16px;
  }
  .logo img {
    width: 120px;
  }
  .nav-links {
    width: 100%;
    right: -100%;
  }
}
