/*
 * home.css — Homepage Premium Hero & Layout.
 * All font-sizes use CSS variables or clamp() for fluid responsiveness.
 */

/* ═══════════════════════════════════════════════════════════════════════════
   HERO — Full-viewport immersive background with search widget
   ═══════════════════════════════════════════════════════════════════════════ */

.home-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  flex-direction: column;
  overflow: visible;
  z-index: 10;
}

.hero-bg-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.70s ease-in-out;
  will-change: opacity;
  z-index: 0;
}

.hero-bg-layer.active {
  opacity: 1;
}

/* Gradient overlay — darker at very top (navbar area) for text readability, darker at bottom */
.hero-bg-layer::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(175deg,
      rgba(5, 10, 35, 0.76) 0%,
      /* dark at top — navbar area */
      rgba(10, 18, 50, 0.55) 22%,
      /* eases off below navbar */
      rgba(15, 26, 61, 0.42) 45%,
      rgba(10, 18, 45, 0.72) 72%,
      rgba(10, 18, 45, 0.92) 100%);
}

.hero-bg-tours {
  background-image: url('../images/heroimages/Tour_Packages.webp');
}

.hero-bg-hotels.active,
.hero-bg-hotels.loaded {
  background-image: url('../images/heroimages/Hotels.webp');
}

.hero-bg-cabs.active,
.hero-bg-cabs.loaded {
  background-image: url('../images/heroimages/Outstation_Cabs.webp');
}

.hero-bg-visa.active,
.hero-bg-visa.loaded {
  background-image: url('../images/heroimages/Visa_Passport.webp');
}

.hero-bg-driver.active,
.hero-bg-driver.loaded {
  background-image: url('../images/heroimages/Driver_Service.webp');
}

.hero-bg-tickets.active,
.hero-bg-tickets.loaded {
  background-image: url('../images/heroimages/Flights.webp');
}

/* ── Hero inner ──────────────────────────────────────────────────────────── */
.hero-inner {
  position: relative;
  z-index: 20;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* vertically centered in hero */
  align-items: stretch;
  gap: clamp(4.5rem, 7vh, 7.5rem);
  padding-top: clamp(8.5rem, 13vh, 13rem);
  margin-top: 3%;
}

/* ── Headline area ───────────────────────────────────────────────────────── */
.hero-headline-area {
  text-align: center;
  padding: 0 1.6rem;
  margin-top: clamp(1rem, 2vh, 2.5rem);
  margin-bottom: 0;
  /* gap on .hero-inner handles spacing */
}

.home-hero-headline {
  font-size: clamp(1.8rem, 2.4vw, 3.2rem);
  font-weight: var(--font-weight-semibold);
  line-height: 1.25;
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
  margin-bottom: clamp(2rem, 3.5vh, 3.5rem);
  letter-spacing: -0.01em;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(2rem);
  animation: heroFadeUp 0.75s 0.1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@media (max-width: 767px) {
  .home-hero-headline {
    white-space: normal;
  }
}

.hero-sub-text {
  font-size: var(--fluid-hero-subtitle);
  color: rgba(255, 255, 255, 0.88);
  font-weight: var(--font-weight-medium);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.40);
  margin-bottom: clamp(1.6rem, 3vh, 2.8rem);
  opacity: 0;
  animation: heroFadeUp 0.75s 0.25s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* Trust badges row */
.hero-trust-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1.2rem, 3vw, 3.2rem);
  flex-wrap: wrap;
  opacity: 0;
  animation: heroFadeUp 0.75s 0.40s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-trust-badge {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 5rem;
  padding: 0.7rem 1.6rem;
  font-size: clamp(1.2rem, 1.4vw, 1.5rem);
  font-weight: var(--font-weight-semibold);
  color: #fff;
  white-space: nowrap;
}

.hero-trust-badge i {
  font-size: clamp(1.3rem, 1.5vw, 1.6rem);
  color: var(--color-amber);
}

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   SEARCH CARD  — Reference-style: dark tab bar + flat white search row
   ═══════════════════════════════════════════════════════════════════════════ */

/* Logo-matched color palette for hero search widget */
:root {
  --hero-tab-bg: rgba(15, 31, 74, 0.42);
  /* transparent glass deep navy */
  --hero-tab-hover: rgba(255, 255, 255, 0.15);
  /* frosted glass hover         */
  --hero-tab-active: #2e9e3e;
  /* logo brand green ("TRIP") — active    */
  --hero-teal: #2e9e3e;
  /* brand green — search btn & accents    */
  --hero-teal-dark: #1e7a2e;
  /* darker green — button hover           */
}

.hero-search-card-wrap {
  position: relative;
  z-index: 25;
  opacity: 0;
  animation: heroFadeUp 0.75s 0.40s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* Outer card — container with rounded corners and outer drop shadow */
.hero-search-box {
  background: transparent;
  border-radius: 0.8rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  overflow: visible;
  width: 100%;
}

/* ═══════════════════════════════════════════════════════════════════════════
   TAB BAR — Transparent Frosted Glass Style (Glassmorphism)
   ═══════════════════════════════════════════════════════════════════════════ */

.hero-tab-bar {
  display: flex;
  align-items: stretch;
  overflow-x: auto;
  scrollbar-width: none;
  background: rgba(15, 31, 74, 0.40);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  padding: 0;
  border-radius: 0.8rem 0.8rem 0 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.30);
}

.hero-tab-bar::-webkit-scrollbar {
  display: none;
}

.hero-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1.15rem 1.8rem;
  border: none;
  background: transparent;
  font-size: clamp(1.15rem, 1.2vw, 1.35rem);
  font-weight: 600;
  font-family: var(--font-family-base);
  color: rgba(255, 255, 255, 0.88);
  cursor: pointer;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: all 0.22s cubic-bezier(0.2, 0.8, 0.2, 1);
  flex-shrink: 0;
  letter-spacing: 0.015em;
  position: relative;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

.hero-tab-btn:first-child {
  border-top-left-radius: 0.75rem;
}

.hero-tab-btn:last-child {
  border-top-right-radius: 0.75rem;
}

.hero-tab-btn i {
  font-size: clamp(1.2rem, 1.3vw, 1.4rem);
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.2s, transform 0.2s;
}

/* Subtle frosted divider between inactive tab buttons */
.hero-tab-btn:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
  pointer-events: none;
}

.hero-tab-btn.active::after,
.hero-tab-btn:hover::after {
  opacity: 0;
}

/* Hover state — frosted glass glow */
.hero-tab-btn:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-tab-btn:hover i {
  color: #ffffff;
  transform: translateY(-1px);
}

/* Active — vibrant green glass with specular highlight and depth */
.hero-tab-btn.active {
  background: linear-gradient(135deg, rgba(46, 158, 62, 0.85) 0%, rgba(30, 122, 46, 0.90) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #ffffff;
  font-weight: 700;
  border-bottom-color: transparent;
  box-shadow: 0 4px 18px rgba(46, 158, 62, 0.40), inset 0 1px 1px rgba(255, 255, 255, 0.35);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.hero-tab-btn.active i {
  color: #ffffff;
  transform: scale(1.1);
}

/* ═══════════════════════════════════════════════════════════════════════════
   SEARCH PANEL BODY — flat white with divider-style fields
   ═══════════════════════════════════════════════════════════════════════════ */

.hero-tab-panels {
  padding: 0;
  background: #ffffff;
  border-radius: 0 0 0.8rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-top: none;
}

.hero-tab-pane {
  display: none;
}

.hero-tab-pane.active {
  display: block;
  animation: paneFadeIn 0.25s ease;
}

@keyframes paneFadeIn {
  from {
    opacity: 0;
    transform: translateY(0.4rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Sub-label — hidden in compact mode */
.hero-tab-sublabel {
  display: none;
}

/* ─── Sub-options strip — trip type radios (One-Way / Return / Multi-City) ── */
.hero-sub-options {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1.6rem 0;
  background: #ffffff;
  flex-wrap: wrap;
}

.hero-sub-radio {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: #4a5568;
  cursor: pointer;
  padding: 0.3rem 0.9rem;
  border-radius: 2rem;
  border: 1.5px solid transparent;
  transition: color 0.18s, border-color 0.18s, background 0.18s;
  user-select: none;
  white-space: nowrap;
}

.hero-sub-radio:hover {
  color: var(--hero-tab-active);
  background: rgba(46, 158, 62, 0.06);
}

.hero-sub-radio input[type="radio"] {
  accent-color: var(--hero-tab-active);
  width: 1.4rem;
  height: 1.4rem;
  cursor: pointer;
  flex-shrink: 0;
}

.hero-sub-radio:has(input:checked) {
  color: var(--hero-tab-active);
  border-color: var(--hero-tab-active);
  background: rgba(46, 158, 62, 0.08);
  font-weight: 700;
}

/* ─── Search row: flat, borderless fields separated by thin dividers ─────── */
.hero-search-row {
  display: flex;
  align-items: stretch;
  gap: 0;
  flex-wrap: nowrap;
  min-height: 5.4rem;
  border-top: 1px solid #e8ecf0;
}

/* Field group */
.hero-search-field {
  flex: 1;
  min-width: 9rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  position: relative;
  /* vertical divider between fields */
  border-right: 1px solid #dde3ea;
}

.hero-search-field:last-of-type {
  border-right: none;
}

/* Show labels as tiny uppercase caption above the value */
.hero-search-field label {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: #8a96a8;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.7rem 1.4rem 0;
  pointer-events: none;
  white-space: nowrap;
}

/* Input / Select inside each field */
.hero-search-field .filter-control {
  height: auto;
  border: none;
  border-radius: 0;
  background: transparent;
  font-size: clamp(1.3rem, 1.35vw, 1.5rem);
  font-weight: 600;
  color: #1a2540;
  padding: 0.2rem 1.4rem 0.8rem;
  width: 100%;
  font-family: var(--font-family-base);
  box-shadow: none;
  outline: none;
  cursor: pointer;
  transition: background 0.15s;
  -webkit-appearance: none;
  appearance: none;
}

/* Date inputs: expose the calendar icon */
.hero-search-field .filter-control[type="date"] {
  cursor: pointer;
}

.hero-search-field .filter-control::placeholder {
  color: #b0bac8;
  font-weight: 500;
  font-size: clamp(1.2rem, 1.25vw, 1.35rem);
}

.hero-search-field .filter-control:focus {
  outline: none;
  background: #f3fbfd;
}

/* Hover tint on entire field */
.hero-search-field:hover {
  background: #f7fbfe;
}

/* ─── Rooms & Guests Stepper Widget (MakeMyTrip Style) ────────────────────── */
.hero-rg-field {
  position: relative;
  user-select: none;
  flex: 1.4;
  min-width: 17rem;
}

.hero-rg-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: clamp(1.25rem, 1.3vw, 1.45rem);
  font-weight: 600;
  color: #1a2540;
  padding: 0.2rem 1.4rem 0.8rem;
  font-family: inherit;
  text-align: left;
  outline: none;
  box-shadow: none;
  transition: color 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}

.hero-rg-trigger span,
#hs_hotel_rooms_display {
  white-space: nowrap;
  display: inline-block;
}

.hero-rg-arrow {
  font-size: 1.1rem;
  color: #8a96a8;
  margin-left: 0.6rem;
  transition: transform 0.22s ease, color 0.22s ease;
  flex-shrink: 0;
}

.hero-rg-field.active-trigger {
  background: #f0f7ff;
}

.hero-rg-field.active-trigger .hero-rg-trigger {
  color: var(--hero-tab-active, #2e9e3e);
}

.hero-rg-field.active-trigger .hero-rg-arrow {
  transform: rotate(180deg);
  color: var(--hero-tab-active, #2e9e3e);
}

.hero-rg-popover {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  width: 350px;
  max-width: 95vw;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.16), 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
  padding: 1.8rem 2.0rem 1.6rem;
  z-index: 1100;
  text-align: left;
  cursor: default;
  max-height: 80vh;
  overflow-y: auto;
  scrollbar-width: thin;
}

.hero-rg-popover.open {
  display: block;
  animation: rgFadeIn 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes rgFadeIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-rg-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
  border-bottom: 1px solid #f1f5f9;
}

.hero-rg-row:last-of-type {
  border-bottom: none;
}

.hero-rg-label-group {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.hero-rg-label {
  font-size: 1.45rem;
  font-weight: 700;
  color: #1f2937;
  letter-spacing: -0.01em;
}

.hero-rg-sub {
  font-size: 1.15rem;
  color: #8a96a8;
  font-weight: 500;
}

.hero-rg-stepper {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 104px;
  height: 38px;
  border: 1.5px solid #d6dbe1;
  border-radius: 8px;
  padding: 2px 4px;
  background: #ffffff;
  transition: border-color 0.15s ease;
}

.hero-rg-stepper:focus-within {
  border-color: var(--hero-tab-active, #2e9e3e);
}

.hero-rg-btn {
  border: none;
  background: transparent;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 500;
  color: #374151;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.15s ease, color 0.15s ease;
  user-select: none;
  padding: 0;
}

.hero-rg-btn:hover:not(.disabled):not(:disabled) {
  background: #f1f5f9;
  color: #111827;
}

.hero-rg-btn.disabled,
.hero-rg-btn:disabled {
  color: #cbd5e1;
  cursor: not-allowed;
  opacity: 0.55;
}

.hero-rg-val {
  font-size: 1.55rem;
  font-weight: 700;
  color: #111827;
  min-width: 24px;
  text-align: center;
  user-select: none;
  font-family: inherit;
}

/* ─── Child Ages Section ─────────────────────────────────────────────────── */
.hero-rg-child-ages-wrap {
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px dashed #e2e8f0;
}

.hero-rg-child-ages-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.2rem;
  font-weight: 700;
  color: #334155;
  margin-bottom: 0.85rem;
}

.hero-rg-child-ages-hint {
  font-size: 1.05rem;
  font-weight: 600;
  color: #94a3b8;
}

.hero-rg-child-ages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem 1.0rem;
}

.hero-rg-child-age-box {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.hero-rg-child-age-box label {
  font-size: 1.1rem !important;
  font-weight: 600 !important;
  color: #64748b !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  padding: 0 !important;
  pointer-events: auto !important;
  white-space: nowrap !important;
}

.hero-rg-child-age-select {
  width: 100%;
  height: 3.4rem;
  padding: 0 2.2rem 0 0.85rem;
  border: 1.5px solid #cbd5e1;
  border-radius: 6px;
  background-color: #f8fafc;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%2364748b' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
  background-size: 10px 6px;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  font-family: inherit;
  transition: border-color 0.18s, background-color 0.18s, box-shadow 0.18s;
}

.hero-rg-child-age-select:hover {
  background-color: #ffffff;
  border-color: #94a3b8;
}

.hero-rg-child-age-select:focus {
  background-color: #ffffff;
  border-color: var(--hero-tab-active, #2e9e3e);
  box-shadow: 0 0 0 2px rgba(46, 158, 62, 0.15);
}

.hero-rg-apply-btn {
  width: 100%;
  margin-top: 1.4rem;
  padding: 0.85rem 1.6rem;
  background: var(--hero-tab-active, #2e9e3e);
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.1s ease;
  box-shadow: 0 2px 6px rgba(46, 158, 62, 0.25);
}

.hero-rg-apply-btn:hover {
  background: var(--hero-teal-dark, #1e7a2e);
}

.hero-rg-apply-btn:active {
  transform: scale(0.99);
}

/* ─── Tour Packages Travellers Widget Popover ─────────────────────────── */
.hero-tour-pax-field {
  position: relative;
  user-select: none;
  min-width: 14rem;
}

.hero-tour-pax-popover {
  left: auto !important;
  right: 0 !important;
  width: 340px;
  max-width: 95vw;
}

.hero-tour-pax-notice {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.2rem;
  padding: 0.85rem 1.0rem;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 6px;
  color: #166534;
  font-size: 1.15rem;
  line-height: 1.4;
}

.hero-tour-pax-notice i {
  color: #2e9e3e;
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* ─── Flight Travellers & Class Widget Popover ─────────────────────────── */
.hero-flight-pax-field {
  position: relative;
  user-select: none;
  flex: 1.4;
  min-width: 18rem;
}

.hero-flight-pax-popover {
  left: auto !important;
  right: 0 !important;
  width: 360px;
  max-width: 95vw;
}

.hero-flight-class-section {
  margin-top: 1.4rem;
  border-top: 1px solid #edf2f7;
  padding-top: 1.4rem;
  margin-bottom: 0.8rem;
}

.hero-flight-class-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.0rem;
}

.hero-flight-class-pills {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}

.hero-flight-class-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.0rem;
  border: 1.5px solid #e2e8f0;
  border-radius: 0.8rem;
  background: #f8fafc;
  font-size: 1.25rem;
  font-weight: 600;
  color: #334155;
  cursor: pointer;
  transition: all 0.18s ease;
  user-select: none;
  text-align: center;
}

.hero-flight-class-pill input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.hero-flight-class-pill:hover {
  border-color: #cbd5e1;
  background: #f1f5f9;
  color: #0f1f4a;
}

.hero-flight-class-pill.active,
.hero-flight-class-pill:has(input:checked) {
  background: var(--hero-teal, #2e9e3e) !important;
  border-color: var(--hero-teal, #2e9e3e) !important;
  color: #ffffff !important;
  font-weight: 700;
  box-shadow: 0 3px 10px rgba(46, 158, 62, 0.28);
}

/* ─── Swap button — between From/To in flights/cabs ─────────────────────── */
.hero-swap-btn {
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  border: 2px solid #dde3ea;
  background: #ffffff;
  color: #2e9e3e;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  align-self: center;
  margin: 0 -1.7rem;
  z-index: 3;
  font-size: 1.3rem;
  transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.18s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
}

.hero-swap-btn:hover {
  background: var(--hero-teal);
  color: #ffffff;
  border-color: var(--hero-teal);
  transform: rotate(180deg);
}

/* ─── Clearance for From/To fields around swap button ───────────────────── */
.hero-field-from,
.hero-field-to,
.hero-search-field:has(+ .hero-swap-btn),
.hero-swap-btn+.hero-search-field {
  min-width: 14rem;
}

.hero-field-from label,
.hero-search-field:has(+ .hero-swap-btn) label {
  padding-right: 2.6rem !important;
}

.hero-field-from .filter-control,
.hero-search-field:has(+ .hero-swap-btn) .filter-control {
  padding-right: 2.6rem !important;
}

.hero-field-to label,
.hero-swap-btn+.hero-search-field label {
  padding-left: 2.8rem !important;
}

.hero-field-to .filter-control,
.hero-swap-btn+.hero-search-field .filter-control {
  padding-left: 2.8rem !important;
}

/* ─── Search CTA button ──────────────────────────────────────────────────── */
.hero-search-btn {
  height: 4.6rem;
  min-height: 4.6rem;
  padding: 0 2.8rem;
  margin: 0.5rem 0.8rem;
  background: linear-gradient(135deg, var(--hero-teal, #2e9e3e) 0%, var(--hero-teal-dark, #1e7a2e) 100%) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0.8rem;
  font-size: clamp(1.3rem, 1.35vw, 1.5rem);
  font-weight: 600;
  font-family: var(--font-family-base);
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  align-self: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(46, 158, 62, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.28);
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-search-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: skewX(-20deg);
  transition: left 0.65s ease;
  pointer-events: none;
}

.hero-search-btn:hover::before {
  left: 135%;
}

.hero-search-btn:hover {
  background: linear-gradient(135deg, #34b346 0%, #176824 100%) !important;
  box-shadow: 0 6px 20px rgba(46, 158, 62, 0.48), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transform: translateY(-1px);
  color: #ffffff !important;
}

.hero-search-btn:active {
  transform: translateY(1px);
  box-shadow: 0 2px 8px rgba(46, 158, 62, 0.35);
}

.hero-search-btn i {
  font-size: 1.4rem;
  transition: transform 0.22s ease;
}

.hero-search-btn:hover i {
  transform: scale(1.15) rotate(-6deg);
}

/* ── Notification bar ────────────────────────────────────────────────────── */
.hero-notice-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 0.85rem 1.8rem;
  background: #f4f8fc;
  border-top: 1px solid #e4eaf1;
  font-size: clamp(1.15rem, 1.3vw, 1.3rem);
  font-weight: var(--font-weight-medium);
  color: var(--color-navy);
  border-radius: 0 0 0.6rem 0.6rem;
  flex-wrap: wrap;
}

.notice-content-left {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.notice-badge {
  background: linear-gradient(135deg, #e11d48 0%, #be123c 100%);
  color: #ffffff;
  font-size: 1.0rem;
  font-weight: var(--font-weight-bold);
  border-radius: 0.5rem;
  padding: 0.2rem 0.7rem;
  flex-shrink: 0;
  letter-spacing: 0.08em;
  box-shadow: 0 2px 6px rgba(225, 29, 72, 0.28);
}

.hero-notice-bar i.fa-circle-info {
  color: var(--hero-teal);
  font-size: 1.3rem;
}

.hero-notice-bar a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--hero-teal);
  font-weight: var(--font-weight-bold);
  text-decoration: none;
  background: rgba(0, 184, 169, 0.10);
  padding: 0.4rem 1.2rem;
  border-radius: 2rem;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.hero-notice-bar a:hover {
  background: var(--hero-teal);
  color: #ffffff !important;
  transform: translateX(2px);
  box-shadow: 0 3px 10px rgba(0, 184, 169, 0.30);
}

/* ═══════════════════════════════════════════════════════════════════════════
   DRIVER & SERVICE TAB — Aaradhya Tour & Travel style trip switcher & inputs
   ═══════════════════════════════════════════════════════════════════════════ */
.driver-booking-form {
  padding: 1.8rem 2.0rem 2.2rem;
  background: #ffffff;
  border-radius: 0 0 1.2rem 1.2rem;
}

/* Trip Type Selector Tabs */
.driver-trip-tabs {
  display: flex;
  align-items: center;
  gap: 1.0rem;
  margin-bottom: 2.0rem;
  flex-wrap: wrap;
}

.driver-trip-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 1.35rem;
  font-weight: 600;
  color: #4b5563;
  cursor: pointer;
  padding: 1.0rem 2.2rem;
  border-radius: 0.9rem;
  border: 1.5px solid #e5e7eb;
  background: #f8fafc;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
  white-space: nowrap;
  position: relative;
}

.driver-trip-btn input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.driver-trip-btn i {
  font-size: 1.3rem;
  color: #64748b;
  transition: color 0.2s ease;
}

.driver-trip-btn:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
  color: #1e293b;
}

.driver-trip-btn:hover i {
  color: #334155;
}

/* Active trip button: Brand Green (#2e9e3e) — Zero orange! */
.driver-trip-btn.active,
.driver-trip-btn:has(input:checked) {
  background: var(--hero-teal, #2e9e3e) !important;
  border-color: var(--hero-teal, #2e9e3e) !important;
  color: #ffffff !important;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(46, 158, 62, 0.32);
}

.driver-trip-btn.active i,
.driver-trip-btn:has(input:checked) i {
  color: #ffffff !important;
}

/* Fields Container */
.driver-fields-container {
  width: 100%;
}

.driver-fields-group {
  width: 100%;
  animation: driverFieldFadeIn 0.24s ease-out;
}

@keyframes driverFieldFadeIn {
  from {
    opacity: 0;
    transform: translateY(3px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.driver-form-row {
  display: flex;
  align-items: flex-end;
  gap: 1.2rem;
  flex-wrap: nowrap;
  width: 100%;
}

.driver-field-item {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
  min-width: 0;
}

.driver-field-item.flex-pickup {
  flex: 1.8;
}

.driver-field-item.flex-drop {
  flex: 1.8;
}

.driver-field-item.flex-date {
  flex: 1.25;
}

.driver-field-item.flex-time {
  flex: 1.25;
}

.driver-field-item.flex-btn {
  flex: 0 0 auto;
}

.driver-field-item label {
  font-size: 1.2rem;
  font-weight: 700;
  color: #334155;
  white-space: nowrap;
  letter-spacing: 0.02em;
  margin: 0;
  user-select: none;
}

.driver-input-box {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background: #ffffff;
  border: 1.5px solid #dbe2ea;
  border-radius: 0.9rem;
  height: 4.8rem;
  padding: 0 1.3rem;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  box-sizing: border-box;
}

.driver-input-box.clickable-box {
  cursor: pointer;
}

.driver-input-box:hover {
  border-color: #cbd5e1;
}

.driver-input-box:focus-within {
  border-color: var(--hero-teal, #2e9e3e);
  box-shadow: 0 0 0 3px rgba(46, 158, 62, 0.16);
  background: #ffffff;
}

.driver-icon {
  font-size: 1.5rem;
  color: #94a3b8;
  flex-shrink: 0;
  transition: color 0.2s ease;
}

.driver-input-box:focus-within .driver-icon {
  color: var(--hero-teal, #2e9e3e);
}

.driver-input,
.driver-select {
  border: none;
  outline: none;
  background: transparent;
  font-size: 1.35rem;
  font-weight: 600;
  color: #1e293b;
  width: 100%;
  padding: 0;
  font-family: inherit;
}

.driver-input::placeholder {
  color: #94a3b8;
  font-weight: 400;
}

.driver-select {
  cursor: pointer;
  appearance: auto;
}

/* Swap button between pickup and drop */
.driver-swap-btn {
  width: 3.8rem;
  height: 3.8rem;
  border-radius: 50%;
  border: 1.5px solid #dbe2ea;
  background: #f8fafc;
  color: var(--hero-teal, #2e9e3e);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  margin-bottom: 0.5rem;
  align-self: flex-end;
  font-size: 1.35rem;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.driver-swap-btn:hover {
  background: var(--hero-teal, #2e9e3e);
  color: #ffffff;
  border-color: var(--hero-teal, #2e9e3e);
  transform: rotate(180deg);
  box-shadow: 0 4px 12px rgba(46, 158, 62, 0.28);
}

.driver-swap-btn:active {
  transform: rotate(180deg) scale(0.94);
}

/* Search CTA button */
.driver-search-btn {
  height: 4.8rem;
  padding: 0 3.2rem;
  border-radius: 0.9rem;
  border: none;
  background: linear-gradient(135deg, var(--hero-teal, #2e9e3e) 0%, var(--hero-teal-dark, #1e7a2e) 100%);
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(46, 158, 62, 0.35);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.driver-search-btn:hover {
  background: linear-gradient(135deg, #248432 0%, #176424 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(46, 158, 62, 0.45);
}

.driver-search-btn:active {
  transform: translateY(0);
}

/* Responsive constraints */
@media (max-width: 1024px) {
  .driver-form-row {
    flex-wrap: wrap;
    gap: 1.2rem;
  }

  .driver-field-item {
    flex: 1 1 calc(50% - 1.2rem);
    min-width: 17rem;
  }

  .driver-field-item.flex-pickup,
  .driver-field-item.flex-drop {
    flex: 1 1 calc(50% - 3.0rem);
  }

  .driver-field-item.flex-btn {
    flex: 1 1 100%;
  }

  .driver-search-btn {
    width: 100%;
  }

  .driver-swap-btn {
    margin-bottom: 0.6rem;
  }
}

@media (max-width: 640px) {
  .driver-booking-form {
    padding: 1.4rem 1.4rem 1.8rem;
  }

  .driver-trip-tabs {
    gap: 0.6rem;
  }

  .driver-trip-btn {
    flex: 1 1 calc(50% - 0.6rem);
    justify-content: center;
    padding: 0.8rem 1.2rem;
    font-size: 1.25rem;
  }

  .driver-field-item {
    flex: 1 1 100% !important;
  }

  .driver-swap-btn {
    display: none;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   HERO SERVICES RIBBON — Integrated at hero bottom (Quick Jump Navigation)
   ═══════════════════════════════════════════════════════════════════════════ */

#sec-destinations,
#sec-honeymoon,
#sec-packages,
#sec-hotels,
#sec-international,
#sec-deals,
#sec-enquiry {
  scroll-margin-top: 85px;
}

.hero-services-ribbon {
  position: relative;
  z-index: 10;
  margin-top: -2.5rem;
  margin-bottom: -2.5rem;
  /* pull ribbon UP into the hero image by half its height and down over boundary */
}

.hero-ribbon-inner {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;
  background: #ffffff;
  border-radius: 5rem;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.22),
  0 4px 12px rgba(0, 0, 0, 0.10);
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.60);
  overflow: hidden;
  /* safety — never lets it overflow the pill */
}

.hero-ribbon-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.7rem;
  padding: 1.2rem 1.2rem;
  text-decoration: none;
  color: var(--color-navy);
  font-size: clamp(1.15rem, 1.15vw, 1.3rem);
  font-weight: var(--font-weight-semibold);
  border-radius: 3rem;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
  /* prevent items from squishing below icon */
}

.hero-ribbon-item:hover {
  background: var(--color-bg-light, #f1f5f9);
  color: var(--color-blue);
  transform: translateY(-2px);
}

.hero-ribbon-icon {
  width: 4.0rem;
  height: 4.0rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
  transition: transform 0.22s ease, filter 0.22s ease, box-shadow 0.22s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.hero-ribbon-item:hover .hero-ribbon-icon {
  transform: scale(1.14);
  filter: brightness(1.08) saturate(1.25);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
}

/* Divider dots between items */
.hero-ribbon-item+.hero-ribbon-item::before {
  content: '';
  display: block;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: #d1d5db;
  margin-right: 1.4rem;
  flex-shrink: 0;
}

/* Mobile: scroll horizontally */
@media (max-width: 767px) {
  .hero-ribbon-inner {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    border-radius: 1.8rem;
    padding: 0.6rem 1rem;
  }

  .hero-ribbon-inner::-webkit-scrollbar {
    display: none;
  }

  .hero-ribbon-item {
    padding: 0.8rem 1.2rem;
  }

  .hero-ribbon-item+.hero-ribbon-item::before {
    display: none;
  }
}

/* Override Bootstrap .bg-light */
.bg-light {
  background-color: rgb(238 238 238 / 63%) !important;
}

/* ═══════════════════════════════════════════════════════════════════════════
   DESTINATION SLIDER — Swiper.js powered premium cards
   ═══════════════════════════════════════════════════════════════════════════ */

.dest-slider-section {
  padding: clamp(1.5rem, 3vw, 3rem) 0;
  background: #ffffff;
  position: relative;
  overflow: visible;
  /* allow arrows to peek outside container edge */
}

/* Subtle light texture overlay */
.dest-slider-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(21, 101, 200, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(245, 160, 32, 0.03) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.dest-slider-section .container {
  position: relative;
  z-index: 1;
}

/* ── Header row ──────────────────────────────────────────────────────────── */
.dest-slider-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: clamp(2rem, 3.5vw, 3rem);
  gap: 1.4rem;
  flex-wrap: wrap;
}

/* Heading and badge on white background */
.dest-slider-section .section-heading {
  color: var(--color-navy);
}

/* badge inherits new dot style; just keep blue color on white bg */
.dest-slider-section .category-badge {
  color: var(--color-blue);
}

/* View All — dark on white (section override) */
.dest-slider-section .dest-view-all {
  color: var(--color-navy);
}

/* Header right: nav + view all */
.dest-header-right {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-shrink: 0;
}

/* View All — premium pill button */
.dest-view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #0184ef;
  text-decoration: none;
  white-space: nowrap;
  padding: 0.6rem 1.5rem;
  border-radius: 5rem;
  border: 1.5px solid #0184ef;
  background: transparent;
  letter-spacing: 0.01em;
  transition: background 0.22s ease, color 0.22s ease,
    box-shadow 0.22s ease, transform 0.18s ease;
}

.dest-view-all:hover {
  background: linear-gradient(135deg, #0184ef 0%, #0091f8 100%);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(1, 132, 239, 0.32);
  transform: translateY(-1px);
}

.dest-view-all i {
  font-size: 0.95rem;
  transition: transform 0.22s ease;
}

.dest-view-all:hover i {
  transform: translateX(4px);
}



/* ── Slider wrap: arrows outside swiper, cards flush with container ──────── */
.dest-slider-wrap {
  position: relative;
  padding: 0;
  overflow: visible;
}

/* ── Swiper clips card overflow ─────────────────────────────────────────── */
.dest-swiper {
  overflow: hidden !important;
}

/* ── Featured Packages Card (fp-card) ───────────────────────────────────── */
.fp-card {
  display: block;
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  text-decoration: none;
  aspect-ratio: 3 / 4;
  background: #0f1a3d;
  box-shadow: 0 4px 20px rgba(15, 26, 61, 0.12);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.35s ease;
}

.fp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(15, 26, 61, 0.22);
}

.fp-card-img-wrap {
  position: absolute;
  inset: 0;
}

.fp-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

/* Gradient overlay */
.fp-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.01) 40%,
      rgba(10, 20, 55, 0.82) 100%);
  z-index: 1;
}

/* Duration pill – top right */
.fp-card-dur {
  position: absolute;
  top: 1.0rem;
  right: 1.0rem;
  z-index: 4;
  background: rgba(8, 16, 44, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 1.18rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: 5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.40);
  letter-spacing: 0.02em;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.fp-card:hover .fp-card-dur {
  background: rgba(46, 158, 62, 0.92);
  border-color: rgba(255, 255, 255, 0.40);
}

.fp-card-dur i {
  font-size: 1.1rem;
  color: #86efac;
  transition: color 0.3s ease;
}

.fp-card:hover .fp-card-dur i {
  color: #ffffff;
}

/* Bottom panel */
.fp-card-panel {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 1.4rem 1.2rem 1.5rem;
  text-align: center;
}

.fp-card-title {
  color: #fff;
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 0.9rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  letter-spacing: -0.01em;
  text-align: center;
}

.fp-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.fp-card-price {
  display: flex;
  flex-direction: column;
  gap: 0.05em;
}

.fp-price-from {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  line-height: 1;
}

.fp-price-amount {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.fp-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  background: #fff;
  color: #0f1a3d;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 0.55em 1.1em;
  border-radius: 50em;
  white-space: nowrap;
  flex-shrink: 0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s ease, color 0.2s ease, gap 0.2s ease;
}

.fp-card:hover .fp-card-cta {
  opacity: 1;
  transform: translateY(0);
  background: #2e9e3e;
  color: #fff;
  gap: 0.6em;
}



/* Nav arrows: sit just outside the swiper edges */
.dest-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: 2.5px solid #d1d9e6;
  background: #ffffff;
  color: var(--color-navy);
  font-size: 1.6rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.22s, border-color 0.22s, color 0.22s, box-shadow 0.18s, transform 0.2s;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.14);
}

.dest-nav-btn.dest-prev {
  left: -2rem;
  transform: translateY(-50%);
}

.dest-nav-btn.dest-next {
  right: -2rem;
  transform: translateY(-50%);
}

.dest-nav-btn:hover {
  background: linear-gradient(135deg, #2e9e3e 0%, #3ab84b 100%);
  border-color: #2e9e3e;
  color: #fff;
  box-shadow: 0 8px 28px rgba(46, 158, 62, 0.42);
}

.dest-nav-btn.dest-prev:hover {
  transform: translateY(-50%) scale(1.1);
}

.dest-nav-btn.dest-next:hover {
  transform: translateY(-50%) scale(1.1);
}


/* ══════════════════════════════════════════════════════════════════════════
   PREMIUM DESTINATION CARD  —  Portrait format, gradient overlay, hover CTA
   ══════════════════════════════════════════════════════════════════════════ */
.dest-pkg-card {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  /* Portrait 2:3 ratio — taller, more visual, like Airbnb/Booking cards */
  aspect-ratio: 2 / 3;
  box-shadow:
    0 2px 8px rgba(15, 26, 61, 0.06),
    0 8px 32px rgba(15, 26, 61, 0.12);
  border: none;
  outline: none;
  cursor: pointer;
  transition:
    transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.4s ease;
  display: block;
  background: #0f1c3f;
}

.dest-pkg-card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow:
    0 4px 12px rgba(15, 26, 61, 0.08),
    0 20px 60px rgba(15, 26, 61, 0.22),
    0 0 0 2px rgba(46, 158, 62, 0.25);
  border: none;
  outline: none;
}

/* Full-bleed image */
.dest-pkg-img-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  border: none;
  outline: none;
}

.dest-pkg-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border: none;
  outline: none;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.dest-pkg-card:hover .dest-pkg-img-wrap img {
  transform: scale(1.1);
}

/* Bottom-only gradient — covers just the text area, photo stays bright */
.dest-pkg-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to bottom,
      transparent 55%,
      rgba(10, 16, 40, 0.45) 75%,
      rgba(5, 10, 28, 0.88) 100%);
  transition: background 0.4s ease;
  opacity: 1;
}

.dest-pkg-card:hover::before {
  background: linear-gradient(to bottom,
      transparent 50%,
      rgba(10, 16, 40, 0.60) 72%,
      rgba(5, 10, 28, 0.95) 100%);
}

/* Top-right: duration badge — frosted glass pill */
.dest-pkg-dur-badge {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  z-index: 5;
  background: rgba(10, 18, 50, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.20);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 700;
  padding: 0.38rem 0.88rem;
  border-radius: 3rem;
  display: flex;
  align-items: center;
  gap: 0.42rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
  letter-spacing: 0.02em;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.dest-pkg-card:hover .dest-pkg-dur-badge {
  background: rgba(46, 158, 62, 0.90);
  border-color: rgba(255, 255, 255, 0.35);
}

.dest-pkg-dur-badge i {
  font-size: 1rem;
  color: #86efac;
  transition: color 0.3s ease;
}

.dest-pkg-card:hover .dest-pkg-dur-badge i {
  color: #ffffff;
}

/* ── Bottom Content Panel — Place name + subtitle + CTA ── */
.dest-pkg-title-badge,
.dest-pkg-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
  padding: 1.4rem 1.6rem 1.8rem;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  transition: padding-bottom 0.4s ease;
}

.dest-pkg-card:hover .dest-pkg-title-badge,
.dest-pkg-card:hover .dest-pkg-body {
  padding-bottom: 2rem;
}

/* Destination place name — big & bold */
.dest-pkg-name {
  display: block;
  font-size: clamp(1.7rem, 2.2vw, 2.4rem);
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

/* Subtitle — package name in smaller italic text */
.dest-pkg-sub-title {
  display: block;
  font-size: clamp(1.05rem, 1.1vw, 1.2rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.01em;
  line-height: 1.3;
  margin: 0;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

/* Explore CTA button — slides up on hover */
.dest-pkg-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.3rem;
  padding: 0.6rem 1.35rem;
  background: var(--color-green, #2e9e3e);
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 5rem;
  border: none;
  cursor: pointer;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 16px rgba(46, 158, 62, 0.45);
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.35s ease 0.05s,
    transform 0.35s ease 0.05s,
    background 0.2s ease,
    box-shadow 0.2s ease;
  pointer-events: none;
  font-family: var(--font-family-base, inherit);
}

.dest-pkg-card:hover .dest-pkg-cta {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.dest-pkg-cta i {
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.dest-pkg-card:hover .dest-pkg-cta:hover {
  background: #237030;
  box-shadow: 0 6px 20px rgba(46, 158, 62, 0.6);
}

.dest-pkg-card:hover .dest-pkg-cta:hover i {
  transform: translateX(3px);
}

@media (max-width: 576px) {

  .dest-pkg-title-badge,
  .dest-pkg-body {
    padding: 1.1rem 1.2rem 1.4rem;
  }

  .dest-pkg-name {
    font-size: 1.6rem;
  }

  .dest-pkg-sub-title {
    font-size: 1rem;
  }

  .dest-pkg-cta {
    font-size: 1.1rem;
    padding: 0.5rem 1.1rem;
  }
}

/* Legacy hidden */
.dest-pkg-meta {
  display: none;
}

.dest-pkg-dur {
  display: none;
}

.dest-pkg-sub {
  display: none;
}

.dest-pkg-dot {
  display: none;
}


/* ── Old card kept for backward compat (hidden via swiper) ──────────────── */
.dest-card {
  display: block;
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.14);
  background: #0f1c3f;
  transition: box-shadow 0.32s ease, transform 0.32s ease;
}

.dest-card:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.22);
  transform: translateY(-0.5rem);
}

.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.dest-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  padding: 1.5rem;
  transition: background 0.35s ease;
}

.dest-card:hover .dest-card-overlay {
  background: rgba(0, 0, 0, 0.55);
}

.dest-card-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0;
  transform: translateY(1.2rem);
  transition: opacity 0.30s ease, transform 0.30s ease;
}

.dest-card:hover .dest-card-top {
  opacity: 1;
  transform: translateY(0);
}

.dest-card-name {
  font-size: clamp(1.6rem, 2vw, 2.2rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: 0.06em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.60);
  margin: 0;
}

.dest-book-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #0184ef 0%, #0091f8 100%) !important;
  color: #fff !important;
  border: none;
  border-radius: 0.5rem;
  padding: 0.6rem 1.5rem;
  font-size: 1.35rem;
  font-weight: 700;
  font-family: var(--font-family-base);
  cursor: pointer;
  letter-spacing: 0.02em;
  box-shadow: 0 3px 14px rgba(1, 132, 239, 0.45);
  opacity: 0;
  transform: translateY(1.2rem);
  transition: opacity 0.30s ease 0.08s, transform 0.30s ease 0.08s,
    background 0.2s, box-shadow 0.2s;
}

.dest-card:hover .dest-book-btn {
  opacity: 1;
  transform: translateY(0);
  color: #ffffff !important;
}

.dest-book-btn i {
  font-size: 0.95rem;
  transition: transform 0.2s;
  color: #ffffff !important;
}

.dest-book-btn:hover {
  background: linear-gradient(135deg, #0184ef 0%, #0091f8 100%) !important;
  box-shadow: 0 6px 20px rgba(1, 132, 239, 0.55);
  color: #ffffff !important;
}

.dest-book-btn:hover i {
  color: #ffffff !important;
  transform: translateX(3px);
}


/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .dest-slider-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .dest-nav-btn {
    width: 4.0rem;
    height: 4.0rem;
    font-size: 1.1rem;
  }

  .dest-nav-btn.dest-prev {
    margin-right: 1rem;
  }

  .dest-nav-btn.dest-next {
    margin-left: 1rem;
  }
}

@media (max-width: 480px) {
  .dest-nav-btn {
    display: none;
  }
}


/* ═══════════════════════════════════════════════════════════════════════════
   SECTION UTILITIES
   ═══════════════════════════════════════════════════════════════════════════ */

.section-md {
  padding: clamp(4rem, 6vw, 7rem) 0;
}

/* ── Category eyebrow label ─────────────────────────────────────────────── */
.category-badge {
  display: block;
  background: none;
  border: none;
  padding: 0;
  color: #2e9e3e;
  font-size: clamp(1.0rem, 1.1vw, 1.15rem);
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.6rem;
}

/* ── Section headings (fluid) ────────────────────────────────────────────── */
.section-heading {
  display: block;
  font-size: var(--fluid-section-title);
  font-weight: var(--font-weight-semibold);
  color: var(--color-navy);
  margin: 0;
  line-height: var(--line-height-tight);
  letter-spacing: -0.01em;
  border-left: 3px solid #2e9e3e;
  padding-left: 1.0rem;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ABOUT UMBRELLA TRIP SECTION (SPLIT LAYOUT)
   ═══════════════════════════════════════════════════════════════════════════ */
.about-img-wrap {
  position: relative;
  border-radius: 1.6rem;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(15, 26, 61, 0.12);
  aspect-ratio: 4 / 3;
}

.about-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-img-wrap:hover .about-main-img {
  transform: scale(1.05);
}

.about-experience-badge {
  position: absolute;
  bottom: 2.0rem;
  left: 2.0rem;
  background: rgba(15, 26, 61, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1.2rem;
  padding: 1.2rem 1.8rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  color: #ffffff;
}

.about-experience-badge .badge-icon {
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #2e9e3e 0%, #237030 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #ffffff;
  flex-shrink: 0;
}

.about-experience-badge .badge-number {
  display: block;
  font-size: 2.0rem;
  font-weight: var(--font-weight-extrabold);
  line-height: 1.1;
  color: #ffffff;
}

.about-experience-badge .badge-label {
  display: block;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.80);
  font-weight: var(--font-weight-medium);
}

.about-description {
  font-size: 1.4rem;
  line-height: 1.7;
  color: #334155;
  margin-top: 1.2rem;
  margin-bottom: 2.2rem;
}

.about-description strong {
  color: #0f172a;
  font-weight: 600;
}

/* ── Modern 2x2 Feature Cards (Compact High-Density Layout) ── */
.about-feature-card {
  display: flex;
  align-items: flex-start;
  gap: 1.0rem;
  padding: 1.0rem 1.2rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 1.0rem;
  box-shadow: 0 2px 10px rgba(15, 26, 61, 0.03);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  height: 100%;
}

.about-feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15, 26, 61, 0.08);
  border-color: #cbd5e1;
}

.about-feature-icon {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease;
}

.about-feature-card:hover .about-feature-icon {
  transform: scale(1.05);
}

.about-feature-icon.icon-blue {
  background: linear-gradient(135deg, #1565c8 0%, #0d47a1 100%);
  box-shadow: 0 3px 8px rgba(21, 101, 200, 0.25);
}

.about-feature-icon.icon-green {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  box-shadow: 0 3px 8px rgba(16, 185, 129, 0.25);
}

.about-feature-icon.icon-amber {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  box-shadow: 0 3px 8px rgba(2, 132, 199, 0.25);
}

.about-feature-icon.icon-purple {
  background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
  box-shadow: 0 3px 8px rgba(139, 92, 246, 0.25);
}

.about-feature-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.about-feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  line-height: 1.3;
}

.about-feature-desc {
  font-size: 1.35rem;
  color: #334155;
  line-height: 1.5;
  margin-top: 0.2rem;
}

/* ── Modern Learn More Button ── */
.btn-about-more {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 2.6rem;
  background: #ffffff;
  color: #1565c8;
  border: 2px solid #1565c8;
  border-radius: 5rem;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.28s ease;
  box-shadow: 0 4px 14px rgba(21, 101, 200, 0.12);
}

.btn-about-more:hover {
  background: #1565c8;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(21, 101, 200, 0.30);
  transform: translateY(-2px);
}

.btn-about-more i {
  font-size: 1.4rem;
  transition: transform 0.25s ease;
}

.btn-about-more:hover i {
  transform: translateX(4px);
}

.duration-badge {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(15, 26, 61, 0.72);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: clamp(1.1rem, 1.2vw, 1.3rem);
  font-weight: var(--font-weight-semibold);
  padding: 0.4rem 1.0rem;
  border-radius: 5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}


.price-wrap {
  display: flex;
  flex-direction: column;
}

.price-label {
  font-size: clamp(1.0rem, 1.1vw, 1.2rem);
  color: var(--color-text-muted);
  font-weight: var(--font-weight-medium);
}

.price-amount {
  font-size: clamp(1.8rem, 2vw, 2.2rem);
  font-weight: var(--font-weight-extrabold);
  color: var(--color-navy);
  line-height: 1.1;
}

/* ── Feature badge boxes (Why choose us) ─────────────────────────────────── */
.feature-badge-box {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 3vw, 3.0rem);
  text-align: center;
  height: 100%;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.feature-badge-box:hover {
  transform: translateY(-0.6rem);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary-20);
}

.feature-icon-wrap {
  width: clamp(5rem, 6vw, 6.4rem);
  height: clamp(5rem, 6vw, 6.4rem);
  border-radius: 50%;
  background: linear-gradient(135deg, #e8f0ff 0%, #d5e8ff 100%);
  color: var(--color-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(2rem, 2.5vw, 2.6rem);
  margin: 0 auto clamp(1.2rem, 2vw, 1.8rem) auto;
  transition: background 0.25s, transform 0.25s;
}

.feature-badge-box:hover .feature-icon-wrap {
  background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-navy) 100%);
  color: #fff;
  transform: scale(1.12) rotate(-4deg);
}

/* ── Hotel Section Header & View All Button ──────────────────────────────── */
.hotel-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--space-xl, 2.5rem);
  flex-wrap: wrap;
  gap: 1.25rem;
}

.hotel-view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 1.0rem;
  padding: 0.55rem 0.65rem 0.55rem 1.8rem;
  background: #ffffff;
  border: 1.5px solid rgba(26, 43, 94, 0.16);
  border-radius: 5rem;
  color: var(--color-navy, #1A2B5E) !important;
  text-decoration: none;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.015em;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(15, 26, 61, 0.05);
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  cursor: pointer;
}

.hotel-view-all-btn span:not(.hotel-view-all-icon) {
  transition: color 0.25s ease;
  line-height: 1;
}

.hotel-view-all-icon {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  background: rgba(26, 43, 94, 0.06);
  color: var(--color-navy, #1A2B5E);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.hotel-view-all-btn:hover {
  background: linear-gradient(135deg, #1A2B5E 0%, #0F1A3D 100%);
  color: #ffffff !important;
  border-color: #0F1A3D;
  box-shadow: 0 8px 24px rgba(15, 26, 61, 0.22);
  transform: translateY(-2px);
}

.hotel-view-all-btn:hover span:not(.hotel-view-all-icon) {
  color: #ffffff !important;
}

.hotel-view-all-btn:hover .hotel-view-all-icon {
  background: var(--color-green, #2E9E3E);
  color: #ffffff !important;
  transform: translateX(3px);
  box-shadow: 0 3px 10px rgba(46, 158, 62, 0.4);
}

.hotel-view-all-btn:hover .hotel-view-all-icon i {
  color: #ffffff !important;
}

.hotel-view-all-btn:active {
  transform: translateY(0);
  box-shadow: 0 3px 10px rgba(15, 26, 61, 0.15);
}

/* ── Hotel card ──────────────────────────────────────────────────────────── */
/* ── Hotel Card — full-bleed overlay design ─────────────────────────────── */
.hotel-card {
  position: relative;
  border-radius: 1.4rem;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  display: block;
  background: #0a0f28;
  transition: transform 0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hotel-card:hover {
  transform: scale(1.015);
}

/* Full image */
.hotel-card-img-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hotel-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Bottom-to-top gradient */
.hotel-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.88) 0%,
      rgba(0, 0, 0, 0.38) 45%,
      transparent 75%);
  z-index: 2;
}

/* Top-right: star rating badge */
.star-rating-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 4;
  background: #2e9e3e;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 0.3rem 0.85rem;
  border-radius: 3rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.22);
}

/* Bottom: hotel name + location + arrow button */
.hotel-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
  padding: 1.2rem 1.3rem 1.4rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.hotel-card-info {
  flex: 1;
  min-width: 0;
}

.hotel-card-title {
  font-size: clamp(1.3rem, 1.5vw, 1.6rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.2;
  margin: 0 0 0.3rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hotel-card-title a {
  color: inherit;
  text-decoration: none;
}

.hotel-card-location {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
}

.hotel-card-location i {
  color: #4af07a;
  font-size: 0.9rem;
}

/* Circle arrow button */
.hotel-card-footer {
  flex-shrink: 0;
}

.hotel-enquire-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.80);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff !important;
  text-decoration: none;
  font-size: 1.3rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transform: scale(0.75) rotate(-15deg);
  transition: opacity 0.28s ease,
    transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1),
    background 0.2s ease,
    color 0.2s ease;
}

.hotel-card:hover .hotel-enquire-btn {
  opacity: 1;
  transform: scale(1) rotate(0deg);
  color: #ffffff !important;
}

.hotel-card:hover .hotel-enquire-btn i {
  color: #ffffff !important;
}

.hotel-enquire-btn:hover {
  background: linear-gradient(135deg, #0184ef 0%, #0091f8 100%) !important;
  border-color: transparent !important;
  color: #ffffff !important;
  box-shadow: 0 6px 22px rgba(1, 132, 239, 0.50);
}

.hotel-enquire-btn i {
  color: #ffffff !important;
  transition: transform 0.2s ease, color 0.2s ease;
}

.hotel-enquire-btn:hover i {
  color: #ffffff !important;
  transform: translateX(2px);
}

/* ═══════════════════════════════════════════════════════════════════════════
   TOUR CARD  (supplement to tours.css)
   ═══════════════════════════════════════════════════════════════════════════ */

.tour-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-sm);
  margin-top: auto;
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE ADJUSTMENTS
   ═══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 991px) {
  .home-hero {
    min-height: 80vh;
  }

  .hero-trust-row {
    gap: 1rem;
  }

  .hero-trust-badge {
    padding: 0.5rem 1.2rem;
  }

  .hero-search-box {
    border-radius: 1rem 1rem 0 0;
  }

  .hero-notice-bar {
    border-radius: 0 0 1rem 1rem;
  }
}

@media (max-width: 767px) {
  .home-hero {
    min-height: auto;
    padding-bottom: 3.6rem;
    /* slightly less on mobile */
  }

  .hero-bg-layer {
    clip-path: inset(0 0 3.6rem 0);
  }

  .hero-inner {
    padding-top: 2.4rem;
  }

  .hero-trust-badge {
    font-size: 1.15rem;
  }

  .hero-trust-row {
    display: none;
  }

  .hero-search-row {
    flex-direction: column;
    gap: 0;
    border-top: none;
    min-height: unset;
  }

  .hero-search-field {
    border-right: none;
    border-bottom: 1px solid #dde3ea;
    padding: 0;
  }

  .hero-search-field:last-of-type {
    border-bottom: none;
  }

  .hero-search-field label {
    padding: 0.6rem 1.2rem 0;
  }

  .hero-search-field .filter-control {
    padding: 0.15rem 1.2rem 0.6rem;
  }

  .hero-swap-btn {
    display: none;
  }

  .hero-field-from label,
  .hero-search-field:has(+ .hero-swap-btn) label,
  .hero-field-from .filter-control,
  .hero-search-field:has(+ .hero-swap-btn) .filter-control {
    padding-right: 1.2rem !important;
  }

  .hero-field-to label,
  .hero-swap-btn+.hero-search-field label,
  .hero-field-to .filter-control,
  .hero-swap-btn+.hero-search-field .filter-control {
    padding-left: 1.2rem !important;
  }

  .hero-search-btn {
    width: calc(100% - 1.6rem);
    margin: 0.8rem auto 1.2rem;
    justify-content: center;
    min-height: 4.6rem;
    border-radius: 0.8rem;
  }

  .hero-rg-popover {
    position: static;
    width: 100%;
    max-width: 100%;
    box-shadow: none;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid #dde3ea;
  }

  .hero-tab-btn {
    padding: 1.1rem 1.2rem;
  }

  /* Ribbon: tighter, scrollable on mobile */
  /* Ribbon stays with negative margin on mobile too */
  .hero-services-ribbon {
    margin-top: -2rem;
  }
}

@media (max-width: 575px) {
  .hero-tab-btn {
    padding: 1rem 0.9rem;
    font-size: 1.15rem;
    gap: 0.4rem;
  }

  .hero-tab-btn span {
    display: none;
  }

  /* icon-only on very small screens */

  .hero-tab-panels {
    padding: 0;
  }

  .hero-notice-bar {
    padding: 1rem 1.2rem;
    flex-wrap: wrap;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   DESTINATION GUIDES & HOLIDAY DEAL PACKAGES SECTION
   ═══════════════════════════════════════════════════════════════════════════ */
.guide-thumb-card {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 1.4rem;
  overflow: hidden;
  display: block;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  text-decoration: none;
}

.guide-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.guide-thumb-card:hover .guide-thumb-img {
  transform: scale(1.08);
}

.guide-thumb-badge {
  position: absolute;
  bottom: 0.8rem;
  left: 0.8rem;
  background: rgba(15, 26, 61, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #ffffff;
  padding: 0.35rem 0.9rem;
  border-radius: 2rem;
  font-size: 1.15rem;
  font-weight: var(--font-weight-semibold);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.guide-description {
  font-size: clamp(1.3rem, 1.4vw, 1.5rem);
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-top: 1.2rem;
}

.guide-sub-heading {
  font-size: clamp(1.45rem, 1.5vw, 1.7rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-navy);
  margin-bottom: 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid rgba(0, 0, 0, 0.06);
}

.guide-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.guide-link-list li {
  margin: 0;
}

.guide-link-list a {
  color: #334155;
  font-size: 1.35rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.4;
  text-decoration: none;
  padding: 0.6rem 0.8rem;
  border-radius: 0.8rem;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  background: transparent;
  transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.guide-link-list .link-icon {
  font-size: 0.9rem;
  width: 2.0rem;
  height: 2.0rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-align: center;
  flex-shrink: 0;
  margin-top: -0.05rem;
  transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.guide-link-list .link-icon::before {
  display: block;
  line-height: 1;
  margin: 0;
  padding: 0;
}

/* Packages Bullets: Vivid Sky Blue Badge */
.guide-link-list-packages .link-icon {
  color: #0284c7;
  background: rgba(2, 132, 199, 0.12);
}

.guide-link-list-packages a:hover .link-icon {
  color: #ffffff;
  background: #0284c7;
  transform: scale(1.06);
}

/* Hotels Bullets: Brand Green Badge */
.guide-link-list-hotels .link-icon {
  color: #2e9e3e;
  background: rgba(46, 158, 62, 0.12);
}

.guide-link-list-hotels a:hover .link-icon {
  color: #ffffff;
  background: #2e9e3e;
  transform: scale(1.06);
}

.guide-link-list a:hover {
  color: var(--color-navy);
  background: #ffffff;
  box-shadow: 0 4px 14px rgba(15, 26, 61, 0.08);
  transform: translateX(4px);
}

/* ── Horizontal Deal Card (Luxury Redesign) ─────────────────────────────── */
.deal-card-horizontal {
  display: flex;
  background: #ffffff;
  border-radius: 1.6rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(15, 26, 61, 0.05);
  border: 1.5px solid rgba(15, 26, 61, 0.08);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.3s ease;
  position: relative;
}

.deal-card-horizontal:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(15, 26, 61, 0.12);
  border-color: rgba(46, 158, 62, 0.35);
}

.deal-card-img-wrap {
  width: 36%;
  min-width: 155px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.deal-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.deal-card-horizontal:hover .deal-card-img {
  transform: scale(1.08);
}

/* Floating category pill on the image */
.deal-img-tag {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  background: rgba(15, 26, 61, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: 5rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.deal-img-tag i {
  color: #4ade80;
  font-size: 1.0rem;
}

.deal-card-content {
  padding: 1.6rem 2.0rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  gap: 1.0rem;
}

.deal-card-header {
  display: flex;
  flex-direction: column;
}

.deal-meta-pills {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 0.6rem;
}

.deal-duration-chip {
  font-size: 1.15rem;
  color: var(--color-navy, #1A2B5E);
  font-weight: 600;
  background: rgba(26, 43, 94, 0.06);
  padding: 0.3rem 0.85rem;
  border-radius: 5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.deal-duration-chip i {
  color: var(--color-blue, #1565C8);
  font-size: 1.1rem;
}

.deal-badge-pill {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-green, #2E9E3E);
  background: rgba(46, 158, 62, 0.12);
  padding: 0.3rem 0.8rem;
  border-radius: 5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.deal-card-title {
  font-size: clamp(1.45rem, 1.55vw, 1.75rem);
  font-weight: 700;
  color: var(--color-navy, #1A2B5E);
  margin: 0 0 0.5rem 0;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.deal-card-desc {
  font-size: 1.25rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0 0 1.0rem 0;
}

/* Highlights / inclusions row */
.deal-highlights-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 0.2rem;
}

.deal-hl-item {
  font-size: 1.1rem;
  color: #334155;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  padding: 0.3rem 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 500;
}

.deal-hl-item i {
  color: var(--color-green, #2E9E3E);
  font-size: 0.95rem;
}

/* Footer action row */
.deal-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 1.0rem;
  border-top: 1px dashed rgba(15, 26, 61, 0.1);
  margin-top: auto;
}

.deal-custom-tag {
  font-size: 1.18rem;
  font-weight: 600;
  color: #16a34a;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.deal-custom-tag i {
  font-size: 1.05rem;
}

/* CTA Pill Button with Micro-Arrow */
.btn-deal-enquire {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.75rem !important;
  padding: 0.55rem 0.65rem 0.55rem 1.6rem !important;
  border-radius: 5rem !important;
  background: linear-gradient(135deg, #2E9E3E 0%, #237030 100%) !important;
  color: #ffffff !important;
  border: none !important;
  font-size: 1.25rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.01em !important;
  box-shadow: 0 4px 14px rgba(46, 158, 62, 0.32) !important;
  cursor: pointer !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}

.btn-deal-enquire span:not(.deal-btn-icon) {
  color: #ffffff !important;
  line-height: 1;
}

.deal-btn-icon {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
  flex-shrink: 0;
}

.deal-btn-icon i {
  color: #ffffff !important;
  font-size: 1.05rem;
  transition: color 0.25s ease;
}

.btn-deal-enquire:hover {
  background: linear-gradient(135deg, #34b346 0%, #1c6126 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 8px 24px rgba(46, 158, 62, 0.48) !important;
  transform: translateY(-2px);
}

.btn-deal-enquire:hover .deal-btn-icon {
  background: #ffffff;
  transform: translateX(3px);
}

.btn-deal-enquire:hover .deal-btn-icon i {
  color: #2E9E3E !important;
}

.btn-deal-enquire:active {
  transform: translateY(0);
}

@media (max-width: 575px) {
  .deal-card-horizontal {
    flex-direction: column;
  }

  .deal-card-img-wrap {
    width: 100%;
    height: 190px;
  }

  .deal-card-content {
    padding: 1.4rem;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   PERFECT INDIA HOLIDAY THEMES GRID SECTION
   ═══════════════════════════════════════════════════════════════════════════ */
.section-heading-centered {
  font-size: var(--fluid-section-title);
  font-weight: var(--font-weight-bold);
  color: var(--color-navy);
  margin: 0;
  line-height: 1.2;
}

.section-subtitle-centered {
  font-size: clamp(1.4rem, 1.5vw, 1.7rem);
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-top: 0.6rem;
}

.theme-card {
  position: relative;
  border-radius: 1.6rem;
  overflow: hidden;
  display: block;
  box-shadow: 0 6px 20px rgba(15, 26, 61, 0.08);
  text-decoration: none;
  background: #0f1c3f;
}

.theme-card-tall {
  min-height: 520px;
  height: 100%;
}

.theme-card-medium {
  height: 240px;
}

.theme-card-wide {
  height: 220px;
}

.theme-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.theme-card:hover .theme-card-img {
  transform: scale(1.08);
}

.theme-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 26, 61, 0.88) 0%, rgba(15, 26, 61, 0.25) 45%, transparent 100%);
  transition: background 0.3s ease;
}

.theme-card:hover .theme-card-overlay {
  background: linear-gradient(to top, rgba(15, 26, 61, 0.92) 0%, rgba(15, 26, 61, 0.35) 50%, transparent 100%);
}

.theme-card-badge {
  position: absolute;
  bottom: 1.6rem;
  left: 1.6rem;
  right: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(15, 26, 61, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 5rem;
  padding: 0.7rem 1.6rem;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.theme-card:hover .theme-card-badge {
  transform: translateY(-2px);
  background: rgba(15, 26, 61, 0.85);
  border-color: rgba(255, 255, 255, 0.45);
}

.theme-card-title {
  font-size: clamp(1.35rem, 1.4vw, 1.6rem);
  font-weight: var(--font-weight-bold);
  color: #ffffff;
  line-height: 1;
}

.theme-card-icon {
  font-size: 1.5rem;
  line-height: 1;
}

@media (max-width: 991px) {
  .theme-card-tall {
    min-height: 320px;
    height: 320px;
  }
}

/* ── 5 Service Cards Showcase (Pure Visual Cards) ───────────────────────── */
.service-card-compact {
  position: relative;
  display: block;
  height: 180px;
  border-radius: 1.4rem;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(15, 26, 61, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s ease;
}

.service-card-compact:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(15, 26, 61, 0.25);
}

.service-card-compact-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card-compact:hover .service-card-compact-img {
  transform: scale(1.08);
}

.service-card-compact-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 26, 61, 0.05) 0%, rgba(15, 26, 61, 0.35) 100%);
  transition: background 0.35s ease;
}

.service-card-compact:hover .service-card-compact-overlay {
  background: linear-gradient(180deg, transparent 0%, rgba(15, 26, 61, 0.15) 100%);
}

/* ── Core Services Showcase Slider (3-Desktop / 1-Mobile) ───────────── */
.services-slider-section {
  background-color: #f8fafc;
  padding: 3.5rem 0 3rem;
  border-bottom: 1px solid rgba(15, 31, 74, 0.06);
  position: relative;
}

.services-slider-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2rem;
  gap: 1rem;
}

.services-slider-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #2e9e3e;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  background: rgba(46, 158, 62, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
}

.services-slider-heading {
  font-size: 1.85rem;
  font-weight: 600;
  color: #0f1f4a;
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.services-slider-controls {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.services-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid rgba(15, 31, 74, 0.12);
  color: #0f1f4a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  box-shadow: 0 3px 10px rgba(15, 31, 74, 0.06);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.services-nav-btn:hover {
  background: #2e9e3e;
  border-color: #2e9e3e;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(46, 158, 62, 0.3);
}

.services-nav-btn:active {
  transform: scale(0.95);
}

/* ── Services Slider Outer Wrapper & Floating Side Nav ── */
.services-slider-outer {
  position: relative;
  width: 100%;
}

.services-floating-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: #ffffff;
  border: 2.5px solid #d1d9e6;
  color: var(--color-navy, #0f1f4a);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 900;
  cursor: pointer;
  z-index: 10;
  transition: background 0.22s, border-color 0.22s, color 0.22s, box-shadow 0.18s, transform 0.2s;
}

.services-floating-prev {
  left: -2rem;
}

.services-floating-next {
  right: -2rem;
}

.services-floating-nav:hover {
  background: linear-gradient(135deg, #2e9e3e 0%, #3ab84b 100%);
  border-color: #2e9e3e;
  color: #ffffff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 28px rgba(46, 158, 62, 0.42);
}

.services-floating-nav:active {
  transform: translateY(-50%) scale(0.95);
}

@media (max-width: 1200px) {
  .services-floating-prev {
    left: -1.5rem;
  }

  .services-floating-next {
    right: -1.5rem;
  }
}

@media (max-width: 767.98px) {
  .services-floating-nav {
    display: none;
  }
}

/* Swiper Container Spacing */
.services-swiper {
  padding: 8px 4px 24px !important;
  margin: 6rem 0 0 !important;
}

.services-swiper .swiper-slide {
  height: auto;
  display: flex;
}

/* ── Promotional Campaign Banner Slide Cards ──────────────── */
.promo-campaign-card {
  position: relative;
  display: block;
  width: 100%;
  border-radius: 1.25rem;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.35s ease;
}

.promo-campaign-card:hover {
  transform: translateY(-6px);
}

.promo-campaign-img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.promo-campaign-card:hover .promo-campaign-img {
  transform: scale(1.03);
}

/* ── Service Slide Card (Legacy Fallback) ──────────────── */
.service-slide-card {
  position: relative;
  display: block;
  width: 100%;
  height: 250px;
  border-radius: 1.35rem;
  overflow: hidden;
  text-decoration: none;
  background: #0f1f4a;
  box-shadow: 0 10px 25px rgba(15, 31, 74, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.service-slide-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(15, 31, 74, 0.22);
  border-color: rgba(46, 158, 62, 0.6);
}

/* Full Bleed Image */
.service-card-img-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.service-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-slide-card:hover .service-card-img-wrap img {
  transform: scale(1.08);
}

/* Natural Readability Gradient - ONLY in bottom 45% */
.service-slide-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(10, 22, 54, 0.88) 0%,
      rgba(10, 22, 54, 0.45) 35%,
      transparent 70%);
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.service-slide-card:hover::before {
  background: linear-gradient(to top,
      rgba(10, 22, 54, 0.92) 0%,
      rgba(10, 22, 54, 0.50) 40%,
      transparent 75%);
}

/* Top Badge */
.service-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 3;
  background: rgba(46, 158, 62, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: all 0.3s ease;
}

.badge-blue {
  background: rgba(2, 132, 199, 0.92);
}

.badge-teal {
  background: rgba(13, 148, 136, 0.92);
}

.badge-rose {
  background: rgba(219, 39, 119, 0.92);
}

.badge-cyan {
  background: rgba(8, 145, 178, 0.92);
}

.badge-indigo {
  background: rgba(99, 102, 241, 0.92);
}

.service-slide-card:hover .service-card-badge {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.28);
}

/* Bottom Card Body */
.service-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 1.2rem 1.35rem 1.35rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.85rem;
}

.service-card-sub {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #4ade80;
  margin-bottom: 0.25rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.service-card-title {
  font-size: 1.35rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

/* Circular Arrow Button */
.service-card-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-slide-card:hover .service-card-arrow {
  background: #2e9e3e;
  border-color: #2e9e3e;
  color: #ffffff;
  transform: translateX(4px) scale(1.06);
  box-shadow: 0 6px 18px rgba(46, 158, 62, 0.5);
}

/* Pagination Dots */
.services-slider-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.services-slider-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(15, 31, 74, 0.25);
  opacity: 1;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  margin: 0 !important;
}

.services-slider-pagination .swiper-pagination-bullet-active {
  width: 26px;
  background: #2e9e3e;
}

@media (max-width: 767.98px) {
  .services-slider-section {
    padding: 2.5rem 0 2rem;
  }

  .services-slider-header {
    margin-bottom: 1.25rem;
  }

  .services-slider-heading {
    font-size: 1.35rem;
  }

  .services-slider-badge {
    font-size: 0.7rem;
    padding: 0.2rem 0.55rem;
  }

  .services-nav-btn {
    width: 38px;
    height: 38px;
    font-size: 0.85rem;
  }

  .service-slide-card {
    height: 215px;
    border-radius: 1.15rem;
  }

  .service-card-badge {
    top: 0.85rem;
    left: 0.85rem;
    font-size: 0.7rem;
    padding: 0.25rem 0.65rem;
  }

  .service-card-body {
    padding: 1.1rem 1.15rem;
  }

  .service-card-title {
    font-size: 1.18rem;
  }

  .service-card-arrow {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
  }
}

/* ── Custom Holiday CTA Section (Luxury Glassmorphic Banner) ────────── */
.custom-trip-cta-section {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.custom-trip-cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  transition: transform 10s ease;
}

.custom-trip-cta-section:hover .custom-trip-cta-bg {
  transform: scale(1.0);
}

.custom-trip-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 26, 61, 0.94) 0%, rgba(15, 26, 61, 0.88) 50%, rgba(2, 132, 199, 0.85) 100%);
}

.custom-trip-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(2, 132, 199, 0.3);
  border: 1px solid rgba(2, 132, 199, 0.6);
  color: #38bdf8;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 0.4rem 1rem;
  border-radius: 5rem;
  margin-bottom: 1rem;
}

.custom-trip-heading {
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.custom-trip-subtext {
  font-size: clamp(1.1rem, 1.4vw, 1.25rem);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 44rem;
}

.custom-trip-perks {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.custom-trip-perk-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #ffffff;
}

.custom-trip-perk-icon {
  width: 44px;
  height: 44px;
  border-radius: 0.75rem;
  background: rgba(56, 189, 248, 0.2);
  color: #38bdf8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.custom-trip-perk-item strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
}

.custom-trip-perk-item span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
}

/* Glassmorphic Action Card */
.custom-trip-action-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 1.5rem;
  padding: 2.2rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  text-align: center;
}

.live-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid rgba(16, 185, 129, 0.5);
  color: #34d399;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 5rem;
  margin-bottom: 1.2rem;
}

.live-pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #34d399;
  border-radius: 50%;
  box-shadow: 0 0 0 rgba(52, 211, 153, 0.4);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0% {
    box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(52, 211, 153, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(52, 211, 153, 0);
  }
}

.action-card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.4rem;
}

.action-card-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

.custom-trip-main-btn {
  width: 100%;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 0.85rem 1.5rem;
  border-radius: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-whatsapp-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: #25d366;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 0.8rem 1.5rem;
  border-radius: 0.75rem;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
  transition: all 0.3s ease;
}

.btn-whatsapp-cta:hover {
  background: #1eb954;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
}

.custom-trip-footer-note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Split 50/50 Custom Holiday CTA Card ───────────────────────── */
.custom-trip-split-card {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(15, 26, 61, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.custom-trip-split-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

.custom-trip-split-card:hover .custom-trip-split-img {
  transform: scale(1.05);
}

.custom-trip-split-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 26, 61, 0.25) 0%, rgba(15, 26, 61, 0.65) 100%);
}

.custom-trip-split-badge-top {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 2;
  background: rgba(15, 26, 61, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #38bdf8;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  padding: 0.4rem 1rem;
  border-radius: 5rem;
}

.custom-trip-split-float-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  z-index: 2;
  background: rgba(15, 26, 61, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 1rem;
  padding: 0.9rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #ffffff;
}

.float-badge-icon {
  width: 42px;
  height: 42px;
  border-radius: 0.6rem;
  background: #0284c7;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.float-badge-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
}

.float-badge-stars {
  font-size: 0.82rem;
  color: #eab308;
}

.split-perk-icon {
  width: 44px;
  height: 44px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.btn-whatsapp-cta-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #ffffff;
  border-radius: 0.6rem;
  text-decoration: none;
  font-size: 0.95rem;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
}

.btn-whatsapp-cta-light:hover {
  background: #1eb954;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45);
}

/* ── Full-Width Edge-to-Edge Split Custom Holiday Section ────────── */
.custom-trip-fullwidth-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #0f1a3d;
  border-top: 2px solid #e2e8f0;
  border-bottom: 2px solid #e2e8f0;
}

/* ── Left image panel ── */
.custom-trip-fw-left {
  position: relative;
  min-height: 580px;
  overflow: hidden;
}

.custom-trip-fw-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.custom-trip-fw-left:hover .custom-trip-fw-img {
  transform: scale(1.05);
}

.custom-trip-fw-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0) 60%,
      rgba(0, 0, 0, 0.08) 100%);
  z-index: 1;
}

/* Decorative blurred orbs */
.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  z-index: 1;
  pointer-events: none;
}

.cta-orb--blue {
  width: 280px;
  height: 280px;
  background: #0284c7;
  top: -60px;
  right: -60px;
}

.cta-orb--orange {
  width: 200px;
  height: 200px;
  background: var(--hero-tab-active, #2e9e3e);
  bottom: 100px;
  left: -40px;
}

/* Top tag */
.custom-trip-fw-top-tag {
  position: absolute;
  top: 2.5rem;
  left: 3rem;
  z-index: 3;
  background: rgba(15, 26, 61, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #38bdf8;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  padding: 0.5rem 1.2rem;
  border-radius: 5rem;
}

/* Feature chips */
.custom-trip-fw-chips {
  position: absolute;
  top: 5.8rem;
  left: 3rem;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.fw-chip {
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.32rem 0.9rem;
  border-radius: 5rem;
  transition: background 0.2s ease;
}

.fw-chip:hover {
  background: rgba(255, 255, 255, 0.28);
}

/* Stat row at bottom of image */
.cta-stat-row {
  position: absolute;
  bottom: 2.5rem;
  left: 3rem;
  right: 3rem;
  z-index: 3;
  background: rgba(15, 26, 61, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 1.2rem;
  padding: 1.2rem 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.cta-stat-card {
  text-align: center;
  flex: 1;
}

.cta-stat-num {
  font-size: 1.8rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 0.2rem;
}

.cta-stat-num span {
  font-size: 0.75em;
  color: #4ade80;
}

.cta-stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

/* ── Right content panel ── */
.custom-trip-fw-right {
  background: #ffffff;
  display: flex;
  align-items: center;
  padding: 4rem 4.5rem;
  position: relative;
  overflow: hidden;
}

/* Diagonal green decorative stripe */
.cta-right-stripe {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 260px;
  height: 260px;
  background: linear-gradient(135deg, rgba(46, 158, 62, 0.1) 0%, rgba(46, 158, 62, 0.03) 100%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-right-stripe::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 160px;
  height: 160px;
  background: rgba(2, 132, 199, 0.07);
  border-radius: 50%;
}

.custom-trip-fw-content {
  width: 100%;
  position: relative;
  z-index: 2;
}

.custom-trip-fw-category {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #2e9e3e;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}

.custom-trip-fw-heading {
  font-size: clamp(2.8rem, 3.8vw, 3.8rem);
  font-weight: 600;
  color: #0f1a3d;
  line-height: 1.12;
  margin-bottom: 1.3rem;
  letter-spacing: -1px;
}

.cta-heading-accent {
  color: #2e9e3e;
  position: relative;
  display: inline-block;
}

.cta-heading-accent::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #2e9e3e, transparent);
  border-radius: 2px;
}

.cta-heading-line2 {
  color: #0f1a3d;
  display: block;
}

.custom-trip-fw-desc {
  font-size: clamp(1.2rem, 1.5vw, 1.3rem);
  color: #475569;
  line-height: 1.75;
  margin-bottom: 2.2rem;
}

.custom-trip-fw-desc strong {
  color: #0f1a3d;
  font-weight: 700;
}

/* ── Artistic perk list ── */
.cta-perk-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 2.5rem;
  border-left: 1px solid #e2e8f0;
  padding-left: 0;
}

.cta-perk-item {
  display: flex;
  align-items: stretch;
  position: relative;
  padding: 1.2rem 0 1.2rem 2rem;
}

.cta-perk-item+.cta-perk-item {
  border-top: 1px solid #f1f5f9;
}

.cta-perk-accent {
  position: absolute;
  left: -1px;
  top: 0;
  bottom: 0;
  width: 5px;
  border-radius: 0 4px 4px 0;
}

.cta-perk-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.cta-perk-num {
  font-size: 3rem;
  font-weight: 600;
  color: rgba(15, 26, 61, 0.08);
  line-height: 1;
  flex-shrink: 0;
  width: 3.5rem;
  letter-spacing: -3px;
}

.cta-perk-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #0f1a3d;
  margin-bottom: 0.3rem;
}

.cta-perk-desc {
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.5;
}

/* ── Action buttons ── */
.custom-trip-fw-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.1rem;
  margin-bottom: 1.5rem;
}

.btn-cta-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0184ef 0%, #0091f8 100%) !important;
  color: #ffffff !important;
  font-size: 1.25rem;
  font-weight: 700;
  padding: 1.1rem 2.4rem;
  border-radius: 0.85rem;
  border: none;
  cursor: pointer;
  letter-spacing: 0.3px;
  box-shadow: 0 8px 28px rgba(1, 132, 239, 0.4);
  transition: all 0.3s ease;
}

.btn-cta-main:hover {
  background: linear-gradient(135deg, #0184ef 0%, #0091f8 100%) !important;
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(1, 132, 239, 0.5);
}

.custom-trip-fw-btn {
  font-size: 1.05rem;
  font-weight: 700;
  padding: 0.95rem 2rem;
  border-radius: 0.75rem;
  letter-spacing: 0.4px;
  box-shadow: 0 8px 24px rgba(2, 132, 199, 0.3);
}


/* Perk cards */
.custom-trip-fw-perks {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.2rem;
}

.fw-perk-card {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  background: #f8fafc;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 1rem;
  padding: 1rem 1.2rem;
  transition: all 0.3s ease;
  position: relative;
}

.fw-perk-card:hover {
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(15, 26, 61, 0.09);
  border-color: rgba(2, 132, 199, 0.2);
  transform: translateX(4px);
}

.fw-perk-icon {
  width: 46px;
  height: 46px;
  border-radius: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.fw-perk-body {
  flex-grow: 1;
}

.fw-perk-card h6 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f1a3d;
  margin-bottom: 0.15rem;
}

.fw-perk-card p {
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 0;
}

.fw-perk-num {
  font-size: 1.4rem;
  font-weight: 600;
  color: rgba(15, 26, 61, 0.07);
  flex-shrink: 0;
  line-height: 1;
  letter-spacing: -1px;
}

/* Action buttons */
.custom-trip-fw-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.1rem;
  margin-bottom: 1.5rem;
}

.custom-trip-fw-btn {
  font-size: 1.05rem;
  font-weight: 700;
  padding: 0.95rem 2rem;
  border-radius: 0.75rem;
  letter-spacing: 0.4px;
  box-shadow: 0 8px 24px rgba(2, 132, 199, 0.3);
}

.btn-whatsapp-fw {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #25d366 0%, #1da851 100%);
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 700;
  padding: 1.1rem 2.4rem;
  border-radius: 0.75rem;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
}

.btn-whatsapp-fw:hover {
  background: linear-gradient(135deg, #1eb954 0%, #17923f 100%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
}

/* Trust row */
.cta-trust-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.cta-trust-item {
  font-size: 0.88rem;
  font-weight: 600;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.cta-trust-item i {
  color: #059669;
  font-size: 0.9rem;
}

.cta-trust-sep {
  color: #cbd5e1;
  font-size: 0.7rem;
}

@media (max-width: 991.98px) {
  .custom-trip-fw-right {
    padding: 3rem 2rem;
  }

  .custom-trip-fw-left {
    min-height: 420px;
  }

  .custom-trip-fw-top-tag,
  .custom-trip-fw-chips {
    left: 1.5rem;
    right: 1.5rem;
  }

  .cta-stat-row {
    left: 1.5rem;
    right: 1.5rem;
  }
}


/* ── Premium Travel Review Testimonials Section ──────────────────── */

.testimonial-section {
  position: relative;
  padding: 5.5rem 0 4rem;
  background: linear-gradient(160deg, #f0f7ff 0%, #fafafa 50%, #fff8f2 100%);
  overflow: visible;
}

/* ── Testimonials Swiper ── */
.trev-swiper-wrap {
  position: relative;
  padding: 0;
  overflow: visible;
}

.trev-swiper {
  padding-bottom: 3rem !important;
  overflow: hidden !important;
}

.trev-swiper .swiper-slide {
  height: auto;
}

.trev-swiper .trev-card {
  height: 100%;
}

.trev-pagination.swiper-pagination {
  bottom: 0;
}

.trev-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #cbd5e1;
  opacity: 1;
  transition: all 0.3s ease;
}

.trev-pagination .swiper-pagination-bullet-active {
  background: #2e9e3e;
  width: 28px;
  border-radius: 5px;
}

/* ── Prev / Next Arrow Buttons ── */
.trev-btn-prev,
.trev-btn-next {
  width: 44px !important;
  height: 44px !important;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(15, 26, 61, 0.12);
  color: #0f1a3d;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
  top: 42% !important;
  z-index: 10;
}

.trev-btn-prev::after,
.trev-btn-next::after {
  display: none;
  /* hide default Swiper arrows */
}

.trev-btn-prev i,
.trev-btn-next i {
  font-size: 1rem;
  line-height: 1;
}

.trev-btn-prev:hover,
.trev-btn-next:hover {
  background: #2e9e3e;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(46, 158, 62, 0.35);
}

.trev-btn-prev {
  left: -2rem !important;
}

.trev-btn-next {
  right: -2rem !important;
}

@media (max-width: 768px) {
  .trev-swiper-wrap {
    padding: 0;
  }

  .trev-btn-prev,
  .trev-btn-next {
    display: none !important;
  }
}


/* Dot-grid decorative background */
.testimonial-bg-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(15, 26, 61, 0.07) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* ── Split Header ── */
.testimonial-section-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.testimonial-section-left {
  flex: 1;
  min-width: 280px;
}

.testimonial-section-right {
  flex-shrink: 0;
}

.testimonial-label {
  display: inline-flex;
  align-items: center;
  background: rgba(46, 158, 62, 0.12);
  color: #2e9e3e;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  padding: 0.45rem 1.1rem;
  border-radius: 5rem;
  margin-bottom: 0.9rem;
  text-transform: uppercase;
}

.testimonial-main-heading {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 600;
  color: #0f1a3d;
  line-height: 1.2;
  margin-bottom: 0.8rem;
}

.testimonial-highlight {
  color: #2e9e3e;
  position: relative;
}

.testimonial-main-sub {
  font-size: 1.2rem;
  color: #64748b;
  line-height: 1.65;
  max-width: 40rem;
}

/* ── Aggregate Rating Box ── */
.testimonial-aggregate-box {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 1.2rem;
  padding: 1.3rem 2rem;
  box-shadow: 0 8px 24px rgba(15, 26, 61, 0.08);
  min-width: 240px;
}

.agg-score {
  font-size: 3.2rem;
  font-weight: 600;
  color: #0f1a3d;
  line-height: 1;
}

.agg-stars {
  color: #eab308;
  font-size: 1.3rem;
  margin-bottom: 0.15rem;
  letter-spacing: 2px;
}

.agg-count {
  font-size: 1rem;
  color: #64748b;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.agg-platforms {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.agg-platform-chip {
  background: #f1f5f9;
  color: #334155;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 5rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

/* ── Review Cards ── */
.trev-card {
  background: #ffffff;
  border-radius: 1.4rem;
  padding: 2rem 1.8rem 1.6rem;
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 8px 28px rgba(15, 26, 61, 0.06);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.trev-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 44px rgba(15, 26, 61, 0.13);
  border-color: rgba(2, 132, 199, 0.25);
}

/* Featured Card accent */
.trev-card--featured {
  border-color: rgba(46, 158, 62, 0.35);
  background: linear-gradient(160deg, #f7fdf8 0%, #ffffff 50%);
  box-shadow: 0 12px 36px rgba(46, 158, 62, 0.12);
}

.trev-card--featured:hover {
  border-color: rgba(46, 158, 62, 0.55);
  box-shadow: 0 22px 48px rgba(46, 158, 62, 0.18);
}

.trev-featured-tag {
  position: absolute;
  top: -1px;
  right: 1.4rem;
  background: linear-gradient(135deg, #2e9e3e, #16a34a);
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 0.35rem 1rem;
  border-radius: 0 0 0.6rem 0.6rem;
  letter-spacing: 0.3px;
}

/* Big decorative opening quote */
.trev-quote-mark {
  font-size: 5rem;
  line-height: 1;
  color: #2e9e3e;
  opacity: 0.15;
  font-family: Georgia, serif;
  margin-bottom: -1.5rem;
  margin-left: -0.3rem;
  user-select: none;
}

.trev-review-text {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #334155;
  flex-grow: 1;
  margin-bottom: 1.3rem;
}

.trev-trip-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  width: fit-content;
  gap: 0.4rem;
  background: #f1f5f9;
  color: #0f1a3d;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 0.45rem 1.1rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.trev-trip-badge i {
  color: #2e9e3e;
}

.trev-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.trev-stars {
  color: #eab308;
  font-size: 1.4rem;
  letter-spacing: 1px;
}

.trev-score {
  font-size: 1.1rem;
  font-weight: 700;
  color: #475569;
}

.trev-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.07);
  margin-bottom: 1.2rem;
}

/* Author row */
.trev-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.trev-avatar-wrap {
  position: relative;
  flex-shrink: 0;
}

.trev-avatar {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ffffff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.14);
}

.trev-verified-dot {
  position: absolute;
  bottom: 0;
  right: -2px;
  background: #059669;
  color: #ffffff;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  border: 2px solid #ffffff;
}

.trev-author-info {
  flex-grow: 1;
}

.trev-author-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f1a3d;
  margin-bottom: 0.25rem;
}

.trev-author-meta {
  font-size: 1.05rem;
  color: #64748b;
}

.trev-platform-logo {
  font-size: 1.7rem;
  flex-shrink: 0;
  opacity: 0.9;
}

/* ── Trust Stats Strip ── */
.testimonial-trust-strip {
  background: linear-gradient(135deg, #0f1a3d 0%, #1e3a5f 100%);
  border-radius: 1.4rem;
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: 0 16px 40px rgba(15, 26, 61, 0.18);
  flex-wrap: wrap;
}

.tts-item {
  text-align: center;
  flex: 1;
}

.tts-num {
  font-size: clamp(2rem, 2.8vw, 2.6rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.tts-num span {
  color: #4ade80;
  font-size: 0.75em;
}

.tts-label {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.tts-sep {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .testimonial-section-header {
    flex-direction: column;
  }

  .testimonial-aggregate-box {
    min-width: unset;
    width: 100%;
  }

  .testimonial-trust-strip {
    gap: 1.5rem;
    padding: 1.8rem 1.5rem;
  }

  .tts-sep {
    display: none;
  }

  .tts-item {
    min-width: 40%;
  }
}