/* ============================================================
   BREATHTAKING LAGOON — Design System
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@700;800&display=swap');

/* --- Tokens --- */
:root {
  --clr-primary:   #04342C;
  --clr-accent:    #1D9E75;
  --clr-ocean:     #185FA5;
  --clr-surface:   #F4FAF8;
  --clr-muted:     #6B7280;
  --clr-border:    #E5EDEB;
  --clr-white:     #FFFFFF;
  --clr-dark:      #0A1A14;

  --ff-body:    'Inter', sans-serif;
  --ff-display: 'Playfair Display', serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 8px rgba(4,52,44,.08);
  --shadow-md: 0 8px 32px rgba(4,52,44,.12);
  --shadow-lg: 0 20px 60px rgba(4,52,44,.18);

  --transition: .3s cubic-bezier(.4,0,.2,1);
  --max-w: 1280px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--ff-body); color: var(--clr-primary); background: var(--clr-white); line-height: 1.6; overflow-x: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* --- Utility --- */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section-tag { display: inline-block; font-size: .75rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--clr-accent); margin-bottom: 12px; }
.section-title { font-family: var(--ff-display); font-size: clamp(1.75rem, 3vw, 2.75rem); font-weight: 700; color: var(--clr-primary); line-height: 1.2; }
.section-sub { font-size: 1.05rem; color: var(--clr-muted); margin-top: 12px; max-width: 560px; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 50px; font-size: .9375rem; font-weight: 600; transition: var(--transition); white-space: nowrap; }
.btn-primary { background: var(--clr-accent); color: var(--clr-white); }
.btn-primary:hover { background: #17876300; background: #158f67; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(29,158,117,.35); }
.btn-outline { border: 2px solid var(--clr-white); color: var(--clr-white); }
.btn-outline:hover { background: var(--clr-white); color: var(--clr-primary); }
.btn-dark { background: var(--clr-primary); color: var(--clr-white); }
.btn-dark:hover { background: #062e24; transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* Scroll animation */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 24px;
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--clr-border), var(--shadow-sm);
}
.header-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo { display: flex; align-items: center; }
.logo img { height: 48px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 8px 14px; border-radius: var(--radius-sm);
  font-size: .9rem; font-weight: 500;
  color: var(--clr-white); transition: var(--transition);
  display: flex; align-items: center; gap: 5px;
}
.site-header.scrolled .nav-link { color: var(--clr-primary); }
.nav-link:hover { background: rgba(255,255,255,.15); color: var(--clr-white); }
.site-header.scrolled .nav-link:hover { background: var(--clr-surface); color: var(--clr-accent); }

/* Dropdown */
.nav-item { position: relative; }
.dropdown-toggle svg { transition: transform var(--transition); }
.nav-item:hover .dropdown-toggle svg { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(-8px);
  background: var(--clr-white); border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg); border: 1px solid var(--clr-border);
  min-width: 210px; padding: 8px;
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}
.nav-item:hover .dropdown-menu { opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0); }
.dropdown-menu a {
  display: block; padding: 10px 16px; border-radius: var(--radius-sm);
  font-size: .875rem; color: var(--clr-primary); transition: var(--transition);
}
.dropdown-menu a:hover { background: var(--clr-surface); color: var(--clr-accent); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.search-icon-btn {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  color: var(--clr-white); transition: var(--transition);
}
.search-icon-btn:hover { background: rgba(255,255,255,.2); }
.site-header.scrolled .search-icon-btn { color: var(--clr-primary); }
.site-header.scrolled .search-icon-btn:hover { background: var(--clr-surface); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--clr-white); border-radius: 2px; transition: var(--transition); }
.site-header.scrolled .hamburger span { background: var(--clr-primary); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--clr-white); overflow-y: auto; z-index: 999;
  padding: 24px;
  transform: translateX(100%); transition: transform var(--transition);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  display: block; padding: 14px 0; font-size: 1.1rem; font-weight: 500;
  color: var(--clr-primary); border-bottom: 1px solid var(--clr-border);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--clr-accent); }
.mobile-sub { padding-left: 16px; }
.mobile-sub a { font-size: .95rem; color: var(--clr-muted); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: -5%;
  background-image: url('assets/hero-bg.jpg');
  background-size: cover; background-position: center;
  transform: scale(1.04);
  animation: heroZoom 12s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.04) translate(0, 0); }
  to   { transform: scale(1.1) translate(-1.5%, 0.8%); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(4,52,44,.72) 0%, rgba(4,52,44,.45) 50%, rgba(24,95,165,.35) 100%);
}
.hero-content {
  position: relative; z-index: 2; text-align: center;
  padding: 120px 24px 80px; max-width: 860px; margin: 0 auto;
}
.hero-eyebrow {
  display: inline-block; padding: 6px 18px; border-radius: 50px;
  background: rgba(29,158,117,.25); border: 1px solid rgba(29,158,117,.5);
  color: #7EFFD4; font-size: .8rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; margin-bottom: 24px; backdrop-filter: blur(4px);
}
.hero-title {
  font-family: var(--ff-display); font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800; color: var(--clr-white); line-height: 1.1;
  text-shadow: 0 2px 20px rgba(0,0,0,.3); margin-bottom: 20px;
}
.hero-title span { color: #7EFFD4; }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem); color: rgba(255,255,255,.88);
  max-width: 520px; margin: 0 auto 40px; font-weight: 300;
}

/* Search Card */
.search-card {
  background: var(--clr-white); border-radius: var(--radius-xl);
  box-shadow: 0 24px 80px rgba(0,0,0,.3); overflow: hidden;
  text-align: left; max-width: 760px; margin: 0 auto;
}
.search-card .affiliate-widget {
  box-shadow: none;
  border: 0;
  border-radius: 0;
  max-width: none;
  min-height: 100px;
}

.search-tabs {
  display: flex; border-bottom: 1px solid var(--clr-border);
  padding: 0 8px;
}
.search-tab {
  display: flex; align-items: center; gap: 8px;
  padding: 16px 20px; font-size: .9rem; font-weight: 600;
  color: var(--clr-muted); border-bottom: 2px solid transparent;
  transition: var(--transition); margin-bottom: -1px; cursor: pointer;
}
.search-tab.active { color: var(--clr-accent); border-bottom-color: var(--clr-accent); }
.search-tab:hover:not(.active) { color: var(--clr-primary); }
.widget-body { padding: 0; }
.widget-pane { display: none; }
.widget-pane.active { display: block; }
.widget-placeholder {
  padding: 36px 32px;
  border: 2px dashed var(--clr-border);
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  background: var(--clr-surface);
  text-align: center;
}
.widget-placeholder p {
  font-size: .85rem; color: var(--clr-muted); font-weight: 500;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.widget-placeholder p::before { content: '⚙'; font-size: 1rem; }

/* Hero scroll cue */
.hero-scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,.6); font-size: .75rem; letter-spacing: .1em; }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(255,255,255,.6), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100% { opacity: .4; } 50% { opacity: 1; } }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip { background: var(--clr-primary); padding: 28px 24px; }
.trust-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 16px;
}
.trust-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 4px; padding: 8px; }
.trust-num { font-size: 1.6rem; font-weight: 700; color: var(--clr-white); font-family: var(--ff-display); }
.trust-label { font-size: .8rem; color: rgba(255,255,255,.65); font-weight: 500; letter-spacing: .02em; }
.trust-divider { width: 1px; background: rgba(255,255,255,.15); }

/* ============================================================
   DESTINATIONS
   ============================================================ */
.destinations { padding: 96px 24px; background: var(--clr-white); }
.section-header { margin-bottom: 56px; }
.dest-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.dest-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 3/4; cursor: pointer;
  box-shadow: var(--shadow-md); transition: transform var(--transition), box-shadow var(--transition);
  display: block; text-decoration: none; color: inherit;
}
.dest-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.dest-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.dest-card:hover img { transform: scale(1.06); }
.dest-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(4,52,44,.85) 0%, rgba(4,52,44,.1) 55%, transparent 100%);
  transition: var(--transition);
}
.dest-card:hover .dest-card-overlay { background: linear-gradient(to top, rgba(4,52,44,.92) 0%, rgba(4,52,44,.2) 55%, transparent 100%); }
.dest-card-info {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 24px 20px;
}
.dest-city { font-size: 1.1rem; font-weight: 700; color: var(--clr-white); margin-bottom: 4px; }
.dest-country { font-size: .78rem; color: rgba(255,255,255,.7); font-weight: 400; margin-bottom: 10px; }
.dest-price {
  display: inline-flex; align-items: center; gap: 4px;
  background: rgba(29,158,117,.9); color: var(--clr-white);
  padding: 5px 12px; border-radius: 50px; font-size: .8rem; font-weight: 700;
}
.dest-card-wide { grid-column: span 2; aspect-ratio: 16/9; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works { padding: 96px 24px; background: var(--clr-surface); }
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; margin-top: 64px; position: relative; }
.steps-grid::before {
  content: ''; position: absolute; top: 40px; left: 16.66%; right: 16.66%;
  height: 1px; background: linear-gradient(to right, var(--clr-accent), var(--clr-ocean));
  z-index: 0;
}
.step-item { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 24px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display); font-size: 1.5rem; font-weight: 700;
  background: var(--clr-white); border: 3px solid var(--clr-accent);
  color: var(--clr-accent); box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.step-item:hover .step-num { background: var(--clr-accent); color: var(--clr-white); transform: scale(1.1); }
.step-icon { font-size: 2rem; margin-bottom: 8px; }
.step-title { font-size: 1.1rem; font-weight: 700; color: var(--clr-primary); margin-bottom: 12px; }
.step-desc { font-size: .9rem; color: var(--clr-muted); line-height: 1.7; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-us { padding: 96px 24px; background: var(--clr-white); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 64px; }
.why-card {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 32px; border-radius: var(--radius-md);
  border: 1px solid var(--clr-border); background: var(--clr-white);
  transition: var(--transition); box-shadow: var(--shadow-sm);
}
.why-card:hover { border-color: var(--clr-accent); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.why-icon {
  width: 52px; height: 52px; border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(29,158,117,.12), rgba(24,95,165,.12));
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.5rem;
}
.why-card h3 { font-size: 1rem; font-weight: 700; color: var(--clr-primary); margin-bottom: 8px; }
.why-card p { font-size: .875rem; color: var(--clr-muted); line-height: 1.7; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  padding: 96px 24px;
  background: linear-gradient(135deg, var(--clr-primary) 0%, #062e24 40%, var(--clr-ocean) 100%);
  position: relative; overflow: hidden; text-align: center;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { font-family: var(--ff-display); font-size: clamp(2rem, 4vw, 3rem); color: var(--clr-white); margin-bottom: 16px; }
.cta-banner p { font-size: 1.1rem; color: rgba(255,255,255,.75); margin-bottom: 40px; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--clr-dark); padding: 80px 24px 40px; color: rgba(255,255,255,.6); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 64px; }
.footer-brand .logo img { height: 44px; margin-bottom: 20px; }
.footer-brand p { font-size: .875rem; line-height: 1.8; max-width: 280px; }
.footer-social { display: flex; gap: 12px; margin-top: 24px; }
.social-btn {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.7);
  display: flex; align-items: center; justify-content: center;
  font-size: .875rem; transition: var(--transition);
}
.social-btn:hover { border-color: var(--clr-accent); background: var(--clr-accent); color: var(--clr-white); }
.footer-col h4 { font-size: .8rem; font-weight: 700; color: var(--clr-white); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 20px; }
.footer-col a { display: block; font-size: .875rem; color: rgba(255,255,255,.55); padding: 5px 0; transition: var(--transition); }
.footer-col a:hover { color: var(--clr-accent); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 32px; }
.footer-bottom-inner { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-copy { font-size: .8rem; }
.ftc-disclosure { font-size: .75rem; color: rgba(255,255,255,.4); max-width: 620px; line-height: 1.7; }
.ftc-disclosure strong { color: rgba(255,255,255,.6); }

/* ============================================================
   INNER PAGE HERO
   ============================================================ */
.page-hero {
  position: relative; min-height: 60vh;
  display: flex; align-items: center; padding: 120px 24px 80px;
  overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(160deg, rgba(4,52,44,.8) 0%, rgba(24,95,165,.5) 100%); }
.page-hero-content { position: relative; z-index: 2; max-width: var(--max-w); margin: 0 auto; width: 100%; }
.page-hero h1 { font-family: var(--ff-display); font-size: clamp(2.5rem, 5vw, 4rem); color: var(--clr-white); margin-bottom: 16px; }
.page-hero p { font-size: 1.1rem; color: rgba(255,255,255,.8); max-width: 520px; }

/* Page widget section */
.widget-section { padding: 72px 24px; background: var(--clr-white); }
.widget-section-header { text-align: center; margin-bottom: 40px; }
.page-widget-placeholder {
  max-width: 960px; margin: 0 auto;
  padding: 60px 40px; border: 2px dashed var(--clr-border);
  border-radius: var(--radius-lg); background: var(--clr-surface); text-align: center;
}
.page-widget-placeholder h3 { font-size: 1rem; font-weight: 600; color: var(--clr-primary); margin-bottom: 8px; }
.page-widget-placeholder p { font-size: .875rem; color: var(--clr-muted); }

/* Affiliate widget embeds */
.affiliate-widget {
  max-width: 960px;
  margin: 0 auto;
  background: var(--clr-white);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  min-height: 120px;
}
.affiliate-widget iframe {
  display: block;
  width: 100%;
  border: 0;
  min-height: 520px;
}
.affiliate-widget--flights iframe { min-height: 420px; }
.affiliate-widget--compact { min-height: 80px; }

/* Category booking panels (partners without embed widgets) */
.affiliate-book-panel {
  max-width: 960px;
  margin: 0 auto;
  padding: 48px 40px;
  background: var(--clr-white);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  text-align: center;
}
.affiliate-book-panel h3 {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: var(--clr-primary);
}
.affiliate-book-panel p {
  font-size: .925rem;
  color: var(--clr-muted);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 24px;
}
.affiliate-book-panel .btn { min-width: 220px; }

/* Clickable category cards */
a.cat-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
a.cat-card-link:hover { color: inherit; }
a.cat-card-link .cat-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--clr-accent);
}
a.cat-card-link:hover .cat-card-cta { text-decoration: underline; }

/* Per-category widget sections on Things to Do */
.category-widget-section {
  padding: 56px 24px;
  border-top: 1px solid var(--clr-border);
}
.category-widget-section:nth-child(even) { background: var(--clr-surface); }
.category-widget-section .section-header { margin-bottom: 32px; }

/* Info section on inner pages */
.info-section { padding: 80px 24px; background: var(--clr-surface); }
.info-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 48px; }
.info-card { background: var(--clr-white); border-radius: var(--radius-md); padding: 28px; border: 1px solid var(--clr-border); }
.info-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.info-card p { font-size: .875rem; color: var(--clr-muted); line-height: 1.7; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .dest-grid { grid-template-columns: repeat(2,1fr); }
  .dest-card-wide { grid-column: span 1; aspect-ratio: 3/4; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .main-nav, .header-actions .search-icon-btn { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: block; }
  .trust-inner { grid-template-columns: repeat(2,1fr); }
  .trust-divider { display: none; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; }
}
@media (max-width: 640px) {
  .dest-grid { grid-template-columns: 1fr; }
  .search-tab { padding: 12px 14px; font-size: .8rem; }
  .widget-placeholder { padding: 28px 20px; }
}

/* ============================================================
   DEFAULT SEARCH FORMS & CALENDARS
   ============================================================ */
.search-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)) auto;
  gap: 16px;
  align-items: flex-end;
  padding: 24px;
}
.search-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}
.search-field label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--clr-primary);
  letter-spacing: 0.06em;
}
.search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.search-input-wrapper svg {
  position: absolute;
  left: 14px;
  color: var(--clr-accent);
  pointer-events: none;
}
.search-field input, .search-field select {
  width: 100%;
  padding: 12px 12px 12px 38px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--clr-border);
  background: var(--clr-surface);
  color: var(--clr-primary);
  font-family: var(--ff-body);
  font-size: 0.88rem;
  font-weight: 500;
  transition: var(--transition);
  outline: none;
  height: 46px;
}
.search-field input:focus, .search-field select:focus {
  border-color: var(--clr-accent);
  background: var(--clr-white);
  box-shadow: 0 0 0 3px rgba(29,158,117,0.1);
}
.search-btn {
  padding: 0 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  background: var(--clr-accent);
  color: var(--clr-white);
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
}
.search-btn:hover {
  background: #158f67;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(29,158,117,0.25);
}

@media (max-width: 768px) {
  .search-form {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
  }
  .search-btn {
    width: 100%;
    margin-top: 8px;
  }
}

/* ============================================================
   YOUTUBE SHOWCASE SECTION
   ============================================================ */
.youtube-showcase {
  padding: 96px 24px;
  background: var(--clr-surface);
}
.youtube-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 56px;
}
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.youtube-info-card {
  padding: 40px;
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--clr-border);
}
.youtube-info-card h3 {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--clr-primary);
  margin-bottom: 16px;
  line-height: 1.2;
}
.youtube-info-card p {
  font-size: 0.95rem;
  color: var(--clr-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}
.subscribe-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: #FF0000;
  color: var(--clr-white);
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
@media (max-width: 1024px) {
  .youtube-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}



/* Hotels page: responsive compact search form (V3.1) */
.affiliate-widget--hotels {
  width: 100%;
  max-width: 960px;
  min-height: 190px;
  padding: 18px;
  overflow: visible;
}
.affiliate-widget--hotels iframe {
  width: 100% !important;
  max-width: 100% !important;
  min-height: 190px !important;
  height: auto !important;
  display: block !important;
}
@media (max-width: 700px) {
  .widget-section { padding: 48px 14px; }
  .widget-section .container { padding-left: 0; padding-right: 0; }
  .affiliate-widget--hotels {
    width: 100%;
    border-radius: 20px;
    padding: 10px;
    min-height: 330px;
    box-shadow: 0 12px 34px rgba(4,52,44,.12);
  }
  .affiliate-widget--hotels iframe {
    min-height: 320px !important;
  }
}

/* Hotels page V3.2: dependable visual card, no blank third-party iframe */
.hotel-search-card {
  width: min(100%, 1040px);
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--clr-border);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(4,52,44,.12);
}
.hotel-search-visual {
  min-height: 360px;
  background-image:
    linear-gradient(90deg, rgba(1,31,27,.86) 0%, rgba(1,31,27,.5) 48%, rgba(1,31,27,.12) 100%),
    url('../assets/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 42px;
}
.hotel-search-visual-overlay { max-width: 560px; color: #fff; }
.hotel-search-kicker {
  display: inline-block;
  margin-bottom: 12px;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #9ff0d5;
}
.hotel-search-visual h3 {
  margin: 0 0 12px;
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.02;
  color: #fff;
}
.hotel-search-visual p { margin: 0; max-width: 520px; color: rgba(255,255,255,.9); line-height: 1.65; }
.hotel-search-form {
  display: grid;
  grid-template-columns: minmax(220px,1.7fr) repeat(3,minmax(140px,1fr)) auto;
  gap: 12px;
  align-items: end;
  padding: 22px;
}
.hotel-search-form label { display:flex; flex-direction:column; gap:7px; min-width:0; }
.hotel-search-form label > span { font-size:.72rem; font-weight:800; letter-spacing:.06em; text-transform:uppercase; color:var(--clr-primary); }
.hotel-search-form input,
.hotel-search-form select {
  width:100%; height:50px; padding:0 14px;
  border:1px solid var(--clr-border); border-radius:12px;
  background:#fff; color:var(--clr-primary); font:inherit;
}
.hotel-search-submit { height:50px; white-space:nowrap; border:0; }
.hotel-search-note { margin:0; padding:0 22px 22px; text-align:center; font-size:.78rem; color:var(--clr-muted); }
@media (max-width: 900px) {
  .hotel-search-form { grid-template-columns: 1fr 1fr; }
  .hotel-search-submit { width:100%; }
}
@media (max-width: 620px) {
  .hotel-search-card { border-radius:22px; }
  .hotel-search-visual { min-height:280px; padding:28px 22px; background-position:center; }
  .hotel-search-form { grid-template-columns:1fr; padding:16px; }
  .hotel-search-note { padding:0 16px 18px; }
}


/* Theme Parks affiliate disclosure and Entertainment Coupons creative */
.affiliate-disclosure--inline {
  margin: 18px 0;
  padding: 14px 16px;
  border: 1px solid var(--clr-border);
  border-radius: 12px;
  background: #f7fbfa;
  color: var(--clr-muted);
  font-size: .88rem;
  line-height: 1.55;
}
.affiliate-disclosure--inline strong { color: var(--clr-primary); }
.theme-park-affiliate {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 16px;
}
.theme-park-affiliate img {
  display: block;
  max-width: 100%;
  height: auto;
}
@media (max-width: 620px) {
  .theme-park-affiliate { justify-content: center; text-align: center; }
  .theme-park-affiliate .btn { width: 100%; }
}

/* Homepage Hotels tab: compact, mobile-safe Trip.com affiliate search */
.home-hotel-search {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 26px;
  background: #fff;
  border-radius: 0 0 24px 24px;
  overflow: hidden;
}
.home-hotel-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.home-hotel-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  flex: 0 0 auto;
}
.home-hotel-brand-copy h2 {
  margin: 0;
  color: #073f36;
  font-size: clamp(1.35rem, 3.2vw, 2rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
}
.home-hotel-brand-copy p {
  margin: 6px 0 0;
  color: #687386;
  font-size: .86rem;
  line-height: 1.35;
}
.home-hotel-form {
  display: grid;
  grid-template-columns: minmax(220px, 1.6fr) repeat(3, minmax(130px, .8fr)) auto;
  gap: 10px;
  align-items: end;
}
.home-hotel-field {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.home-hotel-field span {
  color: #687386;
  font-size: .78rem;
  font-weight: 700;
}
.home-hotel-field input,
.home-hotel-field select {
  width: 100%;
  min-width: 0;
  height: 54px;
  padding: 0 14px;
  border: 1px solid #d8dee8;
  border-radius: 10px;
  background: #fff;
  color: #14213d;
  font: inherit;
  font-weight: 700;
}
.home-hotel-submit {
  height: 54px;
  padding: 0 22px;
  border: 0;
  border-radius: 10px;
  background: #1d9e75;
  color: #fff;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  white-space: nowrap;
}
.home-hotel-note {
  margin: 14px 0 0;
  color: #6f7a87;
  font-size: .78rem;
  line-height: 1.45;
}
.home-hotel-note span {
  display: inline-block;
  margin-left: 4px;
  font-weight: 800;
  color: #4d5968;
}
@media (max-width: 900px) {
  .home-hotel-form {
    grid-template-columns: 1fr 1fr;
  }
  .home-hotel-destination,
  .home-hotel-submit {
    grid-column: 1 / -1;
  }
  .home-hotel-guests { grid-column: auto; }
}
@media (max-width: 560px) {
  .home-hotel-search {
    padding: 20px 16px 18px;
    border-radius: 0 0 20px 20px;
  }
  .home-hotel-brand {
    gap: 11px;
    margin-bottom: 16px;
  }
  .home-hotel-logo {
    width: 56px;
    height: 56px;
  }
  .home-hotel-brand-copy h2 {
    font-size: 1.4rem;
  }
  .home-hotel-brand-copy p {
    font-size: .76rem;
  }
  .home-hotel-form {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .home-hotel-destination,
  .home-hotel-guests,
  .home-hotel-submit {
    grid-column: 1 / -1;
  }
  .home-hotel-field input,
  .home-hotel-field select,
  .home-hotel-submit {
    height: 50px;
  }
  .home-hotel-note {
    text-align: center;
  }
}


/* V4.7 partner branding hierarchy */
.partner-brand-lockup{display:flex;align-items:center;gap:14px;width:100%;max-width:680px;margin:0 auto 20px;padding:12px 16px;border:1px solid rgba(11,90,73,.14);border-radius:16px;background:linear-gradient(135deg,#fff,#f3faf7);box-shadow:0 8px 22px rgba(4,52,44,.07)}
.partner-brand-logo{width:118px;height:44px;object-fit:contain;object-position:left center;flex:0 0 auto}
.partner-brand-copy{display:flex;flex-direction:column;line-height:1.18;border-left:1px solid rgba(11,90,73,.16);padding-left:14px;min-width:0}
.partner-brand-copy strong{font-size:1rem;color:#073e34;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.partner-brand-copy span{font-size:.76rem;color:#6b747f;margin-top:4px;font-weight:700;letter-spacing:.02em}
.partner-brand-lockup--inside{margin:0 0 18px;max-width:none;box-shadow:none;background:#f7fbf9}
.partner-brand-lockup--compact{max-width:520px;margin-bottom:16px}
@media(max-width:560px){.partner-brand-lockup{gap:10px;padding:10px 12px;border-radius:14px}.partner-brand-logo{width:92px;height:38px}.partner-brand-copy{padding-left:10px}.partner-brand-copy strong{font-size:.9rem}.partner-brand-copy span{font-size:.7rem}}


/* V4.9: Separate, visible cruise and yacht affiliate cards */
.cruise-yacht-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:22px;margin-top:24px}
.cruise-yacht-card{display:flex;flex-direction:column;align-items:center;text-align:center;padding:24px;border:1px solid rgba(11,90,73,.16);border-radius:22px;background:#fff;box-shadow:0 12px 30px rgba(4,52,44,.09)}
.cruise-yacht-card .partner-brand-lockup{margin-bottom:18px}
.cruise-yacht-icon{font-size:2.5rem;line-height:1;margin:2px 0 12px}
.cruise-yacht-card h4{font-size:1.35rem;color:var(--clr-primary);margin:0 0 10px}
.cruise-yacht-card p{color:#647084;margin:0 0 20px;line-height:1.6}
.cruise-yacht-cta{display:inline-flex!important;justify-content:center;align-items:center;width:100%;max-width:320px;margin-top:auto;color:#fff!important;text-decoration:none!important}
@media(max-width:760px){.cruise-yacht-grid{grid-template-columns:1fr;gap:18px}.cruise-yacht-card{padding:18px 16px}.cruise-yacht-card h4{font-size:1.2rem}.cruise-yacht-cta{max-width:none;min-height:52px}}

/* V5.0 visible affiliate directory */
.affiliate-hub-section{padding:78px 0;background:#f6fbf9}.affiliate-hub-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px;margin-top:34px}.affiliate-hub-card{display:flex;min-height:155px;flex-direction:column;justify-content:center;align-items:flex-start;gap:7px;padding:24px;border:1px solid #dbe9e4;border-radius:22px;background:#fff;color:#0b4639;text-decoration:none;box-shadow:0 12px 28px rgba(10,70,57,.07);transition:transform .2s,box-shadow .2s}.affiliate-hub-card:hover{transform:translateY(-3px);box-shadow:0 18px 35px rgba(10,70,57,.13)}.affiliate-hub-icon{font-size:1.8rem}.affiliate-hub-card strong{font-size:1.05rem}.affiliate-hub-card small{color:#66736e;line-height:1.4}.affiliate-hub-card--all{background:#0b4639;color:#fff}.affiliate-hub-card--all small{color:#dceee8}.services-directory-main{background:#f6fbf9;min-height:70vh}.services-directory-hero{padding:78px 0 46px;background:linear-gradient(135deg,#063e33,#0f735e);color:#fff}.services-directory-hero h1{font-family:'Playfair Display',serif;font-size:clamp(2.2rem,6vw,4.5rem);line-height:1.05;margin:18px 0}.services-directory-hero p{max-width:760px;font-size:1.08rem;line-height:1.75;color:#dceee8}.services-directory-wrap{padding-top:42px;padding-bottom:80px}.services-directory-disclosure,.services-directory-note{padding:22px 24px;border:1px solid #d4e6df;border-radius:18px;background:#fff;line-height:1.65;color:#53615c}.services-directory-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px;margin:28px 0}.service-directory-card{display:grid;grid-template-columns:auto 1fr auto;align-items:center;gap:18px;padding:22px;border:1px solid #dbe9e4;border-radius:20px;background:#fff;color:#0b4639;text-decoration:none;box-shadow:0 10px 25px rgba(10,70,57,.06)}.service-directory-card>span{font-size:2rem}.service-directory-card h2{font-size:1.05rem;margin:0 0 5px}.service-directory-card p{margin:0;color:#6a7772;font-size:.88rem;line-height:1.45}.service-directory-card b{white-space:nowrap;color:#1d9e75}.services-directory-note{margin-top:24px}.services-directory-note h2{margin:0 0 8px;color:#0b4639;font-size:1.1rem}.services-directory-note p{margin:0}
@media(max-width:900px){.affiliate-hub-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:620px){.affiliate-hub-section{padding:58px 0}.affiliate-hub-grid,.services-directory-grid{grid-template-columns:1fr}.affiliate-hub-card{min-height:130px;padding:20px}.services-directory-hero{padding:58px 0 38px}.service-directory-card{grid-template-columns:auto 1fr;padding:19px}.service-directory-card b{grid-column:2}}

.brand-team{margin:24px auto 0;text-align:center;max-width:320px}
.brand-team img{display:block;width:100%;max-width:320px;height:auto;aspect-ratio:4/5;object-fit:cover;border-radius:18px;box-shadow:0 10px 30px rgba(0,0,0,.25)}
.brand-team p{color:#fff;font-weight:600;margin-top:10px}
@media(max-width:620px){.brand-team{max-width:260px}.brand-team img{max-width:260px}}

/* Version 4.0.3: consistent global mobile navigation */
.mobile-nav a[aria-current="page"] { color: var(--clr-accent); font-weight: 700; }

/* =========================================================
   FLIGHT SEARCH 4.0.4 — clear city/airport autocomplete
   ========================================================= */
.blfs-search {
  --blfs-green: #1d9e75;
  --blfs-green-dark: #0b6f56;
  --blfs-ink: #17211f;
  --blfs-muted: #5b6965;
  --blfs-line: #d8e4df;
  --blfs-soft: #f2f8f5;
  position: relative;
  width: 100%;
  padding: 24px;
  font-family: inherit;
  color: var(--blfs-ink);
}
.blfs-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 2px 2px 16px;
}
.blfs-heading strong {
  display: block;
  font-size: 1rem;
  line-height: 1.3;
}
.blfs-heading span {
  display: block;
  margin-top: 4px;
  color: var(--blfs-muted);
  font-size: .88rem;
  line-height: 1.45;
}
.blfs-no-code {
  flex: 0 0 auto;
  border: 1px solid #b9dfd2;
  border-radius: 999px;
  background: #eaf7f2;
  color: #075f49 !important;
  font-weight: 800;
  font-size: .76rem !important;
  padding: 7px 11px;
  margin: 0 !important;
  white-space: nowrap;
}
.blfs-form {
  display: grid;
  gap: 14px;
}
.blfs-trip-types {
  display: inline-flex;
  width: fit-content;
  gap: 4px;
  padding: 4px;
  border-radius: 12px;
  background: var(--blfs-soft);
}
.blfs-trip-types label {
  position: relative;
  cursor: pointer;
}
.blfs-trip-types input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.blfs-trip-types span {
  display: block;
  border-radius: 9px;
  padding: 8px 13px;
  color: #4e5c58;
  font-weight: 800;
  font-size: .86rem;
}
.blfs-trip-types input:checked + span {
  background: #fff;
  color: #075f49;
  box-shadow: 0 2px 9px rgba(15, 68, 54, .12);
}
.blfs-route-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}
.blfs-field {
  position: relative;
  min-width: 0;
}
.blfs-field > label,
.blfs-field > .blfs-label {
  display: block;
  margin: 0 0 7px;
  color: #26332f;
  font-size: .84rem;
  font-weight: 800;
}
.blfs-input-wrap {
  position: relative;
}
.blfs-input,
.blfs-select,
.blfs-date {
  width: 100%;
  min-height: 52px;
  border: 1.5px solid var(--blfs-line);
  border-radius: 10px;
  background: #fff;
  color: #15201d;
  font: inherit;
  font-size: .96rem;
  padding: 12px 14px;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.blfs-input {
  padding-right: 48px;
}
.blfs-input::placeholder {
  color: #7a8783;
  opacity: 1;
}
.blfs-input:focus,
.blfs-select:focus,
.blfs-date:focus {
  border-color: var(--blfs-green);
  box-shadow: 0 0 0 4px rgba(29, 158, 117, .14);
}
.blfs-input[aria-invalid="true"] {
  border-color: #b42318;
  box-shadow: 0 0 0 4px rgba(180, 35, 24, .10);
}
.blfs-pin {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  color: var(--blfs-green-dark);
  font-size: 1rem;
  pointer-events: none;
}
.blfs-swap {
  width: 44px;
  height: 44px;
  margin-top: 29px;
  border: 1px solid #c9ddd6;
  border-radius: 50%;
  background: #fff;
  color: var(--blfs-green-dark);
  font-size: 1.18rem;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 3px 12px rgba(15, 68, 54, .08);
}
.blfs-swap:hover,
.blfs-swap:focus-visible {
  border-color: var(--blfs-green);
  background: #eef8f4;
}
.blfs-results {
  position: absolute;
  z-index: 80;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  max-height: 340px;
  overflow-y: auto;
  border: 1px solid #cfe0da;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(16, 48, 40, .20);
}
.blfs-results[hidden] { display: none !important; }
.blfs-option {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 0;
  border-bottom: 1px solid #edf2f0;
  background: #fff;
  color: inherit;
  text-align: left;
  padding: 13px 14px;
  cursor: pointer;
}
.blfs-option:last-child { border-bottom: 0; }
.blfs-option:hover,
.blfs-option.is-active {
  background: #e9f7f2;
}
.blfs-option-copy {
  min-width: 0;
}
.blfs-option-copy strong,
.blfs-option-copy small {
  display: block;
}
.blfs-option-copy strong {
  color: #17211f;
  font-size: .94rem;
  line-height: 1.3;
}
.blfs-option-copy small {
  margin-top: 3px;
  color: #5c6965;
  font-size: .78rem;
  line-height: 1.35;
}
.blfs-code {
  flex: 0 0 auto;
  min-width: 48px;
  border-radius: 8px;
  background: #dff2eb;
  color: #075f49;
  font-weight: 900;
  letter-spacing: .04em;
  text-align: center;
  padding: 8px 7px;
}
.blfs-empty {
  color: #5f6c68;
  font-size: .84rem;
  line-height: 1.45;
  padding: 15px;
}
.blfs-error {
  min-height: 18px;
  margin: 5px 2px 0;
  color: #a51d16;
  font-size: .77rem;
  line-height: 1.35;
}
.blfs-details-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.blfs-traveler-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.blfs-return-field.is-disabled {
  opacity: .48;
}
.blfs-return-field.is-disabled .blfs-date {
  background: #f3f5f4;
}
.blfs-help {
  margin: 0;
  color: #596762;
  font-size: .79rem;
  line-height: 1.45;
}
.blfs-help strong { color: #23423a; }
.blfs-form-error {
  min-height: 18px;
  margin: 0;
  color: #a51d16;
  font-weight: 700;
  font-size: .82rem;
}
.blfs-submit {
  width: 100%;
  min-height: 56px;
  border: 0;
  border-radius: 10px;
  background: var(--blfs-green);
  color: #fff;
  font: inherit;
  font-size: 1.05rem;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(29, 158, 117, .22);
}
.blfs-submit:hover,
.blfs-submit:focus-visible { background: var(--blfs-green-dark); }
.blfs-submit:disabled { opacity: .72; cursor: wait; }
.blfs-trust-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0;
  color: #52615c;
  font-size: .76rem;
  line-height: 1.45;
}
.blfs-trust-note::before {
  content: '✓';
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #e3f5ee;
  color: #087356;
  font-weight: 900;
}

@media (max-width: 760px) {
  .blfs-search { padding: 20px 16px; }
  .blfs-heading { display: block; }
  .blfs-no-code { display: inline-block !important; margin-top: 10px !important; }
  .blfs-route-grid { grid-template-columns: 1fr; gap: 8px; }
  .blfs-swap {
    width: 42px;
    height: 38px;
    margin: -2px auto 0;
    border-radius: 10px;
    transform: rotate(90deg);
  }
  .blfs-details-grid { grid-template-columns: 1fr 1fr; }
  .blfs-traveler-grid { grid-template-columns: 1fr 1fr; }
  .blfs-results { max-height: 290px; }
}

@media (max-width: 430px) {
  .blfs-details-grid { grid-template-columns: 1fr; }
  .blfs-trip-types { width: 100%; }
  .blfs-trip-types label { flex: 1; }
  .blfs-trip-types span { text-align: center; }
  .blfs-input,
  .blfs-select,
  .blfs-date { font-size: 16px; }
}

/* Version 5.9.9 Live Destination Desk homepage feature */
.bl599-live-home{padding:72px 20px;background:linear-gradient(135deg,#032f28,#087f6d);color:#fff}.bl599-live-home-shell{width:min(1120px,100%);margin:auto;display:grid;grid-template-columns:minmax(0,1.35fr) minmax(260px,.65fr);gap:28px;align-items:center}.bl599-live-home-copy>span{display:inline-block;border:1px solid #5ee6ca;border-radius:999px;padding:8px 12px;color:#8ff7df;font-weight:900;letter-spacing:.1em;font-size:12px}.bl599-live-home h2{font-size:clamp(34px,5vw,58px);line-height:1;margin:18px 0 14px}.bl599-live-home p{font-size:19px;line-height:1.55;color:#d8fff6;max-width:760px}.bl599-live-home-copy>a{display:inline-block;margin-top:10px;padding:14px 18px;border-radius:14px;background:#fff;color:#075c4d;text-decoration:none;font-weight:950}.bl599-live-home-card{background:rgba(0,0,0,.2);border:1px solid rgba(255,255,255,.22);border-radius:24px;padding:22px}.bl599-live-home-card>div{font-size:42px}.bl599-live-home-card strong{display:block;font-size:23px;margin:12px 0}.bl599-live-home-card span{color:#d8fff6}@media(max-width:760px){.bl599-live-home{padding:56px 18px}.bl599-live-home-shell{grid-template-columns:1fr}.bl599-live-home-card{padding:18px}.bl599-live-home h2{font-size:clamp(34px,10vw,48px)}}
