/* ═══════════════════════════════════════════
   ANDARIA TRAVEL — MAIN STYLESHEET
   Child Theme of GeneratePress
═══════════════════════════════════════════ */

/* ── RESET & VARIABLES ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --red:        #e8192c;
  --red-dark:   #c01020;
  --dark:       #1a1a1a;
  --white:      #ffffff;
  --gray:       #f5f5f5;
  --text:       #444;
  --light-gray: #888;
}
.andaria-home body,
body.andaria-home {
  font-family: 'Open Sans', sans-serif;
  color: var(--dark);
  margin: 0;
  padding: 0;
}
.andaria-home a { text-decoration: none; color: inherit; }

/* Remove GeneratePress defaults on home */
body.andaria-home #page,
body.andaria-home .site-content,
body.andaria-home .inside-article { padding: 0 !important; margin: 0 !important; }
body.andaria-home .entry-header,
body.andaria-home .entry-title { display: none !important; }

/* ── SHARED UTILITIES ── */
.section-title {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 40px;
}
.section-title span { color: var(--red); }
.btn-red {
  background: var(--red);
  color: white;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: background .2s;
  display: inline-block;
  text-decoration: none;
}
.btn-red:hover { background: var(--red-dark); color: white; }

/* ── NAV ── */
#andaria-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 50px;
  height: 96px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  transition: all .35s ease;
}
#andaria-nav.scrolled {
  height: 76px;
  background: rgba(255,255,255,0.99);
  border-bottom-color: rgba(232,25,44,0.2);
  box-shadow: 0 2px 16px rgba(0,0,0,0.1);
}
.nav-logo { display: flex; align-items: center; gap: 8px; }
.nav-logo-icon {
  width: 38px; height: 38px; background: var(--red); border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
}
.nav-logo-icon svg { fill: white; width: 22px; height: 22px; }
.nav-logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--dark);
  letter-spacing: 0.5px;
}
.nav-logo-text span { color: var(--red); }

/* Nav links */
.nav-links {
  display: flex;
  gap: 0;
  font-size: 11.5px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.nav-links a {
  color: rgba(26,26,26,0.6);
  padding: 0 20px;
  height: 96px;
  display: flex;
  align-items: center;
  position: relative;
  transition: color .2s;
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 20px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
}
.nav-links a:hover { color: var(--dark); }
.nav-links a:hover::after { transform: scaleX(1); }

/* Last nav link — CTA button */
.nav-links a:last-child {
  background: var(--red);
  color: white;
  margin-left: 16px;
  padding: 0 22px;
  height: 36px;
  border-radius: 3px;
  font-size: 11px;
  letter-spacing: 2px;
  align-self: center;
}
.nav-links a:last-child::after { display: none; }
.nav-links a:last-child:hover { background: var(--red-dark); color: white; }

/* Hamburger */
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); transition: all .3s; }

/* Progressive tightening (before hamburger) */
@media (max-width: 1400px) {
  #andaria-nav { padding: 0 36px; }
  .nav-links { font-size: 11px; letter-spacing: 1.3px; }
  .nav-links a { padding: 0 14px; }
  .nav-links a:last-child { margin-left: 10px; padding: 0 16px; }
}

/* Hamburger takes over */
@media (max-width: 1280px) {
  #andaria-nav { padding: 0 24px; height: 86px; }
  #andaria-nav.scrolled { height: 72px; }
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 86px;
    left: 0; right: 0;
    background: rgba(255,255,255,0.99);
    backdrop-filter: blur(12px);
    padding: 16px 0 24px;
    gap: 0;
    border-bottom: 2px solid var(--red);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    font-size: 11px;
    letter-spacing: 2px;
  }
  #andaria-nav.scrolled .nav-links { top: 72px; }
  .nav-links.open { display: flex; }
  .nav-links a {
    width: 100%;
    max-width: 100%;
    height: 48px;
    padding: 0;
    margin: 0;
    color: rgba(26,26,26,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .nav-links a::after { display: none; }
  .nav-links a:hover { color: var(--red); background: rgba(232,25,44,0.04); }
  .nav-links a:last-child {
    width: calc(100% - 48px);
    max-width: 280px;
    margin: 14px auto 0;
    padding: 0;
    height: 42px;
    border-radius: 4px;
  }
}

@media (max-width: 600px) {
  #andaria-nav { padding: 0 16px; height: 72px; }
  #andaria-nav.scrolled { height: 62px; }
  .nav-links { top: 72px; }
  #andaria-nav.scrolled .nav-links { top: 62px; }
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 120px 20px 80px;
}
.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 900; color: white; line-height: 1.05; text-transform: uppercase; max-width: 900px;
}
.hero h1 span { color: var(--red); font-style: italic; }
.hero p { color: rgba(255,255,255,0.88); font-size: 15px; margin: 18px 0 32px; max-width: 520px; }
.scroll-arrow {
  margin-top: 50px; width: 36px; height: 36px;
  border: 2px solid rgba(255,255,255,0.6); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
}
.scroll-arrow::after { content: '↓'; color: white; font-size: 16px; }

/* ── EXPERIENCES ── */
.experiences { padding: 80px 50px; background: #fafafa; }
.exp-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  max-width: 1100px; margin: 0 auto;
}
.exp-card {
  background: white; border-radius: 10px; overflow: hidden;
  box-shadow: 0 2px 14px rgba(0,0,0,0.07);
  transition: transform .2s, box-shadow .2s; cursor: pointer;
}
.exp-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,0.14); }
.exp-card img { width: 100%; height: 170px; object-fit: cover; display: block; }
.exp-card-body { padding: 18px 18px 22px; }
.exp-card-duration {
  display: inline-block; background: var(--red); color: white;
  font-size: 10px; font-weight: 700; font-family: 'Montserrat', sans-serif;
  padding: 3px 9px; border-radius: 30px; margin-bottom: 8px;
  text-transform: uppercase; letter-spacing: 0.4px;
}
.exp-card-body h4 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px; margin-bottom: 8px; line-height: 1.35; }
.exp-card-body p { font-size: 12px; color: var(--light-gray); line-height: 1.6; }
.exp-link {
  display: inline-flex; align-items: center; gap: 5px; margin-top: 14px;
  font-size: 12px; font-weight: 700; color: var(--red);
  font-family: 'Montserrat', sans-serif; background: none; border: none; cursor: pointer; padding: 0;
}
.exp-link::after { content: ' →'; }

/* ── DESTINATIONS ── */
.destinations { padding: 80px 50px; background: white; }
.dest-inner { max-width: 1100px; margin: 0 auto; }
.dest-tabs { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px; }
.dest-tab {
  padding: 8px 20px; border-radius: 30px; font-size: 12px; font-weight: 700;
  font-family: 'Montserrat', sans-serif; cursor: pointer; border: 2px solid #ddd;
  transition: all .2s; background: white; color: var(--dark);
}
.dest-tab.active, .dest-tab:hover { background: var(--red); color: white; border-color: var(--red); }
.dest-banner {
  border-radius: 12px; overflow: hidden;
  background: linear-gradient(rgba(0,0,0,0.52), rgba(0,0,0,0.58)),
    url('https://images.unsplash.com/photo-1526392060635-9d6019884377?w=1200&q=80') center/cover;
  padding: 42px 44px 48px; color: white;
}
.dest-banner h2 { font-family: 'Montserrat', sans-serif; font-size: 28px; font-weight: 900; margin-bottom: 8px; }
.dest-banner h2 span { color: var(--red); }
.dest-banner > p { font-size: 13px; opacity: 0.88; max-width: 540px; }
.dest-places { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 28px; margin-top: 28px; }
.dest-place h5 { font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 700; color: var(--red); margin-bottom: 5px; }
.dest-place p { font-size: 12px; color: rgba(255,255,255,0.8); line-height: 1.55; }
.dest-place-more { font-size: 11px; color: white; font-weight: 700; margin-top: 6px; display: inline-block; }

/* ── CORPORATE ── */
.corporate {
  padding: 80px 50px; text-align: center; color: white;
  background: linear-gradient(rgba(0,0,0,0.72), rgba(0,0,0,0.76)),
    url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1600&q=80') center/cover;
}
.corporate .section-title { color: white; }
.corporate-sub { font-size: 14px; color: rgba(255,255,255,0.8); margin-bottom: 48px; }
.corp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; max-width: 1100px; margin: 0 auto; }
.corp-card { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 10px; padding: 30px 22px; text-align: center; }
.corp-icon { width: 52px; height: 52px; border-radius: 50%; background: rgba(232,25,44,0.18); border: 2px solid var(--red); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 22px; }
.corp-card h4 { font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 700; margin-bottom: 10px; }
.corp-card p { font-size: 12px; color: rgba(255,255,255,0.75); line-height: 1.6; }

/* ── ABOUT ── */
.about { padding: 80px 50px; background: white; }
.about-inner { max-width: 1100px; margin: 0 auto; }
.about-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 10px; }
.about-card { padding: 30px 28px; border-radius: 8px; background: var(--gray); }
.about-card.red { background: var(--red); color: white; }
.about-card h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 15px; margin-bottom: 12px; }
.about-card p { font-size: 13px; line-height: 1.7; opacity: 0.9; }
.about-card.red p { color: rgba(255,255,255,0.92); }

/* ── CONTACT ── */
.contact { padding: 80px 50px; background: white; }
.contact-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-left h2 { font-family: 'Montserrat', sans-serif; font-size: 40px; font-weight: 900; line-height: 1.1; margin-bottom: 20px; }
.contact-left p { font-size: 14px; color: var(--light-gray); margin-bottom: 28px; line-height: 1.7; }
.contact-info { display: flex; flex-direction: column; gap: 10px; }
.contact-info-item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text); }
.contact-info-item .icon { font-size: 15px; }
/* Contact Form 7 override to match dark theme */
.contact-form-wrap { background: var(--dark); border-radius: 12px; padding: 36px; }
.contact-form-wrap .wpcf7-form p { margin-bottom: 14px; }
.contact-form-wrap .wpcf7-form label {
  display: block; font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,0.7); margin-bottom: 6px;
  font-family: 'Montserrat', sans-serif; text-transform: uppercase; letter-spacing: 0.4px;
}
.contact-form-wrap input[type="text"],
.contact-form-wrap input[type="email"],
.contact-form-wrap input[type="tel"],
.contact-form-wrap textarea {
  width: 100%; background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12); border-radius: 5px;
  padding: 11px 14px; color: white; font-size: 13px;
  font-family: 'Open Sans', sans-serif; outline: none; transition: border .2s;
}
.contact-form-wrap input:focus,
.contact-form-wrap textarea:focus { border-color: var(--red); }
.contact-form-wrap textarea { resize: vertical; min-height: 90px; }
.contact-form-wrap input[type="submit"],
.contact-form-wrap .wpcf7-submit {
  width: 100%; background: var(--red); color: white; border: none;
  border-radius: 4px; padding: 14px; font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 13px; text-transform: uppercase;
  letter-spacing: 0.5px; cursor: pointer; transition: background .2s;
}
.contact-form-wrap input[type="submit"]:hover,
.contact-form-wrap .wpcf7-submit:hover { background: var(--red-dark); }
.contact-form-wrap .wpcf7-response-output { color: rgba(255,255,255,0.7); font-size: 12px; margin-top: 10px; border: none !important; padding: 0 !important; }

/* ── FOOTER ── */
footer { background: #111; color: rgba(255,255,255,0.7); padding: 50px 50px 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; max-width: 1100px; margin: 0 auto 36px; }
.footer-logo { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 18px; color: white; margin-bottom: 12px; }
.footer-logo span { color: var(--red); }
.footer-brand p { font-size: 12px; line-height: 1.7; margin-bottom: 16px; }
.footer-social { display: flex; gap: 10px; }
.social-icon { width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-size: 13px; transition: background .2s; cursor: pointer; }
.social-icon:hover { background: var(--red); }
.footer-col h5 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 13px; color: white; margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; font-size: 12px; }
.footer-col ul li a:hover { color: var(--red); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; text-align: center; font-size: 11px; max-width: 1100px; margin: 0 auto; }

/* ══════════════════════════════════════════
   MODAL
══════════════════════════════════════════ */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.72); backdrop-filter: blur(3px);
  align-items: flex-start; justify-content: center;
  padding: 24px 16px; overflow-y: auto;
}
.modal-overlay.open { display: flex; }
.modal {
  background: white; border-radius: 14px; width: 100%; max-width: 1140px;
  overflow: hidden; position: relative; margin: auto;
  animation: modalIn .28s cubic-bezier(.34,1.3,.64,1);
  display: flex; flex-direction: column;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(30px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-hero { height: 220px; position: relative; overflow: hidden; flex-shrink: 0; }
.modal-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.modal-hero-overlay { position: absolute; inset: 0; background: linear-gradient(rgba(0,0,0,0.15), rgba(0,0,0,0.65)); z-index: 1; }
.modal-hero-content { position: relative; z-index: 2; padding: 22px 28px; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; }
.modal-badge { display: inline-block; background: var(--red); color: white; font-size: 11px; font-weight: 700; font-family: 'Montserrat', sans-serif; padding: 4px 12px; border-radius: 30px; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; width: fit-content; }
.modal-hero h2 { font-family: 'Montserrat', sans-serif; font-size: 24px; font-weight: 900; color: white; line-height: 1.1; max-width: 700px; }
.modal-close { position: absolute; top: 14px; right: 14px; z-index: 10; width: 34px; height: 34px; border-radius: 50%; background: rgba(0,0,0,0.45); border: none; color: white; font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.modal-close:hover { background: var(--red); }
.modal-content-row { display: flex; flex: 1; min-height: 0; }
.modal-main { flex: 0 0 70%; overflow-y: auto; max-height: 72vh; padding: 26px 28px 28px; border-right: 1px solid #f0f0f0; }
.modal-sidebar { flex: 0 0 30%; overflow-y: auto; max-height: 72vh; background: var(--dark); padding: 26px 22px 28px; display: flex; flex-direction: column; }

/* Tabs */
.modal-tabs { display: flex; gap: 2px; margin-bottom: 22px; border-bottom: 2px solid #eee; }
.modal-tab { padding: 8px 14px; font-size: 11.5px; font-weight: 700; font-family: 'Montserrat', sans-serif; cursor: pointer; border: none; background: none; color: var(--light-gray); border-bottom: 2px solid transparent; margin-bottom: -2px; transition: color .2s, border-color .2s; white-space: nowrap; }
.modal-tab.active { color: var(--red); border-bottom-color: var(--red); }
.modal-tab:hover { color: var(--red); }
.modal-panel { display: none; }
.modal-panel.active { display: block; }

/* Itinerary */
.itinerary-day { border-left: 3px solid #eee; padding-left: 16px; margin-bottom: 18px; position: relative; transition: border-color .2s; }
.itinerary-day:hover { border-left-color: var(--red); }
.itinerary-day::before { content: ''; position: absolute; left: -7px; top: 4px; width: 11px; height: 11px; border-radius: 50%; background: white; border: 3px solid #ccc; transition: border-color .2s; }
.itinerary-day:hover::before { border-color: var(--red); }
.day-label { font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; }
.day-title { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 12.5px; margin-bottom: 5px; }
.day-text { font-size: 12px; color: var(--text); line-height: 1.7; }
.day-meals { display: inline-flex; align-items: center; gap: 5px; margin-top: 6px; font-size: 11px; color: var(--light-gray); font-style: italic; }
.day-meals::before { content: '🍽 '; font-size: 11px; }

/* Included */
.incl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.incl-col h4 { font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 700; margin-bottom: 12px; padding-bottom: 7px; border-bottom: 2px solid var(--red); }
.incl-col.not h4 { border-bottom-color: #ccc; }
.incl-list { list-style: none; }
.incl-list li { font-size: 12px; color: var(--text); padding: 5px 0; border-bottom: 1px solid #f5f5f5; display: flex; gap: 7px; line-height: 1.5; }
.incl-list li::before { content: '✓'; color: #22c55e; font-weight: 700; flex-shrink: 0; }
.incl-col.not .incl-list li::before { content: '✗'; color: #ef4444; }

/* Prices */
.prices-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.price-card { border: 2px solid #eee; border-radius: 10px; padding: 18px 14px; text-align: center; transition: border-color .2s, transform .15s; }
.price-card:hover { border-color: var(--red); transform: translateY(-2px); }
.price-stars { font-size: 14px; margin-bottom: 6px; }
.price-label { font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 700; color: var(--light-gray); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; }
.price-amount { font-family: 'Montserrat', sans-serif; font-size: 22px; font-weight: 900; color: var(--dark); }
.price-per { font-size: 10px; color: var(--light-gray); margin-top: 3px; }
.price-card.featured { border-color: var(--red); background: #fff5f6; }
.price-card.featured .price-amount { color: var(--red); }
.price-note { font-size: 11px; color: var(--light-gray); margin-top: 16px; text-align: center; line-height: 1.5; }

/* Sidebar form */
.modal-sidebar-title { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 15px; color: white; margin-bottom: 4px; }
.modal-sidebar-sub { font-size: 11.5px; color: rgba(255,255,255,0.55); margin-bottom: 20px; line-height: 1.5; }
.modal-sidebar-tour-name { background: rgba(232,25,44,0.15); border-left: 3px solid var(--red); padding: 8px 12px; border-radius: 0 4px 4px 0; margin-bottom: 20px; }
.modal-sidebar-tour-name span { font-size: 11px; font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--red); display: block; margin-bottom: 2px; text-transform: uppercase; letter-spacing: 0.4px; }
.modal-sidebar-tour-name p { font-size: 12px; color: white; font-weight: 600; font-family: 'Montserrat', sans-serif; line-height: 1.3; }
.sf-group { margin-bottom: 12px; }
.sf-group label { display: block; font-size: 10.5px; font-weight: 700; color: rgba(255,255,255,0.6); margin-bottom: 5px; font-family: 'Montserrat', sans-serif; text-transform: uppercase; letter-spacing: 0.4px; }
.sf-group input, .sf-group select, .sf-group textarea { width: 100%; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.14); border-radius: 5px; padding: 9px 12px; color: white; font-size: 12px; font-family: 'Open Sans', sans-serif; outline: none; transition: border .2s; -webkit-appearance: none; }
.sf-group input:focus, .sf-group select:focus, .sf-group textarea:focus { border-color: var(--red); background: rgba(255,255,255,0.1); }
.sf-group input::placeholder, .sf-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.sf-group select option { background: #1a1a1a; color: white; }
.sf-group textarea { resize: none; height: 68px; }
.sf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.sf-submit { width: 100%; background: var(--red); color: white; border: none; border-radius: 5px; padding: 12px; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: 0.5px; cursor: pointer; transition: background .2s; margin-top: 6px; }
.sf-submit:hover { background: var(--red-dark); }
.sf-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.sf-success { display: none; text-align: center; padding: 40px 10px; }
.sf-success .checkmark { font-size: 40px; margin-bottom: 12px; }
.sf-success h4 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 15px; color: white; margin-bottom: 8px; }
.sf-success p { font-size: 12px; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .exp-grid { grid-template-columns: repeat(2, 1fr); }
  .corp-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .modal { max-width: 96vw; }
  .modal-main { flex: 0 0 62%; max-height: 65vh; overflow-y: auto; }
  .modal-sidebar { flex: 0 0 38%; max-height: 65vh; overflow-y: auto; }
}
@media (max-width: 768px) {
  .hero h1 { font-size: clamp(32px, 8vw, 56px); }
  .experiences, .destinations, .corporate, .about, .contact { padding: 60px 24px; }
  .exp-grid { grid-template-columns: 1fr; }
  .about-cards, .contact-inner { grid-template-columns: 1fr; }
  .dest-places { grid-template-columns: 1fr 1fr; }
  .corp-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  /* ── Tours modal: full-page scroll, single column ── */
  .modal-overlay {
    padding: 0;
    align-items: flex-start;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .modal {
    border-radius: 0;
    width: 100%;
    min-height: 100vh;
    max-height: none;
    height: auto;
    margin: 0;
    display: flex;
    flex-direction: column;
    overflow: visible;
  }
  .modal-hero {
    height: 220px;
    flex-shrink: 0;
  }
  .modal-content-row {
    flex-direction: column;
    overflow: visible;
    flex: 1;
  }
  /* Main content area: no height cap, no scroll — page scrolls */
  .modal-main {
    flex: none;
    width: 100%;
    max-height: none;
    overflow: visible;
    border-right: none;
    border-bottom: 1px solid #eee;
    padding: 18px 16px 24px;
    box-sizing: border-box;
  }
  /* Sidebar form below content */
  .modal-sidebar {
    flex: none;
    width: 100%;
    max-height: none;
    overflow: visible;
    padding: 24px 16px 40px;
    box-sizing: border-box;
  }
  .incl-grid  { grid-template-columns: 1fr; }
  .prices-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .corp-grid   { grid-template-columns: 1fr; }
  .dest-places { grid-template-columns: 1fr; }
  .sf-row      { grid-template-columns: 1fr; }
  .modal-tabs  { overflow-x: auto; -webkit-overflow-scrolling: touch; }
}

/* ═══════════════════════════════════════════
   NEW SECTIONS — v4.0
═══════════════════════════════════════════ */

/* ── SHARED: section subtitle + isotope watermark ── */
.section-sub {
  text-align: center;
  color: var(--light-gray);
  font-size: 15px;
  margin-top: -24px;
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.section-iso {
  position: absolute;
  top: 50%;
  right: -60px;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 0;
  color: var(--dark);
}
.section-iso svg.iso-wm {
  width: 340px;
  height: 340px;
  opacity: 0.04;
}
.section-iso.light svg.iso-wm { color: white; opacity: 0.06; }
.hero-iso {
  position: absolute;
  bottom: 40px;
  left: -80px;
  pointer-events: none;
  z-index: 1;
}
.hero-iso svg.iso-wm { width: 300px; height: 300px; color: white; opacity: 0.07; }

/* ── EXPERIENCES section (new cards) ── */
.section-experiences {
  position: relative;
  overflow: hidden;
  padding: 80px 60px;
  background: #f9f9f9;
}
.exp-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.exp-item-card {
  background: white;
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.exp-item-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.exp-item-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.exp-item-icon { font-size: 28px; }
.exp-item-badge {
  background: var(--red);
  color: white;
  font-size: 10px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}
.exp-item-location {
  font-size: 11px;
  color: var(--light-gray);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.exp-item-text {
  font-size: 13px;
  color: var(--text);
  line-height: 1.7;
  flex: 1;
}
.exp-item-cta {
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* ── ABOUT SECTION — interactive ── */
.about-section {
  position: relative;
  overflow: hidden;
  padding: 80px 60px;
  background: white;
}
.about-top {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}
.about-intro {
  font-size: 16px;
  color: var(--text);
  line-height: 1.8;
  margin-top: 16px;
}

/* Stats strip */
.stats-strip {
  display: flex;
  justify-content: center;
  gap: 0;
  margin: 0 auto 60px;
  max-width: 900px;
  background: var(--red);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.stat-item {
  flex: 1;
  text-align: center;
  padding: 28px 20px;
  color: white;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.85;
}

/* Mission/Vision flip cards */
.mv-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.mv-card {
  height: 300px;
  cursor: pointer;
  perspective: 1000px;
  position: relative;
}
.mv-front, .mv-back {
  position: absolute;
  inset: 0;
  border-radius: 4px;
  padding: 48px 40px;
  backface-visibility: hidden;
  transition: transform 0.65s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}
.mv-front {
  background: white;
  border: 1px solid #e8e4e0;
  color: var(--dark);
  transform: rotateY(0deg);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.mv-back {
  background: var(--red);
  color: white;
  transform: rotateY(180deg);
  box-shadow: 0 4px 24px rgba(232,25,44,0.25);
}
.mv-card.flipped .mv-front { transform: rotateY(-180deg); }
.mv-card.flipped .mv-back  { transform: rotateY(0deg); }
.mv-vision .mv-front {
  background: #f7f4f1;
  border-color: #e0dbd5;
}
.mv-vision .mv-back { background: var(--dark); }
.mv-icon { display: none; }
.mv-tag {
  font-size: 10px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--red);
  margin-bottom: 16px;
  display: block;
}
.mv-back .mv-tag { color: rgba(255,255,255,0.6); }
.mv-front h3, .mv-back h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
  color: var(--dark);
}
.mv-back h3 { color: white; }
.mv-front p {
  font-size: 13px;
  color: var(--light-gray);
  line-height: 1.6;
}
.mv-back p { font-size: 13px; line-height: 1.75; opacity: 0.9; }
.mv-hint {
  font-size: 10px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 20px;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 6px;
}
.mv-hint::after { content: '→'; font-size: 13px; }
.mv-back .mv-hint { color: rgba(255,255,255,0.5); }
.mv-back .mv-hint::after { content: ''; }

/* ── DESTINATIONS NEW ── */
.destinations-new {
  position: relative;
  overflow: hidden;
  padding: 80px 60px;
  background: #f9f9f9;
}
.dest-tabs-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}
.dest-tab-btn {
  background: white;
  border: 2px solid #e0e0e0;
  color: var(--dark);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 22px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.2s;
}
.dest-tab-btn:hover { border-color: var(--red); color: var(--red); }
.dest-tab-btn.active { background: var(--red); border-color: var(--red); color: white; }
.dest-panel { display: none; }
.dest-panel.active { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from{opacity:0;transform:translateY(10px)} to{opacity:1;transform:none} }
.dest-panel-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  background: white;
  border-radius: 16px;
  padding: 48px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
  position: relative;
  z-index: 1;
}
.dest-panel-left h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--dark);
}
.dest-desc {
  font-size: 14px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 24px;
}
.dest-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.dest-info-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: var(--text);
}
.dest-info-item span { font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.dest-info-item strong { display: block; margin-bottom: 2px; color: var(--dark); }
.dest-list-box {
  background: #f9f9f9;
  border-radius: 10px;
  padding: 20px 24px;
  margin-bottom: 16px;
}
.dest-list-box h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  color: var(--dark);
}
.dest-list-box ul { list-style: none; padding: 0; }
.dest-list-box ul li {
  font-size: 13px;
  color: var(--text);
  padding: 5px 0;
  border-bottom: 1px solid #ebebeb;
  padding-left: 16px;
  position: relative;
}
.dest-list-box ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--red);
  font-size: 11px;
}
.dest-list-box ul li:last-child { border-bottom: none; }

/* ── TESTIMONIALS ── */
.testimonials {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  background: var(--dark);
}
.testimonials .section-title { color: white; }
.testimonials .section-sub { color: rgba(255,255,255,0.5); }
.testi-wrap {
  overflow: hidden;
  padding: 8px 0;
}
.testi-track {
  display: flex;
  gap: 24px;
  width: max-content;
  will-change: transform;
}
.testi-card {
  width: 340px;
  flex-shrink: 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 32px 28px;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testi-stars { font-size: 16px; letter-spacing: 2px; }
.testi-text {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  flex: 1;
  font-style: italic;
}
.testi-footer { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 18px;
  flex-shrink: 0;
}
.testi-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
}
.testi-country {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
}

/* ── ACF FIELD GROUPS for new sections ── */

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .section-experiences { padding: 60px 20px; }
  .exp-cards-grid { grid-template-columns: 1fr; }
  .about-section { padding: 60px 20px; }
  .stats-strip { flex-wrap: wrap; border-radius: 8px; }
  .stat-item { flex: 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); }
  .mv-container { grid-template-columns: 1fr; }
  .mv-card { height: 280px; }
  .destinations-new { padding: 60px 20px; }
  .dest-panel-inner { grid-template-columns: 1fr; padding: 28px 20px; gap: 24px; }
  .dest-info-grid { grid-template-columns: 1fr; }
  .testi-card { width: 280px; padding: 24px 20px; }
  .section-iso { display: none; }
  .hero-iso { display: none; }
}

/* ═══════════════════════════════════════════
   EXPERIENCES — PREMIUM REDESIGN v4.1
═══════════════════════════════════════════ */

/* Override old exp-item-card styles */
.section-experiences {
  padding: 100px 60px;
  background: #f2f0ed;
  position: relative;
  overflow: hidden;
}
.section-experiences .section-title { color: var(--dark); }
.section-experiences .section-sub   { color: #999; }

.exp-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2px;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  background: #dedad5;
  border: 2px solid #dedad5;
  border-radius: 2px;
  overflow: hidden;
}

.exp-item-card {
  background: #f2f0ed;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  cursor: pointer;
  transition: background 0.25s;
  border: none;
  border-radius: 0;
  box-shadow: none;
  position: relative;
}
.exp-item-card:hover { background: #ebe8e4; }
.exp-item-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 32px; right: 32px;
  height: 1px;
  background: #dedad5;
}

.exp-item-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}
.exp-item-icon {
  font-size: 12px;
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
}
.exp-item-badge {
  background: transparent;
  border: 1px solid #c8c4be;
  color: #999;
  font-size: 9px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  letter-spacing: 1px;
}
.exp-item-location {
  font-size: 10px;
  color: #aaa;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}
.exp-item-text {
  font-size: 13px;
  color: #666;
  line-height: 1.75;
  flex: 1;
  margin-bottom: 24px;
}
.exp-item-cta {
  color: var(--dark);
  font-size: 11px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  transition: color 0.2s;
}
.exp-item-cta::after {
  content: '→';
  color: var(--red);
  font-size: 14px;
  transition: transform 0.2s;
}
.exp-item-card:hover .exp-item-cta::after { transform: translateX(4px); }

/* ── Experience Modal ── */
#expModalOverlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 9999;
  overflow-y: auto;
}
#expModalOverlay.open { display: flex; align-items: flex-start; justify-content: center; padding: 40px 20px; }
#expModal {
  background: #f2f0ed;
  border-radius: 4px;
  width: 100%;
  max-width: 900px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 300px;
  min-height: 500px;
}
.exp-modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: rgba(0,0,0,0.6);
  color: white;
  border: none;
  width: 36px; height: 36px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  z-index: 10;
  display: flex; align-items: center; justify-content: center;
}
.exp-modal-left {
  padding: 48px 40px;
  overflow-y: auto;
}
.exp-modal-tag {
  font-size: 10px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--red);
  margin-bottom: 8px;
}
.exp-modal-location {
  font-size: 11px;
  color: var(--light-gray);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  margin-bottom: 16px;
}
.exp-modal-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 24px;
  line-height: 1.25;
}
.exp-modal-desc {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 28px;
}
.exp-modal-section { margin-bottom: 24px; }
.exp-modal-section h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--dark);
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 2px solid #f0f0f0;
}
.exp-modal-section ul { list-style: none; padding: 0; }
.exp-modal-section ul li {
  font-size: 13px;
  color: var(--text);
  padding: 6px 0 6px 18px;
  border-bottom: 1px solid #f5f5f5;
  position: relative;
  line-height: 1.5;
}
.exp-modal-section ul li::before { content:'✓'; position:absolute; left:0; color:var(--red); font-weight:700; font-size:12px; }
.exp-modal-not li::before { content:'✕'; color: #aaa; }

.exp-modal-right {
  background: #0f0f0f;
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
}
.exp-modal-right .modal-sidebar-title {
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.exp-modal-right .modal-sidebar-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 24px;
  line-height: 1.6;
}
.exp-modal-right .modal-sidebar-tour-name {
  background: rgba(232,25,44,0.15);
  border-left: 3px solid var(--red);
  padding: 12px 14px;
  margin-bottom: 20px;
  border-radius: 0 4px 4px 0;
}
.exp-modal-right .modal-sidebar-tour-name span {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--red);
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}
.exp-modal-right .modal-sidebar-tour-name p {
  color: white;
  font-size: 13px;
  font-weight: 600;
  margin: 0;
}
.exp-modal-right .sf-group label {
  color: rgba(255,255,255,0.5);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  margin-bottom: 6px;
  display: block;
}
.exp-modal-right .sf-group input,
.exp-modal-right .sf-group select,
.exp-modal-right .sf-group textarea {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  color: white;
  border-radius: 3px;
  width: 100%;
  padding: 10px 12px;
  font-size: 13px;
  outline: none;
}
.exp-modal-right .sf-group input::placeholder,
.exp-modal-right .sf-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.exp-modal-right .sf-group select option { background: #1a1a1a; color: white; }
.exp-modal-right .sf-submit {
  background: var(--red);
  color: white;
  border: none;
  padding: 14px;
  width: 100%;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  border-radius: 3px;
  margin-top: 8px;
  transition: background 0.2s;
}
.exp-modal-right .sf-submit:hover { background: var(--red-dark); }
.exp-modal-right .sf-success { text-align: center; color: white; padding: 20px 0; }
.exp-modal-right .sf-success .checkmark { font-size: 36px; margin-bottom: 12px; }
.exp-modal-right .sf-success h4 { color: white; font-family: 'Montserrat',sans-serif; margin-bottom: 8px; }
.exp-modal-right .sf-success p { color: rgba(255,255,255,0.6); font-size: 13px; line-height: 1.6; }

/* ── DESTINATIONS — modern redesign ── */
.destinations-new { padding: 100px 60px; background: white; }

.dest-tabs-row {
  gap: 8px;
  margin-bottom: 48px;
}
.dest-tab-btn {
  padding: 12px 28px;
  font-size: 11px;
  letter-spacing: 2px;
  border-radius: 2px;
  border: 1px solid #ddd;
  background: white;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}
.dest-tab-btn:hover { border-color: var(--red); color: var(--red); }
.dest-tab-btn.active { background: var(--dark); border-color: var(--dark); color: white; }

.dest-panel-inner {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 60px rgba(0,0,0,0.1);
}
.dest-panel-left {
  background: var(--dark);
  color: white;
  padding: 52px 48px;
}
.dest-panel-left h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.3;
  margin-bottom: 20px;
  color: white;
}
.dest-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.85;
  margin-bottom: 32px;
}
.dest-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 32px;
}
.dest-info-item {
  padding: 14px 16px;
  border-right: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.dest-info-item:nth-child(even) { border-right: none; }
.dest-info-item:nth-last-child(-n+2) { border-bottom: none; }
.dest-info-item span { display: none; }
.dest-info-item strong {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--red);
  font-weight: 700;
  display: block;
  margin-bottom: 3px;
}
.dest-info-item div { font-size: 12px; color: rgba(255,255,255,0.75); line-height: 1.4; }

.dest-panel-right {
  background: #fafafa;
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.dest-list-box {
  background: white;
  border-radius: 4px;
  padding: 24px 28px;
  border: 1px solid #ebebeb;
}
.dest-list-box h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--dark);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f0f0f0;
}
.dest-list-box ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.dest-list-box ul li {
  font-size: 13px;
  color: var(--text);
  padding: 7px 0 7px 16px;
  border-bottom: 1px solid #f5f5f5;
  position: relative;
}
.dest-list-box ul li::before { content:'→'; position:absolute; left:0; color:var(--red); font-size:10px; top:9px; }
.dest-list-box ul li:nth-child(odd) { padding-right: 12px; }

/* dest tips single column */
.dest-tips-box ul { grid-template-columns: 1fr; }

@media (max-width: 960px) {
  .dest-panel-inner {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
  .dest-list-box ul { grid-template-columns: 1fr; }
  #expModal { grid-template-columns: 1fr; }
  .exp-modal-right { min-height: 500px; }
}

@media (max-width: 768px) {
  .section-experiences { padding: 60px 20px; }
  .exp-cards-grid { grid-template-columns: 1fr; gap: 1px; }

  /* Destinations — full width, no horizontal padding waste */
  .destinations-new { padding: 48px 0 60px; }
  .dest-tabs-row { padding: 0 16px; flex-wrap: wrap; gap: 8px; }
  .dest-tab-btn { padding: 10px 16px; font-size: 10px; letter-spacing: 1.5px; }
  .dest-panel { padding: 0 16px; }
  .dest-panel-inner {
    grid-template-columns: 1fr;
    max-width: 100%;
    border-radius: 8px;
    margin: 0;
  }
  .dest-panel-left  { padding: 28px 20px; }
  .dest-panel-right { padding: 28px 20px; }
  .dest-info-grid   { grid-template-columns: 1fr 1fr; }
  .dest-list-box ul { grid-template-columns: 1fr; }
  .dest-book-box    { margin-top: 0; }
  .dif-row          { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .destinations-new { padding: 40px 0 48px; }
  .dest-panel { padding: 0 12px; }
  .dest-tab-btn { padding: 9px 12px; font-size: 9.5px; }
  .dest-info-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   EXPERIENCES — WITH IMAGE v4.2
═══════════════════════════════════════════ */
.exp-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
}
.exp-item-card {
  background: white;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  padding: 0;
}
.exp-item-card::after { display: none; }
.exp-item-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.13);
}
.exp-item-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  filter: brightness(0.9);
  transition: filter 0.3s, transform 0.4s;
}
.exp-item-card:hover .exp-item-img {
  filter: brightness(1);
  transform: scale(1.03);
}
.exp-img-wrap {
  overflow: hidden;
  height: 200px;
  position: relative;
  flex-shrink: 0;
}
.exp-img-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(transparent, rgba(0,0,0,0.35));
  pointer-events: none;
}
.exp-item-body {
  padding: 24px 24px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.exp-item-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 6px;
}
.exp-item-icon {
  font-size: 11px;
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
}
.exp-item-badge {
  background: #f2f0ed;
  border: none;
  color: #999;
  font-size: 9px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 1px;
  white-space: nowrap;
}
.exp-item-location {
  font-size: 10px;
  color: #bbb;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}
.exp-item-text {
  font-size: 13px;
  color: #666;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}
.exp-item-cta {
  color: var(--dark);
  font-size: 10px;
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-top: 1px solid #f0f0f0;
  padding-top: 16px;
  margin-top: auto;
}
.exp-item-cta::after {
  content: '→';
  color: var(--red);
  font-size: 14px;
  margin-left: auto;
  transition: transform 0.2s;
}
.exp-item-card:hover .exp-item-cta::after { transform: translateX(4px); }

/* ── DESTINATIONS with photos ── */
.dest-tab-btn {
  position: relative;
  overflow: hidden;
}
.dest-tab-preview {
  display: none; /* shown on hover via JS or can be static */
}
.dest-panel-left {
  background: #f2f0ed;
  color: var(--dark);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}
.dest-panel-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(232,25,44,0.03) 0%, transparent 60%);
  pointer-events: none;
}
.dest-panel-left h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.3;
  margin-bottom: 16px;
  color: var(--dark);
}
.dest-desc {
  font-size: 13px;
  color: #666;
  line-height: 1.85;
  margin-bottom: 28px;
}
.dest-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid #e0dbd5;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 0;
  background: white;
}
.dest-info-item {
  padding: 12px 14px;
  border-right: 1px solid #e0dbd5;
  border-bottom: 1px solid #e0dbd5;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.dest-info-item:nth-child(even) { border-right: none; }
.dest-info-item:nth-last-child(-n+2) { border-bottom: none; }
.dest-info-item span { display: none; }
.dest-info-item strong {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--red);
  font-weight: 700;
  display: block;
  margin-bottom: 3px;
}
.dest-info-item div { font-size: 12px; color: var(--dark); line-height: 1.4; }
.dest-panel-photo {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 24px;
  filter: brightness(0.92);
}
.dest-panel-right { background: white; padding: 48px 40px; }

@media (max-width: 768px) {
  .exp-cards-grid { grid-template-columns: 1fr; gap: 20px; }
  .section-experiences { padding: 60px 20px; }
  .mv-container { grid-template-columns: 1fr; }
  .mv-card { height: 260px; }
}

/* ═══════════════════════════════════════════
   v4.3 — All fixes
═══════════════════════════════════════════ */

/* ── 1. Experiences same max-width as packages ── */
.section-experiences { padding: 80px 50px; }
.exp-cards-grid {
  max-width: 1100px;
  gap: 20px;
  background: transparent;
  border: none;
  border-radius: 0;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

/* ── 2. Experiences: horizontal card layout (very different from packages) ── */
.exp-item-card {
  flex-direction: row !important;
  height: 180px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  background: white;
  padding: 0;
  gap: 0;
}
.exp-item-card:hover {
  background: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(0,0,0,0.13);
}
.exp-item-card::after { display: none; }
.exp-img-wrap {
  width: 160px;
  min-width: 160px;
  height: 100%;
  flex-shrink: 0;
}
.exp-item-img { height: 100%; }
.exp-img-overlay { height: 100%; background: linear-gradient(90deg, transparent 60%, rgba(0,0,0,0.25)); }
.exp-item-body {
  padding: 20px 20px 18px;
  justify-content: space-between;
}
.exp-item-icon {
  font-size: 10px;
  letter-spacing: 1.5px;
  line-height: 1.3;
}
.exp-item-badge {
  font-size: 8px;
  padding: 3px 8px;
  white-space: nowrap;
}
.exp-item-location { margin-bottom: 6px; font-size: 9px; }
.exp-item-text {
  font-size: 12px;
  line-height: 1.6;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.exp-item-cta {
  font-size: 9px;
  letter-spacing: 1.5px;
  border-top: 1px solid #f0f0f0;
  padding-top: 10px;
  margin-bottom: 0;
}

/* Make experiences section full width same as packages */
.section-experiences .section-title,
.section-experiences .section-sub {
  text-align: center;
}

/* ── 3. Animated isotope watermark ── */
.iso-animated {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.iso-animated svg {
  animation: isoFloat 8s ease-in-out infinite;
  opacity: 0.045;
}
.iso-animated svg:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 11s;
}
.iso-animated svg:nth-child(3) {
  animation-delay: -6s;
  animation-duration: 9s;
}
@keyframes isoFloat {
  0%   { transform: translateY(0px) rotate(0deg) scale(1); }
  33%  { transform: translateY(-18px) rotate(4deg) scale(1.03); }
  66%  { transform: translateY(10px) rotate(-3deg) scale(0.97); }
  100% { transform: translateY(0px) rotate(0deg) scale(1); }
}
/* Symmetrical pattern — 4 corners + center */
.iso-tl { top: -80px; left: -80px; }
.iso-tr { top: -80px; right: -80px; }
.iso-bl { bottom: -80px; left: -80px; }
.iso-br { bottom: -80px; right: -80px; }
.iso-center { top: 50%; left: 50%; transform: translate(-50%,-50%); }
.iso-tl svg, .iso-tr svg, .iso-bl svg, .iso-br svg { width: 300px; height: 300px; }
.iso-center svg { width: 500px; height: 500px; opacity: 0.025 !important; }

/* ── 4. Contact section — custom form (no CF7) ── */
.contact-custom-form { background: var(--dark); border-radius: 10px; padding: 32px 28px; }
.ccf-group { margin-bottom: 14px; }
.ccf-group label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 6px;
}
.ccf-group input,
.ccf-group select,
.ccf-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  padding: 11px 14px;
  color: white;
  font-size: 13px;
  font-family: 'Open Sans', sans-serif;
  outline: none;
  transition: border 0.2s;
}
.ccf-group input:focus,
.ccf-group select:focus,
.ccf-group textarea:focus { border-color: var(--red); }
.ccf-group input::placeholder,
.ccf-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.ccf-group select option { background: #1a1a1a; }
.ccf-group textarea { resize: none; height: 90px; }
.ccf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ccf-submit {
  width: 100%;
  background: var(--red);
  color: white;
  border: none;
  border-radius: 4px;
  padding: 14px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 4px;
}
.ccf-submit:hover { background: var(--red-dark); }
.ccf-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
  color: white;
}
.ccf-success .check { font-size: 40px; margin-bottom: 12px; }
.ccf-success h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 8px;
}
.ccf-success p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* ── 5. Map tab in packages modal ── */
#panel-map { padding: 0; }
#tourMapFrame {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: none;
  display: block;
}
.map-placeholder {
  width: 100%;
  min-height: 420px;
  background: #f5f5f5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #888;
}
.map-placeholder svg { width: 48px; height: 48px; fill: #ccc; }

@media (max-width: 768px) {
  .exp-item-card { flex-direction: column !important; height: auto; }
  .exp-img-wrap { width: 100%; min-width: 0; height: 160px; }
  .exp-cards-grid { grid-template-columns: 1fr; }
  .ccf-row { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   v4.4 — Map, Experiences 3col, Isotopes z-index
═══════════════════════════════════════════ */

/* ── 1. Isotopes behind ALL content ── */
.iso-animated {
  z-index: 0 !important;
}
.section-experiences > *:not(.iso-animated),
.experiences > *:not(.iso-animated),
.about-section > *:not(.iso-animated),
.testimonials > *:not(.iso-animated),
.corporate > *:not(.iso-animated),
.destinations-new > *:not(.iso-animated),
.hero > *:not(.iso-animated) {
  position: relative;
  z-index: 1;
}

/* ── 2. Experiences: max 3 columns, fixed ── */
.exp-cards-grid {
  grid-template-columns: repeat(3, 1fr) !important;
  max-width: 1100px;
}
@media (max-width: 1024px) {
  .exp-cards-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 640px) {
  .exp-cards-grid { grid-template-columns: 1fr !important; }
}

/* ── 3. Map panel — SVG route map ── */
#panel-map {
  padding: 20px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.route-map-wrap {
  background: #e8f0f8;
  border-radius: 8px;
  overflow: hidden;
  flex: 1;
  min-height: 340px;
  position: relative;
}
.route-map-svg {
  width: 100%;
  height: 100%;
  min-height: 340px;
}
.route-map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}
.route-stop {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}
.route-stop-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}
.route-stop-dot.start { background: #16a34a; }
.route-stop-dot.end   { background: #1d4ed8; }

/* ═══════════════════════════════════════════
   v4.5 — Final fixes
═══════════════════════════════════════════ */

/* ── Isotopes: kill all old class-based rules ── */
.iso-animated, .section-iso, .hero-iso { display: none !important; }

/* ── Experiences: clean 3-col vertical cards ── */
.section-experiences {
  padding: 80px 50px;
  background: #f5f3f0;
  position: relative;
  overflow: hidden;
}
.exp-cards-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 22px !important;
  max-width: 1100px !important;
  margin: 0 auto !important;
  background: transparent !important;
  border: none !important;
}
.exp-item-card {
  flex-direction: column !important;
  height: auto !important;
  background: white !important;
  border-radius: 10px !important;
  overflow: hidden !important;
  box-shadow: 0 2px 14px rgba(0,0,0,0.07) !important;
  padding: 0 !important;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}
.exp-item-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 10px 32px rgba(0,0,0,0.13) !important;
}
.exp-item-card::after { display: none !important; }
.exp-img-wrap {
  width: 100% !important;
  min-width: 0 !important;
  height: 180px !important;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.exp-item-img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}
.exp-item-card:hover .exp-item-img { transform: scale(1.05); }
.exp-img-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 50px;
  background: linear-gradient(transparent, rgba(0,0,0,0.25));
}
.exp-item-body {
  padding: 18px 18px 16px !important;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.exp-item-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 6px;
}
.exp-item-icon {
  font-size: 10px !important;
  font-weight: 800 !important;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--red);
  line-height: 1.4;
  flex: 1;
  padding-right: 8px;
}
.exp-item-badge {
  font-size: 8px !important;
  padding: 3px 8px !important;
  background: #f0f0f0 !important;
  border: none !important;
  color: #888 !important;
  border-radius: 20px !important;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}
.exp-item-location {
  font-size: 10px !important;
  color: #aaa !important;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.exp-item-text {
  font-size: 12px !important;
  color: #666 !important;
  line-height: 1.65 !important;
  flex: 1;
  margin-bottom: 14px !important;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.exp-item-cta {
  font-size: 10px !important;
  letter-spacing: 1.5px !important;
  color: var(--dark) !important;
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  border-top: 1px solid #f0f0f0;
  padding-top: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}
.exp-item-cta::after {
  content: '→';
  color: var(--red);
  font-size: 13px;
  margin-left: auto;
  transition: transform .2s;
}
.exp-item-card:hover .exp-item-cta::after { transform: translateX(4px); }

/* ── Map SVG route rendering fix ── */
#panel-map { padding: 20px 24px; min-height: 420px; }
.route-map-wrap {
  width: 100%;
  min-height: 340px;
  border-radius: 8px;
  overflow: hidden;
  background: #dce8f5;
}
#routeMapSvg { display: block; width: 100%; height: 340px; }

@media (max-width: 1024px) {
  .exp-cards-grid { grid-template-columns: repeat(2,1fr) !important; }
}
@media (max-width: 640px) {
  .exp-cards-grid { grid-template-columns: 1fr !important; }
  .section-experiences { padding: 60px 20px; }
}

/* ═══════════════════════════════════════════
   v4.6 — Form input visibility fix
═══════════════════════════════════════════ */
/* All inputs on dark backgrounds: white bg, dark text */
.sf-group input,
.sf-group select,
.sf-group textarea,
.exp-modal-right .sf-group input,
.exp-modal-right .sf-group select,
.exp-modal-right .sf-group textarea {
  background: rgba(255,255,255,0.12) !important;
  color: white !important;
  caret-color: white !important;
}
.sf-group input:focus,
.sf-group select:focus,
.sf-group textarea:focus {
  background: rgba(255,255,255,0.18) !important;
}
/* Autofill fix */
.sf-group input:-webkit-autofill,
.sf-group textarea:-webkit-autofill {
  -webkit-text-fill-color: white !important;
  -webkit-box-shadow: 0 0 0 1000px rgba(40,40,40,0.95) inset !important;
}

/* ═══════════════════════════════════════════
   v4.7 — Corporate cards without icons
═══════════════════════════════════════════ */
.corp-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-top: 3px solid var(--red);
  border-radius: 4px;
  padding: 32px 24px;
  text-align: left;
  transition: background 0.2s, transform 0.2s;
}
.corp-card:hover {
  background: rgba(255,255,255,0.11);
  transform: translateY(-3px);
}
.corp-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 12px;
  color: white;
}
.corp-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  margin: 0;
}

/* ═══════════════════════════════════════════
   v4.8 — Mobile overflow fix + tabs scroll indicator
═══════════════════════════════════════════ */

/* Fix: prevent horizontal overflow from any fixed/absolute element */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}

/* Fix: floating button pill on mobile must not exceed viewport */
@media (max-width: 600px) {
  #floatContactBtn {
    max-width: calc(100vw - 32px);
    right: 16px;
    bottom: 24px;
  }
}

/* ── Modal tabs: scrollable on mobile with fade indicator ── */
.modal-tabs-wrap {
  position: relative;
}
.modal-tabs {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex-wrap: nowrap;
}
.modal-tabs::-webkit-scrollbar { display: none; }

/* Fade-out on right edge to hint more content */
.modal-tabs-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 48px;
  height: 100%;
  background: linear-gradient(to right, transparent, white);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}
.modal-tabs-wrap.has-overflow::after {
  opacity: 1;
}

/* Arrow chevron hint on mobile */
.modal-tabs-wrap::before {
  display: none;
}
@media (max-width: 600px) {
  .modal-tabs-wrap::before {
    display: block;
    content: '›';
    position: absolute;
    top: 50%;
    right: 6px;
    transform: translateY(-50%);
    font-size: 18px;
    color: var(--red);
    pointer-events: none;
    z-index: 2;
    font-weight: 900;
    line-height: 1;
  }
  /* Hide arrow when scrolled to end */
  .modal-tabs-wrap.scrolled-end::before { display: none; }
  .modal-tabs-wrap.scrolled-end::after  { opacity: 0; }
}

/* ═══════════════════════════════════════════
   v4.9 — Destination booking box + Contact CTA
═══════════════════════════════════════════ */

/* ── Destination: booking box ── */
.dest-book-box {
  background: var(--dark);
  border-radius: 8px;
  padding: 28px 24px;
  margin-top: 24px;
  border-left: 4px solid var(--red);
}
.dest-book-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: white;
  margin-bottom: 10px;
}
.dest-book-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 18px;
}
.dest-book-btn {
  background: var(--red);
  color: white;
  border: none;
  border-radius: 4px;
  padding: 12px 22px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
}
.dest-book-btn:hover { background: var(--red-dark); }

/* ── Contact section: CTA box (replaces old form) ── */
.contact-cta-box {
  background: white;
  border-radius: 12px;
  padding: 40px 36px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.ccta-icon {
  font-size: 48px;
  line-height: 1;
}
.contact-cta-box h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  margin: 0;
  line-height: 1.2;
}
.contact-cta-box p {
  color: #666;
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
  max-width: 340px;
}
.ccta-btn {
  background: var(--red);
  color: white;
  border: none;
  border-radius: 6px;
  padding: 16px 36px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  width: 100%;
  max-width: 320px;
}
.ccta-btn:hover { background: var(--red-dark); }
.ccta-btn:active { transform: scale(0.99); }
.ccta-trust {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 12px;
  color: #999;
  margin-top: 4px;
}
.ccta-trust span {
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .contact-cta-box { padding: 32px 24px; }
  .ccta-trust { gap: 10px; }
  .ccta-trust span { font-size: 11px; }
}

/* ═══════════════════════════════════════════
   v5.0 — Destination inline form + Contact type switcher
═══════════════════════════════════════════ */

/* ── Destination inline form ── */
.dest-book-box {
  background: var(--dark);
  border-radius: 8px;
  padding: 28px 24px;
  margin-top: 24px;
  border-left: 4px solid var(--red);
}
.dest-book-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
}
.dest-book-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-bottom: 20px;
}
.dest-inline-form { display: flex; flex-direction: column; gap: 12px; }
.dif-group { display: flex; flex-direction: column; gap: 5px; }
.dif-group label {
  font-family: 'Montserrat', sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.45);
}
.dif-group input,
.dif-group select,
.dif-group textarea {
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 5px;
  padding: 10px 12px;
  font-size: 13px;
  color: white;
  font-family: 'Open Sans', sans-serif;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  box-sizing: border-box;
}
.dif-group input::placeholder,
.dif-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.dif-group select option { background: #1a1a1a; color: white; }
.dif-group input:focus,
.dif-group select:focus,
.dif-group textarea:focus { border-color: var(--red); }
.dif-group textarea { height: 72px; resize: none; }
.dif-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.dif-submit {
  background: var(--red);
  color: white;
  border: none;
  border-radius: 5px;
  padding: 13px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
}
.dif-submit:hover { background: var(--red-dark); }
.dif-submit:disabled { opacity: 0.6; cursor: default; }
.dif-success {
  text-align: center;
  padding: 32px 16px;
  color: white;
}
.dif-success div { font-size: 40px; margin-bottom: 12px; }
.dif-success h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
}
.dif-success p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.6; }

@media (max-width: 600px) {
  .dif-row { grid-template-columns: 1fr; }
}

/* ── Contact form: type switcher ── */
.ccf-type-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}
.ccf-type {
  background: #f5f5f5;
  border: 2px solid #e8e8e8;
  border-radius: 24px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  transition: all 0.18s;
  color: #666;
  white-space: nowrap;
}
.ccf-type.active { background: var(--red); border-color: var(--red); color: white; }
.ccf-type:hover:not(.active) { border-color: var(--red); color: var(--red); }

/* ═══════════════════════════════════════════
   v5.1 — Contact form fixes
═══════════════════════════════════════════ */

/* Remove double-dark background */
.contact-custom-form {
  background: transparent !important;
  padding: 0 !important;
  border-radius: 0 !important;
}

/* Type row spacing */
.ccf-type-row {
  margin-bottom: 18px;
}

/* Make ccf select styled same as other inputs */
.ccf-group select {
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 5px;
  padding: 11px 13px;
  font-size: 13px;
  color: white;
  font-family: 'Open Sans', sans-serif;
  outline: none;
  width: 100%;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23aaa'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 10px;
  padding-right: 36px;
  cursor: pointer;
  transition: border-color 0.2s;
}
.ccf-group select:focus { border-color: var(--red); outline: none; }
.ccf-group select option { background: #1a1a1a; color: white; }

/* Date input styled same as text inputs */
.ccf-group input[type="date"] {
  color-scheme: dark;
}

/* ccf-success spacing */
.ccf-success {
  text-align: center;
  padding: 40px 20px;
  color: white;
}

/* Contact section: widen form column */
.contact-inner {
  grid-template-columns: 1fr 1.4fr !important;
}

@media (max-width: 768px) {
  .contact-inner { grid-template-columns: 1fr !important; }
  .ccf-row { grid-template-columns: 1fr !important; }
  .ccf-type-row { gap: 6px; }
  .ccf-type { padding: 7px 12px; font-size: 11px; }
}

/* ═══════════════════════════════════════════
   v5.2 — Destinations responsive padding fix
═══════════════════════════════════════════ */
@media (max-width: 768px) {
  .destinations-new .section-title,
  .destinations-new .section-sub,
  .destinations-new .dest-tabs-row {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* ═══════════════════════════════════════════
   v5.3 — Destinations panel right full width on mobile
═══════════════════════════════════════════ */
@media (max-width: 768px) {
  .dest-panel-right {
    padding: 20px 16px;
    gap: 16px;
  }
  .dest-list-box {
    width: 100%;
    box-sizing: border-box;
    padding: 20px 18px;
  }
  .dest-book-box {
    width: 100%;
    box-sizing: border-box;
    padding: 22px 18px;
    margin-top: 0;
  }
  .dest-inline-form {
    width: 100%;
  }
  .dest-inline-form .dif-group input,
  .dest-inline-form .dif-group select,
  .dest-inline-form .dif-group textarea,
  .dest-inline-form .dif-submit {
    width: 100%;
    box-sizing: border-box;
  }
  .dest-panel-left {
    padding: 28px 16px;
  }
}

@media (max-width: 480px) {
  .dest-panel-right { padding: 16px 12px; }
  .dest-panel-left  { padding: 24px 12px; }
  .dest-list-box    { padding: 16px 14px; }
  .dest-book-box    { padding: 18px 14px; }
}

/* ═══════════════════════════════════════════
   v5.4 — Modal sidebar overflow fix on mobile
═══════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Prevent any child of sidebar from causing overflow */
  .modal-sidebar,
  .modal-sidebar * {
    max-width: 100%;
    box-sizing: border-box;
  }

  /* Success screen: constrain and center */
  .sf-success {
    width: 100%;
    padding: 32px 16px;
    overflow: hidden;
  }
  .sf-success h4,
  .sf-success p {
    word-break: break-word;
    overflow-wrap: break-word;
  }

  /* Sidebar tour name box */
  .modal-sidebar-tour-name {
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .modal-sidebar-tour-name p {
    white-space: normal;
    word-break: break-word;
  }

  /* All form inputs in sidebar: never exceed container */
  .sf-group input,
  .sf-group select,
  .sf-group textarea,
  .sf-submit {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* sf-row: single column on mobile */
  .sf-row {
    grid-template-columns: 1fr !important;
  }

  /* Date input: full width */
  input[type="date"] {
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Experience modal right panel */
  .exp-modal-right {
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }
  .exp-modal-right * {
    max-width: 100%;
    box-sizing: border-box;
  }
}

/* ═══════════════════════════════════════════
   v5.5 — Prevent iOS auto-zoom on inputs
   iOS zooms when input font-size < 16px
═══════════════════════════════════════════ */
@media (max-width: 768px) {
  input, select, textarea,
  .sf-group input, .sf-group select, .sf-group textarea,
  .ccf-group input, .ccf-group select, .ccf-group textarea,
  .ffp-group input, .ffp-group select, .ffp-group textarea,
  .dif-group input, .dif-group select, .dif-group textarea {
    font-size: 16px !important;
    transform: none;
  }
  /* Also prevent zoom on the page itself */
  input:focus, select:focus, textarea:focus {
    font-size: 16px !important;
  }
}

/* ═══════════════════════════════════════════
   v5.6 — Logo image (nav + footer)
═══════════════════════════════════════════ */
.nav-logo-img {
  height: 52px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  display: block;
}
.footer-logo-img {
  height: 52px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  display: block;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}
.footer-logo-img.logo-color { filter: none; }

@media (max-width: 768px) {
  .nav-logo-img { height: 42px; max-width: 180px; }
  .footer-logo-img { height: 42px; max-width: 180px; }
}

/* ── Nav logo image: fluid resize with vertical breathing room ── */
.nav-logo .nav-logo-img {
  height: clamp(58px, 6.5vw, 82px) !important;
  width: auto !important;
  max-width: clamp(200px, 24vw, 280px) !important;
  min-height: 0;
  object-fit: contain;
  display: block;
  padding: 6px 0;
  box-sizing: content-box;
  transition: height 0.25s ease;
}
#andaria-nav.scrolled .nav-logo .nav-logo-img {
  height: clamp(46px, 5.2vw, 64px) !important;
  padding: 6px 0;
}
@media (max-width: 600px) {
  .nav-logo .nav-logo-img {
    height: 52px !important;
    max-width: 200px !important;
    padding: 6px 0;
  }
  #andaria-nav.scrolled .nav-logo .nav-logo-img {
    height: 44px !important;
    padding: 5px 0;
  }
}
.footer-brand .footer-logo-img {
  height: 80px !important;
  width: auto !important;
  max-width: 320px !important;
}

/* Logo link — no underline */
a.nav-logo { text-decoration: none; }

/* Nav link height syncs with scrolled nav */
#andaria-nav.scrolled .nav-links a { height: 64px; }
#andaria-nav.scrolled .nav-links a:last-child { height: 36px; }
