:root {
  --bg: #fff9f1;
  --surface: #ffffff;
  --surface-soft: #fff3d9;
  --primary: #f9c74f;
  --primary-dark: #d98c00;
  --secondary: #f6b100;
  --text: #1b2d3f;
  --muted: #5a6573;
  --line: rgba(27, 45, 63, 0.12);
  --shadow: 0 24px 60px rgba(110, 74, 20, 0.14);
  --radius: 22px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

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

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(245, 246, 251, 0.8);
  border-bottom: 1px solid rgba(20, 33, 61, 0.05);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 100px;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 12px;
  background: linear-gradient(135deg, #f7c85a, #e68800);
  color: #1d1d1d;
  box-shadow: 0 10px 24px rgba(230, 136, 0, 0.28);
}

.brand__logo {
  width: 4.5rem;
  height: auto;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  color: var(--muted);
  font-size: 0.96rem;
}

.lang-switcher {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.lang-switcher select {
  border: 1px solid rgba(20, 33, 61, 0.12);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  border-radius: 999px;
  padding: 0.6rem 0.9rem;
  font: inherit;
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary {
  background: linear-gradient(135deg, #f9c74f, #f6b100);
  color: #1d1d1d;
  box-shadow: 0 16px 26px rgba(246, 177, 0, 0.28);
}

.button--secondary {
  background: linear-gradient(135deg, rgba(249, 199, 79, 0.18), rgba(246, 177, 0, 0.1));
  border: 1px solid rgba(246, 177, 0, 0.42);
  color: var(--text);
}

.hero {
  padding: 4.5rem 0 3.25rem;
}

.hero__layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 2.25rem;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(249, 199, 79, 0.16);
  color: var(--primary-dark);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow--dark {
  background: rgba(20, 33, 61, 0.08);
  color: var(--text);
}

.hero h1,
.section-copy h2,
.section-heading h2,
.cta-box h2 {
  margin: 0;
  letter-spacing: -0.06em;
  line-height: 1.04;
}

.hero h1 {
  max-width: 620px;
  font-size: clamp(3rem, 4vw, 5rem);
}

.lead {
  max-width: 560px;
  margin: 1.25rem 0 0;
  font-size: 1.08rem;
  color: var(--muted);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.hero__stats {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem;
}

.hero__stats li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.hero__stats strong {
  font-size: 1.7rem;
  letter-spacing: -0.05em;
}

.hero__stats span {
  color: var(--muted);
  font-size: 0.82rem;
}

.hero__visual {
  min-height: 620px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
}

.hero__photo-wrap {
  position: relative;
  width: min(100%, 500px);
}

.photo-card {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  background: #16283f;
  box-shadow: var(--shadow);
}

.photo-card--large {
  width: min(100%, 500px);
  height: 560px;
}

.photo-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 2.2s ease-in-out;
}

.photo-card__bg.is-active {
  opacity: 1;
}

.photo-card__tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 28, 55, 0.12), rgba(17, 28, 55, 0.55));
  pointer-events: none;
}

.photo-card__panel {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 20px;
  padding: 1rem 1.15rem;
  color: white;
}

.photo-card__panel p,
.photo-card__panel strong {
  display: block;
  margin: 0;
}

.photo-card__panel p {
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

.mini-card {
  position: absolute;
  display: inline-flex;
  flex-direction: column;
  background: rgba(255, 250, 240, 0.96);
  border: 1px solid rgba(246, 177, 0, 0.28);
  border-radius: 18px;
  padding: 1rem 1.05rem;
  box-shadow: 0 18px 40px rgba(17, 28, 55, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

a.mini-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 46px rgba(17, 28, 55, 0.22);
}

.mini-card__label {
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mini-card--top {
  top: 1.4rem;
  left: 1.4rem;
}

.mini-card--bottom {
  bottom: 8rem;
  left: -0.5rem;
}

.stats-bar {
  background: linear-gradient(180deg, rgba(13, 26, 52, 0.02), rgba(13, 26, 52, 0.06));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.5rem 0;
}

.stats-bar__grid div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.4rem;
}

.stats-bar__grid strong {
  font-size: clamp(1.5rem, 2vw, 2rem);
  letter-spacing: -0.06em;
}

.stats-bar__grid span {
  color: var(--muted);
}

.section {
  padding: 5.5rem 0;
}

.section--light {
  background: linear-gradient(180deg, rgba(255, 248, 237, 0.9), rgba(255, 255, 255, 0.7));
}

.section--dark {
  background: linear-gradient(135deg, #122548, #1d3b68 48%, #234978);
  color: white;
}

.split-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.2rem;
  align-items: center;
}

.section-copy h2,
.section-heading h2,
.cta-box h2 {
  font-size: clamp(2.2rem, 3vw, 3.1rem);
}

.section-copy p,
.section-heading {
  color: var(--muted);
}

.feature-list {
  display: grid;
  gap: 1.25rem;
}

.feature-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
}

.feature-item__icon {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(31, 111, 235, 0.12), rgba(97, 160, 255, 0.22));
  color: var(--primary-dark);
  font-weight: 800;
}

.feature-item h3,
.experience-card h3,
.destination-card h3 {
  margin: 0 0 0.3rem;
  letter-spacing: -0.04em;
}

.feature-item p,
.experience-card p,
.destination-card p,
.testimonial-card p,
.site-footer p {
  margin: 0;
  color: var(--muted);
}

.section-heading {
  margin-bottom: 2rem;
}

.section-heading--left {
  margin-bottom: 1.5rem;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.destination-card {
  position: relative;
  min-height: 260px;
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
  box-shadow: 0 22px 46px rgba(120, 73, 18, 0.18);
  border: 1px solid rgba(249, 199, 79, 0.34);
  background-color: #f4d39c;
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.destination-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 56px rgba(120, 73, 18, 0.26);
}

.destination-card.is-selected {
  outline: 3px solid rgba(249, 199, 79, 0.75);
  transform: translateY(-4px) scale(1.01);
}

.destination-card:nth-child(-n+2) {
  min-height: 320px;
}

.destination-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(182, 104, 32, 0.08) 0%,
    rgba(214, 140, 50, 0.18) 35%,
    rgba(20, 16, 12, 0.78) 100%
  );
}

.destination-card__content {
  position: relative;
  z-index: 1;
  color: #fffdf7;
}

.destination-card__content span {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: 0.78rem;
  opacity: 0.96;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffd76a;
  font-weight: 700;
}

.destination-card--linear-park {
  background: url("./images/linear-park-aruba.jpg") center/cover no-repeat;
}

.destination-card--airport {
  background: url("./images/airport-beatrix.jpg") center/cover no-repeat;
}

.destination-card--hooiberg {
  background: url("./images/hooiberg-mountain.jpg") center/cover no-repeat;
}

.destination-card--casibari {
  background: url("./images/casibari-rock.jpg") center/cover no-repeat;
}

.destination-card--baby-beach {
  background: url("./images/baby-beach.jpg") center/cover no-repeat;
}

.destination-card--zee-rovers {
  background: url("./images/zee-rovers.jpg") center/cover no-repeat;
}

.destination-card--phosphate {
  background: url("./images/phosphate-mines.jpg") center/cover no-repeat;
}

.destination-card--natural-bridge {
  background: url("./images/natural-bridge.jpg") center/cover no-repeat;
}

.destination-card--bushiribana {
  background: url("./images/bushiribana-gold-mill.jpg") center/cover no-repeat;
}

.destination-card--arikok {
  background: url("./images/arikok-national-park.jpg") center/cover no-repeat;
}

.destination-card--alto-vista {
  background: url("./images/alto-vista-chapel.jpg") center/cover no-repeat;
}

.destination-card--lighthouse {
  background: url("./images/california-lighthouse.jpg") center/cover no-repeat;
}

.destination-card--hotel-area {
  background: url("./images/hotel-area.jpg") center/cover no-repeat;
}

.destination-card--eagle-beach {
  background: url("./images/eagle-beach.jpg") center/cover no-repeat;
}

.experience-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: center;
}

.section-copy--light {
  color: white;
}

.section-copy--light p {
  color: rgba(255, 255, 255, 0.76);
}

.destination-intro {
  margin-top: 1rem;
  max-width: 460px;
  color: rgba(255, 255, 255, 0.78);
}

.destination-column {
  display: grid;
  gap: 1.25rem;
}

.experience-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.experience-card {
  padding: 1.5rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.experience-card p {
  color: rgba(255, 255, 255, 0.74);
}

.testimonial-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 2rem;
}

.testimonial-card {
  background: linear-gradient(135deg, rgba(31, 111, 235, 0.08), rgba(255, 255, 255, 0.92));
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.testimonial-card--inline {
  margin-top: 0.25rem;
}

.testimonial-card p {
  font-size: 1.1rem;
  color: var(--text);
}

.testimonial-card__author {
  margin-top: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.testimonial-card__author span {
  color: var(--muted);
}

.cta-section {
  padding-top: 1rem;
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: linear-gradient(135deg, rgba(31, 111, 235, 0.12), rgba(121, 182, 255, 0.2));
  border: 1px solid rgba(31, 111, 235, 0.12);
  border-radius: 30px;
  padding: 2rem 2.2rem;
}

.booking-box {
  align-items: flex-start;
  flex-direction: column;
}

.booking-box > div:first-child {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.booking-copy {
  max-width: 540px;
  margin-top: 0.9rem;
  color: var(--muted);
}

.booking-form {
  display: grid;
  gap: 1rem;
  width: min(100%, 600px);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.booking-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: stretch;
}

.booking-form-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking-image {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 24px 56px rgba(120, 73, 18, 0.18);
  border: 1px solid rgba(249, 199, 79, 0.28);
}

.booking-image__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.booking-form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
}

.date-field.hidden {
  display: none;
}

.booking-form select,
.booking-form input,
.booking-form textarea {
  width: 100%;
  border: 1px solid rgba(20, 33, 61, 0.12);
  border-radius: 12px;
  background: #fff;
  padding: 0.9rem 1rem;
  font: inherit;
  color: var(--text);
}

.booking-form select {
  appearance: none;
}

.booking-form input:focus,
.booking-form textarea:focus,
.booking-form select:focus {
  outline: 2px solid rgba(31, 111, 235, 0.2);
  border-color: rgba(31, 111, 235, 0.5);
}

.detail-field.hidden,
.date-field.hidden {
  display: none;
}

.hidden {
  display: none;
}

.pickup-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.pickup-btn {
  padding: 0.9rem 1rem;
  border: 2px solid rgba(27, 45, 63, 0.2);
  border-radius: 12px;
  background: #fff;
  color: var(--text);
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.pickup-btn:hover {
  border-color: rgba(249, 199, 79, 0.5);
  background: rgba(249, 199, 79, 0.08);
}

.pickup-btn.active {
  background: var(--primary);
  border-color: var(--primary-dark);
  color: #1b2d3f;
  box-shadow: 0 6px 16px rgba(249, 199, 79, 0.4);
  font-weight: 700;
}

.booking-form textarea {
  resize: vertical;
  min-height: 110px;
}

.site-footer {
  padding: 2rem 0 3rem;
}

.footer__layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.footer__links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: var(--muted);
}

.section-heading {
  margin-bottom: 2rem;
}

.section-heading--left {
  margin-bottom: 2.5rem;
}

.getaway-carousel {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.getaway-card {
  position: relative;
  aspect-ratio: 1;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  cursor: pointer;
  transition: transform 0.32s ease, box-shadow 0.32s ease;
  box-shadow: 0 16px 36px rgba(120, 73, 18, 0.16);
  border: 1px solid rgba(249, 199, 79, 0.28);
}

.getaway-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(120, 73, 18, 0.24);
}

.getaway-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(182, 104, 32, 0.12) 0%,
    rgba(214, 140, 50, 0.14) 40%,
    rgba(18, 16, 12, 0.82) 100%
  );
  z-index: 1;
}

.getaway-card__content {
  position: relative;
  z-index: 2;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  width: 100%;
}

.getaway-card__content span {
  font-size: 0.72rem;
  opacity: 0.92;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffd76a;
  font-weight: 700;
}

.getaway-card__content h3 {
  margin: 0;
  font-size: 1.1rem;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.getaway-card--linear-park {
  background: url("./images/linear-park-aruba.jpg") center/cover no-repeat;
}

.getaway-card--airport {
  background: url("./images/airport-beatrix.jpg") center/cover no-repeat;
}

.getaway-card--hooiberg {
  background: url("./images/hooiberg-mountain.jpg") center/cover no-repeat;
}

.getaway-card--casibari {
  background: url("./images/casibari-rock.jpg") center/cover no-repeat;
}

.getaway-card--alto-vista {
  background: url("./images/alto-vista-chapel.jpg") center/cover no-repeat;
}

.getaway-card--lighthouse {
  background: url("./images/california-lighthouse.jpg") center/cover no-repeat;
}

.getaway-card--eagle-beach {
  background: url("./images/eagle-beach.jpg") center/cover no-repeat;
}

.pricing-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  background: linear-gradient(135deg, rgba(249, 199, 79, 0.16), rgba(246, 177, 0, 0.1));
  border: 1px solid rgba(246, 177, 0, 0.42);
  border-radius: 999px;
  padding: 0.95rem 1.8rem;
}

.pricing-badge__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.pricing-badge__amount {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--primary-dark);
}

.pricing-badge__unit {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
}

.booking-calendar {
  width: 100%;
  max-width: 600px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.5rem;
  margin: 2.5rem auto 1rem;
  text-align: center;
}

.booking-calendar h3 {
  margin: 0 0 1.5rem;
  font-size: 1.1rem;
  letter-spacing: -0.03em;
  color: var(--text);
}

.calendar-widget {
  width: 100%;
}

.getaway-pricing {
  display: flex;
  justify-content: center;
  margin: 2.5rem 0 2rem;
}

.pricing-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  background: linear-gradient(135deg, rgba(249, 199, 79, 0.16), rgba(246, 177, 0, 0.1));
  border: 1px solid rgba(246, 177, 0, 0.42);
  border-radius: 999px;
  padding: 0.95rem 1.8rem;
}

.pricing-badge__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.pricing-badge__amount {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--primary-dark);
}

.pricing-badge__unit {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
}

@media (max-width: 980px) {
  .hero__layout,
  .split-grid,
  .experience-grid,
  .testimonial-wrap,
  .booking-layout {
    grid-template-columns: 1fr;
  }

  .destination-grid,
  .experience-cards {
    grid-template-columns: 1fr 1fr;
  }

  .getaway-carousel {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .main-nav {
    display: none;
  }

  .cta-box,
  .footer__layout {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .nav {
    min-height: 88px;
  }

  .brand__logo {
    width: 3.6rem;
  }

  .button {
    width: 100%;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero__stats,
  .stats-bar__grid,
  .destination-grid,
  .experience-cards {
    grid-template-columns: 1fr;
    display: grid;
  }

  .getaway-carousel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero__stats {
    gap: 1rem;
  }

  .photo-card--large {
    height: 420px;
  }

  .mini-card--bottom {
    left: 0.5rem;
  }

  .booking-form {
    width: 100%;
  }
}

/* Modal Styles */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(27, 45, 63, 0.6);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-content {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 2rem;
  max-width: 500px;
  width: 90%;
  box-shadow: var(--shadow);
  position: relative;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-content h3 {
  margin-top: 0;
  color: var(--text);
  font-size: 1.5rem;
}

.modal-content p {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.2s ease;
}

.close-btn:hover {
  color: var(--text);
}

.join-tour-form {
  margin-top: 1.5rem;
}

.join-tour-form label span {
  font-weight: 600;
}

/* Responsive Modal */
@media (max-width: 768px) {
  .modal-content {
    padding: 1.5rem;
    width: 95%;
  }

  .modal-content h3 {
    font-size: 1.25rem;
  }
}

/* WhatsApp floating button */
.whatsapp-fab {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.4);
  z-index: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-fab:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 18px 36px rgba(37, 211, 102, 0.48);
}

@media (max-width: 640px) {
  .whatsapp-fab {
    right: 1rem;
    bottom: 1rem;
    width: 52px;
    height: 52px;
  }
}

/* Toast notifications */
.toast-container {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  max-width: min(360px, calc(100% - 2rem));
}

.whatsapp-fab ~ .toast-container {
  bottom: 5.5rem;
}

.toast {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--line);
  border-left: 4px solid var(--primary-dark);
  border-radius: 14px;
  padding: 0.85rem 1rem;
  box-shadow: var(--shadow);
  font-size: 0.92rem;
  font-weight: 600;
  animation: toastIn 0.25s ease;
}

.toast--success {
  border-left-color: #2f9e44;
}

.toast--error {
  border-left-color: #e03131;
}

.toast--info {
  border-left-color: #1f6feb;
}

.toast.is-leaving {
  animation: toastOut 0.2s ease forwards;
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes toastOut {
  to {
    opacity: 0;
    transform: translateY(8px);
  }
}

/* Destination card zoom trigger + lightbox */
.destination-card {
  position: relative;
}

.destination-card__zoom {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(20, 16, 12, 0.42);
  color: #fffdf7;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.destination-card:hover .destination-card__zoom,
.destination-card:focus-within .destination-card__zoom {
  opacity: 1;
  transform: translateY(0);
}

.destination-card__zoom:hover {
  background: rgba(20, 16, 12, 0.68);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1300;
  background: rgba(11, 18, 32, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
  animation: fadeIn 0.25s ease;
}

.lightbox-content {
  max-width: min(880px, 100%);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.lightbox-content img {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
  text-align: center;
  color: #fffdf7;
}

.lightbox-caption strong {
  display: block;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.lightbox-caption span {
  color: rgba(255, 253, 247, 0.72);
  font-size: 0.92rem;
}

.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fffdf7;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.22);
}

.lightbox-nav {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fffdf7;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.24);
}

@media (max-width: 640px) {
  .lightbox {
    padding: 1rem;
    gap: 0.5rem;
  }

  .lightbox-nav {
    width: 38px;
    height: 38px;
  }
}

/* Inline form validation */
.field-error-message {
  display: none;
  color: #e03131;
  font-size: 0.78rem;
  font-weight: 600;
}

.field-error-message:not(:empty) {
  display: block;
}

.booking-form input.is-invalid,
.booking-form select.is-invalid,
.booking-form textarea.is-invalid {
  border-color: #e03131;
  outline: 2px solid rgba(224, 49, 49, 0.14);
}

.booking-form input.is-valid,
.booking-form select.is-valid,
.booking-form textarea.is-valid {
  border-color: #2f9e44;
}

/* Sticky nav active section */
.main-nav a {
  position: relative;
  padding: 0.3rem 0;
  transition: color 0.2s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -4px;
  height: 2px;
  background: var(--primary-dark);
  transition: right 0.25s ease;
}

.main-nav a.is-active {
  color: var(--text);
  font-weight: 700;
}

.main-nav a.is-active::after {
  right: 0;
}

/* Testimonials carousel */
.testimonial-carousel {
  position: relative;
  overflow: hidden;
}

.testimonial-carousel__track {
  position: relative;
  min-height: 148px;
}

.testimonial-slide {
  margin: 0;
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(12px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.testimonial-slide.is-active {
  position: relative;
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.testimonial-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.testimonial-carousel__arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(246, 177, 0, 0.42);
  background: rgba(249, 199, 79, 0.1);
  color: var(--primary-dark);
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s ease;
}

.testimonial-carousel__arrow:hover {
  background: rgba(249, 199, 79, 0.24);
}

.testimonial-carousel__dots {
  display: flex;
  gap: 0.5rem;
}

.testimonial-carousel__dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(27, 45, 63, 0.2);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.testimonial-carousel__dots button.is-active {
  background: var(--primary-dark);
  transform: scale(1.2);
}

/* Animated counters */
.js-counter {
  font-variant-numeric: tabular-nums;
}

/* Upcoming tours list (live from Google Calendar API) */
.upcoming-tours-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.5rem 0;
  text-align: left;
}

.upcoming-tours-status {
  margin: 0;
  padding: 1rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
}

.upcoming-tour-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(120, 73, 18, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.upcoming-tour-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(120, 73, 18, 0.14);
}

.upcoming-tour-item__info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.upcoming-tour-item__info strong {
  font-size: 1rem;
  letter-spacing: -0.02em;
  color: var(--text);
}

.upcoming-tour-item__info span {
  font-size: 0.86rem;
  color: var(--muted);
}

.upcoming-tour-item__join {
  flex-shrink: 0;
  min-height: 40px;
  padding: 0.6rem 1.1rem;
  font-size: 0.85rem;
}

@media (max-width: 480px) {
  .upcoming-tour-item {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
}

/* Collapsible "view full calendar" iframe */
.calendar-full-view {
  margin-top: 0.5rem;
}

.calendar-full-view summary {
  cursor: pointer;
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.5rem 0;
}

.calendar-full-view summary::-webkit-details-marker {
  display: none;
}

.calendar-full-view summary::after {
  content: "\25BE";
  transition: transform 0.2s ease;
}

.calendar-full-view[open] summary::after {
  transform: rotate(180deg);
}

.calendar-full-view .calendar-widget {
  margin-top: 1rem;
}
