/* ==========================================================================
   ARHAM MODERN MINIMALIST DESIGN SYSTEM (Airbnb / Booking.com Style)
   Ultra Clean, Modern Typography, Soft Shadows, Photo Grids
   ========================================================================== */

:root {
  /* Airbnb/Booking-inspired Clean Palette */
  --ab-primary: #FF385C;          /* Vibrant Coral Accent */
  --ab-primary-hover: #E00B41;
  --ab-primary-light: #FFF1F3;
  --ab-primary-glow: rgba(255, 56, 92, 0.2);

  --ab-blue: #006CE4;             /* Booking Blue Accent */
  --ab-blue-hover: #0057B8;
  --ab-blue-light: #F0F6FF;

  --ab-dark: #222222;             /* Primary Text */
  --ab-charcoal: #484848;         /* Subtext */
  --ab-muted: #717171;            /* Muted / Captions */
  --ab-light-gray: #B0B0B0;       /* Border / Dividers */

  --ab-bg: #FFFFFF;               /* Clean Canvas */
  --ab-bg-subtle: #F7F7F7;        /* Soft Section Background */
  --ab-surface: #FFFFFF;
  --ab-border: #EBEBEB;           /* Crisp 1px border */
  --ab-border-hover: #222222;

  /* Geometry & Elevation */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 32px;
  --r-full: 9999px;

  --sh-subtle: 0 1px 2px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.05);
  --sh-floating: 0 6px 20px rgba(0,0,0,0.12);
  --sh-hover: 0 12px 32px rgba(0,0,0,0.14);

  --t-smooth: 0.25s cubic-bezier(0.2, 0, 0, 1);
}

/* ==========================================================================
   GLOBAL RESET & TYPOGRAPHY
   ========================================================================== */
body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
  color: var(--ab-dark) !important;
  background-color: var(--ab-bg) !important;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  color: var(--ab-dark) !important;
  font-weight: 700;
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all var(--t-smooth);
}

/* ==========================================================================
   CLEAN MINIMALIST HEADER & NAVBAR
   ========================================================================== */
.header-wrap {
  position: sticky !important;
  top: 0 !important;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #FFFFFF !important;
  border-bottom: 1px solid var(--ab-border) !important;
  padding: 12px 0 !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04) !important;
}

.premium-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo-img {
  height: 46px;
  width: auto;
  max-width: 220px;
  display: block;
  object-fit: contain;
  transition: transform var(--t-smooth);
}

.premium-logo:hover .brand-logo-img {
  transform: scale(1.02);
}

.footer-logo-img {
  height: 48px;
  width: auto;
  max-width: 230px;
  display: block;
  object-fit: contain;
  margin-bottom: 16px;
  transition: transform var(--t-smooth);
}

.footer-brand-logo:hover .footer-logo-img {
  transform: scale(1.02);
}

/* Nav Menu Links: Blackish & Refined Lighter Bold */
.navbar-nav .nav-link {
  font-size: 0.94rem;
  font-weight: 500 !important;
  color: #111827 !important;
  padding: 8px 14px !important;
  border-radius: var(--r-full);
  letter-spacing: 0.1px;
  transition: all var(--t-smooth);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #000000 !important;
  font-weight: 600 !important;
  background: rgba(0, 0, 0, 0.05);
}

/* Dropdown Menu styling for nested menus */
.dropdown.dropnav .dropdown-menu,
.navbar-nav .dropdown-menu {
  border: 1px solid var(--ab-border);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 8px;
}

.dropdown-menu .dropdown-item {
  font-size: 0.9rem;
  font-weight: 500;
  color: #1f2937;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all var(--t-smooth);
}

.dropdown-menu .dropdown-item:hover {
  background: var(--ab-bg-subtle);
  color: var(--ab-blue);
}

/* Header Buttons */
.btn-nav-login {
  color: #111827 !important;
  background: transparent;
  font-weight: 500;
  font-size: 0.92rem;
  padding: 8px 16px !important;
  border-radius: var(--r-full);
  transition: all var(--t-smooth);
  white-space: nowrap;
}

.btn-nav-login:hover {
  background: rgba(0, 0, 0, 0.05);
  color: #000000 !important;
}

.btn-nav-register {
  background: var(--ab-blue) !important;
  color: #FFFFFF !important;
  border: none;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 8px 18px !important;
  border-radius: var(--r-full);
  box-shadow: 0 2px 8px rgba(0, 108, 228, 0.2);
  transition: all var(--t-smooth);
  white-space: nowrap;
}

.btn-nav-register:hover {
  background: var(--ab-blue-hover) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 108, 228, 0.3);
  color: #FFFFFF !important;
}

.user-avatar-pill {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--ab-border);
}

/* Mobile Responsiveness */
.mobile-toggler-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #F3F4F6 !important;
  color: #111827 !important;
  font-size: 1.15rem;
  padding: 0 !important;
  margin: 0 !important;
  transition: all var(--t-smooth);
}

.mobile-toggler-btn:hover,
.mobile-toggler-btn:focus {
  background: #E5E7EB !important;
  color: #000000 !important;
  outline: none !important;
}

@media (max-width: 991.98px) {
  .header-wrap {
    padding: 10px 0 !important;
  }

  .brand-logo-img {
    height: 38px;
    max-width: 170px;
  }

  .header-wrap .navbar-collapse {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: #FFFFFF;
    padding: 18px 20px 24px 20px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
    border-radius: 0 0 16px 16px;
    border: 1px solid var(--ab-border);
    border-top: none;
    z-index: 1050;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }

  .header-auth-actions {
    flex-direction: column;
    width: 100%;
    border-top: 1px solid var(--ab-border);
  }

  .header-auth-actions .btn-nav-login,
  .header-auth-actions .btn-nav-register {
    width: 100%;
    display: block;
    text-align: center;
  }

  .navbar-nav {
    align-items: flex-start !important;
    width: 100%;
  }

  .navbar-nav .nav-item {
    width: 100%;
  }

  .navbar-nav .nav-link {
    padding: 10px 14px !important;
    width: 100%;
    font-size: 0.98rem;
    border-radius: 8px;
  }

  .dropdown-menu {
    border: none;
    box-shadow: none;
    padding-left: 12px;
    background: #F9FAFB;
    border-radius: 8px;
    margin-top: 4px;
    margin-bottom: 8px;
  }
}

/* ==========================================================================
   HERO & MODERN AIRBNB-STYLE FLOATING PILL SEARCH CONSOLE
   ========================================================================== */
#home.premium-hero {
  background-size: cover !important;
  background-position: center !important;
  position: relative;
  padding: 0 !important;
  overflow: hidden;
}

.hero-overlay {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.5) 0%, rgba(15, 23, 42, 0.75) 100%);
  padding: 70px 0 80px 0;
  width: 100%;
}

.hero-main-title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  color: #FFFFFF !important;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  line-height: 1.15;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.hero-main-subtitle {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: rgba(255, 255, 255, 0.92) !important;
  font-weight: 500;
  margin-bottom: 32px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

/* Segmented Category Pill Tabs (Flights / Hotels / Tours) */
.category-tab-bar {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 5px;
  border-radius: var(--r-full);
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.category-tab-bar .nav-link {
  border: none !important;
  background: transparent !important;
  color: var(--ab-charcoal) !important;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 10px 26px !important;
  border-radius: var(--r-full) !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--t-smooth);
}

.category-tab-bar .nav-link.active {
  background: #FFFFFF !important;
  color: var(--ab-blue) !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
}

/* Airbnb-Style Segmented Floating Search Container */
.airbnb-search-bar {
  background: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--r-xl);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
  padding: 18px 24px;
  transition: box-shadow var(--t-smooth);
}

.airbnb-search-bar:focus-within,
.airbnb-search-bar:hover {
  box-shadow: var(--sh-hover);
  border-color: #DDDDDD;
}

/* Trip Type Segmented Pills */
.trip-mode-pills {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
  padding-left: 8px;
}

.trip-mode-pills label {
  cursor: pointer;
  margin: 0;
}

.trip-mode-pills input {
  display: none;
}

.trip-mode-pills span {
  display: inline-block;
  padding: 5px 14px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ab-muted);
  background: var(--ab-bg-subtle);
  border-radius: var(--r-full);
  transition: all var(--t-smooth);
}

.trip-mode-pills input:checked + span {
  background: var(--ab-dark);
  color: #FFFFFF;
}

/* Search Segment Column */
.search-segment {
  padding: 6px 14px;
  border-radius: var(--r-md);
  transition: background var(--t-smooth);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid transparent;
}

.search-segment:hover,
.search-segment:focus-within {
  background: var(--ab-bg-subtle);
  border-color: var(--ab-border);
}

.search-segment-label {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--ab-dark);
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.search-segment-label i {
  color: var(--ab-blue);
  font-size: 0.82rem;
}

.search-segment input,
.search-segment select {
  border: none !important;
  background: transparent !important;
  padding: 0 !important;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ab-dark);
  outline: none !important;
  box-shadow: none !important;
  width: 100%;
}

.search-segment input::placeholder {
  color: var(--ab-muted);
  font-weight: 400;
}

/* Search Round/Pill Action Button */
.btn-airbnb-search {
  background: var(--ab-blue) !important;
  color: #FFFFFF !important;
  border: none;
  border-radius: var(--r-full);
  font-weight: 700;
  font-size: 1rem;
  height: 52px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all var(--t-smooth);
  box-shadow: 0 4px 14px rgba(0, 108, 228, 0.3);
}

.btn-airbnb-search:hover {
  background: var(--ab-blue-hover) !important;
  transform: scale(1.02);
  color: #FFFFFF !important;
}

/* ==========================================================================
   SECTIONS: CLEAN & MINIMALIST LAYOUT
   ========================================================================== */
.clean-section {
  padding: 64px 0;
  position: relative;
}

.clean-section.bg-subtle {
  background-color: var(--ab-bg-subtle);
}

.clean-section-header {
  margin-bottom: 36px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.clean-section-header-content h3 {
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  font-weight: 800;
  color: var(--ab-dark);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.clean-section-header-content p {
  font-size: 1rem;
  color: var(--ab-muted);
  margin: 0;
}

.clean-section-link {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ab-blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.clean-section-link:hover {
  color: var(--ab-blue-hover);
  text-decoration: underline;
}

/* ==========================================================================
   TOP DESTINATIONS: VIBRANT AIRBNB PHOTO CARDS
   ========================================================================== */
.destination-photo-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  display: block;
  box-shadow: var(--sh-subtle);
  transition: all var(--t-smooth);
  background: #222222;
  aspect-ratio: 4 / 3;
}

.destination-photo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-floating);
}

.destination-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.destination-photo-card:hover img {
  transform: scale(1.06);
}

.destination-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.75) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px 18px;
  color: #FFFFFF;
}

.destination-photo-overlay h4 {
  color: #FFFFFF !important;
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0 0 2px 0;
}

.destination-photo-overlay p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
  margin: 0;
  font-weight: 500;
}

/* ==========================================================================
   FEATURED HOTELS & TOURS: AIRBNB / BOOKING.COM CARDS
   ========================================================================== */
.stay-card {
  background: #FFFFFF;
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform var(--t-smooth);
}

.stay-card:hover {
  transform: translateY(-3px);
}

.stay-card-img-wrap {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #EEEEEE;
  margin-bottom: 12px;
}

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

.stay-card:hover .stay-card-img-wrap img {
  transform: scale(1.04);
}

.stay-card-type-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  color: var(--ab-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--r-full);
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.stay-card-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.stay-card-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.stay-card-location {
  font-size: 0.85rem;
  color: var(--ab-muted);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 70%;
}

.stay-card-rating {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ab-dark);
  display: flex;
  align-items: center;
  gap: 3px;
}

.stay-card-rating i {
  color: #FFA41C;
  font-size: 0.78rem;
}

.stay-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ab-dark);
  margin-bottom: 6px;
  line-height: 1.3;
}

.stay-card-title a:hover {
  color: var(--ab-blue);
}

.stay-card-price-row {
  margin-top: auto;
  padding-top: 8px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.stay-card-price {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ab-dark);
}

.stay-card-unit {
  font-size: 0.85rem;
  color: var(--ab-muted);
}

/* ==========================================================================
   MINIMAL VALUE PROPS (WHY CHOOSE US)
   ========================================================================== */
.value-card {
  padding: 24px;
  background: var(--ab-bg-subtle);
  border-radius: var(--r-lg);
  height: 100%;
  transition: all var(--t-smooth);
}

.value-card:hover {
  background: #FFFFFF;
  box-shadow: var(--sh-floating);
}

.value-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: var(--ab-blue-light);
  color: var(--ab-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.value-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.value-card p {
  color: var(--ab-muted);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.55;
}

/* ==========================================================================
   CLEAN EDITORIAL BLOG CARDS
   ========================================================================== */
.clean-blog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.clean-blog-img-wrap {
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  margin-bottom: 14px;
}

.clean-blog-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.clean-blog-card:hover .clean-blog-img-wrap img {
  transform: scale(1.05);
}

.clean-blog-date {
  font-size: 0.8rem;
  color: var(--ab-muted);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.clean-blog-title {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--ab-dark);
}

.clean-blog-title a:hover {
  color: var(--ab-blue);
}

/* ==========================================================================
   LUXURY MODERN FOOTER
   ========================================================================== */
.luxury-footer {
  background: linear-gradient(180deg, #0B1320 0%, #070D17 100%) !important;
  color: #94A3B8 !important;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.luxury-footer a {
  text-decoration: none;
}

/* Top Newsletter Bar */
.footer-newsletter-wrap {
  padding: 50px 0 30px 0;
}

.footer-newsletter-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 36px 40px;
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}

.footer-newsletter-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(186, 146, 71, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.newsletter-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, #C59E50 0%, #9A7732 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 8px 20px rgba(197, 158, 80, 0.3);
  flex-shrink: 0;
}

.newsletter-title {
  color: #FFFFFF;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.2px;
}

.newsletter-desc {
  color: #94A3B8;
  font-size: 0.88rem;
}

.newsletter-input-box {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  padding: 6px 6px 6px 18px;
  transition: all var(--t-smooth);
}

.newsletter-input-box:focus-within {
  background: rgba(255, 255, 255, 0.1);
  border-color: #C59E50;
  box-shadow: 0 0 16px rgba(197, 158, 80, 0.25);
}

.newsletter-mail-icon {
  color: #94A3B8;
  font-size: 1rem;
  margin-right: 10px;
}

.newsletter-input-box input {
  background: transparent;
  border: none;
  outline: none;
  color: #FFFFFF;
  font-size: 0.92rem;
  width: 100%;
}

.newsletter-input-box input::placeholder {
  color: #64748B;
}

.btn-newsletter-submit {
  background: linear-gradient(135deg, #006CE4 0%, #0052B4 100%);
  color: #FFFFFF;
  border: none;
  border-radius: 40px;
  padding: 10px 24px;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  white-space: nowrap;
  transition: all var(--t-smooth);
  box-shadow: 0 4px 12px rgba(0, 108, 228, 0.3);
}

.btn-newsletter-submit:hover {
  background: linear-gradient(135deg, #007bf0 0%, #006CE4 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 108, 228, 0.4);
}

/* Main Content Area */
.footer-main-content {
  padding: 40px 0 50px 0;
}

.footer-bio-text {
  color: #94A3B8;
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 22px;
}

.footer-contact-mini {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-mini-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: #CBD5E1;
}

.contact-mini-item i {
  color: #BA9247;
  font-size: 0.95rem;
  width: 16px;
  text-align: center;
}

.contact-mini-item a {
  color: #CBD5E1;
  transition: color var(--t-smooth);
}

.contact-mini-item a:hover {
  color: #FFFFFF;
}

.footer-social-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-social-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #E2E8F0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: all var(--t-smooth);
}

.footer-social-circle:hover {
  background: linear-gradient(135deg, #C59E50 0%, #9A7732 100%);
  border-color: #C59E50;
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(197, 158, 80, 0.35);
}

/* Footer Headings & Nav Lists */
.luxury-footer .footer-heading,
footer .footer-heading,
.footer-heading {
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: #FFFFFF !important;
  letter-spacing: 0.6px !important;
  text-transform: uppercase !important;
  margin-bottom: 22px !important;
  position: relative !important;
  padding-bottom: 12px !important;
  text-align: left !important;
}

.luxury-footer .footer-heading::after,
footer .footer-heading::after,
.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: #BA9247;
  border-radius: 2px;
}

.luxury-footer .footer-nav-list,
footer .footer-nav-list,
.footer-nav-list {
  list-style: none !important;
  padding: 0 !important;
  padding-left: 0 !important;
  margin: 0 !important;
  text-align: left !important;
}

.luxury-footer .footer-nav-list li,
footer .footer-nav-list li,
.footer-nav-list li {
  list-style: none !important;
  margin: 0 0 12px 0 !important;
  padding: 0 !important;
  text-align: left !important;
}

.luxury-footer .footer-nav-list a,
footer .footer-nav-list a,
.footer-nav-list a {
  color: #94A3B8 !important;
  font-size: 0.92rem;
  font-weight: 400;
  transition: all var(--t-smooth);
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  text-align: left !important;
  text-decoration: none !important;
}

.luxury-footer .footer-nav-list a i,
footer .footer-nav-list a i,
.footer-nav-list a i {
  font-size: 0.65rem;
  color: #64748B;
  transition: all var(--t-smooth);
}

.luxury-footer .footer-nav-list a:hover,
footer .footer-nav-list a:hover,
.footer-nav-list a:hover {
  color: #FFFFFF !important;
  transform: translateX(5px);
}

.luxury-footer .footer-nav-list a:hover i,
footer .footer-nav-list a:hover i,
.footer-nav-list a:hover i {
  color: #BA9247 !important;
}

/* 24/7 Support Card */
.footer-support-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 22px;
  backdrop-filter: blur(8px);
}

.support-badge {
  color: #10B981;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 10px #10B981;
  animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.support-text {
  color: #94A3B8;
  font-size: 0.88rem;
  line-height: 1.5;
}

.btn-support-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 18px;
  border-radius: 12px;
  background: linear-gradient(135deg, #006CE4 0%, #0052B4 100%);
  color: #FFFFFF !important;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--t-smooth);
  box-shadow: 0 4px 14px rgba(0, 108, 228, 0.25);
}

.btn-support-call:hover {
  background: linear-gradient(135deg, #007bf0 0%, #006CE4 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 108, 228, 0.35);
  color: #FFFFFF !important;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: #CBD5E1;
  font-weight: 500;
}

/* Bottom Legal Row */
.footer-bottom-bar {
  background: rgba(0, 0, 0, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px 0;
}

.footer-copyright {
  font-size: 0.88rem;
  color: #64748B;
}

.payment-label {
  font-size: 0.82rem;
  color: #64748B;
  margin-right: 4px;
}

.footer-payment-methods i {
  font-size: 1.45rem;
  color: #64748B;
  transition: color var(--t-smooth);
}

.footer-payment-methods i:hover {
  color: #CBD5E1;
}

@media (max-width: 768px) {
  .footer-newsletter-card {
    padding: 24px 20px;
  }
  
  .newsletter-input-box {
    flex-direction: column;
    border-radius: 16px;
    padding: 12px;
    gap: 10px;
  }
  
  .btn-newsletter-submit {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   FLIGHTS SEARCH & RESULTS PAGE (REDESIGN)
   ========================================================================== */
.flightinthero {
  position: relative;
  padding: 60px 0 70px 0;
  background: linear-gradient(135deg, rgba(11, 19, 32, 0.88) 0%, rgba(15, 23, 42, 0.92) 100%), url('../images/flights-bg.jpg') no-repeat center center / cover !important;
}

.flight-hero-badge {
  background: rgba(186, 146, 71, 0.2);
  border: 1px solid rgba(186, 146, 71, 0.4);
  color: #E5C378;
  border-radius: 30px;
  padding: 6px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  display: inline-block;
}

.flight-hero-title {
  color: #FFFFFF !important;
  font-size: 2.3rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.flight-hero-subtitle {
  color: #CBD5E1;
  font-size: 1.05rem;
  font-weight: 400;
}

.flight-search-card {
  background: #FFFFFF !important;
  border-radius: 20px !important;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15) !important;
  padding: 28px 32px !important;
  border: 1px solid rgba(255, 255, 255, 0.8) !important;
}

/* Trip Type Segmented Controls */
.tripetype-pills {
  display: inline-flex;
  background: #F1F5F9;
  border-radius: 40px;
  padding: 4px;
  gap: 4px;
}

.trip-pill-btn {
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #475569;
  cursor: pointer;
  transition: all var(--t-smooth);
  border: none;
  margin: 0;
  display: inline-flex;
  align-items: center;
}

.btn-check:checked + .trip-pill-btn {
  background: var(--ab-blue);
  color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(0, 108, 228, 0.3);
}

/* Flight Inputs */
.flight-input-group {
  background: #F8FAFC;
  border: 1.5px solid #E2E8F0;
  border-radius: 12px;
  padding: 8px 14px;
  transition: all var(--t-smooth);
  position: relative;
}

.flight-input-group:focus-within {
  background: #FFFFFF;
  border-color: var(--ab-blue);
  box-shadow: 0 0 0 3px rgba(0, 108, 228, 0.12);
}

.flight-input-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: #64748B;
  letter-spacing: 0.6px;
  margin-bottom: 2px;
  text-transform: uppercase;
}

.flight-custom-input,
.flight-custom-select {
  border: none !important;
  background: transparent !important;
  padding: 2px 0 !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  color: #1E293B !important;
  width: 100% !important;
  outline: none !important;
  box-shadow: none !important;
}

.btn-search-flights {
  background: linear-gradient(135deg, #006CE4 0%, #0052B4 100%) !important;
  color: #FFFFFF !important;
  border: none !important;
  border-radius: 12px !important;
  padding: 12px 20px !important;
  font-weight: 700 !important;
  font-size: 0.98rem !important;
  box-shadow: 0 4px 14px rgba(0, 108, 228, 0.3) !important;
  transition: all var(--t-smooth) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.btn-search-flights:hover {
  background: linear-gradient(135deg, #007bf0 0%, #006CE4 100%) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 108, 228, 0.4) !important;
}

/* Sorting & Filters Bar */
.flight-sorting-bar {
  background: #FFFFFF !important;
  border-radius: 16px !important;
  padding: 18px 24px !important;
  border: 1px solid #E2E8F0 !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04) !important;
  margin-bottom: 28px !important;
}

.flight-sort-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
  display: block;
}

.flight-sort-select {
  border: 1px solid #CBD5E1 !important;
  border-radius: 10px !important;
  font-size: 0.9rem !important;
  font-weight: 500 !important;
  color: #1E293B !important;
  padding: 8px 12px !important;
}

.btn-apply-filter {
  background: #F1F5F9 !important;
  color: #1E293B !important;
  border: 1px solid #CBD5E1 !important;
  border-radius: 10px !important;
  padding: 8px 16px !important;
  font-weight: 600 !important;
  font-size: 0.9rem !important;
  transition: all var(--t-smooth) !important;
}

.btn-apply-filter:hover {
  background: #E2E8F0 !important;
  color: #000000 !important;
}

/* Flight Offer Card */
.flight-offer-card {
  background: #FFFFFF;
  border-radius: 18px;
  border: 1px solid #E2E8F0;
  padding: 24px 28px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: all var(--t-smooth);
}

.flight-offer-card:hover {
  border-color: #93C5FD;
  box-shadow: 0 12px 30px rgba(0, 108, 228, 0.1);
  transform: translateY(-2px);
}

.airline-brand-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.airline-logo-img {
  max-height: 48px;
  max-width: 90px;
  object-fit: contain;
}

.airline-fallback-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #EFF6FF;
  color: var(--ab-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.airline-brand-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: #1E293B;
  text-align: center;
}

/* Route Timeline */
.point-time {
  font-size: 1.3rem;
  font-weight: 800;
  color: #0F172A;
  display: block;
  line-height: 1.2;
}

.point-iata {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ab-blue);
  display: block;
}

.point-city {
  font-size: 0.85rem;
  color: #64748B;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 130px;
}

.flight-duration-pill {
  background: #F1F5F9;
  color: #475569;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 3px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 6px;
}

.flight-trajectory-line {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 6px 0;
}

.line-track {
  flex-grow: 1;
  height: 2px;
  background: repeating-linear-gradient(to right, #94A3B8, #94A3B8 4px, transparent 4px, transparent 8px);
}

.line-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ab-blue);
}

.flight-plane-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: var(--ab-blue);
  font-size: 0.9rem;
}

.flight-stops-badge {
  font-size: 0.75rem;
  font-weight: 600;
  color: #10B981;
  display: block;
}

.badge-cabin-class,
.badge-baggage {
  font-size: 0.76rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  color: #475569;
}

/* Price & Action Section */
.price-amount {
  font-size: 1.55rem;
  font-weight: 800;
  color: #0F172A;
  display: block;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.btn-select-flight {
  background: linear-gradient(135deg, #006CE4 0%, #0052B4 100%) !important;
  color: #FFFFFF !important;
  font-weight: 700 !important;
  font-size: 0.92rem !important;
  padding: 11px 22px !important;
  border-radius: 30px !important;
  border: none !important;
  transition: all var(--t-smooth) !important;
  box-shadow: 0 4px 12px rgba(0, 108, 228, 0.25) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.btn-select-flight:hover {
  background: linear-gradient(135deg, #007bf0 0%, #006CE4 100%) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 108, 228, 0.35) !important;
  color: #FFFFFF !important;
}

.btn-load-more {
  background: #FFFFFF !important;
  color: var(--ab-dark) !important;
  border: 1.5px solid #CBD5E1 !important;
  border-radius: 30px !important;
  font-weight: 700 !important;
  transition: all var(--t-smooth) !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
}

.btn-load-more:hover {
  background: #F8FAFC !important;
  border-color: var(--ab-blue) !important;
  color: var(--ab-blue) !important;
}

/* Modern Airline Partners Box */
.arilinebox-modern {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 14px 10px;
  text-align: center;
  transition: all var(--t-smooth);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
}

.arilinebox-modern:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  border-color: #CBD5E1;
}

.arilinebox-modern img {
  max-height: 36px;
  max-width: 100%;
  object-fit: contain;
}

/* Promotional Modern Widgets */
.hotelwidget-modern {
  border-radius: 20px;
  padding: 36px 32px;
  background-size: cover;
  background-position: center;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  min-height: 240px;
  display: flex;
  align-items: flex-end;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all var(--t-smooth);
}

.hotelwidget-modern:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.15);
}

.badge-promo {
  background: #BA9247;
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 10px;
}

.widget-promo-title {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: #FFFFFF !important;
}

.widget-promo-desc {
  font-size: 0.9rem;
  color: #E2E8F0;
  margin-bottom: 16px;
}

.btn-promo-cta {
  background: #FFFFFF;
  color: #0F172A !important;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 9px 22px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all var(--t-smooth);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-promo-cta:hover {
  background: #BA9247;
  color: #FFFFFF !important;
  transform: translateY(-1px);
}

@media (min-width: 992px) {
  .border-start-md {
    border-left: 1px solid #E2E8F0;
  }
}

@media (max-width: 768px) {
  .flight-search-card {
    padding: 20px 16px !important;
  }

  .flight-offer-card {
    padding: 20px 16px;
  }

  .point-city {
    max-width: 90px;
  }
}

/* ==========================================================================
   TOURS & UMRAH PACKAGES PAGE (REDESIGN)
   ========================================================================== */
.tours-hero {
  position: relative;
  padding: 64px 0 74px 0;
  background: linear-gradient(135deg, #0B1320 0%, #111E36 100%) !important;
}

.tours-hero::before {
  display: none !important;
}

.tours-hero-badge {
  background: rgba(186, 146, 71, 0.25) !important;
  border: 1px solid rgba(186, 146, 71, 0.5) !important;
  color: #F2D27A !important;
  border-radius: 30px;
  padding: 6px 18px;
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  display: inline-block;
}

.tours-hero-title {
  color: #FFFFFF !important;
  font-size: 2.5rem !important;
  font-weight: 800 !important;
  letter-spacing: -0.5px !important;
  opacity: 1 !important;
}

.tours-hero-subtitle {
  color: #CBD5E1 !important;
  font-size: 1.1rem !important;
  font-weight: 400 !important;
  max-width: 680px;
  margin: 10px auto 0 auto !important;
  opacity: 1 !important;
}

/* Search Bar in Hero */
.tours-search-bar {
  background: #FFFFFF !important;
  border-radius: 50px;
  padding: 6px 6px 6px 20px;
  display: flex;
  align-items: center;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25) !important;
  max-width: 620px;
  margin: 0 auto;
  border: 2px solid #FFFFFF !important;
}

.tours-search-icon {
  color: #64748B !important;
  font-size: 1.05rem;
  margin-right: 12px;
}

.tours-search-input {
  border: none !important;
  outline: none !important;
  background: transparent !important;
  width: 100% !important;
  font-size: 0.95rem !important;
  font-weight: 500 !important;
  color: #111827 !important;
}

.tours-search-input::placeholder {
  color: #64748B !important;
}

.btn-tours-search {
  background: linear-gradient(135deg, #006CE4 0%, #0052B4 100%);
  color: #FFFFFF;
  border: none;
  border-radius: 40px;
  padding: 10px 24px;
  font-weight: 700;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  white-space: nowrap;
  transition: all var(--t-smooth);
  box-shadow: 0 4px 12px rgba(0, 108, 228, 0.3);
}

.btn-tours-search:hover {
  background: linear-gradient(135deg, #007bf0 0%, #006CE4 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 108, 228, 0.4);
}

/* Main Section & Filters */
.tours-main-section {
  padding: 48px 0 80px 0;
  background: #F8FAFC;
  min-height: 500px;
}

.tours-filter-card {
  background: #FFFFFF;
  border-radius: 18px;
  padding: 20px 24px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.filter-select-group {
  background: #F8FAFC;
  border: 1.5px solid #E2E8F0;
  border-radius: 12px;
  padding: 8px 14px;
  transition: all var(--t-smooth);
}

.filter-select-group:focus-within {
  background: #FFFFFF;
  border-color: var(--ab-blue);
  box-shadow: 0 0 0 3px rgba(0, 108, 228, 0.12);
}

.filter-micro-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: #64748B;
  letter-spacing: 0.6px;
  margin-bottom: 2px;
  text-transform: uppercase;
}

.filter-custom-select {
  border: none !important;
  background: transparent !important;
  padding: 2px 0 !important;
  font-size: 0.92rem !important;
  font-weight: 600 !important;
  color: #1E293B !important;
  width: 100% !important;
  outline: none !important;
  box-shadow: none !important;
}

.btn-filter-apply {
  background: linear-gradient(135deg, #006CE4 0%, #0052B4 100%);
  color: #FFFFFF;
  border: none;
  border-radius: 12px;
  padding: 12px 20px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 4px 12px rgba(0, 108, 228, 0.25);
  transition: all var(--t-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-filter-apply:hover {
  background: linear-gradient(135deg, #007bf0 0%, #006CE4 100%);
  color: #FFFFFF;
  transform: translateY(-1px);
}

.btn-filter-reset {
  background: #F1F5F9;
  color: #64748B;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 0.95rem;
  transition: all var(--t-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-filter-reset:hover {
  background: #EF4444;
  color: #FFFFFF;
  border-color: #EF4444;
}

.results-count-badge {
  background: var(--ab-blue);
  color: #FFFFFF;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
}

/* Tour Luxury Card */
.tour-luxury-card {
  background: #FFFFFF;
  border-radius: 18px;
  border: 1px solid #E2E8F0;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: all var(--t-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.tour-luxury-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 108, 228, 0.12);
  border-color: #93C5FD;
}

.tour-image-container {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.tour-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tour-luxury-card:hover .tour-card-img {
  transform: scale(1.06);
}

.tour-overlay-badges {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  z-index: 2;
}

.badge-duration {
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.badge-category {
  background: linear-gradient(135deg, #BA9247 0%, #9A7732 100%);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(186, 146, 71, 0.4);
}

.badge-departure-loc {
  position: absolute;
  bottom: 12px;
  left: 14px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  color: #0F172A;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Card Body */
.tour-body-content {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.tour-title-heading {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
  min-height: 48px;
}

.tour-title-heading a {
  color: #0F172A;
  text-decoration: none;
  transition: color var(--t-smooth);
}

.tour-title-heading a:hover {
  color: var(--ab-blue);
}

.tour-meta-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.tour-meta-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: #64748B;
  font-weight: 500;
}

.perk-chip {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  font-size: 0.74rem;
  font-weight: 600;
  color: #475569;
  padding: 3px 10px;
  border-radius: 6px;
}

.tour-price-val {
  font-size: 1.4rem;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.1;
}

.btn-tour-view {
  background: linear-gradient(135deg, #006CE4 0%, #0052B4 100%);
  color: #FFFFFF !important;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 9px 20px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all var(--t-smooth);
  box-shadow: 0 4px 12px rgba(0, 108, 228, 0.25);
}

.btn-tour-view:hover {
  background: linear-gradient(135deg, #007bf0 0%, #006CE4 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 108, 228, 0.35);
}

/* Empty State */
.tours-empty-box {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 50px 30px;
  border: 1px solid #E2E8F0;
}

.empty-compass-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #EFF6FF;
  color: var(--ab-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

/* ==========================================================================
   SERVICES SHOWCASE & DETAIL PAGES (REDESIGN)
   ========================================================================== */
.services-hero {
  position: relative;
  padding: 64px 0 74px 0;
  background: linear-gradient(135deg, #0B1320 0%, #111E36 100%) !important;
}

.services-hero-badge {
  background: rgba(186, 146, 71, 0.25);
  border: 1px solid rgba(186, 146, 71, 0.5);
  color: #F2D27A;
  border-radius: 30px;
  padding: 6px 18px;
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  display: inline-block;
}

.services-hero-title {
  color: #FFFFFF !important;
  font-size: 2.5rem !important;
  font-weight: 800 !important;
  letter-spacing: -0.5px;
}

.services-hero-subtitle {
  color: #CBD5E1 !important;
  font-size: 1.05rem !important;
  max-width: 680px;
  margin: 10px auto 0 auto;
}

.services-main-wrap {
  background: #F8FAFC;
  min-height: 500px;
}

.service-showcase-item {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 36px 40px;
  margin-bottom: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: all var(--t-smooth);
}

.service-showcase-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0, 108, 228, 0.08);
  border-color: #93C5FD;
}

.service-showcase-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 11;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.service-showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-showcase-item:hover .service-showcase-img {
  transform: scale(1.05);
}

.service-floating-icon {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C59E50 0%, #9A7732 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(197, 158, 80, 0.4);
}

.service-category-tag {
  background: #EFF6FF;
  color: var(--ab-blue);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
}

.service-item-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.3;
}

.service-item-title a {
  color: #0F172A;
  text-decoration: none;
  transition: color var(--t-smooth);
}

.service-item-title a:hover {
  color: var(--ab-blue);
}

.service-item-desc {
  color: #64748B;
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 12px 0 18px 0;
}

.service-benefits-grid {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #334155;
}

.btn-service-explore {
  background: linear-gradient(135deg, #006CE4 0%, #0052B4 100%);
  color: #FFFFFF !important;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 11px 24px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all var(--t-smooth);
  box-shadow: 0 4px 12px rgba(0, 108, 228, 0.25);
}

.btn-service-explore:hover {
  background: linear-gradient(135deg, #007bf0 0%, #006CE4 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 108, 228, 0.35);
}

/* Service Values */
.service-value-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 18px;
  padding: 32px 24px;
  height: 100%;
  transition: all var(--t-smooth);
}

.service-value-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.service-value-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: #EFF6FF;
  color: var(--ab-blue);
  font-size: 1.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.service-value-card h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 8px;
}

.service-value-card p {
  font-size: 0.88rem;
  color: #64748B;
  margin: 0;
  line-height: 1.55;
}

/* Services CTA Box */
.services-cta-box {
  background: linear-gradient(135deg, #0B1320 0%, #152238 100%);
  border-radius: 20px;
  padding: 40px 48px;
  color: #FFFFFF;
}

.cta-title {
  color: #FFFFFF;
  font-size: 1.45rem;
  font-weight: 800;
}

.cta-subtitle {
  color: #CBD5E1;
  font-size: 0.95rem;
}

.btn-cta-contact {
  background: linear-gradient(135deg, #C59E50 0%, #9A7732 100%);
  color: #FFFFFF !important;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 4px 14px rgba(197, 158, 80, 0.4);
  transition: all var(--t-smooth);
}

.btn-cta-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(197, 158, 80, 0.5);
}

/* Service Detail Cards */
.service-detail-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 36px 40px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.service-rich-description {
  color: #475569;
  font-size: 1rem;
  line-height: 1.7;
}

.service-sidebar-card {
  background: #FFFFFF;
  border-radius: 18px;
  padding: 28px 24px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.sidebar-widget-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 16px;
}

.last-border-none:last-child {
  border-bottom: none !important;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

@media (min-width: 992px) {
  .flex-row-reverse-lg .row {
    flex-direction: row-reverse;
  }
}

@media (max-width: 768px) {
  .service-showcase-item {
    padding: 24px 20px;
  }

  .services-cta-box {
    padding: 28px 20px;
  }
}

/* ==========================================================================
   CMS & ABOUT US PAGE (REDESIGN)
   ========================================================================== */
.cms-hero {
  position: relative;
  padding: 64px 0 74px 0;
  background: linear-gradient(135deg, #0B1320 0%, #111E36 100%) !important;
}

.cms-hero-badge {
  background: rgba(186, 146, 71, 0.25);
  border: 1px solid rgba(186, 146, 71, 0.5);
  color: #F2D27A;
  border-radius: 30px;
  padding: 6px 18px;
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  display: inline-block;
}

.cms-hero-title {
  color: #FFFFFF !important;
  font-size: 2.5rem !important;
  font-weight: 800 !important;
  letter-spacing: -0.5px;
}

.cms-hero-subtitle {
  color: #CBD5E1 !important;
  font-size: 1.05rem !important;
  max-width: 680px;
  margin: 10px auto 0 auto;
}

.cms-main-section {
  background: #F8FAFC;
  min-height: 500px;
}

.cms-content-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 40px 48px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.cms-rich-text {
  font-size: 1.02rem;
  line-height: 1.8;
  color: #334155;
}

.cms-rich-text h2,
.cms-rich-text h3,
.cms-rich-text h4 {
  color: #0F172A;
  font-weight: 800;
  margin-top: 28px;
  margin-bottom: 14px;
}

.cms-rich-text p {
  margin-bottom: 18px;
}

.cms-rich-text ul,
.cms-rich-text ol {
  padding-left: 20px;
  margin-bottom: 20px;
}

.cms-rich-text li {
  margin-bottom: 10px;
}

.cms-highlight-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.cms-highlight-item i {
  font-size: 1.3rem;
  margin-top: 2px;
}

.cms-highlight-item h6 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 2px;
}

.cms-contact-widget {
  background: linear-gradient(135deg, #0B1320 0%, #152238 100%);
  border-radius: 20px;
  padding: 32px 28px;
  text-align: center;
  color: #FFFFFF;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.widget-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C59E50, #9A7732);
  color: #FFFFFF;
  font-size: 1.3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(197, 158, 80, 0.4);
}

.widget-title {
  color: #FFFFFF;
  font-size: 1.25rem;
  font-weight: 800;
}

.widget-desc {
  color: #CBD5E1;
  font-size: 0.88rem;
  line-height: 1.5;
  margin-bottom: 16px;
}

.btn-widget-call {
  background: linear-gradient(135deg, #006CE4 0%, #0052B4 100%);
  color: #FFFFFF !important;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 10px 20px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 108, 228, 0.3);
  transition: all var(--t-smooth);
}

.btn-widget-call:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 108, 228, 0.4);
}

.btn-widget-contact {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: #FFFFFF !important;
  border-radius: 30px !important;
  font-weight: 600 !important;
  font-size: 0.9rem !important;
  padding: 9px 18px !important;
  transition: all var(--t-smooth) !important;
}

.btn-widget-contact:hover {
  background: #FFFFFF !important;
  color: #0F172A !important;
}

.cms-quicklinks-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}

.quicklinks-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 16px;
}

.cms-quicklinks-list li {
  margin-bottom: 12px;
}

.cms-quicklinks-list a {
  color: #475569;
  font-weight: 500;
  font-size: 0.92rem;
  text-decoration: none;
  transition: color var(--t-smooth);
  display: inline-flex;
  align-items: center;
}

.cms-quicklinks-list a:hover {
  color: var(--ab-blue);
}

.cms-stat-box {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 18px;
  padding: 24px 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  transition: all var(--t-smooth);
}

.cms-stat-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 108, 228, 0.08);
  border-color: #93C5FD;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--ab-blue);
  display: block;
  line-height: 1.1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #64748B;
}

@media (max-width: 768px) {
  .cms-content-card {
    padding: 28px 20px;
  }
}

/* ==========================================================================
   CONTACT US PAGE (REDESIGN)
   ========================================================================== */
.contact-hero {
  position: relative;
  padding: 64px 0 74px 0;
  background: linear-gradient(135deg, #0B1320 0%, #111E36 100%) !important;
}

.contact-hero-badge {
  background: rgba(186, 146, 71, 0.25);
  border: 1px solid rgba(186, 146, 71, 0.5);
  color: #F2D27A;
  border-radius: 30px;
  padding: 6px 18px;
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  display: inline-block;
}

.contact-hero-title {
  color: #FFFFFF !important;
  font-size: 2.5rem !important;
  font-weight: 800 !important;
  letter-spacing: -0.5px;
}

.contact-hero-subtitle {
  color: #CBD5E1 !important;
  font-size: 1.05rem !important;
  max-width: 680px;
  margin: 10px auto 0 auto;
}

.contact-main-section {
  background: #F8FAFC;
  min-height: 500px;
}

.contact-panel-badge {
  background: #EFF6FF;
  color: var(--ab-blue);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 4px 12px;
  border-radius: 20px;
}

.contact-panel-title {
  font-size: 1.7rem;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.3;
}

.contact-detail-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: all var(--t-smooth);
}

.contact-detail-card:hover {
  transform: translateY(-2px);
  border-color: #93C5FD;
  box-shadow: 0 8px 20px rgba(0, 108, 228, 0.08);
}

.detail-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
  color: var(--ab-blue);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.detail-micro-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #64748B;
  letter-spacing: 0.5px;
}

.detail-val {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0F172A;
  margin: 0;
}

.detail-val-link {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0F172A;
  text-decoration: none;
  transition: color var(--t-smooth);
}

.detail-val-link:hover {
  color: var(--ab-blue);
}

.contact-hours-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.hours-badge {
  color: #10B981;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hours-text {
  font-size: 0.85rem;
  color: #64748B;
}

/* Contact Form Card */
.contact-form-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.form-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: #0F172A;
}

.contact-input-wrap {
  background: #F8FAFC;
  border: 1.5px solid #E2E8F0;
  border-radius: 12px;
  padding: 8px 14px;
  transition: all var(--t-smooth);
}

.contact-input-wrap:focus-within {
  background: #FFFFFF;
  border-color: var(--ab-blue);
  box-shadow: 0 0 0 3px rgba(0, 108, 228, 0.12);
}

.contact-input-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: #64748B;
  letter-spacing: 0.6px;
  margin-bottom: 2px;
  text-transform: uppercase;
}

.contact-form-input,
.contact-form-textarea {
  border: none !important;
  background: transparent !important;
  padding: 2px 0 !important;
  font-size: 0.95rem !important;
  font-weight: 500 !important;
  color: #1E293B !important;
  width: 100% !important;
  outline: none !important;
  box-shadow: none !important;
}

.btn-send-message {
  background: linear-gradient(135deg, #006CE4 0%, #0052B4 100%);
  color: #FFFFFF !important;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 30px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  transition: all var(--t-smooth);
  box-shadow: 0 4px 14px rgba(0, 108, 228, 0.3);
}

.btn-send-message:hover {
  background: linear-gradient(135deg, #007bf0 0%, #006CE4 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 108, 228, 0.4);
}

.trust-mini-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 24px 20px;
  height: 100%;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
}

.contact-success-alert {
  background: #FFFFFF;
  border: 1px solid #10B981;
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 8px 30px rgba(16, 185, 129, 0.1);
}

.success-icon-wrap {
  font-size: 3rem;
  color: #10B981;
}

@media (max-width: 768px) {
  .contact-form-card {
    padding: 24px 20px;
  }
}

/* ==========================================================================
   AUTHENTICATION PAGES (LOGIN & REGISTER REDESIGN)
   ========================================================================== */
.auth-hero {
  position: relative;
  padding: 60px 0 70px 0;
  background: linear-gradient(135deg, #0B1320 0%, #111E36 100%) !important;
}

.auth-hero-badge {
  background: rgba(186, 146, 71, 0.25);
  border: 1px solid rgba(186, 146, 71, 0.5);
  color: #F2D27A;
  border-radius: 30px;
  padding: 6px 18px;
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  display: inline-block;
}

.auth-hero-title {
  color: #FFFFFF !important;
  font-size: 2.4rem !important;
  font-weight: 800 !important;
  letter-spacing: -0.5px;
}

.auth-hero-subtitle {
  color: #CBD5E1 !important;
  font-size: 1.05rem !important;
  max-width: 600px;
  margin: 8px auto 0 auto;
}

.auth-main-section {
  background: #F8FAFC;
  min-height: 520px;
}

.auth-luxury-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 24px;
  padding: 42px 44px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.07);
}

.auth-card-title {
  font-size: 1.55rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 4px;
}

.auth-input-group {
  background: #F8FAFC;
  border: 1.5px solid #E2E8F0;
  border-radius: 14px;
  padding: 8px 16px;
  transition: all var(--t-smooth);
}

.auth-input-group:focus-within {
  background: #FFFFFF;
  border-color: var(--ab-blue);
  box-shadow: 0 0 0 3px rgba(0, 108, 228, 0.12);
}

.auth-input-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: #64748B;
  letter-spacing: 0.6px;
  margin-bottom: 2px;
  text-transform: uppercase;
}

.auth-input-field-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.auth-field-icon {
  color: #94A3B8;
  font-size: 0.95rem;
  width: 16px;
  text-align: center;
}

.auth-custom-input {
  border: none !important;
  background: transparent !important;
  padding: 2px 0 !important;
  font-size: 0.95rem !important;
  font-weight: 500 !important;
  color: #1E293B !important;
  width: 100% !important;
  outline: none !important;
  box-shadow: none !important;
}

.auth-forgot-link {
  color: var(--ab-blue);
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
  transition: color var(--t-smooth);
}

.auth-forgot-link:hover {
  color: #004fb0;
  text-decoration: underline;
}

.btn-auth-submit {
  background: linear-gradient(135deg, #006CE4 0%, #0052B4 100%);
  color: #FFFFFF !important;
  font-weight: 700;
  font-size: 1rem;
  padding: 13px 28px;
  border-radius: 30px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  transition: all var(--t-smooth);
  box-shadow: 0 4px 14px rgba(0, 108, 228, 0.3);
}

.btn-auth-submit:hover {
  background: linear-gradient(135deg, #007bf0 0%, #006CE4 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 108, 228, 0.4);
}

.auth-security-footer {
  color: #64748B;
  font-size: 0.84rem;
  font-weight: 500;
}

@media (max-width: 768px) {
  .auth-luxury-card {
    padding: 28px 20px;
  }
}

/* ==========================================================================
   FLIGHT BOOKING ENGINE (FORM & DETAILS REDESIGN)
   ========================================================================== */
.booking-hero {
  position: relative;
  padding: 60px 0 70px 0;
  background: linear-gradient(135deg, #0B1320 0%, #111E36 100%) !important;
}

.booking-hero-badge {
  background: rgba(186, 146, 71, 0.25);
  border: 1px solid rgba(186, 146, 71, 0.5);
  color: #F2D27A;
  border-radius: 30px;
  padding: 6px 18px;
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  display: inline-block;
}

.booking-hero-title {
  color: #FFFFFF !important;
  font-size: 2.3rem !important;
  font-weight: 800 !important;
  letter-spacing: -0.5px;
}

.booking-hero-subtitle {
  color: #CBD5E1 !important;
  font-size: 1.05rem !important;
  max-width: 650px;
  margin: 8px auto 0 auto;
}

.booking-steps-bar {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 40px;
  padding: 8px 24px;
}

.booking-step {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #94A3B8;
  font-size: 0.86rem;
  font-weight: 600;
}

.booking-step.active {
  color: #FFFFFF;
  font-weight: 700;
}

.booking-step.completed {
  color: #34D399;
}

.booking-step .step-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.booking-step.active .step-num {
  background: var(--ab-blue);
  color: #FFFFFF;
}

.booking-step.completed .step-num {
  background: #10B981;
  color: #FFFFFF;
}

.step-line {
  width: 30px;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
}

.step-line.active {
  background: #10B981;
}

.booking-main-wrap {
  background: #F8FAFC;
  min-height: 500px;
}

@media (min-width: 992px) {
  .booking-itinerary-sticky,
  .booking-summary-sidebar-sticky {
    position: sticky;
    top: 90px;
  }
}

/* Flight Summary Card */
.booking-flight-summary-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.booking-carrier-logo-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
}

.booking-carrier-logo-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.booking-cabin-badge {
  background: #EFF6FF;
  color: var(--ab-blue);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.timeline-point {
  display: flex;
  gap: 14px;
  position: relative;
}

.point-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--ab-blue);
  margin-top: 5px;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(0, 108, 228, 0.15);
}

.point-dot.arrival {
  background: #BA9247;
  box-shadow: 0 0 0 4px rgba(186, 146, 71, 0.2);
}

.duration-pill {
  background: #F1F5F9;
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #475569;
  display: inline-block;
}

.booking-specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 14px;
}

.spec-grid-item {
  display: flex;
  gap: 10px;
  align-items: center;
}

.spec-grid-item i {
  font-size: 1.1rem;
  color: #64748B;
}

/* Price Summary Card */
.booking-price-summary-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.price-line-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.92rem;
  margin-bottom: 10px;
}

.booking-total-price-val {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--ab-blue);
  line-height: 1;
}

.booking-security-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
}

/* Passenger Forms */
.booking-passenger-form-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 36px 40px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.booking-type-tile {
  background: #F8FAFC;
  border: 1.5px solid #E2E8F0;
  border-radius: 16px;
  padding: 18px 20px;
  cursor: pointer;
  transition: all var(--t-smooth);
}

.booking-type-tile:hover {
  border-color: #93C5FD;
}

.booking-type-tile.selected {
  background: #EFF6FF;
  border-color: var(--ab-blue);
  box-shadow: 0 4px 16px rgba(0, 108, 228, 0.12);
}

.tile-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #FFFFFF;
  color: var(--ab-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.passenger-data-card {
  border: 1px solid #E2E8F0;
  border-radius: 18px;
  padding: 24px;
  background: #FFFFFF;
}

.passenger-badge-number {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--ab-blue);
  color: #FFFFFF;
  font-size: 0.8rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.auth-custom-control,
.auth-custom-select {
  background: #F8FAFC !important;
  border: 1.5px solid #E2E8F0 !important;
  border-radius: 10px !important;
  padding: 9px 12px !important;
  font-size: 0.92rem !important;
  transition: all var(--t-smooth) !important;
}

.auth-custom-control:focus,
.auth-custom-select:focus {
  background: #FFFFFF !important;
  border-color: var(--ab-blue) !important;
  box-shadow: 0 0 0 3px rgba(0, 108, 228, 0.12) !important;
}

.addon-select-card {
  background: #F8FAFC;
  border: 1.5px solid #E2E8F0;
  border-radius: 14px;
  padding: 16px 20px;
  cursor: pointer;
  transition: all var(--t-smooth);
}

.addon-select-card:hover {
  border-color: #93C5FD;
}

.addon-select-card.selected {
  background: #EFF6FF;
  border-color: var(--ab-blue);
}

.addon-price-tag {
  font-weight: 700;
  color: var(--ab-blue);
  font-size: 0.95rem;
}

.btn-booking-continue {
  background: linear-gradient(135deg, #006CE4 0%, #0052B4 100%);
  color: #FFFFFF !important;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 14px 34px;
  border-radius: 30px;
  border: none;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 4px 14px rgba(0, 108, 228, 0.3);
  transition: all var(--t-smooth);
}

.btn-booking-continue:hover {
  background: linear-gradient(135deg, #007bf0 0%, #006CE4 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 108, 228, 0.4);
}

@media (max-width: 768px) {
  .booking-passenger-form-card {
    padding: 24px 18px;
  }
}




