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

:root {
  --blue: #2563EB;
  --blue-dark: #1E40AF;
  --blue-light: #DBEAFE;
  --sky: #38BDF8;
  --coral: #F97068;
  --orange: #FB923C;
  --green: #34D399;
  --slate: #1E293B;
  --slate-mid: #334155;
  --slate-light: #64748B;
  --gray-100: #F1F5F9;
  --gray-50: #F8FAFC;
  --white: #FFFFFF;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--slate);
  -webkit-font-smoothing: antialiased;
}

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

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .7rem 1.5rem;
  box-shadow: 0 1px 8px rgba(0,0,0,.06);
}



.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-logo svg { width: 38px; height: 26px; }

.nav-logo-text {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--slate);
}

.nav-logo-text .dot {
  font-family: 'Caveat', cursive;
  color: var(--blue);
  font-weight: 600;
  font-size: 1.1em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: .95rem;
  font-weight: 600;
  color: var(--slate);
  transition: color 0.3s;
  text-decoration: none;
}
.nav-links a:hover { color: var(--blue); }
.nav-links a.nav-active { padding: .45rem 1.1rem; background: var(--blue); color: white !important; border-radius: 50px; }

.nav-cta-btn {
  padding: 0.55rem 1.3rem;
  background: var(--blue);
  color: var(--white) !important;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.92rem;
  transition: all 0.3s;
}
.nav-cta-btn:hover { background: var(--blue-dark); transform: translateY(-1px); }

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 20px;
  position: relative;
}
.mobile-toggle span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--slate);
  transition: all 0.3s;
}
.mobile-toggle span:nth-child(1) { top: 0; }
.mobile-toggle span:nth-child(2) { top: 9px; }
.mobile-toggle span:nth-child(3) { top: 18px; }

/* ─── HERO ─── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg .carousel-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  filter: brightness(0.55);
  transition: opacity 1.5s ease-in-out;
}

.hero-bg .carousel-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,41,59,0.5) 0%, rgba(37,99,235,0.15) 0%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  width: 100%;
}

.nav-payoff {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--slate-light);
  letter-spacing: 0.06em;
  border-left: 2px solid var(--gray-100);
  padding-left: 0.8rem;
  margin-left: 0.4rem;
  line-height: 1.3;
  white-space: nowrap;
}

.hero h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  max-width: 650px;
  margin-bottom: 1.2rem;
  animation: fadeIn 1s 0.4s both;
}

.hero h1 .accent {
  background: linear-gradient(135deg, var(--sky), var(--blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  max-width: 480px;
  line-height: 1.65;
  margin-bottom: 2rem;
  font-weight: 300;
  animation: fadeIn 1s 0.6s both;
}

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

/* ─── BOOKING SEARCH BOX ─── */
.search-box-wrapper {
  max-width: 860px;
  margin-top: 3rem;
  animation: fadeIn 1s 0.8s both;
}

.search-box-tab {
  display: inline-block;
  padding: 0.6rem 1.8rem;
  background: linear-gradient(135deg, #0F1D3D 0%, #172554 100%);
  color: rgba(255, 255, 255, 0.95);
  font-family: 'Sora', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 12px 12px 0 0;
  position: relative;
  top: 1px;
}

.search-box {
  background: linear-gradient(135deg, rgba(30,64,175,0.4) 0%, rgba(37,99,235,0.35) 50%, rgba(59,130,246,0.3) 100%);
  border-radius: 0 20px 20px 20px;
  box-shadow:
    0 20px 60px rgba(37, 99, 235, 0.35),
    0 8px 24px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  padding: 1.8rem 2rem;
  position: relative;
  overflow: hidden;
}

.search-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.search-row {
  display: flex;
  gap: 0.6rem;
  align-items: flex-end;
  position: relative;
  z-index: 1;
}

.search-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}

.search-field label {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
}

.search-field input,
.search-field select {
  padding: 0.65rem 1rem;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  height: 46px;
  box-sizing: border-box;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--slate);
  background: rgba(255, 255, 255, 0.95);
  outline: none;
  transition: all 0.25s;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.05);
}

.search-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M3 5l3 3 3-3' fill='none' stroke='%2364748B' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
  background-color: rgba(255, 255, 255, 0.95);
  padding-right: 2rem;
  cursor: pointer;
}

.search-field input:focus,
.search-field select:focus {
  border-color: rgba(255, 255, 255, 0.6);
  background: var(--white);
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.08), 0 0 0 3px rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}

.search-field input::placeholder {
  color: var(--slate-light);
  font-weight: 400;
}

.search-field.field-sm { flex: 0 0 100px; }
.search-field.field-md { flex: 0 0 130px; }

.search-btn {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0 2rem;
  height: 46px;
  box-sizing: border-box;
  background: var(--blue-dark);
  color: var(--white);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: all 0.3s;
  height: 46px;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}
.search-btn:hover {
  background: #162D6B;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}
.search-btn .btn-icon {
  display: flex;
  align-items: center;
}
.search-btn .btn-icon svg {
  width: 18px;
  height: 18px;
  stroke: white;
  stroke-width: 2.5;
  fill: none;
}

/* ─── DATE INPUT FIX ─── */
.search-field input[type="date"] {
  padding-right: 0.5rem;
  font-size: 0.82rem;
  letter-spacing: -0.01em;
  min-width: 0;
}

.search-field input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 1 !important;
  cursor: pointer;
  display: block !important;
  padding: 2px;
  width: 22px !important;
  height: 22px !important;
}

.search-field.field-md { flex: 0 0 145px; }

/* ─── GYG WIDGET ─── */
.gyg-widget-wrap {
  min-height: 300px;
}

.gyg-widget-wrap iframe {
  border: none;
  border-radius: var(--radius) !important;
}

/* Style GYG activity cards — strong shadows, bold titles, attractive CTA */
.gyg-widget-wrap > div {
  border-radius: var(--radius);
  overflow: hidden;
}

.gyg-widget-wrap iframe,
.gyg-widget-wrap > div > div {
  border-radius: var(--radius) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14), 0 2px 10px rgba(0, 0, 0, 0.08) !important;
}

/* Target all possible GYG card selectors */
.gyg-activities-widget .activity-card,
[class*="ActivityCard"],
[class*="activity-card"],
.gyg-widget-wrap div[class*="card"],
.gyg-widget-wrap a[class*="card"] {
  border-radius: var(--radius) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14), 0 3px 10px rgba(0, 0, 0, 0.08) !important;
  border: 1px solid rgba(0,0,0,0.04) !important;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1) !important;
  overflow: hidden !important;
  background: white !important;
}

.gyg-activities-widget .activity-card:hover,
[class*="ActivityCard"]:hover,
[class*="activity-card"]:hover,
.gyg-widget-wrap div[class*="card"]:hover,
.gyg-widget-wrap a[class*="card"]:hover {
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.22), 0 6px 18px rgba(0, 0, 0, 0.1) !important;
  transform: translateY(-6px) scale(1.01) !important;
}

/* Darker, bolder title text for GYG cards */
[class*="ActivityCard"] h3,
[class*="ActivityCard"] [class*="title"],
[class*="ActivityCard"] [class*="name"],
[class*="activity-card"] h3,
[class*="activity-card"] [class*="title"],
[class*="activity-card"] [class*="name"],
.gyg-widget-wrap h3,
.gyg-widget-wrap [class*="title"] {
  color: var(--blue-dark) !important;
  font-weight: 800 !important;
  letter-spacing: -0.01em !important;
}

/* Accent the price/CTA in blue */
[class*="ActivityCard"] [class*="price"],
[class*="activity-card"] [class*="price"],
.gyg-widget-wrap [class*="price"] {
  color: #2563EB !important;
  font-weight: 800 !important;
  font-size: 1.1em !important;
}

/* Make CTA buttons pop */
[class*="ActivityCard"] button,
[class*="ActivityCard"] [class*="cta"],
[class*="ActivityCard"] [class*="button"],
.gyg-widget-wrap button {
  background: #2563EB !important;
  color: white !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  transition: all 0.3s !important;
}

[class*="ActivityCard"] button:hover,
.gyg-widget-wrap button:hover {
  background: #1E40AF !important;
  transform: translateY(-1px) !important;
}

/* ─── SECTION COMMON ─── */
.section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 3rem;
}

.section-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--slate);
  line-height: 1.2;
}

.section-title .hand {
  font-family: 'Caveat', cursive;
  color: var(--blue);
  font-size: 1.45em;
}

.section-desc {
  margin-top: 0.7rem;
  font-size: 1.05rem;
  color: var(--slate-light);
  max-width: 550px;
  line-height: 1.6;
}

/* ─── HOTEL & TOUR ─── */
.booking-section {
  background: linear-gradient(180deg, var(--gray-50) 0%, #E2E8F0 100%);
}

.booking-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.booking-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.5rem;
}

.booking-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 380px;
  cursor: pointer;
}

.booking-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.booking-card:hover img { transform: scale(1.06); }

.booking-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(30,41,59,0.85) 0%, rgba(30,41,59,0.1) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}

.booking-card-tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.8rem;
}

.tag-hotel { background: var(--blue); color: white; }
.tag-tour { background: var(--coral); color: white; }


.booking-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.4rem;
}

.booking-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

.booking-card-arrow {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  transition: all 0.3s;
  opacity: 0;
  transform: translateY(6px);
}

.booking-card:hover .booking-card-arrow {
  opacity: 1;
  transform: translateY(0);
}

/* ─── REGIONI ─── */
.regions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.region-card {
  position: relative;
  border-radius: 8px 28px 8px 28px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 2 / 1;
  box-shadow: 0 10px 36px rgba(0,0,0,0.2), 0 3px 10px rgba(0,0,0,0.1);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.region-card:hover {
  box-shadow: 0 22px 58px rgba(0,0,0,0.28), 0 8px 20px rgba(0,0,0,0.12);
  transform: translateY(-6px);
}

.region-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.region-card:hover img { transform: scale(1.08); }

.region-card-info {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.1) 45%, transparent 65%);
  display: flex;
  align-items: flex-end;
  padding: 1.4rem 1.6rem;
}

.region-card-info h4 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

/* ─── CITTÀ ─── */
.cities-section { background: var(--slate); }

.cities-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.cities-inner .section-label { color: white; }
.cities-inner .section-title { color: var(--white); }
.cities-inner .section-desc { color: rgba(255,255,255,0.5); }

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

.city-card {
  position: relative;
  border-radius: 8px 28px 8px 28px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 2 / 1;
  box-shadow: 0 10px 36px rgba(0,0,0,0.2), 0 3px 10px rgba(0,0,0,0.1);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.city-card:hover {
  box-shadow: 0 22px 58px rgba(0,0,0,0.28), 0 8px 20px rgba(0,0,0,0.12);
  transform: translateY(-6px);
}

.city-card a { display: block; width: 100%; height: 100%; }

.city-card-img { position: absolute; inset: 0; overflow: hidden; }

.city-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.city-card:hover .city-card-img img { transform: scale(1.08); }

.city-card-body {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.1) 45%, transparent 65%);
  display: flex; align-items: flex-end; padding: 1.4rem 1.6rem;
}

.city-card-body h4 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

.city-card-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.8rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.city-card-meta span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* ─── INFO UTILI ─── */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.info-card {
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.info-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14);
  transform: translateY(-5px);
}

.info-card-img {
  height: 160px;
  overflow: hidden;
}

.info-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.info-card:hover .info-card-img img {
  transform: scale(1.06);
}

.info-card-body {
  padding: 1.4rem 1.5rem;
}

.info-card h4 {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--slate);
}

.info-card p {
  font-size: 0.88rem;
  color: var(--slate-light);
  line-height: 1.6;
}

/* ─── CTA BANNER ─── */
.cta-banner {
  max-width: 1200px;
  margin: 4rem auto 0;
  padding: 3.5rem 2rem;
  background: linear-gradient(135deg, var(--blue) 0%, #4F46E5 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

/* Wrapper that eliminates white gap between CTA and footer */
.pre-footer-wrap {
  background: var(--white);
  padding-bottom: 4rem;
}

.cta-banner h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: white;
  max-width: 400px;
  line-height: 1.3;
}

.cta-banner p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  max-width: 400px;
  margin-top: 0.5rem;
}

.cta-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  background: white;
  color: var(--blue);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s;
}
.cta-banner-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,0.2); }

/* ─── FOOTER ─── */
.footer {
  background: var(--slate);
  color: rgba(255,255,255,0.6);
  padding: 4rem 2rem 2rem;
  margin-top: 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .nav-logo { margin-bottom: 1rem; }
.footer-brand .nav-logo-text { color: white; }

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.65;
  max-width: 280px;
  color: rgba(255,255,255,0.4);
}

.footer-col h5 {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: white;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--white); }

.footer-apps {
  display: flex;
  gap: 0.8rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s;
  cursor: pointer;
}
.app-badge:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.2);
}

.app-badge svg { width: 20px; height: 20px; fill: white; }

.app-badge-text {
  display: flex;
  flex-direction: column;
}
.app-badge-text small {
  font-size: 0.58rem;
  color: rgba(255,255,255,0.4);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.app-badge-text strong {
  font-size: 0.82rem;
  color: white;
  font-weight: 600;
  line-height: 1.2;
}

.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-bottom-left p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
}

.footer-company {
  margin-top: 0.3rem;
}

.footer-company a {
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}
.footer-company a:hover { color: var(--white); }

.footer-app-cta {
  text-align: right;
}

.footer-app-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.6rem;
}

.footer-app-buttons {
  display: flex;
  gap: 0.6rem;
}

/* ─── PARALLAX DIVIDERS ─── */
.parallax-divider {
  position: relative;
  height: 400px;
  overflow: hidden;
  margin: 0;
  box-shadow:
    inset 0 8px 20px -6px rgba(0, 0, 0, 0.15),
    inset 0 -8px 20px -6px rgba(0, 0, 0, 0.15),
    0 2px 8px rgba(0, 0, 0, 0.04);
}

.parallax-divider-bg {
  position: absolute;
  inset: -100px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: brightness(0.85) saturate(1.2);
  will-change: transform;
}

/* ─── MOBILE STICKY FOOTER ─── */
.mobile-sticky-footer { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 200; background: var(--white); box-shadow: 0 -4px 20px rgba(0,0,0,0.12); padding: 0.55rem 1rem; gap: 0.6rem; }
.mobile-sticky-footer a { flex: 1; display: flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.7rem; border-radius: 10px; font-family: 'Sora', sans-serif; font-weight: 700; font-size: 0.88rem; transition: all 0.3s; }
.mobile-sticky-footer .btn-hotel { background: var(--blue-dark); color: white; }
.mobile-sticky-footer .btn-tour { background: var(--slate); color: white; }

@supports (-webkit-touch-callout: none) {
  .parallax-divider-bg { background-attachment: scroll; }
}

.parallax-divider-text {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.parallax-divider-text h3 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 700;
  color: white;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
  background: rgba(30,41,59,0.2); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  padding: 0.9rem 2.2rem; border-radius: 12px; display: inline-block;
}

.parallax-divider-text h3 .hand {
  font-family: 'Caveat', cursive;
  color: var(--sky);
  font-size: 1.45em;
}

/* ─── SCROLL TO TOP ─── */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 150;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--blue-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.45);
}

.scroll-top svg {
  width: 22px;
  height: 22px;
  stroke: white;
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ─── ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 56px; left: 0; right: 0; bottom: 0;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 1.5rem 2rem;
    gap: 0;
    overflow-y: auto;
    z-index: 9999;
    border-radius: 0;
    box-shadow: none;
  }
  .nav-links.show { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 1.1rem 0;
    color: var(--slate) !important;
    font-size: 1.2rem;
    font-weight: 700;
    border-bottom: 1px solid var(--gray-100);
  }
  .nav-links li:last-child a { border-bottom: none; }
  .nav-links .nav-cta-btn {
    display: inline-block;
    margin-top: 0.5rem;
    text-align: center;
    color: var(--white) !important;
  }
  .mobile-toggle { display: block; }
  /* Search box mobile layout */
  .search-row { flex-wrap: wrap; }
  .search-row .search-field[style*="flex:3"] { flex: 1 1 100% !important; order: 1; }
  .search-row .search-field.field-md { flex: 1 1 calc(50% - .3rem) !important; order: 2; }
  .search-row .search-btn { flex: 1 1 100%; order: 3; }
  .search-field[style*="flex: 3"] { flex: 1 1 100% !important; }
  .search-field.field-md { flex: 1 1 calc(50% - 0.3rem) !important; }
  .search-field.field-sm { display: none; }
  .search-btn { width: 100%; justify-content: center; }
  .search-box { border-radius: 0 0 16px 16px; }
  .search-box-tab { display: block; text-align: center; font-size: 0.65rem; border-radius: 12px 12px 0 0; }
  .nav-payoff { display: none; }
  .regions-grid { grid-template-columns: 1fr; }
  .cities-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner { text-align: center; flex-direction: column; align-items: center; }
  .booking-grid { grid-template-columns: 1fr; }
  .parallax-divider-bg { background-attachment: scroll; }
  .mobile-sticky-footer { display: flex; }
  body { padding-bottom: 64px; }
  .scroll-top { bottom: 80px !important; }
  .search-box-tab .tab-line2 { display: block; }
  .section { padding-left: 1rem; padding-right: 1rem; }
  .cities-inner { padding-left: 1rem !important; padding-right: 1rem !important; }
  .section-title { font-size: 1.6rem; }
}

@media (max-width: 600px) {
  .cities-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero h1 { font-size: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-app-cta { text-align: left; }
  .footer-app-buttons { flex-wrap: wrap; }
}

/* ─── TAB MOBILE LINE BREAK ─── */
.search-box-tab .tab-line2 { display: inline; }



.store-row { display: flex; gap: 0.6rem; }
.store-btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.55rem 1.2rem; background: rgba(255,255,255,0.15); border: 1.5px solid rgba(255,255,255,0.4); color: white; border-radius: 8px; font-family: 'Sora', sans-serif; font-size: 0.82rem; font-weight: 600; white-space: nowrap; transition: all 0.3s; }
.store-btn:hover { background: rgba(255,255,255,0.25); border-color: rgba(255,255,255,0.7); }
.mobile-br{display:none}
@media(max-width:900px){.mobile-br{display:block}}

.region-card img, .city-card-img img, .dest-card img { transform: scale(1.01); transition: transform 1.2s cubic-bezier(0.22,1,0.36,1); }
.region-card.in-view img, .city-card.in-view img, .dest-card.in-view img { transform: scale(1.08); }
.region-card:hover img, .city-card:hover .city-card-img img, .dest-card:hover img { transform: scale(1.12); }

.fullscreen-menu{display:none;position:fixed;inset:0;z-index:99999;background:white;flex-direction:column;gap:0;overflow-y:auto}
.fullscreen-menu.open{display:flex}
.fm-header{position:sticky;top:0;display:flex;align-items:center;justify-content:space-between;width:100%;padding:.7rem 1.5rem;background:rgba(255,255,255,.97);backdrop-filter:blur(12px);box-shadow:0 1px 8px rgba(0,0,0,.06);z-index:1;flex-shrink:0}
.fm-header .nav-logo{display:flex;align-items:center;gap:.5rem;text-decoration:none}
.fm-header .nav-logo-text{font-family:'Sora',sans-serif;font-weight:700;font-size:1.35rem;color:var(--slate)}
.fm-header .fm-close{background:none;border:none;cursor:pointer;padding:.3rem}
.fm-header .fm-close svg{width:26px;height:26px;stroke:var(--slate);stroke-width:2.5}
.fullscreen-menu a{display:block;width:100%;text-align:center;padding:1.1rem 2rem;font-family:'Sora',sans-serif;font-size:1.2rem;font-weight:600;color:var(--slate);text-decoration:none;border-bottom:1px solid #f1f5f9}
.fullscreen-menu a:hover{background:#f8fafc}
/* ═══ COUNTRY & HOME SECTIONS ═══ */

/* Country intro — flag right, no border, larger */
.country-intro-section{padding:3.5rem 0;background:linear-gradient(180deg,#f0f4f8 0%,#e8edf3 100%)}
.country-intro{display:flex;align-items:center;gap:2.5rem;max-width:900px;margin:0 auto;padding:0 2rem}
.country-intro-text p{font-family:'Lexend','Helvetica Neue',Helvetica,sans-serif;font-size:1.12rem;color:var(--slate);line-height:1.8;margin:0}
.country-intro-flag{width:140px;height:auto;flex-shrink:0;border:none;box-shadow:none}
@media(max-width:700px){.country-intro{flex-direction:column-reverse;text-align:center}.country-intro-flag{width:100px}}

/* Full-bleed light sections */
.dest-section-full{background:var(--gray-50,#f8fafc);padding:3.5rem 0}
.dest-section-inner{max-width:1200px;margin:0 auto;padding:0 2rem}

/* ─── Guide cards (2 per row) ─── */
.guide-cards-grid{display:grid;grid-template-columns:1fr 1fr;gap:1.2rem;max-width:1100px;margin:0 auto;padding:0 2rem}
.guide-card{border-radius:14px;overflow:hidden;background:white;box-shadow:0 6px 28px rgba(0,0,0,.1),0 2px 8px rgba(0,0,0,.05);transition:all .4s cubic-bezier(.22,1,.36,1)}
.guide-card:hover{transform:translateY(-5px);box-shadow:0 18px 50px rgba(0,0,0,.16),0 6px 16px rgba(0,0,0,.08)}
.gc-img{display:block;height:190px;overflow:hidden;position:relative}
.gc-img img{width:100%;height:100%;object-fit:cover;transition:transform .6s}
.guide-card:hover .gc-img img{transform:scale(1.05)}
.gc-hover{position:absolute;inset:0;background:rgba(30,41,59,.35);opacity:0;transition:opacity .3s;display:flex;align-items:center;justify-content:center}
.gc-hover span{color:white;font-weight:700;font-size:.85rem;padding:.4rem 1rem;border:2px solid white;border-radius:50px}
.guide-card:hover .gc-hover{opacity:1}
.gc-body{padding:1rem 1.2rem}
.gc-body h4{font-family:'Sora',sans-serif;font-size:.95rem;font-weight:700;color:var(--slate);line-height:1.3;margin:0}
.gc-body h4 a{color:inherit;text-decoration:none;transition:color .2s}
.gc-body h4 a:hover{color:var(--blue)}
@media(max-width:700px){

.guide-cards-grid{grid-template-columns:1fr;padding:0 1rem}.gc-img{height:160px}
}

/* ─── Organize below (with icons) ─── */
.organize-below{margin:3rem 0 0;padding:3rem 0;background-color:#4f4f4f;background-size:cover;background-position:center;background-attachment:fixed;width:100vw;margin-left:calc(-50vw + 50%);box-sizing:border-box}
.org-below-header{background:var(--slate);border-radius:14px 14px 0 0;padding:1.3rem 1.5rem;color:white;max-width:560px;margin:0 auto}
.org-below-header h3{font-family:'Sora',sans-serif;font-size:1.1rem;font-weight:700;margin:0}
.org-below-grid{max-width:560px;margin:0 auto;display:flex;flex-direction:column}
.ob-item{display:flex;align-items:center;gap:1rem;padding:1rem 1.5rem;border-bottom:1px solid var(--gray-100,#f1f5f9);text-decoration:none;color:inherit;transition:all .25s}
.ob-item:nth-child(odd){background:white}
.ob-item:nth-child(even){background:#f8fafc}
.ob-item:last-child{border-bottom:none;border-radius:0 0 14px 14px}
.ob-item:hover{background:var(--gray-100,#f1f5f9)}
.ob-icon{width:28px;height:28px;flex-shrink:0;color:var(--blue);stroke-width:1.5}
.ob-body{flex:1}
.ob-body h4{font-family:'Sora',sans-serif;font-size:.88rem;font-weight:700;color:var(--slate);margin-bottom:.1rem}
.ob-body p{font-size:.75rem;color:var(--slate-light);margin:0;line-height:1.3}
.ob-btn{flex-shrink:0;min-width:90px;text-align:center;padding:.45rem 1.2rem;background:var(--blue);color:white;border-radius:50px;font-size:.7rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase;white-space:nowrap;box-shadow:0 4px 14px rgba(37,99,235,.3);transition:all .25s}
.ob-item:hover .ob-btn{background:var(--blue-dark,#1e3a8a);box-shadow:0 6px 20px rgba(30,58,138,.4)}

/* GYG section */
.gyg-banner-section{background:var(--gray-50,#f8fafc);padding:3.5rem 0;border-top:1px solid rgba(0,0,0,.04)}
.gyg-banner-inner{max-width:1100px;margin:0 auto;padding:0 2rem}

/* Fix anchor offset for fixed header */
section[id]{scroll-margin-top:80px}

.nav-right-group{display:flex;align-items:center;gap:.3rem}

.nav-search-btn{width:34px;height:34px;border-radius:50%;border:none;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:all .3s;background:#475569}
.nav-search-btn svg{width:17px;height:17px;stroke:white;stroke-width:2;fill:none}
.nav-search-btn:hover{background:#334155}
