/* ==========================================================
   Travelora — main stylesheet
   ========================================================== */

:root {
  --blue: #1F7A4D;
  --blue-dark: #145C39;
  --navy: #1E2A1F;
  --navy-2: #16255494;
  --orange: #D9642C;
  --orange-2: #E98A4E;
  --ink: #1E2A1F;
  --ink-soft: #5B6357;
  --line: #E4E9E2;
  --bg-soft: #F5F8F3;
  --white: #FFFFFF;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --shadow: 0 10px 30px rgba(30, 42, 31, 0.08);
  --shadow-lg: 0 24px 60px rgba(30, 42, 31, 0.16);
  --font-head: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }
input, select { font-family: inherit; }
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
h1, h2, h3, h4 { font-family: var(--font-head); margin: 0; color: var(--navy); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 15px;
  border: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 12px 24px rgba(47,95,246,.35); }
.btn-primary:hover { background: var(--blue-dark); }
.btn-outline { background: #fff; color: var(--navy); border: 1px solid var(--line); }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }
.btn-sm { padding: 10px 20px; font-size: 13.5px; }

/* ==========================================================
   Top announcement bar
   ========================================================== */
.topbar {
  background: var(--navy);
  color: #cfd8f5;
  font-size: 12.5px;
}
.topbar .container {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 9px 32px;
}
.topbar span { display: inline-flex; align-items: center; gap: 7px; }
.topbar svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ==========================================================
   Header
   ========================================================== */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 500;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { max-height: 48px; width: auto; display: block; }
.brand-icon {
  width: 40px; height: 40px;
  background: var(--blue);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.brand-icon svg { width: 22px; height: 22px; color: #fff; }
.brand-text { line-height: 1.15; }
.brand-name { font-family: var(--font-head); font-weight: 800; font-size: 21px; color: var(--navy); }
.brand-tag { font-size: 11px; color: var(--ink-soft); font-weight: 500; }

.nav-menu { display: flex; align-items: center; gap: 30px; }
.nav-menu a { font-size: 14.5px; font-weight: 500; color: var(--ink); position: relative; padding: 4px 0; }
.nav-menu a:hover { color: var(--blue); }
.nav-menu li.current-menu-item > a,
.nav-menu a.is-active {
  color: var(--blue);
}
.nav-menu li.current-menu-item > a::after,
.nav-menu a.is-active::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -6px;
  height: 2px; background: var(--blue); border-radius: 2px;
}
.nav-menu li { position: relative; }
.nav-menu li.menu-item-has-children > a::before {
  content: ''; display: inline-block; width: 6px; height: 6px;
  border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg); margin-left: 6px;
}
.nav-menu .sub-menu {
  display: none;
  position: absolute; top: 100%; left: 0; margin-top: 14px;
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 8px; min-width: 220px; z-index: 50;
}
.nav-menu li.menu-item-has-children:hover .sub-menu { display: block; }
.nav-menu .sub-menu li { width: 100%; }
.nav-menu .sub-menu a {
  display: block; padding: 9px 12px; border-radius: var(--radius-sm); font-size: 13.5px;
}
.nav-menu .sub-menu a:hover { background: var(--bg-soft); color: var(--blue); }
.nav-menu .sub-menu a::after { display: none; }

.header-actions { display: flex; align-items: center; gap: 14px; }
.icon-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
  transition: border-color .15s, color .15s;
}
.icon-btn:hover { border-color: var(--blue); color: var(--blue); }
.icon-btn svg { width: 17px; height: 17px; }
.menu-toggle { display: none; }

/* ==========================================================
   Hero
   ========================================================== */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  background: linear-gradient(100deg, rgba(20,28,17,.85) 0%, rgba(20,28,17,.58) 38%, rgba(20,28,17,.1) 62%),
              url('https://images.unsplash.com/photo-1516426122078-c23e76319801?q=80&w=1920&auto=format&fit=crop') center/cover no-repeat;
  color: #fff;
  overflow: hidden;
  padding: 70px 0 130px;
}
.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: #ffd7ba; margin-bottom: 18px; }
.hero h1 {
  font-size: 52px;
  line-height: 1.08;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.5px;
}
.hero h1 .accent {
  color: var(--orange-2);
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 1.25em;
  position: relative;
  top: 4px;
}
.hero p.lead {
  margin-top: 18px;
  font-size: 16px;
  color: #dbe2f5;
  max-width: 440px;
  line-height: 1.6;
}
.hero-cta { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.hero-cta .btn-outline { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.4); backdrop-filter: blur(4px); }
.hero-cta .btn-outline:hover { background: #fff; color: var(--navy); }

.trusted-row { display: flex; align-items: center; gap: 14px; margin-top: 34px; }
.trusted-avatars { display: flex; }
.trusted-avatars img {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid var(--navy);
  margin-left: -10px;
  object-fit: cover;
}
.trusted-avatars img:first-child { margin-left: 0; }
.trusted-row span { font-size: 13.5px; color: #cfd8f5; font-weight: 500; }

.hero-visual { position: relative; }
.offer-card {
  position: absolute;
  right: 8%;
  top: 6%;
  background: #fff;
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  color: var(--navy);
  width: 190px;
  animation: floaty 5s ease-in-out infinite;
}
.offer-card .stars { color: var(--orange); font-size: 11px; font-weight: 700; margin-bottom: 6px; }
.offer-card .big { font-size: 22px; font-weight: 800; color: var(--blue); line-height: 1.2; }
.offer-card .small { font-size: 12px; color: var(--ink-soft); margin-top: 2px; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ==========================================================
   Search widget (overlaps hero bottom)
   ========================================================== */
.search-widget-wrap { position: relative; z-index: 10; margin-top: -84px; }
.search-widget {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 10px 28px 26px;
}
.search-tabs { display: flex; gap: 34px; border-bottom: 1px solid var(--line); padding: 4px 4px 0; margin-bottom: 22px; }
.search-tabs button {
  background: none; border: none; padding: 14px 2px 16px;
  font-size: 14px; font-weight: 600; color: var(--ink-soft);
  display: flex; align-items: center; gap: 7px;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.search-tabs button svg { width: 16px; height: 16px; }
.search-tabs button.is-active { color: var(--blue); border-color: var(--blue); }

.search-fields { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr 1fr auto; gap: 0; align-items: stretch; }
.search-field {
  padding: 6px 20px;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 4px;
}
.search-field:first-child { padding-left: 6px; }
.search-field label { font-size: 11.5px; font-weight: 600; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .3px; }
.search-field .field-value { display: flex; align-items: center; gap: 8px; font-size: 14.5px; font-weight: 600; color: var(--navy); }
.search-field .field-value svg { width: 15px; height: 15px; color: var(--blue); flex-shrink: 0; }
.search-field input {
  border: none; outline: none; font-size: 14.5px; font-weight: 600; color: var(--navy);
  width: 100%; background: transparent; font-family: inherit;
}
.search-submit { display: flex; align-items: center; padding-left: 18px; }
.search-submit .btn { width: 100%; padding: 16px 28px; }

/* ==========================================================
   Section heading
   ========================================================== */
.section { padding: 90px 0; }
.section-tight { padding: 60px 0; }
.section-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 34px; flex-wrap: wrap; gap: 14px; }
.section-head h2 { font-size: 30px; font-weight: 700; display: flex; align-items: center; gap: 10px; }
.section-head .view-all { font-size: 14px; font-weight: 600; color: var(--blue); display: inline-flex; align-items: center; gap: 6px; }
.section-head .view-all svg { width: 14px; height: 14px; }
.on-soft { background: var(--bg-soft); }

/* ==========================================================
   Popular Destinations
   ========================================================== */
.dest-row-wrap { position: relative; }
.dest-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 1fr);
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 6px;
  scrollbar-width: none;
}
.dest-row::-webkit-scrollbar { display: none; }
.dest-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 330px;
  scroll-snap-align: start;
  box-shadow: var(--shadow);
}
.dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.dest-card:hover img { transform: scale(1.07); }
.dest-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,17,38,0) 45%, rgba(10,17,38,.85) 100%);
}
.dest-badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: var(--orange); color: #fff; font-size: 11px; font-weight: 700;
  padding: 5px 10px; border-radius: var(--radius-pill);
}
.dest-rating {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  background: rgba(255,255,255,.95); color: var(--navy);
  font-size: 11.5px; font-weight: 700;
  padding: 5px 9px; border-radius: var(--radius-pill);
  display: flex; align-items: center; gap: 4px;
}
.dest-rating svg { width: 11px; height: 11px; color: var(--orange); }
.dest-info { position: absolute; left: 16px; right: 16px; bottom: 16px; z-index: 2; color: #fff; }
.dest-info .name { font-weight: 700; font-size: 17px; }
.dest-info .meta { font-size: 12.5px; margin-top: 4px; opacity: .9; display: flex; align-items: center; gap: 6px; }

.row-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: #fff; border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow); z-index: 5;
}
.row-nav.prev { left: -20px; }
.row-nav.next { right: -20px; }
.row-nav svg { width: 16px; height: 16px; }

/* ==========================================================
   Top Deals This Week
   ========================================================== */
.deals-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.deal-promo {
  background: linear-gradient(150deg, var(--blue) 0%, var(--blue-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  color: #fff;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative;
  overflow: hidden;
  min-height: 300px;
}
.deal-promo h3 { color: #fff; font-size: 24px; line-height: 1.25; }
.deal-promo p { font-size: 13px; color: #d9e3ff; margin: 10px 0 0; }
.deal-promo .btn { background: #fff; color: var(--blue); margin-top: 22px; align-self: flex-start; }
.deal-promo .promo-icon { position: absolute; right: -18px; bottom: -18px; opacity: .18; width: 130px; height: 130px; }

.deal-card { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); background: #fff; display: flex; flex-direction: column; }
.deal-card .thumb { position: relative; height: 150px; }
.deal-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.deal-badge {
  position: absolute; top: 12px; left: 12px;
  font-size: 10.5px; font-weight: 700; color: #fff;
  padding: 5px 10px; border-radius: var(--radius-pill);
  background: var(--blue);
}
.deal-badge.bestseller { background: #2563EB; }
.deal-badge.hotdeal { background: #E1440F; }
.deal-badge.newoffer { background: #8B5CF6; }
.deal-body { padding: 16px 18px 20px; flex: 1; display: flex; flex-direction: column; }
.deal-body h4 { font-size: 15.5px; font-weight: 700; }
.deal-body .duration { font-size: 12px; color: var(--ink-soft); margin-top: 4px; }
.deal-price { margin-top: 12px; display: flex; align-items: baseline; gap: 8px; }
.deal-price .old { font-size: 12.5px; color: #B3BAC9; text-decoration: line-through; }
.deal-price .new { font-size: 18px; font-weight: 800; color: var(--navy); }
.deal-body .view-link { margin-top: auto; padding-top: 14px; font-size: 12.5px; font-weight: 700; color: var(--blue); display: inline-flex; align-items: center; gap: 5px; }

/* ==========================================================
   Feature strip
   ========================================================== */
.feature-strip { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.feature-chip {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 22px 16px;
  text-align: center;
}
.feature-chip .icn {
  width: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
}
.feature-chip .icn svg { width: 21px; height: 21px; }
.feature-chip p { font-size: 13px; font-weight: 600; color: var(--navy); margin: 0; }
.f1 .icn { background: #FFEFE0; color: #F2882F; }
.f2 .icn { background: #E4F7EA; color: #2FAE5C; }
.f3 .icn { background: #FEE8E8; color: #E4483F; }
.f4 .icn { background: #E7F6EA; color: #2FAE5C; }
.f5 .icn { background: #F1E9FE; color: #8B5CF6; }

/* ==========================================================
   Testimonials
   ========================================================== */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  position: relative;
}
.testi-card .quote-icn { color: var(--blue); opacity: .18; width: 34px; height: 34px; margin-bottom: 6px; }
.testi-card p.body { font-size: 14.5px; color: var(--ink); line-height: 1.65; }
.testi-person { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.testi-person img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.testi-person .name { font-weight: 700; font-size: 14px; }
.testi-person .stars { color: var(--orange); font-size: 11.5px; margin-top: 2px; }

/* ==========================================================
   Services grid (What We Do)
   ========================================================== */
.services-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 20px;
  text-align: left;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.service-card .num { font-family: var(--font-head); font-size: 12px; font-weight: 700; color: var(--orange); letter-spacing: 1px; }
.service-card .icn {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--bg-soft); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  margin: 10px 0 14px;
}
.service-card .icn svg { width: 22px; height: 22px; }
.service-card h4 { font-size: 15.5px; font-weight: 700; line-height: 1.3; }
.service-card p { font-size: 12.5px; color: var(--ink-soft); margin: 8px 0 0; line-height: 1.6; }
.service-card .link { display: inline-flex; align-items: center; gap: 5px; font-size: 12.5px; font-weight: 700; color: var(--blue); margin-top: 14px; }

/* ==========================================================
   Core values
   ========================================================== */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.value-card { background: var(--bg-soft); border-radius: var(--radius); padding: 24px 20px; }
.value-card h4 { font-size: 14.5px; font-weight: 700; margin-bottom: 8px; color: var(--blue-dark); }
.value-card p { font-size: 12.5px; color: var(--ink-soft); line-height: 1.65; margin: 0; }

/* ==========================================================
   Process steps (Discover -> Design -> Coordinate -> Experience -> Remember)
   ========================================================== */
.process-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; position: relative; }
.process-step { text-align: center; padding: 0 14px; position: relative; }
.process-step .step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--blue); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; font-size: 18px;
  margin: 0 auto 14px; position: relative; z-index: 2;
}
.process-step h4 { font-size: 14.5px; font-weight: 700; }
.process-step p { font-size: 12px; color: var(--ink-soft); margin-top: 6px; }
.process-row::before {
  content: '';
  position: absolute; top: 26px; left: 10%; right: 10%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 14px);
  z-index: 1;
}

/* ==========================================================
   Travel Bites pricing cards
   ========================================================== */
.bites-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.bite-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px 24px; text-align: center; position: relative;
}
.bite-card.featured { border-color: var(--orange); box-shadow: var(--shadow); }
.bite-card .featured-tag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: #fff; font-size: 10.5px; font-weight: 700;
  padding: 4px 12px; border-radius: var(--radius-pill);
}
.bite-card .emoji { font-size: 38px; }
.bite-card h4 { font-size: 17px; font-weight: 800; margin-top: 10px; }
.bite-card .price { font-family: var(--font-head); font-size: 26px; font-weight: 800; color: var(--blue); margin: 10px 0; }
.bite-card .price span { font-size: 12px; font-weight: 500; color: var(--ink-soft); }
.bite-card ul { text-align: left; margin: 14px 0; display: flex; flex-direction: column; gap: 7px; }
.bite-card ul li { font-size: 13px; color: var(--ink); display: flex; align-items: center; gap: 8px; }
.bite-card ul li svg { width: 14px; height: 14px; color: var(--blue); flex-shrink: 0; }
.bite-card .ideal { font-size: 11.5px; color: var(--ink-soft); border-top: 1px solid var(--line); padding-top: 12px; margin-top: 14px; }

/* ==========================================================
   Newsletter
   ========================================================== */
.newsletter {
  background: linear-gradient(120deg, #2A46D8 0%, #6E3FD1 100%);
  border-radius: var(--radius-lg);
  padding: 50px 56px;
  display: flex; align-items: center; justify-content: space-between; gap: 30px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.newsletter h3 { color: #fff; font-size: 25px; max-width: 420px; }
.newsletter-form { display: flex; gap: 10px; background: rgba(255,255,255,.14); padding: 6px; border-radius: var(--radius-pill); }
.newsletter-form input {
  border: none; background: transparent; outline: none; color: #fff;
  padding: 10px 16px; font-size: 14px; width: 260px;
}
.newsletter-form input::placeholder { color: #dbe0fb; }
.newsletter-form button {
  width: 42px; height: 42px; border-radius: 50%; border: none;
  background: #fff; color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.newsletter-form button svg { width: 17px; height: 17px; }
.newsletter .palm { position: absolute; right: 20px; bottom: -10px; width: 140px; opacity: .25; }

/* ==========================================================
   Footer
   ========================================================== */
.site-footer { background: var(--navy); color: #aab4d4; padding-top: 64px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1.1fr; gap: 30px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-tag { color: #8b96bd; }
.footer-brand p.desc { font-size: 13px; line-height: 1.7; margin: 16px 0 20px; max-width: 260px; }
.social-row { display: flex; gap: 10px; }
.social-row a {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.social-row a:hover { background: var(--blue); }
.social-row svg { width: 15px; height: 15px; color: #fff; }

.footer-col-title { color: #fff; font-size: 14.5px; font-weight: 600; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 13.5px; color: #aab4d4; transition: color .15s; }
.footer-col a:hover { color: #fff; }

.footer-contact li { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; margin-bottom: 13px; line-height: 1.5; }
.footer-contact svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 2px; color: var(--blue); }

.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 22px 0; font-size: 12.5px; color: #8b96bd; flex-wrap: wrap; gap: 12px; }
.payment-icons { display: flex; gap: 10px; }
.payment-icons span {
  background: rgba(255,255,255,.08); color: #cfd8f5;
  font-size: 10.5px; font-weight: 700; padding: 6px 10px; border-radius: 5px;
}

/* ==========================================================
   Generic page content (for pages built with the block editor
   or when Elementor is not used on a given page)
   ========================================================== */
.page-content-wrap { max-width: 860px; margin: 0 auto; padding: 70px 32px; }
.page-content-wrap h1 { font-size: 34px; margin-bottom: 24px; }
.page-content-wrap p { line-height: 1.8; color: var(--ink-soft); margin-bottom: 18px; }

/* ==========================================================
   Responsive
   ========================================================== */
@media (max-width: 1100px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .search-fields { grid-template-columns: 1fr 1fr; row-gap: 14px; }
  .search-field { border-right: none; border-bottom: 1px solid var(--line); padding-bottom: 14px; }
  .search-submit { grid-column: 1 / -1; padding-left: 0; }
  .deals-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .process-row { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .process-row::before { display: none; }
  .bites-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
}
@media (max-width: 880px) {
  .nav-menu { display: none; }
  .menu-toggle {
    display: flex; width: 40px; height: 40px; border-radius: 10px;
    border: 1px solid var(--line); background: #fff;
    align-items: center; justify-content: center;
  }
  .menu-toggle svg { width: 20px; height: 20px; }
  .nav-menu.is-open {
    display: flex; flex-direction: column; gap: 4px;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; padding: 16px 32px; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .header-actions .icon-btn { display: none; }
  .nav-menu .sub-menu { position: static; box-shadow: none; display: block; margin: 4px 0 4px 14px; padding: 0; background: transparent; }
  .nav-menu li.menu-item-has-children:hover .sub-menu { display: block; }
  .feature-strip { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 38px; }
  .newsletter { flex-direction: column; text-align: center; }
  .newsletter-form { width: 100%; }
  .newsletter-form input { width: 100%; }
}
@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .topbar .container { gap: 18px; overflow-x: auto; justify-content: flex-start; }
  .deals-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .search-fields { grid-template-columns: 1fr; }
  .dest-card { height: 280px; }
  .values-grid { grid-template-columns: 1fr; }
  .process-row { grid-template-columns: 1fr; gap: 30px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

/* Visible keyboard focus */
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}
