/* 
================================================================ 
   PREMIUM TRAVEL WEBSITE TEMPLATE - CORE STYLE
   Author: Antigravity AI
   Design Theme: Dark Glassmorphic Modern Airline Booking
================================================================ 
*/

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- Core Design Tokens --- */
:root {
  --font-primary: 'Outfit', sans-serif;
  --font-secondary: 'Inter', sans-serif;

  /* Theme Colors (Deep Slate, Royal Indigo, Electric Cyan/Teal) */
  --bg-dark: #0b0f19;
  --bg-card: rgba(22, 28, 45, 0.4);
  --bg-card-hover: rgba(22, 28, 45, 0.6);
  --text-primary: #f8fafc;
  --text-muted: #cbd5e1;
  --text-inverse: #0b0f19;
  
  --primary: #6366f1; /* Indigo */
  --primary-glow: rgba(99, 102, 241, 0.3);
  --accent: #eab308;  /* Softer Amber-Gold */
  --accent-glow: rgba(234, 179, 8, 0.4);
  --accent-secondary: #f43f5e; /* Rose / Warning */
  
  /* Glassmorphism settings */
  --glass-bg: rgba(15, 23, 42, 0.65);
  --glass-bg-light: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-border-focus: rgba(234, 179, 8, 0.35);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
}

/* --- Global Reset & Utilities --- */
body {
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-secondary);
  font-weight: 400;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* --- High-contrast Text Readability Overrides for Dark Themes --- */
.text-muted, 
.about-feature-text, 
.passenger-age, 
.destination-details,
.loader-sub-text,
.small.text-muted {
  color: #e2e8f0 !important;
}

.text-muted strong,
strong {
  color: #ffffff !important;
}

.text-secondary {
  color: #94a3b8 !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  color: var(--text-primary);
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: var(--transition-fast);
}
a:hover {
  color: var(--primary);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

/* --- Premium Buttons & CTAs --- */
.btn-premium {
  font-family: var(--font-primary);
  font-weight: 600;
  background: var(--accent);
  color: #fff !important;
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  box-shadow: 0 4px 15px var(--accent-glow);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.btn-premium i {
  color: #fff !important;
}

.btn-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #d97706; /* Solid darker gold hover */
  opacity: 0;
  z-index: -1;
  transition: opacity var(--transition-normal);
}

.btn-premium:hover {
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--accent-glow);
}

.btn-premium:hover::before {
  opacity: 1;
}

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

.btn-premium-outline {
  font-family: var(--font-primary);
  font-weight: 600;
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--glass-border);
  padding: 10px 26px;
  border-radius: 50px;
  transition: all var(--transition-normal);
}

.btn-premium-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(234, 179, 8, 0.05);
  transform: translateY(-2px);
}

/* --- Glass Card System --- */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: var(--border-radius-md);
  padding: 30px;
  transition: border-color var(--transition-fast), transform var(--transition-fast);
}

/* --- Header / Navigation --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all var(--transition-normal);
  padding: 20px 0;
}

header.scrolled {
  background: rgba(11, 15, 25, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 12px 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.5px;
  color: var(--text-primary) !important;
}

.navbar-brand img {
  height: 36px;
  width: auto;
  transition: transform var(--transition-normal);
}

.navbar-brand:hover img {
  transform: rotate(-10deg) scale(1.1);
}

.navbar-nav .nav-link {
  font-family: var(--font-primary);
  font-weight: 500;
  color: rgba(248, 250, 252, 0.7) !important;
  padding: 8px 18px !important;
  position: relative;
  transition: color var(--transition-fast);
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: all var(--transition-fast);
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--text-primary) !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 60%;
}

.navbar-toggler {
  border: none;
  background: var(--glass-bg-light);
  padding: 8px;
  border-radius: var(--border-radius-sm);
  outline: none !important;
  box-shadow: none !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28248, 250, 252, 0.8%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* --- Hero Section --- */
.hero-section {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  padding-top: 110px;
  padding-bottom: 60px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 60% 50%, rgba(11, 15, 25, 0.4) 0%, rgba(11, 15, 25, 0.92) 100%);
  z-index: 1;
}

.hero-section > .container {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 20px;
  background: linear-gradient(to right, #ffffff, #94a3b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 15px;
}

.hero-description {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 35px;
  line-height: 1.6;
}

/* --- Booking Search Engine --- */
.booking-engine {
  position: relative;
}

.booking-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
  border: none;
  list-style: none;
  padding: 0;
  margin: 0;
}

.booking-tab-btn {
  background: var(--glass-bg-light);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 500;
  font-family: var(--font-primary);
  transition: all var(--transition-fast);
}

.booking-tab-btn:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.08);
}

.booking-tab-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 10px var(--primary-glow);
}

/* Custom form components styling */
.booking-group {
  position: relative;
  margin-bottom: 20px;
}

.booking-label {
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.booking-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.booking-input-icon {
  position: absolute;
  left: 16px;
  color: var(--accent);
  font-size: 1.1rem;
  pointer-events: none;
  z-index: 3;
}

.booking-control {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid var(--glass-border) !important;
  color: var(--text-primary) !important;
  padding: 14px 16px 14px 44px !important;
  border-radius: 12px !important;
  font-size: 0.95rem !important;
  font-weight: 500 !important;
  transition: all var(--transition-fast) !important;
  box-shadow: none !important;
  width: 100%;
}

.booking-control:focus,
.booking-control.active-input {
  border-color: var(--accent) !important;
  background: rgba(255, 255, 255, 0.06) !important;
  box-shadow: 0 0 0 3px var(--accent-glow) !important;
}

.booking-control::placeholder {
  color: rgba(248, 250, 252, 0.55);
}

.booking-control:disabled {
  background: rgba(255, 255, 255, 0.01) !important;
  color: rgba(248, 250, 252, 0.2) !important;
  border-color: rgba(255, 255, 255, 0.04) !important;
  cursor: not-allowed;
}

/* Swap Button */
.btn-swap-locations {
  position: absolute;
  right: -18px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--bg-dark);
  border: 1px solid var(--glass-border);
  color: var(--accent);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all var(--transition-fast);
  cursor: pointer;
  box-shadow: var(--glass-shadow);
}

.btn-swap-locations:hover {
  background: var(--accent);
  color: var(--bg-dark);
  transform: translateY(-50%) rotate(180deg);
  border-color: var(--accent);
  box-shadow: 0 0 10px var(--accent-glow);
}

/* --- Validation System (Inline Alerts) --- */
.validation-message {
  color: var(--accent-secondary);
  font-size: 0.8rem;
  margin-top: 6px;
  display: none;
  font-weight: 500;
  align-items: center;
  gap: 4px;
}

.validation-message.visible {
  display: flex;
}

/* --- Custom Airport Autocomplete Dropdown --- */
.airport-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border-radius: 12px;
  z-index: 1050;
  margin-top: 8px;
  padding: 12px;
  overflow: hidden;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  transform-origin: top center;
  transition: opacity 0.25s, transform 0.25s;
}

.airport-search-inner {
  position: relative;
  margin-bottom: 12px;
}

.airport-search-inner input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 10px 12px 10px 35px;
  color: #fff;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}

.airport-search-inner input:focus {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.08);
}

.airport-search-inner i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.85rem;
}

.airport-results-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 250px;
  overflow-y: auto;
}

.airport-result-item {
  padding: 10px 12px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: all var(--transition-fast);
  margin-bottom: 4px;
}

.airport-result-item:last-child {
  margin-bottom: 0;
}

.airport-result-item:hover,
.airport-result-item.highlighted {
  background: rgba(234, 179, 8, 0.1);
}

.airport-result-main {
  display: flex;
  flex-direction: column;
}

.airport-result-name {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.9rem;
  line-height: 1.3;
}

.airport-result-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.airport-result-iata {
  font-family: var(--font-primary);
  font-weight: 700;
  color: var(--accent);
  font-size: 0.95rem;
  background: rgba(234, 179, 8, 0.08);
  padding: 4px 8px;
  border-radius: 6px;
  border: 1px solid rgba(234, 179, 8, 0.15);
}

.airport-no-results {
  color: var(--text-muted);
  font-size: 0.85rem;
  text-align: center;
  padding: 20px 0;
}

/* --- Flatpickr Styling Overrides (Premium Dark) --- */
.flatpickr-calendar {
  background: #0f172a !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5) !important;
  border-radius: 12px !important;
  font-family: var(--font-secondary) !important;
}

.flatpickr-calendar::before, .flatpickr-calendar::after {
  display: none !important;
}

.flatpickr-months {
  background: transparent !important;
  padding: 10px 0 !important;
}

.flatpickr-month {
  color: #fff !important;
}

.flatpickr-current-month {
  font-weight: 600 !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
  font-family: var(--font-primary) !important;
  font-weight: 600 !important;
}

.flatpickr-weekday {
  color: var(--text-muted) !important;
  font-weight: 600 !important;
}

.flatpickr-day {
  color: #fff !important;
  border-radius: 8px !important;
}

.flatpickr-day:hover, .flatpickr-day:focus {
  background: rgba(234, 179, 8, 0.15) !important;
  border-color: transparent !important;
}

.flatpickr-day.today {
  border-color: var(--primary) !important;
}

.flatpickr-day.today:hover {
  background: var(--primary) !important;
  color: #fff !important;
}

.flatpickr-day.selected, .flatpickr-day.startRange, .flatpickr-day.endRange {
  background: linear-gradient(135deg, var(--primary), var(--accent)) !important;
  color: #fff !important;
  border: none !important;
}

.flatpickr-day.disabled, .flatpickr-day.disabled:hover {
  color: rgba(255, 255, 255, 0.15) !important;
}

.flatpickr-months .flatpickr-prev-month, .flatpickr-months .flatpickr-next-month {
  color: #fff !important;
  fill: #fff !important;
}

.flatpickr-months .flatpickr-prev-month:hover, .flatpickr-months .flatpickr-next-month:hover {
  color: var(--accent) !important;
  fill: var(--accent) !important;
}

/* --- Passenger Dropdown Card --- */
.passenger-dropdown-card {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  min-width: 280px;
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border-radius: 12px;
  z-index: 1050;
  margin-top: 8px;
  padding: 20px;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
}

.passenger-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.passenger-row:first-child {
  padding-top: 0;
}

.passenger-row:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.passenger-desc {
  display: flex;
  flex-direction: column;
}

.passenger-type {
  font-weight: 600;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  color: var(--text-primary);
}

.passenger-age {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.passenger-counter {
  display: flex;
  align-items: center;
  gap: 15px;
}

.btn-counter {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-counter:hover:not(:disabled) {
  background: var(--accent);
  color: var(--bg-dark);
  border-color: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
}

.btn-counter:disabled {
  opacity: 0.2;
  cursor: not-allowed;
}

.passenger-count {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  width: 20px;
  text-align: center;
}

.passenger-validation {
  color: var(--accent-secondary);
  font-size: 0.75rem;
  font-weight: 500;
  margin-top: 10px;
  text-align: center;
  display: none;
}

.passenger-validation.visible {
  display: block;
}

/* --- Cabin Class Radio Cards --- */
.cabin-cards-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.cabin-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cabin-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
}

.cabin-card.active {
  background: rgba(99, 102, 241, 0.1);
  border-color: var(--primary);
  box-shadow: 0 0 10px var(--primary-glow);
}

.cabin-icon {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.cabin-card.active .cabin-icon {
  color: var(--accent);
}

.cabin-name {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}

.cabin-card.active .cabin-name {
  color: var(--text-primary);
}

/* --- Sections Styles --- */
.section-padding {
  padding: 100px 0;
}

.section-subtitle {
  font-family: var(--font-primary);
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.section-title {
  font-size: 2.25rem;
  margin-bottom: 40px;
  font-weight: 800;
}

/* About Us Section Home */
.about-image-wrapper {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--glass-shadow);
}

.about-image-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(11, 15, 25, 0.6), transparent);
}

.about-image-wrapper img {
  width: 100%;
  height: auto;
  transition: transform var(--transition-normal);
}

.about-image-wrapper:hover img {
  transform: scale(1.05);
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.about-feature-icon {
  color: var(--accent);
  font-size: 1.25rem;
  margin-top: 3px;
}

.about-feature-title {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.about-feature-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

/* Popular Destinations */
.destination-card {
  position: relative;
  height: 380px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--glass-shadow);
  border: 1px solid var(--glass-border);
}

.destination-img-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.destination-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.destination-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(11,15,25,0.95) 0%, rgba(11,15,25,0.4) 50%, transparent 100%);
  z-index: 1;
  transition: all var(--transition-normal);
}

.destination-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 25px;
  z-index: 2;
  transform: translateY(15px);
  transition: transform var(--transition-normal);
}

.destination-country {
  font-family: var(--font-primary);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
  display: block;
}

.destination-city {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.destination-details {
  opacity: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: opacity var(--transition-normal);
  margin: 0;
}

.destination-card:hover .destination-img-container img {
  transform: scale(1.1);
}

.destination-card:hover .destination-overlay {
  background: linear-gradient(to top, rgba(11,15,25,0.98) 0%, rgba(11,15,25,0.5) 60%, transparent 100%);
}

.destination-card:hover .destination-content {
  transform: translateY(0);
}

.destination-card:hover .destination-details {
  opacity: 1;
}

/* FAQ Accordion Styling */
.accordion-item {
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid var(--glass-border) !important;
  margin-bottom: 12px;
  border-radius: 12px !important;
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.accordion-item:hover {
  border-color: rgba(255, 255, 255, 0.15) !important;
}

.accordion-button {
  background: transparent !important;
  color: var(--text-primary) !important;
  font-family: var(--font-primary) !important;
  font-weight: 600 !important;
  font-size: 1.05rem !important;
  box-shadow: none !important;
  padding: 20px 25px !important;
  border: none !important;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2394a3b8'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
  background-size: 14px !important;
  transition: transform var(--transition-fast) !important;
}

.accordion-button:not(.collapsed) {
  color: var(--accent) !important;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23facc15'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

.accordion-body {
  padding: 0 25px 25px 25px !important;
  color: var(--text-muted) !important;
  line-height: 1.6;
}

/* --- Scroll Entrance Animations --- */
.fade-in-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.fade-in-section.fade-in-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Search Result Page Components --- */
/* Center Loading Screen */
.search-loader-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  text-align: center;
}

.airplane-loader {
  position: relative;
  width: 120px;
  height: 120px;
  margin-bottom: 30px;
}

.loader-circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px dashed rgba(250, 204, 21, 0.25);
  border-radius: 50%;
  animation: spin 15s linear infinite;
}

.loader-inner-circle {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 90px;
  height: 90px;
  border: 2px solid transparent;
  border-top-color: var(--accent);
  border-bottom-color: var(--primary);
  border-radius: 50%;
  animation: spin 3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.airplane-loader i {
  position: absolute;
  font-size: 2.2rem;
  color: var(--accent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  animation: planePulse 2s ease-in-out infinite;
  text-shadow: 0 0 15px var(--accent-glow);
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes planePulse {
  0%, 100% { transform: translate(-50%, -50%) rotate(45deg) scale(0.95); opacity: 0.8; }
  50% { transform: translate(-50%, -50%) rotate(45deg) scale(1.1); opacity: 1; }
}

.loader-status-text {
  font-family: var(--font-primary);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.loader-sub-text {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Loading status dots animation */
.status-dot {
  opacity: 0;
  animation: dotFade 1.4s infinite;
}
.status-dot:nth-child(2) { animation-delay: 0.2s; }
.status-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes dotFade {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}

/* No Flights Result Styling */
.no-flights-container {
  display: none;
  animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.no-flights-card {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.no-flights-icon {
  font-size: 4rem;
  color: var(--text-muted);
  margin-bottom: 25px;
}

/* Premium Border Glow Helpline CTA */
.helpline-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-family: var(--font-primary);
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff !important;
  background: var(--accent);
  padding: 16px 36px;
  border-radius: 50px;
  border: none;
  position: relative;
  margin-top: 30px;
  cursor: pointer;
  transition: all var(--transition-normal);
  box-shadow: 0 0 15px var(--accent-glow);
  overflow: hidden;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.helpline-cta-btn i {
  color: #fff !important;
}

/* Glow gradient border helper */
.helpline-cta-btn::after {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  background: linear-gradient(135deg, var(--primary), var(--accent), var(--accent-secondary), var(--primary));
  border-radius: 50px;
  z-index: -1;
  background-size: 400% 400%;
  animation: gradientBorder 6s linear infinite, glowPulse 2s ease-in-out infinite;
}

.helpline-cta-btn:hover {
  transform: translateY(-4px) scale(1.02);
  color: #fff !important;
  box-shadow: 0 0 25px rgba(234, 179, 8, 0.4), 0 0 40px rgba(99, 102, 241, 0.2);
}

@keyframes gradientBorder {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

/* --- About & Contact Pages Banner --- */
.page-banner {
  height: 350px;
  display: flex;
  align-items: center;
  position: relative;
  background-size: cover;
  background-position: center;
  padding-top: 80px;
}

.page-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(11, 15, 25, 0.95) 30%, rgba(11, 15, 25, 0.5) 100%);
  z-index: 1;
}

.page-banner-content {
  position: relative;
  z-index: 2;
}

.page-banner-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 10px;
}

/* Stats Counter */
.stat-box {
  text-align: center;
  padding: 30px 20px;
}

.stat-number {
  font-family: var(--font-primary);
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Map frame placeholder */
.map-container {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  height: 450px;
}

/* --- Privacy, Terms, Disclaimer Typography --- */
.policy-content {
  line-height: 1.7;
}

.policy-content h2 {
  font-size: 1.5rem;
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--accent);
}

.policy-content p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.policy-content ul {
  color: var(--text-muted);
  margin-bottom: 25px;
}

.policy-content li {
  margin-bottom: 10px;
}

/* --- Footer --- */
footer {
  background: #060911;
  border-top: 1px solid var(--glass-border);
  padding: 80px 0 30px 0;
  position: relative;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.footer-logo img {
  height: 32px;
}

.footer-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

.footer-title {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 25px;
  position: relative;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent);
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-contact-icon {
  color: var(--accent);
  font-size: 1rem;
  margin-top: 3px;
}

.footer-disclaimer-box {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--border-radius-sm);
  padding: 15px 25px;
  margin-top: 50px;
  margin-bottom: 20px;
}

.footer-disclaimer-text {
  font-size: 0.75rem;
  color: rgba(148, 163, 184, 0.5);
  margin: 0;
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 25px;
  text-align: center;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(148, 163, 184, 0.4);
  margin: 0;
}
