/* ============================================================
   LUXURY UPGRADE — Safari & Travel Booking System
   Design Philosophy: Ultra-premium, cinematic, super-rich UX
   Color: Driven by admin setting_item('style_main_color')
   No gold/brown — pure luxury through depth, motion & space
   ============================================================ */

/* ── 1. DESIGN TOKENS ─────────────────────────────────────── */
:root {
  --lux-primary: var(--color-blue-1, #3554D1);
  --lux-primary-rgb: 53, 84, 209;
  --lux-dark:    #0a0f1e;
  --lux-dark-2:  #111827;
  --lux-dark-3:  #1c2333;
  --lux-surface: rgba(255,255,255,0.06);
  --lux-glass:   rgba(255,255,255,0.10);
  --lux-glass-border: rgba(255,255,255,0.18);
  --lux-text-primary: #f8fafc;
  --lux-text-muted:   rgba(248,250,252,0.65);
  --lux-radius-sm: 8px;
  --lux-radius-md: 16px;
  --lux-radius-lg: 24px;
  --lux-radius-xl: 36px;
  --lux-shadow-sm: 0 2px 12px rgba(0,0,0,0.12);
  --lux-shadow-md: 0 8px 32px rgba(0,0,0,0.18);
  --lux-shadow-lg: 0 20px 60px rgba(0,0,0,0.28);
  --lux-shadow-glow: 0 0 40px rgba(var(--lux-primary-rgb),0.25);
  --lux-transition: cubic-bezier(0.4, 0, 0.2, 1);
  --lux-transition-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --lux-font-display: 'Playfair Display', Georgia, serif;
  --lux-font-body:    'Inter', -apple-system, sans-serif;
}

/* ── 2. GLOBAL RESETS & BASE ──────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--lux-font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Scroll-driven reveal base state */
.lux-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--lux-transition),
              transform 0.7s var(--lux-transition);
}
.lux-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.lux-reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s var(--lux-transition),
              transform 0.7s var(--lux-transition);
}
.lux-reveal-left.is-visible { opacity: 1; transform: translateX(0); }
.lux-reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s var(--lux-transition),
              transform 0.7s var(--lux-transition);
}
.lux-reveal-right.is-visible { opacity: 1; transform: translateX(0); }

/* Stagger children */
.lux-stagger > *:nth-child(1) { transition-delay: 0.05s; }
.lux-stagger > *:nth-child(2) { transition-delay: 0.12s; }
.lux-stagger > *:nth-child(3) { transition-delay: 0.19s; }
.lux-stagger > *:nth-child(4) { transition-delay: 0.26s; }
.lux-stagger > *:nth-child(5) { transition-delay: 0.33s; }
.lux-stagger > *:nth-child(6) { transition-delay: 0.40s; }

/* ── 3. HEADER — CINEMATIC LUXURY ────────────────────────── */

/* Transparent header: full-bleed cinematic */
.header.bg-dark-3,
.header.-fixed.bg-dark-3 {
  background: transparent !important;
  border-bottom: none !important;
  transition: background 0.5s var(--lux-transition),
              backdrop-filter 0.5s var(--lux-transition),
              box-shadow 0.5s var(--lux-transition) !important;
}

/* Sticky state — frosted glass */
.header.is-sticky,
.header.bg-dark-3.is-sticky {
  background: rgba(10, 15, 30, 0.82) !important;
  backdrop-filter: blur(24px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(24px) saturate(180%) !important;
  border-bottom: 1px solid rgba(255,255,255,0.08) !important;
  box-shadow: 0 4px 32px rgba(0,0,0,0.35) !important;
}

/* Logo pulse on load */
.header-logo img {
  transition: transform 0.4s var(--lux-transition-spring),
              filter 0.4s var(--lux-transition);
}
.header-logo:hover img {
  transform: scale(1.04);
  filter: brightness(1.1);
}

/* Nav links — animated underline */
.header .menu__nav > li > a {
  position: relative;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 12px !important;
  transition: color 0.3s var(--lux-transition) !important;
}
.header .menu__nav > li > a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--lux-primary);
  border-radius: 2px;
  transition: left 0.35s var(--lux-transition),
              right 0.35s var(--lux-transition);
}
.header .menu__nav > li:hover > a::after,
.header .menu__nav > li.is-active > a::after {
  left: 0;
  right: 0;
}

/* Header text animation on page load */
@keyframes lux-header-text-in {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.header .menu__nav > li {
  animation: lux-header-text-in 0.6s var(--lux-transition) both;
}
.header .menu__nav > li:nth-child(1) { animation-delay: 0.1s; }
.header .menu__nav > li:nth-child(2) { animation-delay: 0.15s; }
.header .menu__nav > li:nth-child(3) { animation-delay: 0.2s; }
.header .menu__nav > li:nth-child(4) { animation-delay: 0.25s; }
.header .menu__nav > li:nth-child(5) { animation-delay: 0.3s; }
.header .menu__nav > li:nth-child(6) { animation-delay: 0.35s; }
.header .menu__nav > li:nth-child(7) { animation-delay: 0.4s; }

/* Logo entrance */
@keyframes lux-logo-in {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0); }
}
.header-logo {
  animation: lux-logo-in 0.7s var(--lux-transition-spring) both;
}

/* Dropdown menus — luxury glass */
.header .menu__nav .subnav {
  background: rgba(10, 15, 30, 0.95) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: var(--lux-radius-md) !important;
  box-shadow: var(--lux-shadow-lg) !important;
  padding: 12px 0 !important;
  overflow: hidden;
}
.header .menu__nav .subnav li a {
  padding: 10px 20px !important;
  font-size: 13px !important;
  color: rgba(255,255,255,0.8) !important;
  transition: all 0.25s var(--lux-transition) !important;
  border-radius: 0 !important;
}
.header .menu__nav .subnav li a:hover {
  color: #fff !important;
  background: rgba(var(--lux-primary-rgb), 0.15) !important;
  padding-left: 28px !important;
}

/* ── 4. HERO BANNER — CINEMATIC PARALLAX ─────────────────── */

/* Hero section wrapper */
.masthead,
.bravo-form-search-all,
.bravo-form-search-tour,
.bravo-form-search-slider {
  position: relative;
  overflow: hidden;
}

/* Parallax overlay gradient */
.masthead::before,
.bravo-form-search-all::before,
.bravo-form-search-tour::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10,15,30,0.72) 0%,
    rgba(10,15,30,0.45) 50%,
    rgba(10,15,30,0.65) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* Animated gradient shimmer on hero */
.masthead::after,
.bravo-form-search-all::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 60% at 50% 0%,
    rgba(var(--lux-primary-rgb), 0.18) 0%,
    transparent 70%
  );
  z-index: 1;
  pointer-events: none;
  animation: lux-hero-shimmer 8s ease-in-out infinite alternate;
}
@keyframes lux-hero-shimmer {
  from { opacity: 0.6; transform: scale(1); }
  to   { opacity: 1;   transform: scale(1.05); }
}

/* Hero content sits above overlays */
.masthead > *:not(.masthead::before):not(.masthead::after),
.bravo-form-search-all > .container,
.bravo-form-search-all > .row,
.bravo-form-search-all .masthead__content,
.bravo-form-search-all .g-form-control {
  position: relative;
  z-index: 2;
}

/* Hero heading — animated text reveal */
.masthead__title,
.masthead h1,
.masthead h2,
.bravo-form-search-all h1,
.bravo-form-search-all h2,
.bravo-form-search-all .text-heading {
  font-family: var(--lux-font-display) !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em !important;
  line-height: 1.1 !important;
  animation: lux-hero-title 1s var(--lux-transition-spring) 0.2s both;
}
@keyframes lux-hero-title {
  from { opacity: 0; transform: translateY(40px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Hero subtitle */
.masthead__text,
.masthead p,
.bravo-form-search-all p,
.bravo-form-search-all .text-sub {
  animation: lux-hero-sub 1s var(--lux-transition) 0.45s both;
}
@keyframes lux-hero-sub {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Owl carousel hero images — subtle zoom */
.bravo-form-search-all .owl-item.active .item,
.bravo-form-search-slider .owl-item.active .item {
  animation: lux-hero-zoom 8s ease-in-out forwards;
}
@keyframes lux-hero-zoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1); }
}

  box-shadow: var(--lux-shadow-lg) !important;
  overflow: hidden;
}
.bravo-autocomplete .item {
  color: rgba(255,255,255,0.85) !important;
  transition: all 0.2s var(--lux-transition) !important;
  border-radius: 0 !important;
}
.bravo-autocomplete .item:hover {
  background: rgba(var(--lux-primary-rgb),0.18) !important;
  color: #fff !important;
  padding-left: 28px !important;
}
.nav-link:hover,
.bravo-form-search-all .nav-tabs .nav-item .nav-link.active {
  background: var(--lux-primary) !important;
  border-color: var(--lux-primary) !important;
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(var(--lux-primary-rgb),0.4) !important;
}

/* Autocomplete dropdown */
.bravo-autocomplete {
  background: rgba(10,15,30,0.96) !important;
  backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  border-radius: var(--lux-radius-md) !important;-search-all .nav-tabs .nav-item .nav-link {
  background: rgba(255,255,255,0.08) !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  border-radius: var(--lux-radius-md) !important;
  color: rgba(255,255,255,0.7) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em !important;
  padding: 10px 22px !important;
  transition: all 0.3s var(--lux-transition) !important;
}
.g-form-control .nav-tabs .nav-item .nav-link.active,
.g-form-control .nav-tabs .nav-item x rgba(var(--lux-primary-rgb),0.6) !important;
}
.gotrip_form_search .button-item .button:hover::before,
.mainSearch__submit:hover::before { opacity: 1; }
.gotrip_form_search .button-item .button:active,
.mainSearch__submit:active {
  transform: translateY(0) scale(0.98) !important;
}

/* Search tabs (Tours / Hotels / etc.) */
.g-form-control .nav-tabs,
.bravo-form-search-all .nav-tabs {
  border: none !important;
  gap: 4px;
  padding: 0 0 16px 0;
}
.g-form-control .nav-tabs .nav-item .nav-link,
.bravo-formw: 0 4px 20px rgba(var(--lux-primary-rgb),0.45) !important;
  position: relative;
  overflow: hidden;
}
.gotrip_form_search .button-item .button::before,
.mainSearch__submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.gotrip_form_search .button-item .button:hover,
.mainSearch__submit:hover {
  transform: translateY(-2px) scale(1.02) !important;
  box-shadow: 0 8px 32pbutton-item .button,
.bravo_form_search .button-item .button,
.g-form-control .button-item .button,
.mainSearch__submit {
  background: var(--lux-primary) !important;
  border: none !important;
  border-radius: var(--lux-radius-lg) !important;
  color: #fff !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  padding: 16px 32px !important;
  transition: all 0.35s var(--lux-transition-spring) !important;
  box-shadokground: transparent !important;
  border: none !important;
  color: #fff !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  padding: 0 !important;
  box-shadow: none !important;
}
.gotrip_form_search input::placeholder,
.bravo_form_search input::placeholder {
  color: rgba(255,255,255,0.45) !important;
}
.gotrip_form_search input:focus,
.bravo_form_search input:focus {
  outline: none !important;
  box-shadow: none !important;
}

/* Search button — premium CTA */
.gotrip_form_search . .searchMenu-loc label,
.gotrip_form_search .searchMenu-dates label,
.gotrip_form_search .searchMenu-guests label,
.bravo_form_search label,
.g-form-control label {
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: rgba(255,255,255,0.55) !important;
  margin-bottom: 4px !important;
}

/* Search inputs */
.gotrip_form_search input,
.gotrip_form_search .js-search,
.bravo_form_search input,
.g-form-control input {
  bacale(1); }
}
.gotrip_form_search:hover,
.bravo_form_search:hover,
.g-form-control:hover {
  box-shadow: 0 12px 60px rgba(0,0,0,0.35),
              0 0 0 1px rgba(var(--lux-primary-rgb),0.3),
              inset 0 1px 0 rgba(255,255,255,0.2) !important;
  border-color: rgba(var(--lux-primary-rgb),0.4) !important;
}

/* Search field dividers */
.gotrip_form_search .field-items > .row > div:not(:last-child) {
  border-right: 1px solid rgba(255,255,255,0.15) !important;
}

/* Search field labels */
.gotrip_form_searchant;
  border-radius: var(--lux-radius-xl) !important;
  box-shadow: 0 8px 48px rgba(0,0,0,0.28),
              inset 0 1px 0 rgba(255,255,255,0.15) !important;
  overflow: hidden;
  transition: box-shadow 0.4s var(--lux-transition),
              border-color 0.4s var(--lux-transition) !important;
  animation: lux-search-in 0.9s var(--lux-transition-spring) 0.6s both;
}
@keyframes lux-search-in {
  from { opacity: 0; transform: translateY(30px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) sc_search,
.g-form-control,
.form-search-all-service {
  background: rgba(255,255,255,0.10) !important;
  backdrop-filter: blur(28px) saturate(160%) !important;
  -webkit-backdrop-filter: blur(28px) saturate(160%) !important;
  border: 1px solid rgba(255,255,255,0.22) !import
/* ── 5. SEARCH BAR — LUXURY GLASSMORPHISM ────────────────── */

/* Main search container */
.gotrip_form_search,
.bravo_form

/* ── 5. SEARCH BAR — LUXURY GLASSMORPHISM ────────────────── */

.gotrip_form_search,
.bravo_form_search,
.g-form-control,
.form-search-all-service {
  background: rgba(255,255,255,0.10) !important;
  backdrop-filter: blur(28px) saturate(160%) !important;
  -webkit-backdrop-filter: blur(28px) saturate(160%) !important;
  border: 1px solid rgba(255,255,255,0.22) !important;
  border-radius: 36px !important;
  box-shadow: 0 8px 48px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.15) !important;
  overflow: hidden;
  transition: box-shadow 0.4s ease, border-color 0.4s ease !important;
  animation: lux-search-in 0.9s cubic-bezier(0.34,1.56,0.64,1) 0.6s both;
}
@keyframes lux-search-in {
  from { opacity: 0; transform: translateY(30px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.gotrip_form_search:hover,
.bravo_form_search:hover {
  box-shadow: 0 12px 60px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.2) !important;
}

.gotrip_form_search .field-items > .row > div:not(:last-child) {
  border-right: 1px solid rgba(255,255,255,0.15) !important;
}

.gotrip_form_search label,
.bravo_form_search label,
.g-form-control label {
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: rgba(255,255,255,0.55) !important;
  margin-bottom: 4px !important;
}

.gotrip_form_search input,
.gotrip_form_search .js-search,
.bravo_form_search input {
  background: transparent !important;
  border: none !important;
  color: #fff !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  box-shadow: none !important;
}
.gotrip_form_search input::placeholder,
.bravo_form_search input::placeholder {
  color: rgba(255,255,255,0.45) !important;
}

/* Search CTA button */
.gotrip_form_search .button-item .button,
.bravo_form_search .button-item .button,
.mainSearch__submit {
  background: var(--color-blue-1, #3554D1) !important;
  border: none !important;
  border-radius: 24px !important;
  color: #fff !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  padding: 16px 32px !important;
  transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1) !important;
  box-shadow: 0 4px 20px rgba(53,84,209,0.45) !important;
  position: relative;
  overflow: hidden;
}
.gotrip_form_search .button-item .button:hover,
.mainSearch__submit:hover {
  transform: translateY(-2px) scale(1.03) !important;
  box-shadow: 0 8px 32px rgba(53,84,209,0.6) !important;
}
.gotrip_form_search .button-item .button:active,
.mainSearch__submit:active {
  transform: translateY(0) scale(0.98) !important;
}

/* Search tabs */
.g-form-control .nav-tabs .nav-item .nav-link {
  background: rgba(255,255,255,0.08) !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  border-radius: 16px !important;
  color: rgba(255,255,255,0.7) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  padding: 10px 22px !important;
  transition: all 0.3s ease !important;
}
.g-form-control .nav-tabs .nav-item .nav-link.active,
.g-form-control .nav-tabs .nav-item .nav-link:hover {
  background: var(--color-blue-1, #3554D1) !important;
  border-color: var(--color-blue-1, #3554D1) !important;
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(53,84,209,0.4) !important;
}

/* Autocomplete dropdown */
.bravo-autocomplete {
  background: rgba(10,15,30,0.96) !important;
  backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  border-radius: 16px !important;
  box-shadow: 0 20px 60px rgba(0,0,0,0.28) !important;
  overflow: hidden;
}
.bravo-autocomplete .item {
  color: rgba(255,255,255,0.85) !important;
  transition: all 0.2s ease !important;
}
.bravo-autocomplete .item:hover {
  background: rgba(53,84,209,0.18) !important;
  color: #fff !important;
  padding-left: 28px !important;
}

/* ── 6. TOUR / HOTEL CARDS — PREMIUM HOVER ───────────────── */

.tourCard.-type-1,
.hotelCard.-type-1,
.cardImage,
.list-service-item .item {
  border-radius: 20px !important;
  overflow: hidden;
  transition: transform 0.45s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.45s ease !important;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10) !important;
  background: #fff;
}
.tourCard.-type-1:hover,
.hotelCard.-type-1:hover,
.list-service-item .item:hover {
  transform: translateY(-8px) scale(1.01) !important;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18) !important;
}

/* Card image zoom on hover */
.tourCard.-type-1 .tourCard__image img,
.hotelCard.-type-1 .hotelCard__image img,
.cardImage__content img {
  transition: transform 0.7s ease !important;
}
.tourCard.-type-1:hover .tourCard__image img,
.hotelCard.-type-1:hover .hotelCard__image img,
.list-service-item .item:hover .cardImage__content img {
  transform: scale(1.08) !important;
}

/* Card image overlay on hover */
.tourCard.-type-1 .tourCard__image,
.hotelCard.-type-1 .hotelCard__image,
.cardImage__content {
  position: relative;
  overflow: hidden;
}
.tourCard.-type-1 .tourCard__image::after,
.hotelCard.-type-1 .hotelCard__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.tourCard.-type-1:hover .tourCard__image::after,
.hotelCard.-type-1:hover .hotelCard__image::after {
  opacity: 1;
}

/* Card content */
.tourCard.-type-1 .tourCard__content,
.hotelCard.-type-1 .hotelCard__content {
  padding: 20px 22px 22px !important;
}

/* Card title */
.tourCard__title a,
.hotelCard__title a {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-weight: 700 !important;
  font-size: 17px !important;
  line-height: 1.3 !important;
  color: #0a0f1e !important;
  transition: color 0.3s ease !important;
}
.tourCard__title a:hover,
.hotelCard__title a:hover {
  color: var(--color-blue-1, #3554D1) !important;
  text-decoration: none !important;
}

/* Price badge */
.tourCard__price,
.hotelCard__price,
.price-from {
  font-weight: 800 !important;
  font-size: 18px !important;
  color: var(--color-blue-1, #3554D1) !important;
}

/* Rating stars */
.list-star .booking-item-rating-stars-active {
  color: #f59e0b !important;
}

/* Wishlist button */
.service-wishlist .button {
  background: rgba(255,255,255,0.9) !important;
  backdrop-filter: blur(10px) !important;
  border-radius: 50% !important;
  width: 38px !important;
  height: 38px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1) !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15) !important;
}
.service-wishlist .button:hover {
  transform: scale(1.15) !important;
  background: #fff !important;
}

/* ── 7. FAQ — OVERLAPPING ACCORDION ANIMATION ────────────── */

/* FAQ section wrapper */
.bravo-faq,
.accordion.-simple,
.accordion.-map,
[class*="faq"] {
  position: relative;
}

/* FAQ items — stacked card effect */
.accordion.-simple .accordion__item,
.bravo-faq .accordion__item,
[class*="faq"] .accordion__item {
  background: #fff;
  border-radius: 16px !important;
  border: 1px solid rgba(0,0,0,0.07) !important;
  margin-bottom: -8px !important;
  transition: all 0.45s cubic-bezier(0.34,1.56,0.64,1) !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06) !important;
  position: relative;
  z-index: 1;
}
.accordion.-simple .accordion__item:nth-child(1) { z-index: 6; }
.accordion.-simple .accordion__item:nth-child(2) { z-index: 5; }
.accordion.-simple .accordion__item:nth-child(3) { z-index: 4; }
.accordion.-simple .accordion__item:nth-child(4) { z-index: 3; }
.accordion.-simple .accordion__item:nth-child(5) { z-index: 2; }

.accordion.-simple .accordion__item:hover,
.accordion.-simple .accordion__item.is-active {
  z-index: 10 !important;
  margin-bottom: 8px !important;
  box-shadow: 0 12px 40px rgba(0,0,0,0.14) !important;
  transform: translateY(-2px);
}

/* FAQ button */
.accordion.-simple .accordion__button,
.bravo-faq .accordion__button {
  padding: 22px 28px !important;
  font-weight: 600 !important;
  font-size: 15px !important;
  color: #0a0f1e !important;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.3s ease !important;
}
.accordion.-simple .accordion__item.is-active .accordion__button {
  color: var(--color-blue-1, #3554D1) !important;
}

/* FAQ icon — animated rotate */
.accordion.-simple .accordion__icon,
.bravo-faq .accordion__icon {
  width: 32px !important;
  height: 32px !important;
  border-radius: 50% !important;
  background: rgba(53,84,209,0.08) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1) !important;
}
.accordion.-simple .accordion__item.is-active .accordion__icon {
  background: var(--color-blue-1, #3554D1) !important;
  transform: rotate(45deg) !important;
  box-shadow: 0 4px 16px rgba(53,84,209,0.35) !important;
}

/* FAQ content — smooth slide */
.accordion.-simple .accordion__content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s cubic-bezier(0.4,0,0.2,1),
              padding 0.4s ease !important;
  padding: 0 28px !important;
}
.accordion.-simple .accordion__item.is-active .accordion__content {
  max-height: 600px;
  padding: 0 28px 24px !important;
}
.accordion.-simple .accordion__content p {
  color: #5e6d77 !important;
  line-height: 1.7 !important;
  font-size: 14px !important;
}

/* FAQ section title */
.faq-section .sectionTitle__title,
[class*="faq"] .sectionTitle__title {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-weight: 800 !important;
}

/* ── 8. SECTION TITLES — EDITORIAL LUXURY ────────────────── */

.sectionTitle__title,
.section-title,
h2.text-40,
h2.text-50 {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em !important;
  line-height: 1.15 !important;
}

/* Animated underline accent */
.sectionTitle__title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--color-blue-1, #3554D1);
  border-radius: 3px;
  margin-top: 12px;
  transition: width 0.6s cubic-bezier(0.34,1.56,0.64,1);
}
.is-visible .sectionTitle__title::after,
.sectionTitle__title:hover::after {
  width: 80px;
}

/* Section subtitle */
.sectionTitle__text,
.section-subtitle {
  font-size: 16px !important;
  color: #5e6d77 !important;
  line-height: 1.6 !important;
  max-width: 560px;
}

/* ── 9. BUTTONS — PREMIUM INTERACTIONS ───────────────────── */

.button.-blue-1,
.btn-primary,
.button.-dark-1 {
  border-radius: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em !important;
  transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1) !important;
  position: relative;
  overflow: hidden;
}
.button.-blue-1::after,
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.button.-blue-1:hover::after,
.btn-primary:hover::after { opacity: 1; }
.button.-blue-1:hover,
.btn-primary:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 28px rgba(53,84,209,0.45) !important;
}
.button.-blue-1:active,
.btn-primary:active {
  transform: translateY(0) scale(0.97) !important;
}

/* Outline button */
.button.-outline-blue-1 {
  border-radius: 12px !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
}
.button.-outline-blue-1:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(53,84,209,0.25) !important;
}

/* ── 10. TESTIMONIALS — FLOATING CARDS ───────────────────── */

.bravo-client-feedback .item,
.testimonial-card,
[class*="testimonial"] .item {
  background: #fff !important;
  border-radius: 20px !important;
  padding: 32px !important;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08) !important;
  border: 1px solid rgba(0,0,0,0.05) !important;
  transition: all 0.45s cubic-bezier(0.34,1.56,0.64,1) !important;
  position: relative;
}
.bravo-client-feedback .item::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  left: 24px;
  font-size: 64px;
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--color-blue-1, #3554D1);
  opacity: 0.15;
  line-height: 1;
}
.bravo-client-feedback .item:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 16px 48px rgba(0,0,0,0.14) !important;
}

/* ── 11. STATS / COUNTERS — ANIMATED ─────────────────────── */

.counter-item,
.stat-item,
[class*="counter"] {
  text-align: center;
  padding: 32px 24px !important;
  border-radius: 20px !important;
  background: #fff !important;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07) !important;
  transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1) !important;
}
.counter-item:hover,
.stat-item:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 16px 48px rgba(0,0,0,0.12) !important;
}
.counter-item .number,
.stat-item .number {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-size: 48px !important;
  font-weight: 800 !important;
  color: var(--color-blue-1, #3554D1) !important;
  line-height: 1 !important;
}

/* ── 12. FOOTER — DEEP LUXURY ────────────────────────────── */

.bravo_wrap .bravo_footer {
  background: #0a0f1e !important;
  color: rgba(255,255,255,0.75) !important;
}
.bravo_wrap .bravo_footer .main-footer {
  border-top: 1px solid rgba(255,255,255,0.08) !important;
}
.bravo_wrap .bravo_footer .nav-footer .title {
  color: #fff !important;
  font-family: 'Playfair Display', Georgia, serif !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  letter-spacing: 0.04em !important;
}
.bravo_wrap .bravo_footer .nav-footer .context ul li a {
  color: rgba(255,255,255,0.6) !important;
  transition: all 0.3s ease !important;
  font-size: 14px !important;
}
.bravo_wrap .bravo_footer .nav-footer .context ul li a:hover {
  color: #fff !important;
  padding-left: 6px !important;
}
.bravo_wrap .bravo_footer .copy-right {
  border-top: 1px solid rgba(255,255,255,0.08) !important;
  color: rgba(255,255,255,0.45) !important;
}
.bravo_wrap .bravo_footer .mailchimp {
  background: rgba(255,255,255,0.04) !important;
  border-bottom: 1px solid rgba(255,255,255,0.08) !important;
}
.bravo_wrap .bravo_footer .mailchimp .subcribe-form .form-control {
  background: rgba(255,255,255,0.08) !important;
  border-color: rgba(255,255,255,0.15) !important;
  color: #fff !important;
  border-radius: 12px 0 0 12px !important;
}
.bravo_wrap .bravo_footer .mailchimp .subcribe-form .btn-submit {
  background: var(--color-blue-1, #3554D1) !important;
  border-radius: 0 12px 12px 0 !important;
  transition: all 0.3s ease !important;
}
.bravo_wrap .bravo_footer .mailchimp .subcribe-form .btn-submit:hover {
  filter: brightness(1.15) !important;
}

/* ── 13. SCROLL ANIMATIONS — INTERSECTION OBSERVER ──────── */

/* These classes are added by the JS below */
.lux-fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.lux-fade-up.animated {
  opacity: 1;
  transform: translateY(0);
}
.lux-fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.lux-fade-left.animated {
  opacity: 1;
  transform: translateX(0);
}
.lux-fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.lux-fade-right.animated {
  opacity: 1;
  transform: translateX(0);
}
.lux-scale-in {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.34,1.56,0.64,1);
}
.lux-scale-in.animated {
  opacity: 1;
  transform: scale(1);
}

/* ── 14. LOADING / PRELOADER ─────────────────────────────── */

.bravo-preloader,
#preloader {
  background: #0a0f1e !important;
}
.bravo-preloader .loader,
#preloader .loader {
  border-color: rgba(255,255,255,0.1) !important;
  border-top-color: var(--color-blue-1, #3554D1) !important;
}

/* ── 15. FORM INPUTS — REFINED ───────────────────────────── */

.form-input input,
.form-input textarea,
.form-input select,
.form-control {
  border-radius: 12px !important;
  border: 1.5px solid #e2e8f0 !important;
  transition: all 0.3s ease !important;
  font-size: 14px !important;
}
.form-input input:focus,
.form-input textarea:focus,
.form-input select:focus,
.form-control:focus {
  border-color: var(--color-blue-1, #3554D1) !important;
  box-shadow: 0 0 0 3px rgba(53,84,209,0.12) !important;
  outline: none !important;
}

/* ── 16. PAGINATION ──────────────────────────────────────── */

.bravo-pagination ul li a,
.bravo-pagination ul li span {
  border-radius: 10px !important;
  transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1) !important;
}
.bravo-pagination ul li a:hover {
  background: var(--color-blue-1, #3554D1) !important;
  color: #fff !important;
  transform: scale(1.1) !important;
}

/* ── 17. BADGES & TAGS ───────────────────────────────────── */

.cardImage__leftBadge,
.badge,
.tag {
  border-radius: 8px !important;
  font-weight: 700 !important;
  font-size: 11px !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  padding: 5px 12px !important;
}

/* ── 18. SCROLLBAR STYLING ───────────────────────────────── */

::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb {
  background: var(--color-blue-1, #3554D1);
  border-radius: 3px;
  opacity: 0.6;
}
::-webkit-scrollbar-thumb:hover { opacity: 1; }

/* ── 19. SELECTION COLOR ─────────────────────────────────── */

::selection {
  background: rgba(53,84,209,0.2);
  color: #0a0f1e;
}

/* ── 20. MOBILE RESPONSIVE LUXURY ───────────────────────── */

@media (max-width: 767px) {
  .gotrip_form_search,
  .bravo_form_search,
  .g-form-control {
    border-radius: 20px !important;
    margin: 0 12px !important;
  }
  .tourCard.-type-1,
  .hotelCard.-type-1 {
    border-radius: 16px !important;
  }
  .sectionTitle__title {
    font-size: 28px !important;
  }
  .accordion.-simple .accordion__item {
    margin-bottom: 8px !important;
  }
}

/* ── HEADER BACKGROUND — all frontend header styles ───────── */
.js-header,
.js-header.is-sticky,
.js-header[data-add-bg],
.js-header.bg-dark-1,
.js-header.bg-dark-3,
.js-header.bg-green,
.js-header.bg-white,
.js-header.-fixed,
.js-header.-type-2,
.js-header.-type-5,
.js-header.header_2,
.js-header.transparent_v4,
.bravo_header,
.bravo_header.bg-white,
.bravo_header.is-sticky {
  background-color: #051036 !important;
}

/* Override any inline style or JS-added bg class */
header.js-header { background-color: #051036 !important; }
