/* UnoFare — Brand Design System */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Mona+Sans:ital,wght@0,200..900;1,200..900&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');
:root {
  --brand-deep: #005A9C;
  --brand-sky: #0E90E0;
  --brand-red: #FF161F;
  --brand-dark: #002B4A;
  --brand-light: #E8F4FD;
  --brand-bg: #F7F9FC;
  --brand-white: #FFFFFF;
  --brand-text: #1A2B3C;
  --brand-muted: #5A7184;
  --brand-border: #D1DDE8;
  --brand-success: #10B981;
  --brand-warning: #F59E0B;
  --brand-error: #EF4444;
  --shadow-sm: 0 1px 3px rgba(0, 42, 74, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 42, 74, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 42, 74, 0.16);
  --shadow-xl: 0 12px 48px rgba(0, 42, 74, 0.2);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif !important;
  color: var(--brand-text);
  background: var(--brand-white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== HEADER ===== */
.site-header {
  background: var(--brand-white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 9;
  border-bottom: 1px solid var(--brand-border);
}

.header-top-bar {
  background: var(--brand-deep);
  color: white;
  font-size: 13px;
  padding: 6px 0;
  text-align: center;
  font-weight: 500;
}

.header-top-bar a {
  color: #FFD700;
  text-decoration: underline;
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-link svg,
.logo-link img {
  height: 55px;
  width: auto;
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-main a {
  text-decoration: none;
  color: var(--brand-text);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  transition: all 0.2s;
  white-space: nowrap;
}

.nav-main a:hover,
.nav-main a.active {
  background: var(--brand-light);
  color: var(--brand-deep);
}

.btn-call {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-red);
  color: white !important;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(255, 22, 31, 0.3);
}

.btn-call:hover {
  background: #E0141C;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255, 22, 31, 0.4);
}

.btn-call svg {
  width: 18px;
  height: 18px;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-sm);
  padding: 8px;
  cursor: pointer;
}

.mobile-menu-btn svg {
  width: 24px;
  height: 24px;
  color: var(--brand-deep);
}

/* ===== HERO ===== */
.hero-section {
  background: linear-gradient(135deg, var(--brand-deep) 0%, var(--brand-sky) 100%);
  padding: 48px 0 0;
  position: relative;
  overflow: hidden;
  min-height: 420px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.hero-headline {
  color: white;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 8px;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 28px;
}

/* ===== SEARCH BOX ===== */
.search-card {
  background: var(--brand-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  padding: 24px;
  margin-bottom: -60px;
  position: relative;
  z-index: 10;
}

.search-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.search-tab {
  padding: 10px 20px;
  border-radius: var(--radius-full);
  border: none;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  background: var(--brand-bg);
  color: var(--brand-muted);
}

.search-tab.active {
  background: var(--brand-deep);
  color: white;
}

.trip-type-group {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.trip-type-group label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--brand-text);
  cursor: pointer;
}

.trip-type-group input[type="radio"] {
  accent-color: var(--brand-deep);
  width: 16px;
  height: 16px;
}

.search-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr auto;
  gap: 12px;
  align-items: end;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-group label {
  font-size: 12px;
  font-weight: 600;
  color: var(--brand-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-control {
  padding: 12px 14px;
  border: 1.5px solid var(--brand-border);
  border-radius: var(--radius-md);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: var(--brand-text);
  background: white;
  transition: all 0.2s;
  outline: none;
  width: 100%;
}
.form-row .form-select{
      padding: 12px 14px;
  border: 1.5px solid var(--brand-border);
  border-radius: var(--radius-md);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: var(--brand-text);
cursor:pointer;
  transition: all 0.2s;
  outline: none;
  width: 100%;

} 
.form-control:focus {
  border-color: var(--brand-sky);
  box-shadow: 0 0 0 3px rgba(14, 144, 224, 0.15);
}

.form-control::placeholder {
  color: var(--brand-muted);
}

.btn-search {
  background: var(--brand-red);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  padding: 12px 32px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  height: 48px;
}

.btn-search:hover {
  background: #E0141C;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255, 22, 31, 0.35);
}

/* ===== DEALS / ROUTES ===== */
.section {
  padding: 80px 0;
}

.section-pad-top {
  padding-top: 100px;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 8px;
}

.section-subtitle {
  font-size: 15px;
  color: var(--brand-muted);
  margin-bottom: 32px;
}

.deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.deal-card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--brand-border);
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
}

.deal-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--brand-sky);
}

.deal-img {
  height: 180px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.deal-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--brand-red);
  color: white;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.deal-body {
  padding: 16px;
}

.deal-route {
  font-size: 16px;
  font-weight: 600;
  color: var(--brand-dark);
  margin-bottom: 4px;
}

.deal-airline {
  font-size: 13px;
  color: var(--brand-muted);
  margin-bottom: 8px;
}

.deal-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.deal-price .from {
  font-size: 12px;
  color: var(--brand-muted);
}

.deal-price .amount {
  font-size: 24px;
  font-weight: 700;
  color: var(--brand-deep);
}

.deal-price .currency {
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-deep);
}

.deal-price .original {
  font-size: 14px;
  color: var(--brand-muted);
  text-decoration: line-through;
}

/* ===== AIRLINES STRIP ===== */
.airlines-strip {
  background: var(--brand-bg);
  padding: 40px 0;
  text-align: center;
}

.airlines-strip h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.airlines-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  opacity: 0.7;
}

.airlines-logos span {
  font-size: 18px;
  font-weight: 700;
  color: var(--brand-muted);
  white-space: nowrap;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 40px 0;
}

.trust-item {
  text-align: center;
  padding: 24px 16px;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--brand-border);
}

.trust-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto;
  background: var(--brand-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-icon svg {
  width: 24px;
  height: 24px;
  color: var(--brand-deep);
}

.trust-item h4 {
  font-size: 14px;
  font-weight: 600;margin-top:1rem; 
  margin-bottom: 4px;
}

.trust-item p {
  font-size: 13px;
  color: var(--brand-muted);
  line-height: 1.4;
}

.trust-item p a {
  text-decoration: none;
  font-size: 15px;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--brand-deep), var(--brand-sky));
  border-radius: var(--radius-xl);
  padding: 48px;
  text-align: center;
  color: white;
  margin: 40px 0;
}

.cta-banner h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}

.cta-banner p {
  font-size: 15px;
  opacity: 0.9;
  margin-bottom: 24px;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-red);
  color: white;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-cta:hover {
  background: #E0141C;
  transform: translateY(-2px);
}

/* ===== POPULAR ROUTES ===== */
.routes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.route-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: white;
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--brand-text);
  transition: all 0.2s;
}

.route-card:hover {
  border-color: var(--brand-sky);
  box-shadow: var(--shadow-sm);
}

.route-info {
  display: flex;
  flex-direction: column;
}

.route-cities {
  font-weight: 600;
  font-size: 14px;
}

.route-detail {
  font-size: 12px;
  color: var(--brand-muted);
}

.route-price {
  font-weight: 700;
  color: var(--brand-deep);
  font-size: 18px;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--brand-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  margin-top: 16px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 600;
  color: white;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: #fff;
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: white;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  /* opacity: 0.6; */
}

/* ===== FLIGHT RESULTS ===== */
.results-header {
  background: var(--brand-deep);
  padding: 20px 0;
  color: white;
}

.results-summary {
  font-size: 14px;
  opacity: 0.9;
}

.results-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  padding: 32px 0;
}

.filter-sidebar {
  background: white;
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-lg);
  padding: 20px;
  height: fit-content;
  /*position: sticky;
  top: 80px;*/
}

.filter-group {
  margin-bottom: 20px;
}

.filter-group h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-dark);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filter-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  padding: 6px 0;
  cursor: pointer;
  color: var(--brand-text);
}

.filter-group input[type="checkbox"] {
  accent-color: var(--brand-deep);
  width: 16px;
  height: 16px;
}

.filter-group input[type="range"] {
  width: 100%;
  accent-color: var(--brand-deep);
}

.flight-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.flight-card {
  background: white;
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-lg);
  padding: 20px;
  /*display: flex;*/
  /* grid-template-columns: 1fr 1fr 120px 140px; */
  /*grid-template-columns: 1fr 1fr 0 0;*/

  gap: 0;
  align-items: self-end;
  transition: all 0.2s; margin-bottom:1.5rem;
}

.flight-card:hover {
  border-color: var(--brand-sky);
  box-shadow: var(--shadow-md);
}

.flight-segment {
  display: flex;
  flex-direction: column;
}

.flight-time {
  font-size: 18px;
  font-weight: 600;
  color: var(--brand-dark);
}

.flight-airport {
  font-size: 12px;
  color: var(--brand-muted);
}

.flight-duration {
  text-align: center;
  font-size: 12px;
  color: var(--brand-muted);
  position: relative;
}

.flight-line {
  display: block;
  height: 2px;
  background: var(--brand-border);
  margin: 6px 0;
  position: relative;
}

.flight-line::before {
  content: '✈';
  position: absolute;
  right: -4px;
  top: -10px;
  font-size: 14px;
  color: var(--brand-sky);
}

.flight-stops {
  font-size: 11px;
  color: var(--brand-red);
  font-weight: 500;
}

.flight-airline-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.flight-airline-logo {
 width: 32px;
  height: 32px;
  /*background: var(--brand-light);*/
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--brand-deep);
}

.flight-airline-name {
  font-size: 13px;
  font-weight: 500;
}



.flight-price-amount {
  font-size: 22px;
  font-weight: 600;
  color: var(--brand-deep);
}

.flight-price-pp {
  font-size: 11px;
  color: var(--brand-muted);
}

.btn-select {
  background: var(--brand-sky);
  color: white;
  border: none;
  border-radius: 30px;
  padding: 10px 25px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight:500;
  cursor: pointer;
  transition: all 0.2s;
  /* width: 100%; */
  margin-top: 8px;
}

.btn-select:hover {
  background: var(--brand-deep);
}

/* ===== BOOKING / CHECKOUT ===== */
.booking-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px 0;
  background: var(--brand-bg);
  border-bottom: 1px solid var(--brand-border);
}

.step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--brand-muted);
}

.step.active {
  color: var(--brand-deep);
  font-weight: 600;
}

.step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  background: var(--brand-border);
  color: var(--brand-muted);
}

.step.active .step-num {
  background: var(--brand-deep);
  color: white;
}

.step.completed .step-num {
  background: var(--brand-success);
  color: white;
}

.step-divider {
  width: 40px;
  height: 2px;
  background: var(--brand-border);
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 24px;
  padding: 25px 0;
}

.checkout-main {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.checkout-card {
  background: white;
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.checkout-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--brand-dark);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--brand-border);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.form-row.single {
  grid-template-columns: 1fr;
}

.checkout-sidebar {
  position: sticky;
  top: 80px;
  height: fit-content;
}

.price-summary {
  background: white;
  border: 2px solid var(--brand-sky);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.price-summary h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--brand-dark);
  margin-bottom: 16px;
}

.price-line {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
}

.price-line.total {
  border-top: 2px solid var(--brand-border);
  margin-top: 8px;
  padding-top: 12px;
  font-weight: 700;
  font-size: 18px;
  color: var(--brand-deep);
}

.btn-pay {
  display: block;
  width: 100%;
  background: var(--brand-red);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  padding: 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 20px;
  transition: all 0.2s;
}

.btn-pay:hover {
  background: #E0141C;
}

/* ===== CONFIRMATION ===== */
.confirm-box {
  max-width: 640px;
  margin: 60px auto;
  text-align: center;
  padding: 48px;
  background: white;
  border-radius: var(--radius-xl);
  border: 1px solid var(--brand-border);
  box-shadow: var(--shadow-lg);
}

.confirm-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.confirm-icon.success {
  background: #D1FAE5;
}

.confirm-icon.success svg {
  color: var(--brand-success);
  width: 40px;
  height: 40px;
}

.confirm-icon.error {
  background: #FEE2E2;
}

.confirm-icon.error svg {
  color: var(--brand-error);
  width: 40px;
  height: 40px;
}

.confirm-box h1 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}

.confirm-box p {
  font-size: 15px;
  color: var(--brand-muted);
  margin-bottom: 24px;
}

.confirm-details {
  background: var(--brand-bg);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: left;
  margin-bottom: 24px;
}

.confirm-details .detail-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--brand-border);
}

.confirm-details .detail-row:last-child {
  border: none;
}

.confirm-details .detail-label {
  color: var(--brand-muted);
}

.confirm-details .detail-value {
  font-weight: 600;
}

/* ===== LOADER ===== */
.page-loader {
  position: fixed;
  inset: 0;
  background: white; 
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transition: opacity 0.4s;
}



.loader-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid var(--brand-border);
  border-top-color: var(--brand-sky);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.loader-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--brand-muted);
}

.loader-progress {
  width: 200px;
  height: 4px;
  background: var(--brand-border);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.loader-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--brand-sky), var(--brand-deep));
  border-radius: var(--radius-full);
  animation: loadProgress 2s ease-in-out;
}

@keyframes loadProgress {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

/* ===== CONTENT PAGES ===== */
.page-hero {
  background: linear-gradient(rgba(23, 114, 177, 1), rgba(23, 114, 177, 0.8)), url(/images/Content/flight-banner.png);
  padding: 48px 0;
  text-align: center;
  color: white;
}

.page-hero h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
}

.page-hero p {
  font-size: 15px;
  opacity: 0.85;
}

.content-section {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
  line-height: 1.8;
}

.content-section h2 {
  font-size: 22px;
  font-weight: 600;
  color: var(--brand-dark);
  margin: 32px 0 12px;
}

.content-section p {
  margin-bottom: 16px;
  color: var(--brand-text);
  font-size: 15px;
}

.content-section ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.content-section li {
  margin-bottom: 8px;
  font-size: 15px;
}

/* FAQ */
.faq-item {
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  padding: 16px 20px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  transition: background 0.2s;
}

.faq-question:hover {
  background: var(--brand-bg);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s;
  font-size: 14px;
  color: var(--brand-muted);
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 20px 16px;
}

.faq-item.open .faq-toggle {
  transform: rotate(180deg);
}

.faq-toggle {
  transition: transform 0.3s;
  font-size: 20px;
  color: var(--brand-sky);
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: white;
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 139, 0.4);
}

.testimonial-card:hover {
  box-shadow: 0 8px 22px rgba(0, 0, 139, 0.7);
  transform: translateY(-5px);
  transition: 0.3s;
}

.testimonial-stars {
  color: #F59E0B;
  font-size: 16px;
  margin-bottom: 12px;
}

.testimonial-text {
  font-size: 14px;
  color: var(--brand-text);
  line-height: 1.6;
  margin-bottom: 16px;
}

.testimonial-author {
  font-size: 13px;
  font-weight: 600;
}

.testimonial-location {
  font-size: 12px;
  color: var(--brand-muted);
}

.testimonial-author::before {
  content: "\f007";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 6px;
}

.testimonial-location::before {
  content: "\f3c5";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 6px;
  color: red;
}

.testimonial-card:nth-child(1) {
  background-color: #ffbfbf;
}

.testimonial-card:nth-child(2) {
  background-color: #ffddab;
}

.testimonial-card:nth-child(3) {
  background-color: #b3e9cb;
}

.testimonial-card:nth-child(3n+1) {
  background-color: #ffbfbf;
}

.testimonial-card:nth-child(3n+2) {
  background-color: #ffddab;
}

.testimonial-card:nth-child(3n+3) {
  background-color: #b3e9cb;
}

.testimonial-text::before {
  content: "\f10d";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 8px;
}

.testimonial-text::after {
  content: "\f10e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-left: 8px;
}

.testimonial-author span {
  color: #005A9C;
}

.testimonial-location i {
  color: rgb(255, 0, 0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .search-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .results-grid {
    grid-template-columns: 1fr;
  }
  .mobile_filters, .close_filter i{display:block !important;}
  .filter-sidebar {
    display: none;
    position:fixed; top:50%; left:50%; transform:translate(-50%, -50%); max-height:600px; overflow-y:scroll; background:#fff; z-index:999; width:98%; box-shadow:0px 0px 260px 208px rgba(0,0,0,0.90); 
  }

  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .routes-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-bar {
    grid-template-columns: 1fr 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-main {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero-headline {
    font-size: 26px;
  }

  .search-grid {
    grid-template-columns: 1fr;
  }

  .deals-grid {
    grid-template-columns: 1fr;
  }

  .routes-grid {
    grid-template-columns: 1fr;
  }

  .flight-card {
    grid-template-columns: 1fr;
 
  }

  .flight-price-col {
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

  .cta-banner {
    padding: 32px 20px;
  }

  .confirm-box {
    margin: 20px;
    padding: 32px 20px;
  }

  .header-inner {
    height: 56px;
  }

  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* Utility */
.text-center {
  text-align: center;
}

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.hidden {
  display: none !important;
}

.footer-brand img {
  height: 60px;
}

/* ===== PRICELINE-STYLE HERO ===== */
.hero-priceline {
  position: relative;
  /*overflow: hidden;*/
  min-height: 620px;
  background: #fff; z-index:0; 
}

/* Right-side decorative shapes */
.hero-bg-shape {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-circle-1 {
  position: absolute;
  top: -25%;
  right: -8%;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: var(--brand-sky);
  opacity: 0.9;
}

.hero-circle-2 {
  position: absolute;
  bottom: -35%;
  right: 12%;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: var(--brand-light);
}

.hero-circle-3 {
  background: url(/images/Content/banner-search-middle.png) no-repeat;
  position: absolute;
  bottom: 11%;
  right: 35%;
  width: 520px;
  height: 520px;
}

/* Right promo area */
.hero-promo {
  position: absolute;
  right: 0;
  top: 0;
  width: 46%;
  height: 100%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.hero-promo-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.promo-text-block {
  text-align: right;
  position: absolute;
  top: 12%;
  right: 6%;
}

.promo-text-small {
  font-size: 16px;
  font-weight: 600;
  color: var(--brand-deep);
  opacity: 0.6;
}

.promo-text-big {
  font-size: 60px;
  font-weight: 800;
  color: var(--brand-deep);
  line-height: 1;
  opacity: 0.12;
}

.promo-card-float {
  position: absolute;
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 42, 74, 0.15);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
  pointer-events: auto;
}

.promo-card-float.card-a {
  bottom: 22%;
  right: 10%;
}

.promo-card-float.card-b {
  bottom: 42%;
  right: 4%;
  background: var(--brand-deep);
  color: white;
}

.pcf-icon {
  width: 44px;
  height: 44px;
  background: var(--brand-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pcf-icon svg {
  width: 22px;
  height: 22px;
  color: var(--brand-deep);
}

.card-b .pcf-icon {
  background: rgba(255, 255, 255, 0.2);
}

.card-b .pcf-icon svg {
  color: white;
  stroke: white;
}

.pcf-text {
  font-size: 13px;
  color: #003c8a;
}

.pcf-text strong {
  display: block;
  font-size: 15px;
  color: #003c8a;
}

.card-b .pcf-text {
  color: rgba(255, 255, 255, 0.85);
}

.card-b .pcf-text strong {
  color: #fff;
}

/* Left content */
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  padding: 36px 24px 52px;
}

.hero-headline-pl {
  font-size: 36px;
  font-weight: 700;
  color: #003c8a;
  line-height: 1.15;
  margin-bottom: 28px;
  max-width: 540px;
}

/* ===== SEARCH CARD ===== */
.search-card-pl {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.03),
    0 2px 8px rgba(0, 0, 0, 0.16),
    0 10px 8px -5px rgba(0, 0, 0, 0.16),
    0 12px 32px -2px rgba(0, 0, 0, 0.16);
  max-width: 680px;
  position: relative;
  z-index:0;
  /*overflow: hidden;*/
}

/* Tabs */
.pl-tabs {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 16px 24px 0;
}

.pl-tab {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 9999px;
  border: none;
  background: transparent;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--brand-muted);
  cursor: pointer;
  transition: all 0.2s;
}

.pl-tab:hover {
  background: var(--brand-bg);
}

.pl-tab.active {
  background: var(--brand-light);
  color: var(--brand-deep);
  font-weight: 600;
}

.pl-tab svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Form body */
.pl-form-body {
  padding: 20px 24px 24px;
}

/* Trip types */
.pl-trip-types {
  display: flex;
  gap: 20px;
  margin-bottom: 16px;
}

.pl-trip-types label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.pl-trip-types input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--brand-deep);
}

/* Field — Priceline style */
.pl-field {
  border: 1.5px solid var(--brand-border);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.2s;
  background: #fff;
  min-height: 56px;
}

.pl-field:hover {
  border-color: #90C8F0;
}

.pl-field:focus-within {
  border-color: var(--brand-sky);
  box-shadow: 0 0 0 3px rgba(14, 144, 224, 0.12);
}

.pl-field-icon {
  flex-shrink: 0;
  color: var(--brand-sky);
}

.pl-field-icon svg {
  width: 22px;
  height: 22px;
}

.pl-field-content {
  flex: 1;
  min-width: 0;
}

.pl-field-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--brand-muted);
  line-height: 1;
  margin-bottom: 3px;
}

.pl-field-input {
  border: none;
  outline: none;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--brand-dark);
  width: 100%;
  background: transparent;
  padding: 0;
}

.pl-field-input::placeholder {
  color: #9BB0C4;
  font-weight: 400;
}

select.pl-field-input {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

/* Rows */
.pl-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.pl-row-3 {
  display: flex;

  gap: 12px;
  margin-bottom: 20px;
}

/* Search button */
.pl-search-btn {
  display: block;
  width: 100%;
  padding: 16px;
  background: var(--brand-sky);
  color: white;
  border: none;
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.pl-search-btn:hover {
  background: var(--brand-deep);
  box-shadow: 0 4px 16px rgba(0, 90, 156, 0.3);
}

.customer-reviews {}

.customer-reviews .top-dest {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
}

.customer-reviews .top-dest img {
  border-radius: 10px;
}

.customer-reviews .top-dest p {
  position: absolute;
  bottom: 33px;
  color: #fff;
  left: 50%; top:50%; transform:translate(-50%, 85%);
  font-size: 21px;
  font-weight: 700;
}

#customer-reviews.owl-carousel .owl-nav button.owl-prev {
  font-size: 42px;
  color: #000000;
  background: #fff;
  border-radius: 50%;
  padding: 6px 16px !important;
  line-height: 29px;
  position: absolute;
  left: -22px;
  top: 43%;
}

#customer-reviews.owl-carousel .owl-nav button.owl-next {
  font-size: 42px;
  color: #000000;
  background: #fff;
  border-radius: 50%;
  padding: 6px 16px !important;
  line-height: 29px;
  position: absolute;
  right: -22px;
  top: 43%;
}

.callall {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 48px;
}

.gettouch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.gettouch .trust-icon{margin:0;}
.gettouch p{margin:0; padding:0; }
/* Responsive */
@media (max-width: 1024px) {

  .hero-bg-shape,
  .hero-promo {
    display: none;
  }

  .hero-priceline {
    min-height: auto;
  }

  .hero-headline-pl {
    max-width: 100%;
    font-size: 28px;
  }

  .search-card-pl {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .pl-row-2 {
    grid-template-columns: 1fr;
  }

  .pl-row-3 {
    grid-template-columns: 1fr;
  }

  .hero-headline-pl {
    font-size: 19px;
  }

  .pl-tabs {
    flex-wrap: wrap;
    padding: 12px 16px 0;
  }


  .hero-content {
    padding: 24px 12px 36px;
  }

  .logo-link svg,
  .logo-link img {
    height: 46px;
    width: auto;
  }

  .pl-field-input {
    font-size: 13px;
  }

  .pl-field-icon svg {
    width: 15px;
    height: 15px;
  }


  .deal-img {
    background-size: cover !important;
    padding-top: 24px;
  }

  .pl-search-btn {
    padding: 10px;
    font-size: 15px;
  }

  .pl-trip-types label {
    font-size: 13px;
  }

  .airlines-logos {
    gap: 6px;
  }

  .airlines-logos span {
    font-size: 14px;
  }

  .airlines-strip {
    padding: 0 0;
    text-align: center;
  }

  .section-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 8px;
  }

  .section-subtitle {
    font-size: 13px;
  }

  .route-price {
    font-size: 14px;
  }

  .cta-banner h2 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 7px;
  }

  .cta-banner p {
    font-size: 13px;
    opacity: 0.9;
    margin-bottom: 24px;
  }

  .btn-cta {
    gap: 4px;
  }

  .section {
    padding: 20px 0;
  }

  .trust-bar {
    padding: 0 0;
  }

  .page-hero h1 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
  }

  .page-hero p {
    font-size: 11px;
    opacity: 0.85;
  }

  .content-section h2 {
    font-size: 16px;
    margin: 0 0 0;
  }

  .content-section p,
  .content-section li,
  .faq-item.open .faq-answer {
    font-size: 13px;
  }

  .callall {
    display: block;
    gap: 0;
    margin-bottom: 0;
  }

  .trust-item {
    margin-bottom: 20px;
  }

  .faq-question {
    padding: 9px 20px;
    font-size: 13px;
  }

  .deal-price .amount {
    font-size: 18px;
  }

  .gettouch {
    display: block;
  }

  .trust-icon {
    margin: 0 auto 12px;
  }


  .btn-call {
    padding: 10px 10px;
  }

  .customer-reviews .top-dest {
    gap: 12px;
  }

  .customer-reviews .top-dest h2 {
    font-size: 18px;
  }

  .customer-reviews .top-dest p {
    font-size: 16px;
  }
}




/*New ADDED CSS*/

.city-code, .dest-btn span{background:#f3f3f3; padding:0.2rem 0.4rem; font-size:11px; font-weight:bold; color:#666; border-radius:4px;}
.city-full{display:contents; gap:0.5rem;  white-space:nowrap; text-overflow:ellipsis;}
.dest-btn, .ui-menu .ui-menu-item{  font-size:13px; font-weight:500;
    border:0;
    text-align:left;
   padding: 6px; border-bottom:1px solid #f4f4f4 ; 
    gap:0.5rem;
  width:100%;  
    background:none;
    cursor:pointer;
     display: block;
     color:#333;
  max-width: 100%;   
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dest-btn:hover, .ui-menu .ui-menu-item:hover{background:#f3f3f3; border-radius:6px; }
.dest-btn:hover span, .ui-menu .ui-menu-item:hover span{color:#fff; background:#3d3d3d;}
.popular_dest{padding:0.2rem; overflow-x:hidden; overflow-y:scroll; max-height:292px; }
.append_class{transition:0.2s;   opacity:0; visibility:hidden;background:#fff; height:300px;  box-shadow:0px 20px 24px 0px rgba(0,0,0,0.2); border-radius:8px !important; width:300px; top:102%;  position:absolute; z-index:9; }
.append_class.active{ opacity:1; visibility:visible;}
.dest-btn.active-btn{background:#f3f3f3; border-radius:6px; }
.dest-btn.active-btn span{color:#fff; background:#3d3d3d;}

.ui-datepicker .between-date{background:#ee6221; color:#222;}
.ui-datepicker th{padding:0px !important; height:30px; }
.ui-datepicker table tr, .ui-datepicker table th, .ui-datepicker table td{border:0;}
.ui-datepicker{font-family: "Mona Sans", sans-serif !important; width:32rem !important; padding:0.6rem !important; box-shadow:0px 20px 24px 0px rgba(0,0,0,0.2);border-radius:12px;  }
.ui-datepicker-today a{border:1px solid var(--primary-main) !important; border-radius:6px !important; background:#f3f3f3 !important;}
.ui-datepicker th{font-size:12px !important; font-weight:600 !important; color:#838691 !important; }
.ui-datepicker .ui-datepicker-title{font-size:15px !important; line-height:150% !important; font-weight:600 !important; height:32px !important; }
.ui-widget-header{background:#fff !important; border:0 !important;}
/*.ui-widget.ui-widget-content{border:0 !important; padding:0.8rem 0.3rem 0.3rem 0.3rem !important ; border-radius:15px !important; box-shadow:0px 8px 24px 0px rgba(0,0,0,0.2);}*/
.ui-datepicker td span, .ui-datepicker td a{font-size:14px !important;line-height:200% !important; color:#000; font-weight:500 !important; border:0 !important; height:35px; width:35px; text-align:center;border-radius:6px;  }
.ui-datepicker td span:hover, .ui-datepicker td a:hover{background:#ededed !important; color:#111;}
/*.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active, .ui-button:active, .ui-button.ui-state-active:hover{background:var(--primary-main) !important;}*/
.ui-datepicker td{padding:0;}
.highlight-range a{background:#d9eeff !important; border-radius: 0px !important;}

.highlight-start a, .highlight-start .ui-state-active, .highlight-end .ui-state-active{background:var(--brand-deep) !important;color:#fff !important;}
.highlight-end a{background:var(--brand-deep) !important; color:#fff !important;}
/*.ui-autocomplete.ui-widget.ui-widget-content{padding:0.6rem !important;}*/
.ui-widget.ui-widget-content{border:0 !important;}
/*.sunday-highlight a, .ui-datepicker-week-end:nth-child(7){background:#f3f3f3 !important;color:#f00 !important;}*/
.ui-datepicker-next::before{ content: "\F138" !important;
  font-family: "bootstrap-icons" !important;
  font-size: 18px;
  font-weight: 700; 
  position: absolute; 
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  color: #000;
}

.ui-datepicker-prev::before{ content: "\F12F" !important; 
  font-family: "bootstrap-icons" !important;
  font-size: 18px;
  font-weight: 700; 
  position: absolute; 
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  color: #000;}
.ui-datepicker-next-hover, .ui-datepicker-prev-hover{border:0 !important; background:#fff !important; }
.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next{top:-1px;cursor:pointer;}
.ui-datepicker-group-first .ui-datepicker-calendar{border-right: 1px solid #eaeaea;}
.passen_left span{display:flex; justify-content:space-between; align-items:center; margin-bottom:0.5rem;}
.passen_con strong{font-size:16px !important ; margin:0; color:#333; font-weight:600; }
.ui-autocomplete{height:296px; overflow-y: scroll; overflow-x: hidden; width:100% !important; padding:0.35rem !important; font-family:"Mona Sans", sans-serif !important; }
.destination_sec input, .flights_dates input, .class_con select, .pax-details{width:100%; background:transparent;  border:0; font-weight:600; outline:0 !important; font-size:15px;}
.pl-row-3 .pl-field1{width: 38%;}
.pl-row-3 .pl-field2{width:32%; }
.pass-name{background-color:#fff; box-shadow:0px 0px 40px rgba(0,0,0,0.20);  padding: 15px;   position: absolute;   width:270px;Z-INDEX: 999;border-radius:12px;    margin-top: 1px;}
.passen_left p{font-size:13px; color:#666; margin:0; text-align:left !important; }
.children-right, .infants-right, .adult-right{display:flex; justify-content:space-between; align-items:center; }
.select-pax{ font-size:14px; font-weight:600; padding:0.25rem 0;  }
.adult-plus i, .adult-minus i{font-size:21px;}
.qtynumber {
    float: left;
    height: 25px !important;
    padding:0!important; border:0;
    width: 30px !important;
    border-radius: 5px !important;
    cursor: pointer; font-weight:600 !important;
    background-color: #fff;
    text-align: center;
    font-size: 17px !important;     
}
.flight-price-col{display:flex; flex-direction:column; }
.listing_details{overflow:hidden;}
.flight_seg{padding:0.25rem 0;}

.flight_detail_section{position:fixed; width:100%; left:0; top:0; height:100vh; background:rgba(0, 0, 0, 0.50); z-index:999999;}
.flight_details_main{background:#fff;  position:absolute; width:550px; max-height:600px; overflow-x:scroll; transform:translate(-50%, -50%); left:50%; top:50%;}
.details_header{display:flex; padding:1.2rem; justify-content:space-between; align-items:center; position:sticky; top:0; z-index:9; background:#fff; box-shadow:0px 4px 6px 0px rgba(64,71,86,0.04);  }
.flight_details_main{border-radius:20px;}
.flight_dlt_top strong{display:block; font-weight:600; }
.flight_dlt_top button{display:flex; gap:1rem;}
/*.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus, .ui-button:hover, .ui-button:focus{border:0!important;background:#f3f3f3 !important;}*/
#return_date:disabled{color:#fff!important;}
.dot-between{width:4px; height:4px; background:#818181; border-radius:100%; display:inline-block; margin:0 0.1rem; position: relative;top: -2px;}
.flight_itinerary_details .accordion-button{background:#e8eef0; border-radius:12px !important; box-shadow:none !important;}
.flight_itinerary_details .accordion-item{ border-radius:12px !important;}
.flight_info_dtl{display:flex;gap:1rem; align-items:center; margin-bottom:1rem;  }
.flight_name_info span{display:block; line-height:15px; font-size:13px; font-weight:500;color:#3a3a3a; }
.flight_name_info small{font-size:12px; font-weight:500;color:#848792;}
.duration_verical_line{position:relative; left:10px; width:4px; height:140px; background:#ccc; top:5px; }
.duration_verical_line::before{content:''; width:12px; height:12px; border:3px solid #ccc; position:absolute; border-radius:30px; top:0rem; left:-0.26rem; background:#fff; }
.duration_verical_line::after{content:''; width:12px; height:12px; border:3px solid #ccc; position:absolute; border-radius:30px; bottom:0rem; left:-0.26rem; background:#fff;}
.gap-set{gap:2rem; }
.details_header{padding-bottom:1rem;}
.left-detail strong {font-size:18px; font-weight:600;}
.left-detail p{margin:0; padding:0; font-size:13px; font-weight:500;color:#848792; }
.left-detail img{width:20px; height:20px;}
.flight_time_info p{margin:0; padding:0; font-size:13px;color:#848792; font-weight:500; }
.flight_time_info strong{font-weight:600;  }
.route_details_dlt{margin-bottom:1rem; }
.route_details_dlt .flights{display:flex; flex-direction:column; gap:1.6rem;}
.total_trip_duration{font-size:14px; color:#636363; font-weight:500; }
.layover_time_dtl{padding:0.5rem; border-top:1px solid #d1d1d1; border-bottom:1px solid #d1d1d1; display:flex; gap:1.8rem;align-items:center;}
.user_icon i{font-size:1.5rem;}
.layover_airport_info p{margin:0; padding:0; font-size:13px;color:#848792; }
.layover_airport_info strong{font-weight:600; font-size:15px;}
.layover_airport_info strong span{font-size:13px; color:#848792; padding-left:0.3rem;   }
.flight_detail_section{opacity:0; visibility:hidden; transition: 0.4s;}
.flight_detail_section.active{opacity:1; visibility:visible;}
.flight_itinerary_details .accordion-button:not(.collapsed){color:#333 !important;}
.details_footer{background:#fff; position:sticky; z-index:99; border-top:1px solid #ccc;  bottom:0; padding:1rem 2rem; display:flex; justify-content:space-between; align-items:center; box-shadow:4px 4px 6px 0px rgba(64,71,86,0.04); }
.total_fare_ftr strong{display:block; font-size:1.3rem; color:var(--brand-sky);  }
.total_fare_ftr p{margin:0; padding:0; color:#666; font-size:13px;}
.total_fare_ftr del{color: #f1660c;  font-size: 14px;}
.total_fare_ftr{line-height:25px;}
.book_now_btn a{display:inline-flex; transition:0.3s ease-in-out; text-decoration:none !important; gap:0.8rem; align-items:center; font-size:18px;  padding:0.7rem 3rem;background:var(--brand-sky); font-weight:600; color:#fff; border-radius:30px; }
.book_now_btn a:hover{background:#1677c4;}
.right-detail{cursor:pointer;}
#slider-range .ui-widget-header{background:var(--brand-sky) !important;}
.ui-slider .ui-slider-handle{border-radius:100% !important; background:var(--brand-deep); cursor:pointer;  }
.ui-slider.ui-widget-content{background:#dadada !important; height:8px;}
.ui-slider-horizontal .ui-slider-range{height:8px;}
.time_filter .fs-12{font-size:11px; padding-left:0.25rem;  }
.pl-tabs p{font-size:1.5rem; margin:0; padding:0; font-weight:600; }
.result_con{position:fixed; background:rgba(0,0,0,0.7); width:100%; height:100vh; z-index:9; top:0; left:0; display:none;  }
.result_con .pl-tabs {display:flex; justify-content:space-between;}
.result_con .pl-tabs i{font-size:18px; cursor:pointer; font-weight:600; }
.serch-modifay{position:absolute; left:50%; top:50%; transform:translate(-50%,-50%); width:680px;}
.mobile_filters{position:fixed; left:50%; transform: translate(-50%, 0%);  bottom: 0; z-index:999;width:100%; display:none; }
.mb_filter_set{display:flex; background:var(--brand-sky); box-shadow:0px -10px 20px rgba(0,0,0,0.15);   }
.mb_filter_set .mb_modify{ padding:0.7rem 1rem; width:100%; cursor:pointer;  color:#fff; font-weight:500;  font-size:14px !important;  text-align:center; }
.mb_filter_set .mb_modify:hover{background:var(--brand-deep); }
.aside_top{display:flex; justify-content:space-between; border-bottom:1px solid #ccc; margin-bottom:1rem; }
.close_filter i{cursor:pointer; font-weight:600; display:none; }
.filter-group p input{text-align:center !important;font-weight:600 !important;}
.flight-description-content{display:flex; align-items:center; padding:1.5rem; background:#f6f6f6; border-radius:10px;  }
.segment_airline_info{width:36%; }
.segment_trip_dates{width:34%; }
.flight-duration-seg{width:30%; position:relative;}
.duration{ position:relative; z-index:1; background:#f3f3f3; padding:0.2rem;  }
.flight-duration-seg::before{content:''; position:absolute; width:100%; left:0; height:1px; background:#b4b4b4; top:0.9rem; z-index:0;  }
.flight-duration-seg span{font-size:13px; font-weight:600;}
.flight-des-det .flight-name-detail, .segment_trip_dates .time{font-size:15px; font-weight:600; }
.flight-des-det .flight-number, .flight-des-det p, .flight-description-cityname, .flight-description-cityname + .date{font-size:13px; color:#666;  }
.flight-des-det p{margin:0;}
.flight-number strong{font-weight:500;}
.triptype_seg{font-size:17px; font-weight:600;padding:0.5rem 0;}
.triptype_seg img{width:18px; height:18px; }
.flight-det-stopover{font-size:12px; color:var(--brand-deep); padding:0.45rem 0; background:#f4fbff; text-align:center; ; }
.flight_itinerary_dtl .triptype_seg{position:relative;}
.date_of_birth span{width:33.3%; }
.checkout-card h5{font-size:14px !important; color:#035fd6; padding-bottom:0.5rem;  }
.pay_page_expm{width:50%; }
.go-back-div a{text-decoration: none;
   background: var(--brand-light);
  color: var(--brand-deep); margin-top:1rem; 
  font-size: 14px;
  font-weight: 500; display:inline-block; 
  padding: 8px 14px;
  border-radius: var(--radius-full);
  transition: all 0.2s;
  white-space: nowrap;}
.go-back-div a:hover{background:#C6E6FF;}
.res-main-sec{padding:2rem; }
.no_results_img img{width:200px; height:200px; }
.char{font-size:2rem; font-weight:600; color:var(--brand-red); margin-bottom:1.5rem; }
.no_rslt + h3{font-size:1.6rem;}
.booking_confirmation_header{background:url(/images/Content/confirmation_header.png)no-repeat center/cover; width:100%; height:200px; }
.confirmation_top{display:flex; gap:0.9rem; align-items:center; padding-top:2.5rem;  }
.confirmation_top h1{color:#0e843e; font-size:1.8rem; font-weight:600; margin:0; }
.confirmation_top p{margin:0;color: #044628; }
.confirmation_top i{color:#0e843e; font-size:2.7rem; }
.itinerary_info_main, .fare_info{padding:1.5rem; margin-top:-4rem; margin-bottom:1rem; background:#fff; border-radius:15px; border:1px solid #ccc; box-shadow:0px 6px 25px rgba(0,0,0,0.05);}
.greetings .passenger-name{font-size:25px; font-weight:600; margin-bottom:0.3rem;   }
.greetings p{padding:1rem; border:1px solid #107dd5; border-radius:12px; font-size:15px; background:#ebf6ff; margin-top:1rem;}
.greetings .booking-status strong{color:#dd6609}
.greetings .booking-reference span{font-weight:600;}
.copy-btn{cursor:pointer; opacity:0.7; padding-left:0.25rem;}
.airline_info{display:flex; gap:1rem; align-items:center; padding:0.35rem 0;}
.airline_info p{margin:0; }
.dep_date{font-weight:600; text-transform:uppercase; color:#0072ff; padding-bottom:0.35rem; }
.airline_name strong{font-weight:600; font-size:16px;}
.airline_name p{ color: #666; font-size: 15px;}
.cabin_dtl{color:#333; font-weight:600; font-size:13px;}
.flight_info_main{background:#f3f3f3;  padding:1rem 0 0 0; border-radius:12px; border:1px solid #ccc; }
.flight_info_main h3{font-size:1.1rem; font-weight:600; padding:0.35rem 1rem; }
.itinerary_box{background:#fff; padding:1.3rem; border-radius:12px; }
.route_dtl strong{font-weight:600; font-size:18px;}
.route_dtl p{margin:0; color:#666;  font-size: 15px;}
.duration_main strong{font-weight:600; }
.duration_main + small{ color:#666;  font-size: 14px;}
.flight_layover{position:relative;}
.flight_layover::before{content:''; width:100%; border-top:1px dashed #6eafff; position:absolute; top:14px; left:0; z-index:0;  }
.flight_layover span{background:rgb(237, 245, 255); position:relative; z-index:1; color:#0072ff; font-size:12px; font-weight:500; padding:0.35rem 1rem; border-radius:30px;  }
.flight_details_sec{margin-bottom:2rem; }
.flight_details h3{font-size:1.3rem; font-weight:600; padding:0.35rem 0.4rem; color:var(--brand-deep);  display:flex; gap:0.6rem;}
.Important_text p{font-size:13px; color:#777777; padding-bottom:0.35rem; }
.Important_text ol li{font-size:13px; color:#777777; list-style:none; padding-bottom:0.25rem; }
.Important_text h3{font-size:18px;  padding-bottom:1rem; }
.fare_info{position:sticky; top:5rem; }
.fare_disclaimer_hm{font-size:12px; color:#777; margin-top:1rem; }











/*Baggage Page css*/
.baggage_policy_container {margin-top: 20px;}
.airline-bagg-fee-title {background: linear-gradient(to right, #002b4a, #005a9c);  color: #fff;border-radius: 12px;  border-radius: 12px;}
.airline-bagg-fee-title h2 {font-size: 16px;line-height: normal;font-weight: 600;margin-bottom: 0;}
.airline-bagg-fee { padding: 15px;  background-color: #fff; margin-bottom: 40px; border: 1px solid #002b4a; border-radius: 12px;margin-top: 15px;}
.airline-bagg-fee .row {  margin-bottom: 15px;
  padding: 0 0 15px 0;
  border-bottom: 1px solid #ddd;
  transition: all 0.3s ease;}

.airline-bagg-fee .row:hover {
  background-color: #f3f3f3;
  border-bottom: 2px solid #ddd;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(255, 152, 0, 0.15);
  cursor: pointer;
}

.airline-bagg-fee-logo span {
  font-weight: 500;
  font-size: 13px;
  color: #444;
}

.airline-bagg-fee-detail a {
  font-size: 13px;
  font-weight: 700;
  color: #0d6efd;
  text-decoration: underline;
}


.baggage-wrap {
    display: flex;
    gap: 10px;
    margin-top: 12px; margin-bottom:0.5rem;
    flex-wrap: wrap;
}

.bag-card {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f7f7f7;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    padding: 10px 16px;
    min-width: 130px;
}

.bag-icon {
    font-size: 18px;
    line-height: 1;
}

.checked-bag .bag-icon {
    color: #d3202f;
}

.cabin-bag .bag-icon {
    color: #253041;
}

.bag-info {
    display: flex;
    flex-direction: row; gap:0.2rem;
    line-height: 1.2;
}

.bag-title {
    font-size: 13px;
    color: #1f2937;
    font-weight: 400;
  
}

.bag-value {
    font-size: 13px;
    color: #1f2937;
    font-weight: 700;
}

.bag-subtext {
    font-size: 13px;
    color: #9ca3af;
    margin-top: 2px;
}
.pborder-0{padding:0 !important; border:0 !important;}
.fixed-grid{grid-template-columns: 1fr 1fr 140px !important; gap: 12px !important;}
.add-dest-btn div{color:#0066ea !important; font-size:14px; user-select:none; font-weight:600; cursor:pointer; border-radius:30px; }
.remove-dest-btn{color:#db3b29 !important;  font-size:14px; user-select:none; font-weight:600;cursor:pointer;border-radius:30px;}
.add-dest-btn div:hover{background:rgba(0, 102, 234, 0.06);}
.remove-dest-btn:hover{background:rgba(234, 0, 0, 0.06);}
#multicityTab{display:none; }
#addMoreBtn.disabled{color:#c5c5c5 !important; cursor:not-allowed; background:none !important; }
.baggage-box {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #f1f5f9;
    padding: 6px 14px;
    border-radius: 12px;
    font-family: sans-serif;
}

.bag-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #333;
}

.bag-item i {
    font-size: 16px;
}

/* Info circle */
.bag-item.info {
    width: 22px;
    height: 22px;
    background: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bag-item.info i {
    color: #fff;
    font-size: 12px;
}


.baggage-summary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #eef3f7;
    padding: 8px 12px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
}

.flight_baggage .info {
    color: #3b82f6;
    font-size: 16px;
}
.info-icon{color:#1c73d2;}
.baggage-items strong{font-weight:500;}
/* Popup container */
.fb_popup {
    position: fixed;
    top: 70px;
    right: 40px;
    display: none;
    z-index: 9999;
}

/* Card */
.fb_card {
    width: 340px;
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    position: relative;
}

/* Arrow corner */
.fb_card::before {
    content: "";
    position: absolute;
    top: -10px;
    right: 20px;
    width: 20px;
    height: 20px;
    background: #fff;
    transform: rotate(45deg);
    box-shadow: -2px -2px 5px rgba(0,0,0,0.05);
}

/* Close */
.fb_close {
    position: absolute;
    right: 12px;
    top: 10px;
    font-size: 20px;
    cursor: pointer;
}

/* Heading */
.fb_card h4 {
    margin: 0;
    font-weight: 600;
}

.fb_card small {
    color: #666;
}

/* Included */
.fb_included {
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.fb_included i {
    color: #22c55e;
}

/* Rows */
.fb_row {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
    align-items: flex-start;
}

.fb_count {
    background: #e5e7eb;
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: 600;
}

.fb_icon {
    font-size: 18px;
    color: #555;
}

.fb_title {
    font-weight: 500;
}

.fb_sub {
    font-size: 13px;
    color: #666;
}

/* More info */
.fb_more {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    margin: 10px 0;
}

.fb_personal {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    color: #444;
}

/* Note */
.fb_note {
    font-size: 13px;
    color: #666;
}
.sitemap_block{border-bottom:1px dashed #ccc; padding-bottom:1rem; margin-bottom:1rem;}
.sitemap_block .main-heading{font-size:20px; font-weight:600; margin-bottom:0.8rem; }
.sitemap_block ul{margin:0; padding:0; list-style:none; overflow:hidden;  }
.sitemap_block ul li{width:25%; float:left; line-height:28px;   }
.sitemap_block ul li a{color:#666;}
.sitemap_block ul li a:hover{color:#0858b1; text-decoration:none !important; }
.seach_con.generic_page{padding:4rem 0;}
.main-content-section .section{padding:0.5rem 0;}
.main-content-section .section h2{font-size:20px; font-weight:600; }
.page-header h1{font-size:1.7rem !important; }
.page-header p{font-size:15px; color:#666 !important;}
.main-content-section .section p, .main-content-section .section ul li, .main-content-section .section ol li{font-size:15px !important; color:#666 !important; }
.cta-section h2{font-size:1.4rem !important;}
.cta-section p{font-size:15px; color:#666 !important;}
.main-content-section strong{font-weight:normal !important;}
.about-content p, .about-content ul li, .airline-content-section p, .airline-content-section ul li, .airline-content-section ol li{font-size:15px; color:#666 !important;}
.airline-content-section h2, .airline-content-section h1{font-size:1.4rem !important; font-weight:600 !important;}
.about-content h2 strong{font-size:1.4rem !important; font-weight:600 !important;font-family:'Poppins', sans-serif !important;} 
.about-content p span{font-family:'Poppins', sans-serif !important;}


@media (max-width: 576px) {
    .baggage-wrap {
        flex-direction: column;
    }

    .bag-card {
        width: 100%;
    }
}


@media screen and (max-width: 767px){
    .pl-row-3 .pl-field1{width:48% !important; } .pl-row-3 .pl-field2{width:49% !important;} .pl-row-3{flex-wrap:wrap;} 
    .pl-row-3 .pl-field2:nth-child(3){width:100% !important;} .serch-modifay{width:95% !important;} .sitemap_block ul li{width:50%;}
}
@media screen and (max-width:680px){
    .flight-airline-logo + div{display:none; } .flight-time{font-size: 11px;} .flight-line{margin: 1px 0;} .flight-stops{font-weight:400; } 
    .flight-price-amount{font-size: 16px; line-height: 17px;} .btn-select{font-size:12px; padding: 8px 12px;} .flight-price-pp{font-size:10px; } .results-grid{padding: 10px 0;}
    .flight_details_main{width:95% !important; } .left-detail strong{font-size: 15px !important;} .left-detail p{font-size:12px !important;}
    .total_fare_ftr strong{font-size: 1rem !important;} .book_now_btn a{padding: 0.7rem 1rem !important; font-size: 13px !important;} .flight-description-content{padding:1rem !important;}
    .segment_airline_info{width:100% !important; margin-bottom:0.25rem; } .flight-description-content{flex-wrap:wrap;} .flight-des-logo img{width:40px; height:40px; }
    .flight-des-det{line-height:14px; } .flight-name-detail{font-size:13px !important; } .flight-number strong, .flight-des-det p{font-size:11px !important; } .triptype_seg{font-size:14px !important;}
    .flight-des-det .flight-number, .flight-des-det p, .flight-description-cityname, .flight-description-cityname + .date, .flight-duration-seg span{font-size:11px !important;}
    .flight-des-det .flight-name-detail, .segment_trip_dates .time{font-size:13px !important; }
}

@media screen and (max-width:580px){
  .flight-price-col{flex-direction: row !important; justify-content:space-between; align-items:center;}  
  #routeTitle{font-size:15px !important;} .results-summary{font-size: 12px !important;} .mod-se-mob{font-size:13px !important; } .step{flex-direction:column !important; font-size: 11px !important;} .step-num{width: 22px;height: 22px;}
}
@media screen and (max-width:480px){
    .pl-row-3 .pl-field1{width:100% !important; } #return_date{text-align:end;} .pl-row-3 .pl-field2:nth-child(3){width:46% !important; }
    .pl-form-body{padding:1rem !important;} .sitemap_block ul li{width:100% !important;}
}
