/* ═══════════════════════════════════════════════
   Levine Adventures — Custom CSS
   Brand: Gold #ffad01 | Navy #061c39
   Fonts: Playfair Display + DM Sans
   ═══════════════════════════════════════════════ */

:root {
  --gold:        #ffad01;
  --gold-dark:   #e09800;
  --navy:        #061c39;
  --navy-mid:    #0a2a52;
  --navy-light:  #0f3566;
  --white:       #ffffff;
  --off-white:   #f8f7f3;
  --text:        #1a1a2e;
  --text-light:  #5a6a7e;
  --border:      #e0ddd6;
  --transition:  all 0.32s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; overflow-x: clip; }
body {
  font-family: 'DM Sans', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 400; color: var(--text);
  background: var(--white); line-height: 1.7;
}
h1,h2,h3,h4,h5,h6 {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-weight: 700; color: var(--navy); line-height: 1.2;
}
h1 { font-size: clamp(2rem,5vw,3.5rem); }
h2 { font-size: clamp(1.6rem,3.5vw,2.6rem); margin-bottom:14px; }
h3 { font-size: clamp(1.1rem,2.5vw,1.5rem); }
p  { line-height: 1.8; color: var(--text-light); margin-bottom: 1rem; }
a  { color: var(--navy); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-dark); text-decoration: none; }
img { max-width: 100%; height: auto; }

/* ── Utility ── */
.lv-section   { padding: 80px 0; }
.lv-section-sm{ padding: 50px 0; }
@media (max-width: 767px) {
  .lv-section    { padding: 44px 0; }
  .lv-section-sm { padding: 30px 0; }
  .lv-section-head { margin-bottom: 28px; }
}
.container-fluid { max-width: 1280px; margin: 0 auto; padding: 0 28px; }
.lv-section-label {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-dark);
  margin-bottom: 10px;
}
.lv-section-rule { width: 48px; height: 3px; background: var(--gold); border-radius: 2px; margin-bottom: 16px; }
.lv-section-rule.center { margin: 0 auto 16px; }
.lv-section-intro { font-size: 1rem; color: var(--text-light); max-width: 580px; line-height: 1.8; }
.lv-section-head  { margin-bottom: 48px; }
.lv-section-head.center { text-align: center; }
.lv-section-head.center .lv-section-intro { margin: 0 auto; }

/* ── Buttons ── */
.lv-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--navy);
  padding: 13px 30px; border-radius: 4px;
  font-weight: 700; font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase;
  transition: var(--transition); border: none; cursor: pointer; font-family: 'DM Sans', sans-serif;
}
.lv-btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,173,1,0.38); color: var(--navy); }
.lv-btn-navy {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy); color: var(--white);
  padding: 13px 30px; border-radius: 4px;
  font-weight: 700; font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase;
  transition: var(--transition); border: none; cursor: pointer; font-family: 'DM Sans', sans-serif;
}
.lv-btn-navy:hover { background: var(--navy-light); transform: translateY(-2px); color: var(--white); }
.lv-btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white);
  padding: 12px 28px; border-radius: 4px; border: 2px solid rgba(255,255,255,0.6);
  font-weight: 600; font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase;
  transition: var(--transition); cursor: pointer; font-family: 'DM Sans', sans-serif;
}
.lv-btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); color: var(--white); transform: translateY(-2px); }
.lv-btn-sm {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--navy); color: var(--white);
  padding: 8px 18px; border-radius: 4px;
  font-size: 0.76rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  transition: var(--transition); cursor: pointer; border: none; font-family: 'DM Sans', sans-serif;
}
.lv-btn-sm:hover { background: var(--gold); color: var(--navy); }

/* ── Navbar ── */
.lv-navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 24px rgba(6,28,57,0.10);
  padding: 0 24px; transition: var(--transition);
}
.lv-navbar.scrolled {
  box-shadow: 0 4px 32px rgba(6,28,57,0.16);
}
.lv-nav-container {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; min-height: 76px;
}
.lv-brand img { height: 58px; width: auto; display: block; }
.lv-brand:hover { opacity: 0.88; }
.lv-nav-links { gap: 2px; align-items: center; }
.lv-nav-link {
  font-family: 'DM Sans', sans-serif; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--navy) !important; padding: 8px 13px !important; border-radius: 3px;
  transition: var(--transition); position: relative;
}
.lv-nav-link::after {
  content: ''; position: absolute; bottom: 2px; left: 13px; right: 13px;
  height: 2px; background: var(--gold); transform: scaleX(0); transition: transform 0.25s ease; border-radius: 2px;
}
.lv-nav-link:hover, .lv-nav-link.active { color: var(--gold-dark) !important; }
.lv-nav-link:hover::after, .lv-nav-link.active::after { transform: scaleX(1); }
.lv-nav-cta {
  background: var(--gold) !important; color: var(--navy) !important;
  border-radius: 4px !important; font-weight: 700 !important;
  padding: 9px 20px !important;
}
.lv-nav-cta::after { display: none !important; }
.lv-nav-cta:hover { background: var(--gold-dark) !important; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(255,173,1,0.35); color: var(--navy) !important; }

/* Dropdown */
.lv-dropdown { position: relative; }
.lv-dropdown-menu {
  background: var(--white) !important; border: 1px solid var(--border) !important;
  border-radius: 6px !important; padding: 8px 0 !important;
  min-width: 240px; box-shadow: 0 12px 40px rgba(6,28,57,0.14) !important;
  margin-top: 0 !important; display: none;
}
.lv-dropdown:hover .lv-dropdown-menu,
.lv-dropdown-menu.show { display: block; }
.lv-dropdown-item {
  font-family: 'DM Sans', sans-serif; font-size: 0.8rem !important; font-weight: 600 !important;
  letter-spacing: 0.07em !important; text-transform: uppercase !important;
  color: var(--text) !important; padding: 10px 20px !important; transition: var(--transition) !important;
  background: transparent !important; display: flex; align-items: center; gap: 10px;
}
.lv-dropdown-item i { width: 16px; color: var(--gold); font-size: 0.85rem; }
.lv-dropdown-item:hover { background: var(--off-white) !important; color: var(--navy) !important; padding-left: 26px !important; }

/* Mobile toggler */
.lv-toggler { background: transparent; border: 1.5px solid rgba(6,28,57,0.25); border-radius: 3px; padding: 6px 10px; cursor: pointer; }
.lv-toggler-bar { display: block; width: 22px; height: 2px; background: var(--navy); margin: 4px 0; transition: var(--transition); }

/* ── Page content offset ── */
.pgcont { flex: 1; padding-top: 76px; }
.pg-contnr { min-height: 100vh; display: flex; flex-direction: column; }

/* ── Page Banner (inner pages) ── */
.lv-page-banner {
  position: relative; overflow: hidden; background: var(--navy);
}
.lv-banner-img { width: 100%; height: 320px; background-size: cover; background-position: center; }
@media (max-width: 767px) { .lv-banner-img { height: 260px; } }
.lv-page-banner::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(6,28,57,0.75) 0%, rgba(6,28,57,0.3) 100%);
  pointer-events: none;
}
.lv-breadcrumb {
  position: absolute; top: 18px; left: 28px; z-index: 10;
  list-style: none; padding: 0; margin: 0; display: flex; gap: 6px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
}
.lv-breadcrumb li { color: rgba(255,255,255,0.55); }
.lv-breadcrumb li a { color: rgba(255,255,255,0.55); }
.lv-breadcrumb li a:hover { color: var(--gold); }
.lv-breadcrumb li.sep { color: rgba(255,255,255,0.3); }
.lv-banner-content {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 5; padding: 32px 60px;
}
@media (max-width: 767px) { .lv-banner-content { padding: 24px; } }
.lv-banner-content h1 { color: var(--white); margin: 0; text-shadow: 0 2px 12px rgba(0,0,0,0.3); }

/* ── Hero Slider ── */
.lv-hero-slider { position: relative; overflow: hidden; background: var(--navy); }
.lv-hero-slider ul { margin: 0; padding: 0; list-style: none; }
.lv-hero-slide {
  position: relative; width: 100%; height: 580px;
  background-size: cover; background-position: center;
}
@media (max-width: 767px) { .lv-hero-slide { height: 320px; } }
@media (min-width: 1400px) { .lv-hero-slide { height: 680px; } }
.lv-hero-slide::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(6,28,57,0.72) 0%, rgba(6,28,57,0.42) 55%, rgba(6,28,57,0.22) 100%);
}
.lv-hero-caption {
  position: absolute; bottom: 72px; left: 68px; z-index: 10; max-width: 620px;
}
@media (max-width: 767px) { .lv-hero-caption { left: 24px; bottom: 40px; max-width: 88%; } }
.lv-hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--navy); padding: 5px 14px; border-radius: 2px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 16px;
}
.lv-hero-caption h2 {
  font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 900; color: var(--white); margin: 0 0 14px; line-height: 1.08;
  text-shadow: 0 2px 20px rgba(0,0,0,0.35);
}
.lv-hero-caption h2 em { font-style: italic; color: var(--gold); }
.lv-hero-caption p {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem); color: rgba(255,255,255,0.82);
  margin-bottom: 28px; font-weight: 300; line-height: 1.7;
}
.lv-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.lv-arrow {
  background: rgba(255,255,255,0.12) !important; border: 1.5px solid rgba(255,255,255,0.35) !important;
  border-radius: 50% !important; width: 50px !important; height: 50px !important;
  display: flex !important; align-items: center !important; justify-content: center !important;
  color: var(--white) !important; z-index: 20; transition: var(--transition); cursor: pointer;
  font-size: 1rem;
}
.lv-arrow:hover { background: var(--gold) !important; border-color: var(--gold) !important; color: var(--navy) !important; }
.slick-prev.lv-arrow { left: 20px !important; }
.slick-next.lv-arrow { right: 20px !important; }
.slick-prev.lv-arrow::before, .slick-next.lv-arrow::before { display: none !important; }
.lv-hero-slider .slick-dots { bottom: 16px; }
.lv-hero-slider .slick-dots li button::before { color: var(--white) !important; font-size: 8px !important; opacity: 0.45; }
.lv-hero-slider .slick-dots li.slick-active button::before { opacity: 1; color: var(--gold) !important; }

/* ── Search Bar ── */
.lv-search-wrap {
  background: var(--white); border-radius: 8px; padding: 28px 32px;
  max-width: 1040px; margin: -56px auto 0; position: relative; z-index: 50;
  box-shadow: 0 8px 48px rgba(6,28,57,0.14);
}
@media (max-width: 767px) { .lv-search-wrap { margin: -20px 14px 0; padding: 16px 14px; } }
.lv-search-tabs {
  display: flex; gap: 0; margin-bottom: 20px; border-bottom: 2px solid var(--border);
  overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none;
  margin-left: -2px; margin-right: -2px;
}
.lv-search-tabs::-webkit-scrollbar { display: none; }
.lv-search-tab {
  padding: 8px 14px 10px; font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase; color: var(--text-light);
  cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -2px;
  transition: var(--transition); white-space: nowrap; flex-shrink: 0;
}
.lv-search-tab.active { color: var(--navy); border-bottom-color: var(--gold); }

/* Short label shown only on mobile, long label hidden on mobile */
.lv-tab-short { display: none; }
.lv-tab-long  { display: inline; }
@media (max-width: 767px) {
  .lv-tab-short { display: inline; }
  .lv-tab-long  { display: none; }
  .lv-search-tab { padding: 8px 12px 10px; font-size: 0.72rem; }
}

.lv-search-fields { display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: 12px; align-items: end; }
@media (max-width: 767px) {
  /* Single column — each field stacks cleanly, easy to tap */
  .lv-search-fields { grid-template-columns: 1fr; gap: 10px; }
  .lv-search-fields .lv-search-btn { width: 100%; justify-content: center; margin-top: 4px; }
  /* Flights pax field: don't need to be full width */
  .lv-search-field[style*="max-width"] { max-width: 100% !important; }
}
.lv-search-field label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); display: block; margin-bottom: 6px; }
.lv-search-field select,
.lv-search-field input {
  width: 100%; padding: 11px 14px; border: 1.5px solid var(--border);
  border-radius: 4px; font-size: 0.92rem; font-family: 'DM Sans', sans-serif;
  color: var(--text); background: var(--off-white); outline: none; transition: var(--transition);
}
.lv-search-field select:focus,
.lv-search-field input:focus { border-color: var(--gold); background: var(--white); }

/* ── Services Strip ── */
.lv-services-strip { background: var(--navy); padding: 60px 0; }
.lv-services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1px; }
.lv-service-pill {
  display: flex; flex-direction: column; align-items: center; padding: 28px 16px; gap: 12px;
  text-align: center; border: 1px solid rgba(255,255,255,0.05); cursor: pointer; transition: var(--transition); text-decoration: none;
}
.lv-service-pill:hover { background: rgba(255,173,1,0.1); }
.lv-service-pill i { font-size: 1.7rem; color: var(--gold); }
.lv-service-pill span { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.68); }

/* ══════════════════════════════════════════
   DESTINATION CARDS — Homepage
   Mobile-first: stacked (image + navy text block)
   Desktop upgrade: overlay text on image
   ══════════════════════════════════════════ */
.lv-dest-grid {
  display: grid;
  grid-template-columns: 1fr;   /* mobile: single column */
  gap: 16px;
}

/* The card itself */
.lv-dest-card {
  display: block;
  text-decoration: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(6,28,57,0.12);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  /* NO position:relative on mobile — text block is in normal flow */
}
.lv-dest-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 44px rgba(6,28,57,0.18);
}

/* Image div */
.lv-dest-img {
  width: 100%;
  height: 220px;          /* mobile image height */
  background-size: cover;
  background-position: center;
  display: block;
  transition: transform 0.5s ease;
}
.lv-dest-card:hover .lv-dest-img { transform: scale(1.04); }

/* Text block — always visible navy bar on mobile */
.lv-dest-card-body {
  background: var(--navy);
  padding: 16px 18px 20px;
}
.lv-dest-region {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
}
.lv-dest-name {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 8px;
}
.lv-dest-sub {
  display: block;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
}

/* ── Tablet: 2-column grid ── */
@media (min-width: 600px) {
  .lv-dest-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .lv-dest-card.large { grid-column: span 2; }
  .lv-dest-img { height: 240px; }
  .lv-dest-card.large .lv-dest-img { height: 280px; }
}

/* ── Desktop: 3-column + overlay text on image ── */
@media (min-width: 1024px) {
  .lv-dest-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .lv-dest-card.large { grid-column: span 2; }

  /* Switch to overlay mode */
  .lv-dest-card { position: relative; }
  .lv-dest-img { height: 280px; }
  .lv-dest-card.large .lv-dest-img { height: 380px; }

  /* Gradient overlay */
  .lv-dest-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 30%, rgba(6,28,57,0.90) 100%);
    pointer-events: none;
  }

  /* Float text over image */
  .lv-dest-card-body {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: transparent;
    padding: 20px 22px 22px;
    z-index: 5;
  }
  .lv-dest-sub { font-size: 0.76rem; color: rgba(255,255,255,0.82); }
}


.lv-whyus { background: var(--off-white); }
.lv-whyus-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.lv-whyus-img { position: relative; border-radius: 8px; overflow: hidden; }
.lv-whyus-img img { width: 100%; height: 460px; object-fit: cover; }
.lv-whyus-img::before {
  content: ''; position: absolute; top:-16px; left:-16px; right:16px; bottom:16px;
  border: 3px solid var(--gold); border-radius: 8px; z-index: -1;
}
.lv-badge {
  position: absolute; bottom: 28px; left: 28px;
  background: var(--gold); color: var(--navy); padding: 14px 20px; border-radius: 6px;
  text-align: center; box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.lv-badge .num { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 900; line-height: 1; }
.lv-badge .lbl { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.lv-whyus-list { margin-top: 28px; display: flex; flex-direction: column; gap: 20px; }
.lv-whyus-item { display: flex; gap: 16px; align-items: flex-start; }
.lv-whyus-icon { width: 44px; height: 44px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.lv-whyus-icon i { color: var(--navy); font-size: 1rem; }
.lv-whyus-item h4 { font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.lv-whyus-item p { font-size: 0.88rem; color: var(--text-light); margin: 0; line-height: 1.6; }

/* ── Tour Cards ── */
.lv-tours-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.lv-tour-card {
  background: var(--white); border-radius: 8px; overflow: hidden;
  border: 1px solid var(--border); transition: var(--transition); display: flex; flex-direction: column;
}
.lv-tour-card:hover { transform: translateY(-4px); box-shadow: 0 16px 44px rgba(6,28,57,0.12); }
.lv-tour-img { width: 100%; height: 210px; background-size: cover; background-position: center; position: relative; flex-shrink: 0; }
.lv-tour-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--gold); color: var(--navy); padding: 3px 10px; border-radius: 2px;
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
}
.lv-tour-body { padding: 20px 22px; flex: 1; display: flex; flex-direction: column; }
.lv-tour-region { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 5px; }
.lv-tour-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; line-height: 1.3; }
.lv-tour-meta { display: flex; gap: 12px; font-size: 0.76rem; color: var(--text-light); margin-bottom: 12px; flex-wrap: wrap; }
.lv-tour-meta span { display: flex; align-items: center; gap: 5px; }
.lv-tour-meta i { color: var(--gold); }
.lv-tour-desc { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; margin-bottom: 14px; flex: 1; }
.lv-tour-footer { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--border); padding-top: 14px; margin-top: auto; }
.lv-tour-price { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--navy); }
.lv-tour-price small { font-family: 'DM Sans', sans-serif; font-size: 0.7rem; font-weight: 400; color: var(--text-light); }

/* ── Stats Bar ── */
.lv-stats-bar { background: var(--navy); padding: 56px 0; }
.lv-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; gap: 24px; }
.lv-stat-num { font-family: 'Playfair Display', serif; font-size: 3.2rem; font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: 6px; }
.lv-stat-lbl { font-size: 0.76rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.lv-stats-divider { width: 1px; background: rgba(255,255,255,0.1); }
@media (max-width: 767px) {
  .lv-stats-bar { padding: 32px 0; }
  .lv-stat-num { font-size: 2.4rem; }
}

/* ── CTA Band ── */
.lv-cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 88px 0; text-align: center; position: relative; overflow: hidden;
}
.lv-cta-band::before {
  content: ''; position: absolute; inset: 0;
  background-size: cover; background-position: center; opacity: 0.1;
}
.lv-cta-band .container-fluid { position: relative; z-index: 2; }
.lv-cta-band h2 { color: var(--white); margin-bottom: 14px; }
.lv-cta-band p { color: rgba(255,255,255,0.72); font-size: 1.05rem; margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto; }
.lv-cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── About page ── */
.lv-about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.lv-about-img { position: relative; border-radius: 8px; overflow: hidden; }
.lv-about-img img { width: 100%; height: 440px; object-fit: cover; }
.lv-about-img::before { content: ''; position: absolute; top:-14px; left:-14px; right:14px; bottom:14px; border: 3px solid var(--gold); border-radius: 8px; z-index: -1; }
.lv-mvv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.lv-mvv-card { background: var(--white); border-radius: 8px; padding: 32px 28px; box-shadow: 0 4px 20px rgba(6,28,57,0.06); }
.lv-mvv-icon { width: 52px; height: 52px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.lv-mvv-icon i { color: var(--gold); font-size: 1.2rem; }
.lv-mvv-card h3 { font-size: 1.2rem; color: var(--navy); margin-bottom: 12px; }
.lv-mvv-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; margin: 0; }

/* ── Services page ── */
.lv-services-full-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.lv-service-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 8px;
  padding: 32px 28px; transition: var(--transition); scroll-margin-top: 100px;
}
.lv-service-card:hover { border-color: var(--gold); box-shadow: 0 8px 32px rgba(6,28,57,0.1); transform: translateY(-4px); }
.lv-service-icon { width: 56px; height: 56px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.lv-service-icon i { color: var(--gold); font-size: 1.3rem; }
.lv-service-card h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 10px; }
.lv-service-card h3 a:hover { color: var(--gold-dark); }
.lv-service-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; margin-bottom: 16px; }

/* ── Destinations page ── */
.lv-region-tabs { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 36px; }
.lv-region-tab {
  padding: 9px 22px; border-radius: 30px; border: 1.5px solid var(--border);
  background: var(--white); font-size: 0.76rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-light); cursor: pointer; transition: var(--transition);
}
.lv-region-tab.active, .lv-region-tab:hover { background: var(--navy); border-color: var(--navy); color: var(--white); }
.lv-dest-full-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.lv-dest-full-grid .lv-dest-card {
  border-radius: 8px; overflow: hidden; transition: var(--transition);
  box-shadow: 0 4px 16px rgba(6,28,57,0.08); display: block; cursor: pointer;
  position: relative;
}
.lv-dest-full-grid .lv-dest-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(6,28,57,0.18); }
.lv-dest-full-img { width: 100%; height: 240px; background-size: cover; background-position: center; transition: transform 0.6s ease; }
.lv-dest-full-grid .lv-dest-card:hover .lv-dest-full-img { transform: scale(1.05); }
.lv-dest-full-grid .lv-dest-card-body { padding: 20px 22px; background: var(--white); position: static; }
.lv-dest-full-grid .lv-dest-card-body .region { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 5px; }
.lv-dest-full-grid .lv-dest-card-body h3 { font-size: 1.15rem; color: var(--navy); margin-bottom: 8px; }
.lv-dest-full-grid .lv-dest-card-body p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; margin-bottom: 14px; }
.lv-highlights { display: flex; flex-wrap: wrap; gap: 6px; }
.lv-hl-tag { background: var(--off-white); border: 1px solid var(--border); padding: 3px 10px; border-radius: 20px; font-size: 0.7rem; color: var(--text-light); }

/* ── Contact page ── */
.lv-contact-topstrip {
  background: var(--navy); padding: 0;
}
.lv-contact-strip-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-bottom: 2px solid rgba(255,173,1,0.18);
}
.lv-contact-strip-item {
  display: flex; align-items: center; gap: 14px; padding: 24px 28px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.lv-contact-strip-item:last-child { border-right: none; }
.lv-cs-icon { width: 44px; height: 44px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.lv-cs-icon i { color: var(--navy); font-size: 1rem; }
.lv-cs-label { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 3px; }
.lv-cs-value { font-size: 0.85rem; color: rgba(255,255,255,0.72); }
.lv-cs-value a { color: rgba(255,255,255,0.85); }
.lv-contact-layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: 56px; align-items: start; padding: 64px 0; }
.lv-contact-info h2 { margin-bottom: 14px; }
.lv-hours-card { background: var(--off-white); border-radius: 8px; padding: 20px 22px; margin-bottom: 24px; border-left: 3px solid var(--gold); }
.lv-hours-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 10px; }
.lv-hours-row { font-size: 0.88rem; color: var(--text-light); line-height: 2; }
.lv-hours-row strong { color: var(--navy); }
.lv-contact-social { display: flex; gap: 10px; margin-bottom: 28px; }
.lv-contact-social a {
  width: 42px; height: 42px; border-radius: 8px; background: var(--navy);
  display: flex; align-items: center; justify-content: center; color: var(--gold);
  font-size: 1rem; transition: var(--transition);
}
.lv-contact-social a:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }
.lv-map-wrap { border-radius: 10px; overflow: hidden; box-shadow: 0 4px 24px rgba(6,28,57,0.12); border: 3px solid var(--gold); }
.lv-map-wrap iframe { display: block; }
.lv-map-label { background: var(--navy); padding: 10px 16px; display: flex; align-items: center; gap: 8px; }
.lv-map-label i { color: var(--gold); }
.lv-map-label span { font-size: 0.76rem; color: rgba(255,255,255,0.65); }
.lv-contact-form-wrap { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 40px 36px; box-shadow: 0 8px 40px rgba(6,28,57,0.09); }
.lv-form-accent { display: flex; align-items: center; gap: 12px; margin-bottom: 6px; }
.lv-form-bar { width: 4px; height: 32px; background: var(--gold); border-radius: 2px; }
.lv-form-wrap-title { font-size: 1.7rem; color: var(--navy); margin: 0; }
.lv-form-sub { font-size: 0.88rem; color: var(--text-light); margin-bottom: 24px; padding-left: 16px; }

/* ── Forms ── */
.lv-form-group { margin-bottom: 18px; }
.lv-form-label { display: block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy); margin-bottom: 6px; }
.lv-form-label .req { color: var(--gold-dark); margin-left: 2px; }
.lv-form-control {
  display: block; width: 100%; padding: 11px 14px;
  font-size: 0.92rem; font-family: 'DM Sans', sans-serif;
  color: var(--text); background: var(--off-white);
  border: 1.5px solid var(--border); border-radius: 4px;
  transition: var(--transition); outline: none;
}
.lv-form-control:focus { border-color: var(--gold); background: var(--white); box-shadow: 0 0 0 3px rgba(255,173,1,0.12); }
textarea.lv-form-control { resize: vertical; min-height: 120px; }
.lv-phone-row { display: flex; gap: 8px; }
.lv-phone-row select { width: 110px; flex-shrink: 0; }
.lv-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.lv-field-error { display: none; font-size: 0.76rem; color: #c0392b; margin-top: 4px; }
.lv-form-msg { display: none; padding: 13px 16px; border-radius: 4px; font-size: 0.9rem; margin-bottom: 16px; }
.lv-form-msg.success { background: #e8f5e9; color: #2e7d32; border: 1px solid #a5d6a7; display: block; }
.lv-form-msg.error   { background: #ffebee; color: #c62828; border: 1px solid #ef9a9a; display: block; }
.lv-hp { position: absolute; left: -9999px; visibility: hidden; }
.lv-iata-info { display: flex; align-items: center; gap: 14px; padding: 16px 20px; background: var(--off-white); border-radius: 8px; border: 1px solid var(--border); margin-top: 20px; }
.lv-iata-info i { font-size: 2rem; color: var(--gold); }
.lv-iata-info-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--navy); }
.lv-iata-info p { font-size: 0.82rem; color: var(--text-light); margin: 0; line-height: 1.6; }

/* ── Booking Modal ── */
#lv-booking-modal {
  position: fixed; inset: 0; background: rgba(6,28,57,0.65); z-index: 2000;
  display: none; align-items: center; justify-content: center; padding: 20px;
  backdrop-filter: blur(4px);
}
#lv-booking-modal.flex-center { display: flex; }
.lv-modal-box {
  background: var(--white); border-radius: 10px; padding: 40px 36px;
  max-width: 560px; width: 100%; max-height: 92vh; overflow-y: auto;
  position: relative; box-shadow: 0 24px 64px rgba(0,0,0,0.25);
  animation: modalIn 0.3s ease;
}
@keyframes modalIn { from { opacity:0; transform:translateY(20px) scale(0.97); } to { opacity:1; transform:translateY(0) scale(1); } }
.lv-modal-close {
  position: absolute; top: 14px; right: 14px; width: 32px; height: 32px; border-radius: 50%;
  background: var(--off-white); display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1rem; color: var(--text-light); border: none; transition: var(--transition);
}
.lv-modal-close:hover { background: var(--navy); color: var(--white); }
.lv-modal-box h2 { font-size: 1.6rem; color: var(--navy); margin-bottom: 4px; }
.lv-modal-sub { font-size: 0.88rem; color: var(--text-light); margin-bottom: 24px; }

/* ── Footer ── */
#site-footer { background: var(--navy); }
.lv-footer-accent { background: var(--gold); height: 4px; }
.lv-footer-top { padding: 56px 0 40px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.lv-footer-row { gap: 32px 0; }
.lv-footer-col { padding: 0 20px; }
.lv-footer-brand img { height: 62px; margin-bottom: 14px; }
.lv-footer-tagline { font-style: italic; font-size: 0.9rem; color: rgba(255,255,255,0.42); margin-bottom: 18px; line-height: 1.7; }
.lv-footer-social { display: flex; gap: 9px; margin-bottom: 20px; }
.lv-footer-social a {
  width: 36px; height: 36px; border-radius: 6px;
  background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: rgba(255,255,255,0.55); transition: var(--transition);
}
.lv-footer-social a:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }
.lv-iata-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,173,1,0.1); border: 1px solid rgba(255,173,1,0.25); border-radius: 6px;
  padding: 8px 14px;
}
.lv-iata-badge i { color: var(--gold); font-size: 1rem; }
.lv-iata-badge span { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.lv-footer-heading {
  font-family: 'DM Sans', sans-serif; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--white);
  margin-bottom: 18px; padding-bottom: 10px; border-bottom: 2px solid var(--gold); display: inline-block;
}
.lv-footer-links { list-style: none; padding: 0; margin: 0; }
.lv-footer-links li { margin-bottom: 9px; }
.lv-footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.48); transition: var(--transition); }
.lv-footer-links a:hover { color: var(--gold); padding-left: 5px; }
.lv-footer-contact { list-style: none; padding: 0; margin: 0 0 20px; }
.lv-footer-contact li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 10px; font-size: 0.85rem; color: rgba(255,255,255,0.48); }
.lv-footer-contact li i { color: var(--gold); margin-top: 3px; width: 14px; flex-shrink: 0; }
.lv-footer-contact a { color: rgba(255,255,255,0.48); }
.lv-footer-contact a:hover { color: var(--gold); }
.lv-newsletter { background: rgba(255,255,255,0.05); border-radius: 8px; padding: 16px; }
.lv-newsletter-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 10px; }
.lv-newsletter-form { display: flex; gap: 0; }
.lv-newsletter-form input { flex: 1; padding: 9px 12px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-right: none; border-radius: 4px 0 0 4px; font-size: 0.82rem; color: white; outline: none; font-family: 'DM Sans', sans-serif; }
.lv-newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.lv-newsletter-form button { background: var(--gold); color: var(--navy); border: none; padding: 9px 14px; border-radius: 0 4px 4px 0; font-weight: 700; font-size: 0.78rem; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: var(--transition); }
.lv-newsletter-form button:hover { background: var(--gold-dark); }
.lv-footer-bottom { background: rgba(0,0,0,0.2); }
.lv-footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding: 18px 20px; }
.lv-copyright { font-size: 0.75rem; color: rgba(255,255,255,0.28); letter-spacing: 0.06em; text-transform: uppercase; margin: 0; }
.lv-iata-inline { font-size: 0.72rem; color: rgba(255,255,255,0.28); display: flex; align-items: center; gap: 6px; }
.lv-iata-inline i { color: var(--gold); }

/* ── Intro Band ── */
.lv-intro-band { background: var(--navy); color: var(--white); text-align: center; padding: 28px 24px; }
.lv-intro-band p { font-family: 'Playfair Display', serif; font-size: clamp(1rem,2vw,1.3rem); color: rgba(255,255,255,0.65); margin: 0; font-style: italic; letter-spacing: 0.03em; }
@media (max-width: 767px) {
  .lv-intro-band { background: var(--white); padding: 18px 32px 16px; }
  .lv-intro-band p { color: var(--text-light); font-size: 0.92rem; font-weight: 400; font-style: italic; letter-spacing: 0.02em; line-height: 1.6; }
  .lv-intro-band .lv-tagline-rule { background: var(--border); width: 36px; height: 1px; }
  /* Tighten gap between tagline and destinations */
  .lv-intro-band + .lv-section { padding-top: 24px; }
}
.lv-tagline-rule { width: 60px; height: 2px; background: rgba(255,173,1,0.5); margin: 12px auto 0; }

/* ── is-mobile / not-mobile ── */
@media (min-width: 768px) { .is-mobile { display: none !important; } }
@media (max-width: 767px) { .not-mobile { display: none !important; } }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .lv-contact-strip-grid { grid-template-columns: 1fr; }
  .lv-contact-strip-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
}
@media (max-width: 900px) {
  .lv-tours-grid,
  .lv-services-full-grid,
  .lv-mvv-grid { grid-template-columns: 1fr 1fr; }
  .lv-dest-full-grid { grid-template-columns: 1fr 1fr; }
  .lv-whyus-grid, .lv-about-intro, .lv-contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .lv-whyus-img img, .lv-about-img img { height: 320px; }
  .lv-stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .lv-navbar { padding: 0 14px; }
  #lvNavContent.navbar-collapse {
    background: var(--white); padding: 12px 0; border-top: 1px solid var(--border);
  }
  .lv-nav-link { display: block; padding: 10px 18px !important; }
  .lv-nav-link::after { display: none; }
  .lv-dropdown-menu { position: static !important; background: var(--off-white) !important; border: none !important; box-shadow: none !important; }
  /* lv-dest-grid mobile rules are in the component block above */
  .lv-tours-grid, .lv-services-full-grid, .lv-mvv-grid, .lv-dest-full-grid { grid-template-columns: 1fr; }
  .lv-stats-grid { grid-template-columns: 1fr 1fr; }
  .lv-contact-layout { padding: 36px 0; }
  .lv-contact-form-wrap { padding: 28px 20px; }
  .lv-form-row { grid-template-columns: 1fr; }
  .lv-modal-box { padding: 28px 20px; }
  .lv-footer-col { padding: 0 14px; }
}
@media (max-width: 480px) {
  .lv-hero-caption h2 { font-size: 2rem; }
  .lv-stats-grid { grid-template-columns: 1fr 1fr; }
  .container-fluid { padding: 0 16px; }
}

/* ══════════════════════════════════════════
   SEARCH BAR — Themed Tab Buttons & Variants
   ══════════════════════════════════════════ */

/* Base search button */
.lv-search-btn {
  display:inline-flex; align-items:center; gap:8px;
  padding:11px 22px; border-radius:4px; border:none; cursor:pointer;
  font-family:'DM Sans',sans-serif; font-size:0.82rem; font-weight:700;
  letter-spacing:0.08em; text-transform:uppercase; white-space:nowrap;
  transition:var(--transition);
}

/* Tours tab → gold */
.lv-search-btn--tours { background:var(--gold); color:var(--navy); }
.lv-search-btn--tours:hover { background:var(--gold-dark); transform:translateY(-1px); box-shadow:0 6px 20px rgba(255,173,1,0.35); }
.lv-search-wrap--tours .lv-search-tabs { border-bottom-color: var(--gold); }
.lv-search-wrap--tours .lv-search-tab.active { color:var(--gold-dark); border-bottom-color:var(--gold); }

/* Flights tab → navy (same for Visa) */
.lv-search-btn--flights,
.lv-search-btn--visa { background:var(--navy); color:var(--white); }
.lv-search-btn--flights:hover,
.lv-search-btn--visa:hover { background:#0a1f3a; transform:translateY(-1px); box-shadow:0 6px 20px rgba(6,28,57,0.3); }
.lv-search-wrap--flights,
.lv-search-wrap--visa { border-top:3px solid var(--navy); }
.lv-search-wrap--flights .lv-search-tab.active,
.lv-search-wrap--visa .lv-search-tab.active { color:var(--navy); border-bottom-color:var(--navy); }

/* ══════════════════════════════════════════
   BLOG PAGE STYLES
   ══════════════════════════════════════════ */
.lv-blog-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.lv-blog-card {
  background:var(--white); border-radius:8px; overflow:hidden;
  border:1px solid var(--border); transition:var(--transition);
  display:flex; flex-direction:column;
}
.lv-blog-card:hover { transform:translateY(-4px); box-shadow:0 16px 44px rgba(6,28,57,0.12); }
.lv-blog-img { width:100%; height:200px; background-size:cover; background-position:center; flex-shrink:0; overflow:hidden; }
.lv-blog-img img { width:100%; height:100%; object-fit:cover; transition:transform 0.6s ease; }
.lv-blog-card:hover .lv-blog-img img { transform:scale(1.05); }
.lv-blog-body { padding:22px 24px; flex:1; display:flex; flex-direction:column; }
.lv-blog-meta { display:flex; align-items:center; gap:14px; font-size:0.72rem; color:var(--text-light); margin-bottom:10px; }
.lv-blog-meta span { display:flex; align-items:center; gap:5px; }
.lv-blog-meta i { color:var(--gold); }
.lv-blog-cat {
  display:inline-block; background:var(--gold); color:var(--navy);
  font-size:0.62rem; font-weight:700; letter-spacing:0.12em; text-transform:uppercase;
  padding:2px 10px; border-radius:2px; margin-bottom:10px;
}
.lv-blog-title { font-family:'Playfair Display',serif; font-size:1.1rem; font-weight:700; color:var(--navy); line-height:1.3; margin-bottom:10px; }
.lv-blog-title a { color:inherit; }
.lv-blog-title a:hover { color:var(--gold-dark); }
.lv-blog-excerpt { font-size:0.88rem; color:var(--text-light); line-height:1.7; margin-bottom:16px; flex:1; }
.lv-blog-read { font-size:0.76rem; font-weight:700; letter-spacing:0.08em; text-transform:uppercase; color:var(--navy); display:flex; align-items:center; gap:6px; transition:var(--transition); margin-top:auto; }
.lv-blog-read:hover { color:var(--gold-dark); gap:10px; }
.lv-blog-featured {
  display:grid; grid-template-columns:1fr 1fr; gap:0;
  border-radius:10px; overflow:hidden; border:1px solid var(--border);
  margin-bottom:48px; box-shadow:0 8px 32px rgba(6,28,57,0.08);
}
.lv-blog-featured-img { min-height:380px; background-size:cover; background-position:center; }
.lv-blog-featured-body { padding:40px 36px; display:flex; flex-direction:column; justify-content:center; background:var(--white); }
.lv-blog-featured-body .lv-blog-title { font-size:1.6rem; margin-bottom:14px; }
.lv-blog-featured-body .lv-blog-excerpt { font-size:0.92rem; margin-bottom:24px; }

/* ── Tour page layout ── */
.lv-tour-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}
/* Booking card sticky on desktop */
.lv-tour-sidebar { position: sticky; top: 90px; }

/* Mobile booking bar — shown only on mobile, fixed at bottom */
.lv-mobile-book-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.96);
  border-top: 1px solid var(--border);
  padding: 8px 16px;
  z-index: 999;
  box-shadow: 0 -2px 12px rgba(6,28,57,0.08);
  align-items: center;
  gap: 12px;
}
.lv-mobile-book-bar .lv-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--navy);
  white-space: nowrap;
}
.lv-mobile-book-bar .lv-price small {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.04em;
}
.lv-mobile-book-bar .lv-open-booking {
  flex: 1;
  justify-content: center;
  padding: 9px 14px;
  font-size: 0.78rem;
  background: var(--navy);
  color: var(--white);
  border-radius: 4px;
  opacity: 0.88;
}

/* Itinerary day row */
.lv-day-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0;
  margin-bottom: 0;
  position: relative;
}
.lv-day-row-content {
  padding: 0 0 32px 12px;
  /* right padding prevents text bleeding to screen edge on mobile */
  padding-right: 0;
}
.lv-day-img {
  width: 100%;
  max-width: 480px;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
}

@media (max-width: 900px) {
  .lv-tour-layout { grid-template-columns: 1fr; gap: 0; }
  /* Hide sticky sidebar on mobile — booking is via bottom bar */
  .lv-tour-sidebar { display: none; }
  /* Show mobile bottom booking bar */
  .lv-mobile-book-bar { display: flex; }
  /* Add bottom padding to page so content isn't hidden behind bar */
  .pgcont { padding-bottom: 80px; }
  /* Fix itinerary content padding on mobile */
  .lv-day-row { grid-template-columns: 60px 1fr; }
  .lv-day-row-content { padding: 0 16px 28px 10px; }
  .lv-day-img { max-width: 100%; height: 180px; }
  /* Fix all tour page content bleeding to right edge */
  .lv-tour-layout > div:first-child { padding-right: 0; }
  /* Only add right padding to text elements that bleed, not box containers */
  .lv-tour-layout > div:first-child > p,
  .lv-tour-layout > div:first-child > h2,
  .lv-tour-layout > div:first-child > h3,
  .lv-tour-layout > div:first-child > span,
  .lv-tour-layout > div:first-child > div[style*="display:flex"] { padding-right: 16px; }
  /* Collapse included/excluded and highlights 2-col grids to 1-col on mobile */
  .lv-tour-layout > div:first-child div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  /* Inc/exc boxes: full width, single column on mobile */
  .lv-inc-exc-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
}

/* ── Tour inc/exc grid ── */
.lv-inc-exc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ── Blog article layout ── */
.lv-blog-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 56px;
  align-items: start;
}
.lv-blog-sidebar-col { position: sticky; top: 90px; }

@media (max-width: 900px) {
  .lv-blog-layout { grid-template-columns: 1fr; gap: 0; }
  .lv-blog-sidebar-col { display: none; }
  /* Article hero padding fix on mobile */
  .lv-article-hero-text { padding: 28px 20px 32px !important; }
  /* Prevent article content bleeding right */
  .lv-article-body { max-width: 100% !important; padding-right: 0 !important; }
  /* Remove distracting gold border-left on intro paragraph */
  .lv-article-body > p:first-of-type,
  .lv-article-body p[style*="border-left"] {
    border-left: none !important;
    padding-left: 0 !important;
    font-size: 1rem !important;
  }
}

/* ── Blog page responsive ── */
@media (max-width:900px) {
  .lv-blog-grid { grid-template-columns:1fr 1fr; }
  .lv-blog-featured { grid-template-columns:1fr; }
  .lv-blog-featured-img { min-height:240px; }
}
@media (max-width:600px) {
  .lv-blog-grid { grid-template-columns:1fr; }
}

/* search wrap top-border transition */
.lv-search-wrap { transition: border-top-color 0.25s ease; border-top: 3px solid var(--gold); }

/* ── Tour card — whole card clickable ── */
a.lv-tour-card { text-decoration: none; color: inherit; display: flex; flex-direction: column; }
a.lv-tour-card .lv-tour-name { color: var(--navy); }
a.lv-tour-card:hover .lv-tour-name { color: var(--gold-dark); }

/* ── Service page cards ── */
.lv-service-pg-hero { position:relative; overflow:hidden; }
.lv-service-pg-grid { display:grid; grid-template-columns:1fr 340px; gap:48px; align-items:start; }
@media (max-width:900px) { .lv-service-pg-grid { grid-template-columns:1fr; } }
