/* ================================================================
   Umbrella Trip — Category / Listing Page  (category-packages.css)
   2-Column layout: Cards + Right Sidebar

   FONT STRATEGY:
   html { font-size: 62.5% } is set globally → 1rem = 10px.
   We correct this by setting font-size: 1.6rem on the wrapper
   (1.6rem × 10px = 16px), then all children use `em` relative to
   that 16px base. No px values anywhere.
   ================================================================ */

/* ── Base Reset ─────────────────────────────────────────────── */
.lp-page-wrapper,
.lp-breadcrumb {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1.6rem;
  /* 1rem=10px globally, so 1.6rem = 16px */
  color: #1e293b;
}

.lp-page-wrapper {
  background: #f4f6f9;
}

/* ── Breadcrumb ─────────────────────────────────────────────── */
.lp-breadcrumb {
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  padding: 0.55em 0;
}

.lp-crumbs {
  display: flex;
  align-items: center;
  gap: 0.45em;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.75em;
  /* ~12px compact & refined */
  line-height: 1.4;
}

.lp-crumbs li {
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 0.45em;
}

.lp-crumbs .fa-chevron-right {
  font-size: 0.7em;
  color: #94a3b8;
}

.lp-crumbs a {
  color: #475569;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.lp-crumbs a:hover {
  color: #055ecd;
}

.lp-crumbs a i.fa-house {
  font-size: 0.95em;
  margin-right: 0.2em;
}

.lp-crumb-active {
  color: #0f1f4a;
  font-weight: 600;
}

/* ── Hero Banner ─────────────────────────────────────────── */
.lp-hero {
  position: relative;
  width: 100%;
  min-height: 12em;
  background: linear-gradient(135deg, #0a1437 0%, #162a63 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.lp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(8, 15, 40, 0.62) 0%,
      rgba(10, 20, 55, 0.38) 45%,
      rgba(8, 15, 40, 0.78) 100%);
}

.lp-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2.2em 1.5em;
  max-width: 54em;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75em;
}

/* Eyebrow Badge */
.lp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  font-size: 0.72em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fef08a;
  background: rgba(255, 255, 255, 0.12);
  border: 0.0625rem solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(0.5em);
  -webkit-backdrop-filter: blur(0.5em);
  padding: 0.3em 1em;
  border-radius: 50em;
  box-shadow: 0 0.2em 0.8em rgba(0, 0, 0, 0.2);
}

.lp-hero-badge i {
  color: #facc15;
  font-size: 1.05em;
}

/* Main Title */
.lp-hero-title {
  font-size: 1.85em;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.22;
  text-shadow: 0 0.12em 0.8em rgba(0, 0, 0, 0.5), 0 0.04em 0.2em rgba(0, 0, 0, 0.3);
}

/* Features Ribbon */
.lp-hero-features {
  display: inline-flex;
  align-items: center;
  gap: 0.75em;
  background: rgba(15, 23, 42, 0.55);
  border: 0.0625rem solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(0.6em);
  -webkit-backdrop-filter: blur(0.6em);
  padding: 0.35em 1.1em;
  border-radius: 50em;
  box-shadow: 0 0.25em 1em rgba(0, 0, 0, 0.25);
  flex-wrap: wrap;
  justify-content: center;
}

.lp-hero-feat {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  font-size: 0.75em;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.lp-hero-feat strong {
  color: #ffffff;
  font-weight: 700;
}

.lp-hero-feat i {
  font-size: 0.9em;
}

.lp-hero-feat:nth-child(1) i {
  color: #60a5fa;
}

.lp-hero-feat:nth-child(3) i {
  color: #c084fc;
}

.lp-hero-feat:nth-child(5) i {
  color: #4ade80;
}

.lp-hero-feat-sep {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.75em;
}


/* ── Main Grid ───────────────────────────────────────────────── */
.lp-main-container {
  padding-top: 1.5em;
  padding-bottom: 3em;
  font-size: 1.6rem;
}

.lp-grid {
  display: grid;
  grid-template-columns: 1fr 19.375em;
  /* ~310px */
  gap: 1.5em;
  align-items: start;
}

/* ── Filter Bar ──────────────────────────────────────────────── */
.lp-filter-bar {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.75em;
  padding: 0.55em 0.95em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85em;
  flex-wrap: wrap;
  margin-bottom: 1.1em;
  box-shadow: 0 1px 3px 0 rgba(15, 23, 42, 0.04), 0 1px 2px -1px rgba(15, 23, 42, 0.03);
}

.lp-filter-left {
  display: flex;
  align-items: center;
  gap: 0.75em;
  flex-wrap: wrap;
}

.lp-filter-label {
  font-size: 0.78em;
  font-weight: 600;
  color: #475569;
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.lp-filter-label i {
  color: #0284c7;
  font-size: 0.88em;
}

.lp-filter-chips {
  display: flex;
  gap: 0.4em;
  flex-wrap: wrap;
  align-items: center;
}

.lp-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.3em 0.8em;
  border-radius: 2em;
  font-size: 0.76em;
  font-weight: 500;
  color: #475569;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  text-decoration: none;
  transition: all 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  line-height: 1.4;
}

.lp-chip:hover {
  background: #ffffff;
  border-color: #cbd5e1;
  color: #0f172a;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(15, 23, 42, 0.05);
}

.lp-chip--active {
  background: #0f1f4a;
  color: #ffffff;
  border-color: #0f1f4a;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(15, 31, 74, 0.18);
}

.lp-chip--active:hover {
  background: #1a3472;
  border-color: #1a3472;
  color: #ffffff;
  transform: translateY(-1px);
}

.lp-filter-right {
  display: flex;
  align-items: center;
  gap: 0.85em;
}

.lp-result-count {
  font-size: 0.76em;
  color: #64748b;
  white-space: nowrap;
  font-weight: 400;
}

.lp-result-count strong {
  color: #0f172a;
  font-weight: 600;
}

.lp-sort-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.lp-sort-sel {
  appearance: none;
  -webkit-appearance: none;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.5em;
  padding: 0.36em 2em 0.36em 0.75em;
  font-size: 0.76em;
  font-weight: 600;
  color: #1e293b;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
  transition: all 0.18s ease;
}

.lp-sort-sel:hover {
  border-color: #cbd5e1;
  background: #f8fafc;
}

.lp-sort-sel:focus {
  outline: none;
  border-color: #0284c7;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.12);
}

.lp-sort-ico {
  position: absolute;
  right: 0.7em;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 0.65em;
  color: #64748b;
  transition: color 0.18s ease;
}

.lp-sort-wrap:hover .lp-sort-ico {
  color: #0f172a;
}

.lp-active-filter {
  display: flex;
  align-items: center;
  gap: 0.45em;
  background: #fffbeb;
  border: 1px solid #fef3c7;
  border-radius: 0.5em;
  padding: 0.38em 0.8em;
  font-size: 0.76em;
  color: #92400e;
  margin-bottom: 0.875em;
}

.lp-active-filter strong {
  color: #78350f;
}

.lp-clear {
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
  color: #dc2626;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.76em;
  margin-left: auto;
}

.lp-clear:hover {
  text-decoration: underline;
}

/* ── Package Card ────────────────────────────────────────────── */
.lp-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 0.75em;
  display: flex;
  overflow: hidden;
  margin-bottom: 1.1em;
  transition: all .22s cubic-bezier(.4, 0, .2, 1);
  box-shadow: 0 1px 3px rgba(15, 23, 42, .04), 0 1px 2px rgba(15, 23, 42, .02);
}

.lp-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -4px rgba(15, 23, 42, .1);
  border-color: #cbd5e1;
}

/* Image col */
.lp-card-img-wrap {
  width: 17.1875em;
  min-height: 11em;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  background: #0f1f4a;
}

.lp-card-img-link {
  display: block;
  width: 100%;
  height: 100%;
}

.lp-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  display: block;
}

.lp-card:hover .lp-card-img {
  transform: scale(1.07);
}

.lp-code-badge {
  position: absolute;
  top: 0.75em;
  left: 0;
  background: #e53e3e;
  color: #fff;
  font-size: 0.75em;
  /* 12px */
  font-weight: 600;
  padding: 0.417em 1.167em 0.417em 0.833em;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 0 0.417em 0.417em 0;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, .2);
}

.lp-visa-country-badge {
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%) !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.35) !important;
}

.lp-visa-country-badge i {
  color: #4ade80 !important;
  margin-right: 0.35rem;
  font-size: 1.05em;
  vertical-align: -0.05em;
  filter: drop-shadow(0 0 2px rgba(74, 222, 128, 0.4));
}

.lp-featured-badge {
  position: absolute;
  bottom: 0.75em;
  left: 0.75em;
  background: #f59e0b;
  color: #fff;
  font-size: 0.75em;
  font-weight: 600;
  padding: 0.417em 0.917em;
  border-radius: 0.417em;
  display: inline-flex;
  align-items: center;
  gap: 0.333em;
}

/* Info col */
.lp-card-info {
  flex: 1;
  padding: 0.8em 1.1em;
  display: flex;
  flex-direction: column;
  gap: 0.38em;
}

/* Title row */
.lp-card-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.85em;
}

.lp-card-title {
  font-size: 1.05em;
  font-weight: 600;
  color: #0f172a;
  margin: 0;
  line-height: 1.34;
  letter-spacing: -0.01em;
}

.lp-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.lp-card-title a:hover {
  color: #0284c7;
}

.lp-card-duration {
  white-space: nowrap;
  font-size: 0.72em;
  font-weight: 600;
  color: #0369a1;
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  flex-shrink: 0;
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  padding: 0.22em 0.55em;
  border-radius: 0.375em;
  letter-spacing: 0.01em;
}

/* Location / Route */
.lp-card-location {
  font-size: 0.76em;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 0.45em;
  flex-wrap: wrap;
  font-weight: 500;
  line-height: 1.4;
}

.lp-loc-dest {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  color: #0f172a;
  font-weight: 600;
}

.lp-loc-dest i {
  color: #0284c7;
}

.lp-route-sep {
  color: #cbd5e1;
  font-weight: bold;
}

.lp-route-text {
  color: #64748b;
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  background: #f8fafc;
  padding: 0.15em 0.5em;
  border-radius: 0.3em;
  border: 1px solid #e2e8f0;
  font-size: 0.92em;
}

.lp-route-text i {
  color: #94a3b8;
  font-size: 0.85em;
}

/* Theme Tags */
.lp-card-tags {
  display: flex;
  align-items: center;
  gap: 0.4em;
  flex-wrap: wrap;
}

.lp-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
  background: #f8fafc;
  color: #334155;
  border: 1px solid #e2e8f0;
  padding: 0.16em 0.52em;
  border-radius: 2em;
  font-size: 0.7em;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.lp-tag--featured {
  background: #fffbeb;
  color: #b45309;
  border-color: #fde68a;
}

.lp-tag--featured i {
  color: #f59e0b;
}

.lp-tag--hotel {
  background: #f0fdf4;
  color: #15803d;
  border-color: #bbf7d0;
}

.lp-tag--hotel i {
  color: #16a34a;
}

.lp-tag--custom {
  background: #f5f3ff;
  color: #6d28d9;
  border-color: #ddd6fe;
}

.lp-tag--custom i {
  color: #7c3aed;
}

/* Amenities strip */
.lp-amenities-strip {
  display: flex;
  align-items: center;
  gap: 0.35em;
  flex-wrap: wrap;
  padding: 0.3em 0;
  margin: 0.2em 0;
  border-top: 1px dashed #e2e8f0;
  border-bottom: 1px dashed #e2e8f0;
}

.lp-amenity {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.32em;
  width: auto;
  min-height: unset;
  padding: 0.18em 0.52em;
  border-radius: 2em;
  background: #f1f5f9;
  color: #475569;
  font-size: 0.68em;
  font-weight: 500;
  white-space: nowrap;
  cursor: default;
  transition: all 0.18s ease;
}

.lp-amenity i {
  color: #0284c7;
  font-size: 0.88em;
}

.lp-amenity:hover {
  background: #e0f2fe;
  color: #0369a1;
  transform: translateY(-1px);
}

/* Native tooltip already handled by title attr; no extra CSS needed */

/* Old inclusions row (kept for any legacy usage) */
.lp-inclusions-row {
  border-top: 0.0625rem dashed #e2e8f0;
  padding-top: 0.75em;
}

.lp-inc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.625em;
}

.lp-inc-label {
  font-size: 0.6875em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
}

.lp-inc-icons {
  display: flex;
  gap: 0.875em;
  flex-wrap: wrap;
}

.lp-inc-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3em;
  font-size: 0.78125em;
  color: #475569;
  font-weight: 600;
  transition: transform 0.2s ease;
}

.lp-inc-item:hover {
  transform: translateY(-0.125em);
}

.lp-inc-icon-wrap {
  width: 2.6em;
  height: 2.6em;
  border-radius: 0.6em;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1em;
  transition: all 0.2s ease;
  box-shadow: 0 0.0625rem 0.2em rgba(0, 0, 0, 0.03);
}

.lp-inc--hotel .lp-inc-icon-wrap {
  background: #eff6ff;
  color: #2563eb;
  border: 0.0625rem solid #dbeafe;
}

.lp-inc--ferry .lp-inc-icon-wrap {
  background: #ecfeff;
  color: #0891b2;
  border: 0.0625rem solid #cffafe;
}

.lp-inc--meals .lp-inc-icon-wrap {
  background: #fffbeb;
  color: #d97706;
  border: 0.0625rem solid #fef3c7;
}

.lp-inc--sight .lp-inc-icon-wrap {
  background: #f5f3ff;
  color: #7c3aed;
  border: 0.0625rem solid #ede9fe;
}

.lp-inc--taxes .lp-inc-icon-wrap {
  background: #ecfdf5;
  color: #059669;
  border: 0.0625rem solid #d1fae5;
}

.lp-inc-item:hover .lp-inc-icon-wrap {
  box-shadow: 0 0.25em 0.6em rgba(0, 0, 0, 0.08);
}

/* Highlights Box */
.lp-highlights-wrap {
  background: #f8fafc;
  border-radius: 0.5em;
  padding: 0.625em 0.875em;
  border-left: 0.2em solid #2e9e3e;
}

.lp-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35em;
}

.lp-highlights li {
  font-size: 0.8125em;
  color: #334155;
  display: flex;
  align-items: baseline;
  gap: 0.45em;
  line-height: 1.45;
  font-weight: 500;
}

.lp-hl-check {
  color: #2e9e3e;
  font-size: 0.9em;
  flex-shrink: 0;
}

/* Price + CTA row */
.lp-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.65em;
  border-top: 1px solid #f1f5f9;
  gap: 0.8em;
  flex-wrap: wrap;
  margin-top: auto;
}

.lp-price-block {
  display: flex;
  flex-direction: column;
  gap: 0.1em;
}

.lp-quote-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.25em;
  font-size: 0.6em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #15803d;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  padding: 0.16em 0.48em;
  border-radius: 2em;
  width: fit-content;
}

.lp-quote-pill i {
  font-size: 0.85em;
}

.lp-price-on-req {
  font-size: 0.82em;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.lp-price-note {
  font-size: 0.65em;
  color: #94a3b8;
  font-weight: 400;
  line-height: 1.25;
}

.lp-card-cta-group {
  display: flex;
  gap: 0.5em;
  align-items: center;
}

.lp-enquire-btn,
.lp-book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  padding: 0.42em 0.9em;
  border-radius: 0.45em;
  font-size: 0.76em;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.18s ease;
  white-space: nowrap;
}

.lp-enquire-btn {
  background: #ffffff;
  color: #16a34a;
  border: 1px solid #86efac;
}

.lp-enquire-btn:hover {
  background: #f0fdf4;
  border-color: #22c55e;
  color: #15803d;
  box-shadow: 0 2px 8px rgba(22, 163, 74, 0.15);
  transform: translateY(-1px);
}

.lp-book-btn {
  background: #0f1f4a;
  color: #ffffff;
  border: 1px solid #0f1f4a;
  box-shadow: 0 2px 6px rgba(15, 31, 74, 0.15);
}

.lp-book-btn:hover {
  background: #1a3472;
  border-color: #1a3472;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(15, 31, 74, 0.22);
  transform: translateY(-1px);
}

.lp-book-btn i {
  transition: transform 0.2s ease;
  font-size: 0.85em;
}

.lp-book-btn:hover i {
  transform: translateX(0.18em);
}

/* ── Split CTA: Let's Talk + Enquire Now ─────────────────── */
.lp-btn-talk,
.lp-btn-enquire-now {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.38em;
  padding: 0.44em 1em;
  border-radius: 0.45em;
  font-size: 0.75em;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.18s ease;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

/* Let's Talk — WhatsApp green ghost */
.lp-btn-talk {
  background: #ffffff;
  color: #16a34a;
  border: 1.5px solid #86efac;
}

.lp-btn-talk:hover {
  background: #f0fdf4;
  border-color: #22c55e;
  color: #15803d;
  box-shadow: 0 2px 8px rgba(22, 163, 74, 0.18);
  transform: translateY(-1px);
}

.lp-btn-talk i {
  font-size: 1em;
}

/* Enquire Now — deep navy solid primary */
.lp-btn-enquire-now {
  background: linear-gradient(135deg, #0f1f4a 0%, #1e3a8a 100%);
  color: #ffffff;
  border: 1.5px solid transparent;
  box-shadow: 0 2px 8px rgba(15, 31, 74, 0.22);
}

.lp-btn-enquire-now:hover {
  background: linear-gradient(135deg, #1a3472 0%, #2563eb 100%);
  box-shadow: 0 4px 14px rgba(15, 31, 74, 0.30);
  transform: translateY(-1px);
  color: #ffffff;
}

.lp-btn-enquire-now i {
  font-size: 0.88em;
  transition: transform 0.18s ease;
}

.lp-btn-enquire-now:hover i {
  transform: translateX(0.15em) translateY(-0.1em);
}

/* ── Empty State ─────────────────────────────────────────────── */
.lp-empty-state {
  background: #fff;
  border-radius: 0.875em;
  border: 1px solid #e2e8f0;
  padding: 3.5em 2em;
  text-align: center;
}

.lp-empty-icon {
  width: 4.25em;
  height: 4.25em;
  background: #eff6ff;
  color: #055ecd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.875em;
  margin: 0 auto 1.125em;
}

.lp-empty-state h3 {
  font-size: 1.375em;
  font-weight: 600;
  color: #0f1f4a;
}

.lp-empty-state p {
  font-size: 0.938em;
  color: #64748b;
}

/* ── FAQs ───────────────────────────────────────────────────── */
/* ══ FAQ Section ══════════════════════════════════════════════════════════ */
.lp-faq-section {
  margin-top: 2.5em;
}

.lp-faq-title {
  font-size: 1.15em;
  font-weight: 700;
  color: #0f1a3d;
  margin-bottom: 1em;
  padding-bottom: 0.5em;
  display: flex;
  align-items: center;
  gap: 0.5em;
  border-bottom: 2px solid #e8edf5;
}

.lp-faq-title::before {
  content: '';
  display: inline-block;
  width: 3px;
  height: 1.1em;
  background: linear-gradient(180deg, #0284c7, #16a34a);
  border-radius: 3px;
  flex-shrink: 0;
}

/* Items */
.lp-accordion .lp-faq-item {
  background: #fff;
  border: 1px solid #e2eaf5 !important;
  border-radius: 0.65em !important;
  margin-bottom: 0.6em;
  overflow: hidden;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.lp-accordion .lp-faq-item:hover {
  box-shadow: 0 4px 16px rgba(5, 94, 205, 0.06);
  border-color: #b8d0f5 !important;
}

/* Trigger button */
.lp-accordion .accordion-button {
  background: #fff;
  color: #0f1a3d;
  font-size: 0.68em;
  font-weight: 500;
  padding: 0.85em 1.1em;
  box-shadow: none !important;
  transition: background 0.25s ease, color 0.25s ease;
}

.lp-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23055ecd' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  margin-left: auto;
}

/* Open state */
.lp-accordion .accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, #f0f6ff 0%, #f5fff7 100%);
  color: #055ecd;
  border-bottom: 1px solid #dceeff;
}

.lp-accordion .lp-faq-item:has(.accordion-button:not(.collapsed)) {
  border-color: #b8d0f5 !important;
  box-shadow: 0 6px 24px rgba(5, 94, 205, 0.1);
}

/* Body */
.lp-accordion .accordion-body {
  font-size: 0.78em;
  color: #475569;
  line-height: 1.65;
  padding: 0.75em 1.1em 1em;
  border-top: none;
}

/* ── Sidebar ──────────────────────────────────────────────────── */
.lp-sidebar {
  position: sticky;
  top: 1.25em;
  display: flex;
  flex-direction: column;
  gap: 1.25em;
  font-size: 1.6rem;
  /* reset font context same as wrapper */
}

.lp-sidebar-cta-card {
  background: linear-gradient(145deg, #0f1f4a, #1a3472);
  border-radius: 0.875em;
  padding: 1.5em 1.25em;
  color: #fff;
  text-align: center;
  box-shadow: 0 6px 20px rgba(15, 31, 74, .2);
}

.lp-sidebar-cta-icon {
  width: 3.5em;
  height: 3.5em;
  background: rgba(255, 255, 255, .15);
  border-radius: 0.75em;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  margin: 0 auto 0.875em;
}

.lp-sidebar-cta-card h4 {
  font-size: 1.125em;
  font-weight: 600;
  color: #fff;
  margin: 0 0 0.375em;
}

.lp-sidebar-cta-card p {
  font-size: 0.875em;
  color: #a5b4fc;
  line-height: 1.55;
  margin: 0 0 1.125em;
}

.lp-sidebar-btn-primary,
.lp-sidebar-btn-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  width: 100%;
  padding: 0.75em 1em;
  border-radius: 0.5625em;
  font-size: 0.938em;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all .2s;
  margin-bottom: 0.625em;
}

.lp-sidebar-btn-primary {
  background: #fff;
  color: #0f1f4a;
}

.lp-sidebar-btn-primary:hover {
  background: #f1f5f9;
  color: #055ecd;
}

.lp-sidebar-btn-wa {
  background: #2e9e3e;
  color: #fff;
  box-shadow: 0 3px 10px rgba(46, 158, 62, .3);
  margin-bottom: 0;
}

.lp-sidebar-btn-wa:hover {
  background: #268734;
  color: #fff;
}

.lp-sidebar-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 0.75em;
  padding: 1.1em;
  box-shadow: 0 1px 3px rgba(15, 23, 42, .04);
}

.lp-sidebar-heading {
  font-size: 0.88em;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 0.75em;
  padding-bottom: 0.5em;
  border-bottom: 2px solid #f1f5f9;
}

.lp-sidebar-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lp-sidebar-links li {
  border-bottom: 1px solid #f8fafc;
}

.lp-sidebar-links li:last-child {
  border-bottom: none;
}

.lp-sidebar-links li a {
  display: flex;
  align-items: center;
  gap: 0.4em;
  padding: 0.45em 0;
  font-size: 0.78em;
  font-weight: 500;
  color: #334155;
  text-decoration: none;
  transition: all .15s;
}

.lp-sidebar-links li a:hover {
  color: #0284c7;
  padding-left: 0.25em;
}

.lp-sidebar-links li.lp-sidebar-active a {
  color: #0284c7;
  font-weight: 700;
}

.lp-sl-arrow {
  font-size: 0.6em;
  color: #94a3b8;
  transition: color .15s;
}

.lp-sidebar-links li a:hover .lp-sl-arrow,
.lp-sidebar-links li.lp-sidebar-active .lp-sl-arrow {
  color: #0284c7;
}

/* Why Us stats */
.lp-stat-row {
  display: flex;
  align-items: center;
  gap: 0.65em;
  padding: 0.5em 0;
  border-bottom: 1px solid #f8fafc;
}

.lp-stat-row:last-child {
  border-bottom: none;
}

.lp-stat-ico {
  width: 2.2em;
  height: 2.2em;
  background: #eff6ff;
  color: #0284c7;
  border-radius: 0.45em;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9em;
  flex-shrink: 0;
}

.lp-stat-row>div:last-child {
  display: flex;
  flex-direction: column;
}

.lp-stat-row strong {
  font-size: 0.78em;
  font-weight: 600;
  color: #0f1f4a;
  line-height: 1.25;
}

.lp-stat-row span {
  font-size: 0.7em;
  color: #64748b;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .lp-grid {
    grid-template-columns: 1fr 17.5em;
  }

  .lp-card-img-wrap {
    width: 15em;
  }
}

@media (max-width: 860px) {
  .lp-grid {
    grid-template-columns: 1fr;
  }

  .lp-sidebar {
    position: static;
  }
}

@media (max-width: 640px) {
  .lp-card {
    flex-direction: column;
  }

  .lp-card-img-wrap {
    width: 100%;
    height: 13.125em;
    min-height: unset;
  }

  .lp-page-header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .lp-card-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .lp-card-cta-group {
    width: 100%;
  }

  .lp-enquire-btn,
  .lp-book-btn {
    flex: 1;
    justify-content: center;
  }

  .lp-filter-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .lp-filter-right {
    width: 100%;
    justify-content: space-between;
  }

  .lp-page-title {
    font-size: 1.375em;
  }
}

/* ── Interactive Modify Search Bar ────────────────────────────── */
.lp-search-bar-wrap {
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  padding: 1rem 0;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
}

.lp-search-bar-form {
  display: flex;
  align-items: flex-end;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.lp-search-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.lp-search-field label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.lp-search-field label i {
  color: #0284c7;
}

.lp-search-input {
  height: 2.6rem;
  padding: 0 0.85rem;
  font-size: 0.875rem;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  color: #0f172a;
  background: #f8fafc;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  font-family: inherit;
}

.lp-search-input:focus {
  background: #fff;
  border-color: #0284c7;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

.lp-sf-dest {
  flex: 2;
  min-width: 180px;
}

.lp-sf-cat,
.lp-sf-date,
.lp-sf-pax {
  flex: 1.2;
  min-width: 140px;
}

.lp-sf-btn {
  flex: 0 0 auto;
}

.lp-search-submit-btn {
  height: 2.6rem;
  padding: 0 1.4rem;
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(2, 132, 199, 0.35);
}

.lp-search-submit-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.45);
}

/* ── Price Tag with Value ─────────────────────────────────────── */
.lp-price-val {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  margin: 0.15rem 0;
}

.lp-from-label {
  font-size: 0.65rem;
  color: #64748b;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.lp-price-val strong {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
}

.lp-pax-unit {
  font-size: 0.68rem;
  color: #64748b;
}

/* ── Sidebar Help Card ────────────────────────────────────────── */
.lp-sidebar-help {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
  text-align: center;
  padding: 1.2rem 1rem;
  border-radius: 0.75em;
}

.lp-help-icon {
  width: 38px;
  height: 38px;
  margin: 0 auto 0.65rem;
  background: rgba(2, 132, 199, 0.25);
  border: 1px solid rgba(56, 189, 248, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #38bdf8;
  font-size: 1.05rem;
}

.lp-sidebar-help h5 {
  font-size: 0.88rem;
  font-weight: 700;
  margin: 0 0 0.35rem;
  color: #f8fafc;
}

.lp-sidebar-help p {
  font-size: 0.75rem;
  color: #94a3b8;
  margin: 0 0 0.85rem;
  line-height: 1.4;
}

.lp-sidebar-help-btn {
  width: 100%;
  padding: 0.5rem 0.85rem;
  background: #0284c7;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.75rem;
  border: none;
  border-radius: 0.45em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  transition: background 0.2s;
}

.lp-sidebar-help-btn:hover {
  background: #0369a1;
}

/* ── Multi-Service Specific Card Styles ───────────────────────── */
/* Hotel badges & room styles */
.lp-tag--star {
  background: #fef3c7;
  color: #b45309;
  border-color: #fde68a;
  font-weight: 700;
}

.lp-hotel-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.lp-amenity-pill {
  font-size: 0.75rem;
  background: #f1f5f9;
  color: #334155;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.lp-amenity-pill i {
  color: #0284c7;
  font-size: 0.8rem;
}

/* Cab vehicle specs */
.lp-cab-specs {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0.5rem 0;
  font-size: 0.8125rem;
  color: #475569;
  flex-wrap: wrap;
}

.lp-cab-spec-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.lp-cab-spec-item i {
  color: #0ea5e9;
}

/* Flight row styling */
.lp-flight-route-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 0.85rem 1.1rem;
  margin: 0.65rem 0;
}

.lp-flight-point {
  text-align: center;
}

.lp-flight-point .time {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
}

.lp-flight-point .city {
  font-size: 0.75rem;
  color: #64748b;
  text-transform: uppercase;
  font-weight: 600;
}

.lp-flight-duration-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
  padding: 0 1rem;
}

.lp-flight-duration-col span {
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 500;
}

.lp-flight-line {
  width: 100%;
  height: 2px;
  background: #cbd5e1;
  position: relative;
}

.lp-flight-line::after {
  content: '✈';
  position: absolute;
  right: 0;
  top: -8px;
  font-size: 0.85rem;
  color: #0284c7;
}

.lp-flight-stops {
  font-size: 0.7rem;
  color: #16a34a;
  font-weight: 600;
}

/* Driver card badge */
.lp-driver-exp {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #16a34a;
  font-weight: 700;
  font-size: 0.8125rem;
  background: #dcfce7;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
}

/* ── Flight Brand Column & Badges ────────────────────────────── */
.lp-card-img-wrap.lp-flight-brand-col {
  width: 14em;
  min-height: unset;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5em 1em;
  border-right: 1px solid #e2e8f0;
}

.lp-flight-brand-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.4em;
  width: 100%;
}

.lp-flight-logo-circle {
  width: 3.4em;
  height: 3.4em;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
  margin-bottom: 0.2em;
}

.lp-brand-indigo {
  background: #eff6ff;
  color: #1d4ed8;
  border: 2px solid #bfdbfe;
}

.lp-brand-airindia {
  background: #fef2f2;
  color: #dc2626;
  border: 2px solid #fecaca;
}

.lp-brand-vistara {
  background: #faf5ff;
  color: #7e22ce;
  border: 2px solid #e9d5ff;
}

.lp-brand-spicejet {
  background: #fff7ed;
  color: #ea580c;
  border: 2px solid #fed7aa;
}

.lp-brand-emirates {
  background: #fff1f2;
  color: #e11d48;
  border: 2px solid #fecdd3;
}

.lp-airline-title {
  font-size: 1em;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.lp-flight-code-badge {
  font-size: 0.75em;
  font-weight: 600;
  color: #475569;
  background: #e2e8f0;
  padding: 0.2em 0.6em;
  border-radius: 4px;
  letter-spacing: 0.04em;
}

.lp-flight-class-badge {
  font-size: 0.7em;
  color: #0284c7;
  font-weight: 600;
}