/* =============================================
   RESET & VARIABLES
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

:root {
  --dark:          #111827;
  --dark-mid:      #1f2937;
  --primary:       #16a34a;
  --primary-dark:  #15803d;
  --primary-light: #dcfce7;
  --accent:        #22c55e;
  --white:         #ffffff;
  --bg:            #f9fafb;
  --bg-green:      #f0fdf4;
  --border:        #e5e7eb;
  --text:          #111827;
  --text-mid:      #374151;
  --text-gray:     #6b7280;
  --text-light:    #9ca3af;
  --shadow-sm:     0 1px 3px rgba(0,0,0,.08);
  --shadow-md:     0 4px 12px rgba(0,0,0,.10);
  --shadow-lg:     0 10px 30px rgba(0,0,0,.12);
  --radius:        12px;
  --radius-lg:     20px;
}

body {
  font-family: "Inter", Arial, sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* =============================================
   HEADER / NAV
   ============================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--dark);
  box-shadow: 0 2px 12px rgba(0,0,0,.3);
}

.header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.header__logo-image {
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.header__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.header__logo-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.01em;
}

.header__logo-sub {
  font-size: 0.65rem;
  font-weight: 500;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.header__nav a {
  color: #d1d5db;
  text-decoration: none;
  font-size: .9rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  transition: color .2s, background .2s;
}

.header__nav a:hover {
  color: var(--white);
  background: rgba(255,255,255,.08);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.header__phone {
  color: #9ca3af;
  font-size: .85rem;
  font-weight: 500;
  text-decoration: none;
  transition: color .2s;
}

.header__phone:hover { color: var(--white); }

.header__book-btn {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  background: var(--primary);
  color: var(--white);
  font-size: .875rem;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: .02em;
  transition: background .2s, transform .2s;
}

.header__book-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 8px;
  -webkit-tap-highlight-color: transparent;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.hamburger.open span:nth-child(2) { transform: rotate(-45deg) translate(4px, -4px); }

.nav-backdrop { display: none; }

.header__nav-mobile-cta { display: none; }

/* =============================================
   HERO
   ============================================= */

/* Background image with Ken Burns zoom */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #071a0e;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: url('../img/main-bg-customers.PNG') center / cover no-repeat;
  animation: heroBgZoom 22s ease-in-out infinite alternate;
  will-change: transform;
  z-index: 0;
}

@keyframes heroBgZoom {
  from { transform: scale(1)    translateX(0); }
  to   { transform: scale(1.09) translateX(-2%); }
}

/* Two-layer gradient: left side dark for text, bottom vignette */
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg,
      rgba(0,0,0,.88)  0%,
      rgba(0,0,0,.65) 42%,
      rgba(0,0,0,.18) 72%,
      rgba(0,0,0,.06) 100%
    ),
    linear-gradient(to top,
      rgba(0,0,0,.55) 0%,
      transparent     38%
    );
  z-index: 1;
}

.hero__container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 60px;
}

.hero__content { max-width: 580px; }

/* Badge */
.hero__license-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34, 197, 94, .15);
  border: 1px solid rgba(34, 197, 94, .4);
  color: #4ade80;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
  backdrop-filter: blur(8px);
  opacity: 0;
  animation: heroFadeUp .6s ease .1s forwards;
}

/* Headline */
.hero__headline {
  font-size: 4.2rem;
  font-weight: 900;
  line-height: 1.02;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -.035em;
  text-shadow: 0 2px 24px rgba(0,0,0,.4);
  opacity: 0;
  animation: heroFadeUp .75s ease .22s forwards;
}

.hero__headline-accent {
  display: block;
  color: #4ade80;
  background: linear-gradient(90deg, #4ade80, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Rating */
.hero__rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  opacity: 0;
  animation: heroFadeUp .6s ease .38s forwards;
}

.hero__stars        { color: #fbbf24; font-size: 1.05rem; letter-spacing: 2px; }
.hero__rating-text  { font-size: .85rem; color: rgba(255,255,255,.82); font-weight: 500; }

/* Location */
.hero__location {
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  font-weight: 500;
  margin-bottom: 26px;
  opacity: 0;
  animation: heroFadeUp .6s ease .46s forwards;
}

/* Trust pills */
.hero__trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  opacity: 0;
  animation: heroFadeUp .6s ease .56s forwards;
}

.hero__trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 13px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  font-size: .77rem;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  backdrop-filter: blur(8px);
  transition: background .2s, border-color .2s;
}

.hero__trust-pill:hover {
  background: rgba(34,197,94,.2);
  border-color: rgba(34,197,94,.45);
  color: #4ade80;
}

/* Social proof */
.hero__social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .85rem;
  color: rgba(255,255,255,.75);
  opacity: 0;
  animation: heroFadeUp .6s ease .84s forwards;
}

.hero__avatars { display: flex; }

.hero__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(22,163,74,.3);
  border: 2px solid rgba(255,255,255,.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  margin-left: -6px;
}
.hero__avatar:first-child { margin-left: 0; }

/* Google badge — slides in from right */
.hero__google-badge {
  position: absolute;
  bottom: 40px;
  right: 56px;
  z-index: 3;
  background: rgba(255,255,255,.96);
  border-radius: var(--radius);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.8);
  backdrop-filter: blur(10px);
  opacity: 0;
  animation: heroSlideRight .7s ease 1.1s forwards;
}

@keyframes heroSlideRight {
  from { opacity: 0; transform: translateX(32px); }
  to   { opacity: 1; transform: translateX(0); }
}

.hero__google-g {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4285f4 0%, #34a853 50%, #ea4335 100%);
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero__google-stars  { color: #f59e0b; font-size: .9rem; letter-spacing: 1.5px; margin-bottom: 2px; }
.hero__google-info   { font-size: .82rem; color: var(--text-mid); line-height: 1.35; }
.hero__google-info strong { color: var(--text); }

/* Shared fade-up keyframe for hero elements */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =============================================
   INTRO + CAROUSEL
   ============================================= */
.intro {
  background: var(--bg-green);
  padding: 80px 24px;
  text-align: center;
  border-top: 3px solid var(--primary-light);
}

.intro__content { max-width: 900px; margin: 0 auto; }

.intro__title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 20px;
  letter-spacing: -.02em;
}

.intro__text {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 28px;
}

.intro__button {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  font-size: .95rem;
  border-radius: 10px;
  text-decoration: none;
  margin-bottom: 40px;
  transition: background .2s, transform .2s;
}

.intro__button:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* Carousel */
.carousel { width: 100%; max-width: 960px; margin: 0 auto; }

.carousel__container {
  position: relative;
  overflow: hidden;
  width: 100%;
  border-radius: var(--radius-lg);
  background: #0a3d0a;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 10;
}

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

.carousel__item {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  position: relative;
}

.carousel__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.35) 100%);
  pointer-events: none;
}

.carousel__item img { width: 100%; height: 100%; object-fit: cover; display: block; }

.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.92);
  color: var(--primary);
  border: none;
  cursor: pointer;
  z-index: 3;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
  transition: transform .2s ease, background .2s ease;
}

.carousel__btn:hover { background: #fff; transform: translateY(-50%) scale(1.08); }
.carousel__btn:active { transform: translateY(-50%) scale(.96); }
.carousel__btn--prev { left: 1rem; }
.carousel__btn--next { right: 1rem; }

.carousel__counter {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  z-index: 3;
  padding: .35rem .75rem;
  border-radius: 999px;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: .8rem;
  font-weight: 600;
}

.carousel__counter-sep { opacity: .65; margin: 0 .15rem; }

.carousel__dots {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}

.carousel__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #bbf7d0;
  cursor: pointer;
  transition: width .25s ease, background .25s ease;
}

.carousel__dot:hover { background: #4ade80; }

.carousel__dot.is-active {
  width: 1.75rem;
  border-radius: 999px;
  background: var(--primary);
}

/* =============================================
   TOURS
   ============================================= */
.tours {
  background: var(--white);
  padding: 80px 24px;
  text-align: center;
}

.tours__header { margin-bottom: 48px; }

.tours__title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.02em;
  margin-bottom: 10px;
}

.tours__title span {
  color: var(--primary);
  font-weight: 900;
}

.tours__subtitle {
  font-size: 1rem;
  color: var(--text-gray);
}

.tour__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.tour__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  padding: 0 0 24px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
  text-align: left;
  position: relative;
  display: flex;
  flex-direction: column;
}

.tour__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: #bbf7d0;
}

.tour__card--popular {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px var(--primary), var(--shadow-md);
}

.tour__card--popular:hover {
  box-shadow: 0 0 0 2px var(--primary), var(--shadow-lg);
}

.tour__card-badge {
  background: var(--primary);
  color: var(--white);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-align: center;
  padding: 6px 0;
}

.tour__card-media {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--bg);
  cursor: zoom-in;
  flex-shrink: 0;
}

.tour__card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
  display: block;
}

.tour__card:hover .tour__card-media img { transform: scale(1.04); }

.tour__card-duration {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--primary);
  text-transform: uppercase;
  padding: 20px 20px 6px;
}

.tour__card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text);
  padding: 0 20px 6px;
  letter-spacing: -.01em;
}

.tour__card-price {
  padding: 0 20px 16px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.tour__card-price span {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -.02em;
}

.tour__card-price small {
  font-size: .8rem;
  color: var(--text-gray);
  font-weight: 500;
}

.tour__features {
  list-style: none;
  padding: 0 20px 16px;
  margin: 0;
  flex: 1;
}

.tour__features li {
  font-size: .875rem;
  color: var(--text-mid);
  padding: 5px 0;
  padding-left: 20px;
  position: relative;
  line-height: 1.45;
}

.tour__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* Tour stops button */
.tour__stops-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 20px 12px;
  background: var(--bg-green);
  border: 1px solid #bbf7d0;
  color: var(--primary-dark);
  font-size: .82rem;
  font-weight: 600;
  border-radius: 8px;
  padding: 8px 14px;
  cursor: pointer;
  transition: background .2s, border-color .2s;
  width: calc(100% - 40px);
  justify-content: space-between;
}

.tour__stops-btn:hover {
  background: #dcfce7;
  border-color: var(--primary);
}

.tour__stops-btn::before { display: none; }

.btn-icon {
  font-size: 1rem;
  font-weight: bold;
  transition: transform .3s ease;
}

.tour__stops-btn:hover .btn-icon { transform: rotate(45deg); }

.tour__stops-info {
  background: var(--bg-green);
  border-radius: 10px;
  padding: 0 14px;
  margin: 0 20px;
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  overflow: hidden;
  transition: all .4s cubic-bezier(.4,0,.2,1);
}

.tour__stops-btn:hover + .tour__stops-info,
.tour__stops-info:hover,
.tour__stops-info.active {
  opacity: 1;
  visibility: visible;
  max-height: 200px;
  padding: 14px;
  margin-bottom: 8px;
}

.tour__stops-info h4 {
  color: var(--primary-dark);
  font-size: .85rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.tour__stops-info ul { list-style: none; padding: 0; }

.tour__stops-info li {
  font-size: .85rem;
  color: var(--text-mid);
  padding: 5px 0 5px 20px;
  border-bottom: 1px solid #bbf7d0;
  position: relative;
}

.tour__stops-info li::before {
  content: "📍";
  position: absolute;
  left: 0;
  font-size: .8rem;
}

.tour__stops-info li:last-child { border-bottom: none; }

/* Tour note pill */
.tour__note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 20px 8px;
  padding: 6px 12px;
  background: var(--bg-green);
  border: 1px solid #bbf7d0;
  border-radius: 999px;
  font-size: .8rem;
  max-width: calc(100% - 40px);
}

.tour__note-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  flex-shrink: 0;
}

.tour__note-text { font-size: .8rem; font-weight: 600; color: var(--primary-dark); }

/* Tour book button */
.tour__card-button {
  margin: 12px 20px 0;
  padding: 12px;
  font-size: .9rem;
  font-weight: 700;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background .2s, transform .2s;
  letter-spacing: .02em;
  width: calc(100% - 40px);
}

.tour__card-button:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.tour__card--popular .tour__card-button {
  background: var(--primary-dark);
  box-shadow: 0 4px 14px rgba(22,163,74,.3);
}

/* Tour card lightbox */
.tour-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, visibility .25s ease;
}

.tour-modal.is-open {
  display: flex;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.tour-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.85);
  cursor: pointer;
}

.tour-modal__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  max-height: 92vh;
  overflow-y: auto;
}

.tour-modal__hint {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,.9);
  font-size: .9rem;
  pointer-events: none;
  text-shadow: 0 1px 4px rgba(0,0,0,.5);
}

.tour-modal .tour__card--expanded { margin: 0; transform: none; box-shadow: 0 16px 48px rgba(0,0,0,.4); }
.tour-modal .tour__card--expanded:hover { transform: none; }
.tour-modal .tour__card--expanded .tour__card-media { height: min(72vh, 640px); cursor: default; }
body.tour-modal-open { overflow: hidden; }

/* =============================================
   GUARANTEES
   ============================================= */
.guarantees {
  background: var(--dark);
  padding: 32px 24px;
}

.guarantees__grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: center;
}

.guarantee__item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.guarantee__icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.guarantee__text {
  display: flex;
  flex-direction: column;
}

.guarantee__text strong {
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
}

.guarantee__text small {
  font-size: .78rem;
  color: #9ca3af;
}

/* =============================================
   ABOUT
   ============================================= */
.about {
  background: var(--bg-green);
  padding: 60px 24px;
}

.about .container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.about h2 {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--primary-dark);
  letter-spacing: -.01em;
}

.about__features {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.about__features div {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid #bbf7d0;
  padding: 14px 28px;
  font-size: .95rem;
  color: var(--primary-dark);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s, background .2s;
}

.about__features div:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* =============================================
   LANDMARK PHOTO GRID
   ============================================= */
.landmarks {
  background: var(--white);
  padding: 80px 24px;
  text-align: center;
}

.landmarks__title {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 40px;
  letter-spacing: -.02em;
}

.landmarks__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto 36px;
}

.landmark__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.landmark__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  display: block;
}

.landmark__item:hover img { transform: scale(1.07); }

.landmark__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 16px 14px;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 100%);
  color: var(--white);
  text-align: left;
  transition: opacity .3s;
}

.landmark__overlay strong {
  display: block;
  font-size: .95rem;
  font-weight: 700;
}

.landmark__overlay small {
  font-size: .78rem;
  opacity: .85;
}

.landmarks__cta {
  display: flex;
  justify-content: center;
}

.landmarks__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--white);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: .9rem;
  border-radius: 10px;
  border: 2px solid var(--primary);
  text-decoration: none;
  transition: background .2s, color .2s, transform .2s;
}

.landmarks__btn:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* =============================================
   ROADMAP
   ============================================= */
.roadmap {
  background: linear-gradient(to bottom, rgba(0,0,0,.7), rgba(0,0,0,.7)),
    url("../img/betesta-1.jpg") center/cover no-repeat;
  padding: 60px 20px;
  color: white;
  text-align: center;
}

.roadmap__title { font-size: 2.5rem; font-weight: 800; margin-bottom: .3rem; }

.roadmap__subtitle { font-size: .95rem; margin-bottom: 2rem; color: #d1d5db; }

.roadmap__legend {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1rem;
  font-size: .95rem;
  font-weight: 600;
}

.roadmap__dot {
  display: inline-block;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
  width: 22px;
  height: 22px;
}

.roadmap__stop { background: #22c55e; border: 3px solid white; }
.roadmap__pass { background: white; border: 3px solid #22c55e; }

.roadmap__timeline {
  max-width: 1000px;
  margin: 0 auto;
  border-left: 4px solid white;
  border-right: 4px solid white;
  padding: 0 20px;
  position: relative;
}

.roadmap__line {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.roadmap__line:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,.1);
  transform: translateY(-3px);
  transition: box-shadow .3s ease, transform .3s ease;
}

.roadmap__item {
  background: white;
  color: black;
  padding: .8rem 1rem;
  border-radius: 10px;
  max-width: 48%;
  width: 45%;
  box-shadow: 0 8px 20px rgba(0,0,0,.2);
  position: relative;
  z-index: 1;
}

.roadmap__item h3 { font-size: .95rem; }
.roadmap__item p { font-size: .875rem; color: #555; }
.roadmap__left { align-self: flex-start; margin-right: auto; text-align: left; }
.roadmap__right { align-self: flex-end; margin-left: auto; text-align: left; }

.roadmap__line .roadmap__dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.roadmap__image {
  width: 200px;
  height: 200px;
  opacity: 0;
  transition: all 1s ease-in-out;
  transform: scale(.9);
  position: absolute;
  top: 0;
  border-radius: 20px;
  z-index: 1;
}

.roadmap__image.left { left: -250px; }
.roadmap__image.right { right: -250px; }
.roadmap__image.visible { opacity: 1; transform: scale(1); }
.roadmap__image.left.visible { left: -250px; transform: scale(1) rotate(-5deg); }
.roadmap__image.right.visible { right: -250px; transform: scale(1) rotate(5deg); }

/* =============================================
   REVIEWS
   ============================================= */
.review__section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 24px;
  text-align: center;
}

.reviews__eyebrow {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.review__title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.02em;
  margin-bottom: 12px;
}

.review__title span { color: var(--primary); }

.review__rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  color: var(--text-mid);
  margin-bottom: 40px;
}

.stars { color: #f59e0b; }

.review__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
  text-align: left;
}

.review__card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s;
}

.review__card:hover { box-shadow: var(--shadow-md); }

.review__author {
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 6px;
}

.review__stars { color: #f59e0b; margin-bottom: 10px; font-size: .95rem; }

.review__card p { font-size: .9rem; color: var(--text-mid); line-height: 1.6; }

.review__load-button {
  padding: 12px 28px;
  background: var(--primary);
  color: var(--white);
  font-size: .9rem;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background .2s, transform .2s;
}

.review__load-button:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

/* =============================================
   LOCAL GUIDE + CTA
   ============================================= */
.local-guide {
  background: var(--bg);
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.local-guide__video-wrap {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: var(--shadow-lg);
  margin-bottom: 24px;
}

.local-guide__iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

.local-guide__quote h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: -.01em;
  line-height: 1.3;
}

.local-guide__quote p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 10px;
}

.local-guide__quote cite {
  font-size: .875rem;
  font-weight: 600;
  color: var(--primary);
  font-style: normal;
}

.local-guide__cta-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.local-guide__cta-card h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.01em;
}

.local-guide__cta-card p {
  font-size: .95rem;
  color: var(--text-gray);
  line-height: 1.6;
}

.local-guide__phone {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary-dark);
  letter-spacing: -.01em;
}

.local-guide__book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(22,163,74,.3);
  transition: background .2s, transform .2s;
}

.local-guide__book-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.local-guide__social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  background: var(--white);
  color: var(--text-mid);
  font-weight: 600;
  font-size: .875rem;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  text-decoration: none;
  transition: border-color .2s, background .2s;
}

.local-guide__social-btn:hover {
  border-color: var(--primary);
  background: var(--bg-green);
  color: var(--primary-dark);
}

.local-guide__social-btn img { width: 18px; height: 18px; object-fit: contain; }

/* =============================================
   BOOKING LAYOUT
   ============================================= */
.booking-layout {
  display: flex;
  gap: 40px;
  width: 100%;
  padding: 60px 60px;
  background: var(--bg-green);
  align-items: flex-start;
  justify-content: center;
  border-top: 3px solid var(--primary-light);
}

@media (min-width: 1025px) {
  .meetingPoint  { order: 1; flex: 1; min-width: 0; max-width: 360px; }
  .form__section { order: 2; flex: 0 1 500px; max-width: 500px; }
  .booking-info  { order: 3; flex: 1; min-width: 0; max-width: 360px; }
}

.meetingPoint { flex: 1; text-align: center; background: transparent; }
.booking-info { flex: 1; background: transparent; }

.meetingPoint-title,
.booking-info__title { font-size: 1.6rem; font-weight: 800; color: var(--primary-dark); margin-bottom: 16px; }

.meetingPoint__card,
.booking-info__card {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.meetingPoint__card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  transition: box-shadow .3s ease, transform .3s ease;
}

.meetingPoint p { font-size: .95rem; color: var(--primary-dark); margin-bottom: 12px; font-weight: 500; }
.meetingPoint a { font-size: .875rem; color: var(--primary); font-weight: 600; }
.meetingPoint a:hover { color: var(--primary-dark); }

.booking-info__subtitle {
  color: var(--primary-dark);
  font-size: 1rem;
  font-weight: 700;
  margin: 14px 0 6px;
}

.booking-info__card p { color: var(--text-mid); line-height: 1.7; font-size: .9rem; }
.booking-info__card a { color: var(--primary); font-weight: 600; }
.booking-info__note { margin-top: 12px; font-weight: 700; color: var(--primary-dark) !important; font-size: .875rem !important; }

.payment-methods { display: flex; flex-wrap: wrap; gap: 10px 14px; align-items: center; margin-top: 10px; }

.payment-method {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-green);
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  padding: 5px 10px;
}

.payment-icon-img { height: 22px; width: auto; max-width: 56px; display: block; object-fit: contain; }
.payment-method svg.payment-icon-img { height: 22px; width: 22px; min-width: 22px; }
.payment-method img.payment-icon-img { filter: brightness(.8) contrast(1.1); }
.payment-label { font-size: .82rem; color: var(--primary-dark); font-weight: 600; }

/* Form */
.form__section {
  flex: 1.2;
  max-width: 500px;
  text-align: center;
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.form__title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 1rem;
  letter-spacing: -.01em;
}

.form__container { display: flex; flex-direction: column; gap: 1rem; }

.form__input,
.form__textarea {
  padding: .85rem 1rem;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  font-size: .95rem;
  font-family: "Inter", sans-serif;
  transition: border-color .2s, box-shadow .2s;
  background: var(--bg);
  color: var(--text);
}

.form__input:focus, .form__textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(22,163,74,.12);
}

select.form__input { appearance: none; color: var(--text-mid); }
select.form__input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(22,163,74,.12); }

.form__textarea { height: 100px; resize: vertical; }

.tour__Date {
  text-align: left;
  margin-bottom: 0;
  margin-top: .25rem;
}

.form__button {
  padding: 1rem;
  border: none;
  background: var(--primary);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  border-radius: 10px;
  cursor: pointer;
  transition: background .2s, transform .2s;
  letter-spacing: .02em;
}

.form__button:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.form__error-message {
  color: #dc2626;
  font-size: .85rem;
  padding: 8px 12px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
  text-align: left;
}

.form__input.error { border-color: #dc2626; background: #fef2f2; box-shadow: 0 0 0 3px rgba(220,38,38,.1); }
.form__input.valid { border-color: var(--primary); background: var(--bg-green); }

.form__helper { font-size: .82rem; color: var(--text-gray); text-align: left; margin-top: -.25rem; }
.form__helper a { color: var(--primary); font-weight: 600; }

/* Pay notice modal */
.pay-notice-modal {
  position: fixed;
  inset: 0;
  z-index: 11000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .3s ease, visibility .3s ease;
}

.pay-notice-modal.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
.pay-notice-modal.is-closing { opacity: 0; visibility: hidden; pointer-events: none; }

.pay-notice-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(6px);
}

.pay-notice-modal__dialog {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 460px;
  max-height: min(90dvh, 720px);
  overflow: hidden;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0,0,0,.2);
  transform: scale(.88) translateY(24px);
  opacity: 0;
  transition: transform .4s cubic-bezier(.34,1.4,.64,1), opacity .35s ease;
}

.pay-notice-modal__body {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 2rem 1.75rem 1rem;
}

.pay-notice-modal__footer {
  flex-shrink: 0;
  padding: 1rem 1.75rem 1.5rem;
  border-top: 1px solid var(--border);
  background: var(--white);
  box-shadow: 0 -6px 16px rgba(0,0,0,.06);
}

.pay-notice-modal.is-open .pay-notice-modal__dialog { transform: scale(1) translateY(0); opacity: 1; }
.pay-notice-modal.is-closing .pay-notice-modal__dialog { transform: scale(.94) translateY(12px); opacity: 0; transition: transform .28s ease, opacity .28s ease; }

.pay-notice-modal__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 4.5rem;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  animation: payNoticeIconPop .55s cubic-bezier(.34,1.4,.64,1) .15s both;
}

@keyframes payNoticeIconPop {
  from { transform: scale(.5); opacity: 0; }
  to   { transform: scale(1);  opacity: 1; }
}

.pay-notice-modal__title { margin: 0 0 .85rem; font-size: 1.35rem; font-weight: 700; color: var(--primary-dark); }
.pay-notice-modal__text { margin: 0 0 1.25rem; font-size: 1rem; line-height: 1.6; color: var(--text-mid); text-align: center; }
.pay-notice-modal__text strong { color: var(--primary); }

.pay-notice-modal__payments {
  text-align: left;
  margin-bottom: 0;
  padding: 1rem 1rem 0.25rem;
  background: #f6fbf6;
  border: 1px solid rgba(0, 100, 0, 0.1);
  border-radius: 12px;
}

.pay-notice-modal__subtitle {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin: 0 0 0.35rem;
}

.pay-notice-modal__subtitle:not(:first-child) {
  margin-top: 0.85rem;
}

.pay-notice-modal__payment-note {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-mid);
}

.payment-methods--modal {
  justify-content: flex-start;
  margin-top: 0.5rem;
  margin-bottom: 0.25rem;
}

.payment-methods--modal .payment-method {
  padding: 5px 9px;
}

.payment-methods--modal .payment-label {
  font-size: 0.8rem;
}

.pay-notice-modal__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  padding: .75rem 2rem;
  border: none;
  border-radius: 10px;
  background: var(--primary);
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(22,163,74,.3);
  transition: background .2s, transform .2s;
}

.pay-notice-modal__btn:hover { background: var(--primary-dark); transform: translateY(-1px); }
body.pay-notice-open { overflow: hidden; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--dark);
  padding: 40px 24px 24px;
}

.footer__badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer__badge {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer__badge-icon { font-size: 1.75rem; flex-shrink: 0; }

.footer__badge-text {
  display: flex;
  flex-direction: column;
}

.footer__badge-text strong {
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
}

.footer__badge-text small {
  font-size: .78rem;
  color: #9ca3af;
}

.footer__bottom {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__bottom p {
  font-size: .875rem;
  color: #6b7280;
}

.footer__socials {
  display: flex;
  gap: 14px;
  align-items: center;
}

.footer__socials a {
  display: flex;
  align-items: center;
  opacity: .7;
  transition: opacity .2s;
}

.footer__socials a:hover { opacity: 1; }
.footer__socials img { width: 22px; height: 22px; object-fit: contain; filter: brightness(0) invert(1); }

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

/* =============================================
   RESPONSIVE — TABLET
   ============================================= */
@media (max-width: 1024px) {
  .booking-layout {
    flex-direction: column;
    gap: 30px;
    padding: 40px 24px;
  }

  .meetingPoint,
  .booking-info,
  .form__section {
    order: unset;
    flex: none;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }

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

  .local-guide {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 24px;
  }

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

@media (max-width: 1450px) { .roadmap__item { overflow: hidden; } }

/* =============================================
   RESPONSIVE — MOBILE
   ============================================= */
@media (max-width: 768px) {
  /* Header */
  .header__inner {
    height: 60px;
    padding: 0 max(16px, env(safe-area-inset-right)) 0 max(16px, env(safe-area-inset-left));
    gap: 10px;
  }

  .header__logo-image { height: 38px; }
  .header__logo-name { font-size: 1.05rem; }
  .header__logo-sub { display: none; }

  .header__actions {
    display: flex;
    margin-left: auto;
    gap: 8px;
  }

  .header__phone { display: none; }

  .header__book-btn {
    padding: 8px 12px;
    font-size: .72rem;
    letter-spacing: .04em;
    white-space: nowrap;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    height: 100vh;
    height: 100dvh;
    width: min(300px, 90vw);
    background: var(--dark-mid);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: max(5rem, calc(env(safe-area-inset-top) + 4rem)) 1.25rem max(2rem, env(safe-area-inset-bottom));
    gap: 0;
    transform: translateX(100%);
    transition: transform .3s ease;
    z-index: 1050;
    pointer-events: none;
    visibility: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .header__nav.open {
    transform: translateX(0);
    pointer-events: auto;
    visibility: visible;
  }

  .header__nav a {
    padding: .9rem 0;
    font-size: 1rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,.08);
    min-height: 48px;
    display: flex;
    align-items: center;
    color: var(--white);
  }

  .header__nav-mobile-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255,255,255,.12);
  }

  .header__nav-phone,
  .header__nav-book {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: .95rem;
    font-weight: 700;
    text-decoration: none;
    border-bottom: none !important;
  }

  .header__nav-phone {
    background: rgba(255,255,255,.08);
    color: var(--white);
    border: 1px solid rgba(255,255,255,.2);
  }

  .header__nav-book {
    background: var(--primary);
    color: var(--white);
  }

  .hamburger {
    display: flex;
    flex-shrink: 0;
  }

  .nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1040;
    background: rgba(0,0,0,.55);
    opacity: 0;
    transition: opacity .25s ease;
    pointer-events: none;
  }

  .nav-backdrop.is-visible {
    display: block;
    opacity: 1;
    pointer-events: auto;
  }

  body.nav-open { overflow: hidden; }

  /* Hero */
  .hero {
    min-height: 92svh;
    align-items: flex-end;
    padding-bottom: max(28px, env(safe-area-inset-bottom));
  }

  .hero__bg {
    background-image: url('../img/main-pic-phone.PNG');
    background-position: center top;
    animation: none;
  }

  .hero__overlay {
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,.5) 0%,
      rgba(0,0,0,.72) 50%,
      rgba(0,0,0,.9) 100%
    );
  }

  .hero__container {
    padding: 72px 20px 0;
    width: 100%;
  }

  .hero__content { max-width: 100%; }

  .hero__license-badge {
    font-size: .68rem;
    padding: 5px 11px;
    margin-bottom: 14px;
  }

  .hero__headline {
    font-size: 2.35rem;
    margin-bottom: 14px;
    line-height: 1.05;
  }

  .hero__rating-row {
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 6px;
  }

  .hero__rating-text { font-size: .78rem; line-height: 1.35; }

  .hero__location {
    font-size: .82rem;
    margin-bottom: 16px;
  }

  .hero__trust-row {
    gap: 6px;
    margin-bottom: 18px;
  }

  .hero__trust-pill {
    font-size: .7rem;
    padding: 5px 10px;
  }

  .hero__social-proof {
    font-size: .8rem;
    flex-wrap: wrap;
    gap: 8px;
  }

  .hero__google-badge {
    position: static;
    margin: 20px auto 0;
    width: calc(100% - 40px);
    max-width: 300px;
    animation: heroFadeUp .6s ease 1s forwards;
    opacity: 0;
  }

  /* Sections — consistent mobile rhythm */
  .guarantees { padding: 28px 16px; }
  .guarantees__grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .guarantee__item { padding: 14px 12px; }

  .about { padding: 48px 16px; }
  .about__features { flex-direction: column; gap: 10px; }
  .about__features div {
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
    padding: 12px 16px;
  }

  .landmarks { padding: 48px 16px; }
  .landmarks__grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .landmarks__title { font-size: 1.5rem; line-height: 1.25; }

  .roadmap { padding: 48px 16px; }
  .roadmap__title { font-size: 1.65rem; }
  .roadmap__timeline { border-right: none; padding-left: 0; }
  .roadmap__line {
    flex-direction: row;
    justify-content: flex-start;
    gap: .75rem;
  }
  .roadmap__item {
    width: 100%;
    max-width: 100%;
    margin: 0 0 12px 12px;
    box-shadow: none;
    border-radius: 8px;
    padding: 14px;
  }
  .roadmap__right,
  .roadmap__left { align-self: center; text-align: left; }
  .roadmap__line .roadmap__dot {
    position: relative;
    left: 0;
    transform: none;
    margin-left: 4px;
    flex-shrink: 0;
  }
  .roadmap__image {
    position: static;
    width: 100%;
    max-width: 260px;
    height: auto;
    margin: .75rem auto 0;
    display: block;
  }
  .roadmap__image.left,
  .roadmap__image.right,
  .roadmap__image.left.visible,
  .roadmap__image.right.visible {
    left: auto;
    right: auto;
    transform: none;
  }

  .review__section { padding: 48px 16px; }
  .review__title { font-size: 1.65rem; }
  .review__container { grid-template-columns: 1fr; gap: 14px; }
  .review__load-button { width: 100%; max-width: 320px; }

  .local-guide {
    padding: 48px 16px;
    gap: 28px;
  }

  .local-guide__quote h3 { font-size: 1.3rem; }
  .local-guide__cta-card { padding: 28px 20px; }
  .local-guide__book-btn,
  .local-guide__social-btn { width: 100%; justify-content: center; }

  .intro { padding: 48px 16px; }
  .intro__title { font-size: 1.65rem; }
  .intro__text { font-size: .95rem; line-height: 1.65; }

  /* Tours */
  .tours { padding: 48px 16px; }
  .tour__grid { grid-template-columns: 1fr; gap: 20px; }
  .tours__title { font-size: 1.65rem; line-height: 1.2; }
  .tours__subtitle { font-size: .95rem; }
  .tour__card:hover { transform: none; }
  .tour__card-media { height: 220px; }
  .tour__card-duration { font-size: .95rem; padding: 16px 18px 4px; }
  .tour__card h3 { font-size: 1.25rem; padding: 0 18px 4px; }
  .tour__card-price { padding: 0 18px 14px; }
  .tour__card-price span { font-size: 1.75rem; }
  .tour__features { padding: 0 18px 14px; }
  .tour__stops-btn { margin: 0 18px; width: calc(100% - 36px); }
  .tour__card-button {
    margin: 0 18px;
    width: calc(100% - 36px);
    min-height: 48px;
    justify-content: center;
  }
  .tour__note { width: calc(100% - 36px); margin-left: 18px; margin-right: 18px; }

  .tour__stops-btn { padding: 10px 14px; font-size: .87rem; }
  .tour__stops-info { padding: 0 14px; margin-bottom: 0; }
  .tour__stops-btn:hover + .tour__stops-info,
  .tour__stops-info:hover,
  .tour__stops-info.active { padding: 14px; margin: 0 18px 8px; width: calc(100% - 36px); }

  /* Booking */
  .booking-layout { padding: 32px 16px; gap: 24px; }
  .form__section {
    padding: 24px 18px;
    max-width: 100%;
    width: 100%;
    border-radius: 16px;
  }
  .meetingPoint,
  .booking-info { max-width: 100%; width: 100%; }
  .booking-info__card,
  .meetingPoint__card { padding: 20px 18px; }
  .payment-methods { gap: 8px 10px; }

  .form__input,
  .form__textarea,
  select.form__input,
  .date-picker__trigger {
    font-size: 16px;
    min-height: 48px;
  }

  .form__button,
  .intro__button {
    min-height: 48px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    justify-content: center;
  }

  /* Carousel */
  .carousel { margin-top: 1.5rem; }
  .carousel__container { aspect-ratio: 4/3; border-radius: 14px; }
  .carousel__btn { width: 2.5rem; height: 2.5rem; }
  .carousel__btn--prev { left: .5rem; }
  .carousel__btn--next { right: .5rem; }

  /* Pay notice modal */
  .pay-notice-modal {
    padding: max(10px, env(safe-area-inset-top)) 10px max(10px, env(safe-area-inset-bottom));
    align-items: flex-end;
  }

  .pay-notice-modal__dialog {
    max-width: 100%;
    max-height: min(92dvh, 680px);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

  .pay-notice-modal__body {
    padding: 1.25rem 1.15rem .75rem;
  }

  .pay-notice-modal__footer {
    padding: .85rem 1.15rem max(1rem, env(safe-area-inset-bottom));
  }

  .pay-notice-modal__icon {
    width: 3.75rem;
    height: 3.75rem;
    margin-bottom: .85rem;
  }

  .pay-notice-modal__title {
    font-size: 1.15rem;
    margin-bottom: .6rem;
  }

  .pay-notice-modal__text {
    font-size: .92rem;
    margin-bottom: .85rem;
    line-height: 1.5;
  }

  .pay-notice-modal__payments {
    padding: .75rem .85rem .15rem;
  }

  .payment-methods--modal {
    gap: 6px;
  }

  .payment-methods--modal .payment-method {
    padding: 4px 8px;
  }

  .payment-methods--modal .payment-label {
    font-size: .75rem;
  }

  /* Footer */
  .footer__badges { grid-template-columns: 1fr 1fr; gap: 16px; }
  .footer__bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    padding: 0 16px 24px;
  }
}

@media (max-width: 480px) {
  .landmarks__grid { grid-template-columns: 1fr; }
  .guarantees__grid { grid-template-columns: 1fr; }
  .footer__badges { grid-template-columns: 1fr; }
  .hero__headline { font-size: 2rem; }
  .hero__trust-pill { flex: 1 1 calc(50% - 6px); justify-content: center; }
  .tours__title span { display: block; margin-top: .2rem; }
}

@media (hover: none) and (pointer: coarse) {
  .tour__card:hover,
  .tour__card:hover .tour__card-media img,
  .landmark__item:hover {
    transform: none;
  }
}
