 /* Google Fonts */
  @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
  /* Base Styles */
  :root {
  --primary-color: #ff5722;
  --dark-blue: #0a2463;
  --white: #ffffff;
  --light-gray: #f5f5f5;
  --gray: #6c757d;
  --dark-gray: #343a40;
  }
  body {
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
  font-weight: 700;
  margin-bottom: 1rem;
  }
  a {
  text-decoration: none;
  color: var(--dark-blue);
  transition: all 0.3s ease;
  }
  a:hover {
  color: var(--primary-color);
  }
  .text-orange {
  color: var(--primary-color) !important;
  }
  .text-blue {
  color: var(--dark-blue) !important;
  }
  .btn {
  border-radius: 4px;
  padding: 0.6rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
  }
  .btn-orange {
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  }
  .btn-orange:hover {
  background-color: #e64a19;
  color: var(--white);
  }
  /* .btn-blue {
  background-color: var(--dark-blue);
  color: var(--white);
  border: none;
  }
  .btn-blue:hover {
  background-color: #081d54;
  color: var(--white);
  } */
  .btn-search {
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 100%;
  }
  .flight-inputs {
  display: flex;
  flex-wrap: wrap;
  }
  .input-group>.extraclass {
  width: 100% !important;
  }
  .btn-search:hover {
  background-color: #e64a19;
  color: var(--white);
  }
  .section-header {
  margin-bottom: 1.5rem;
  }
  .section-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: var(--dark-blue);
  }
  header {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  }
  .navbar-brand img {
  max-height: 40px;
  }
  .navbar-nav .nav-link {
  color: var(--dark-gray);
  font-weight: 500;
  padding: 0.5rem 1rem;
  position: relative;
  }
  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link.active {
  color: var(--primary-color);
  }
  .navbar-nav .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--primary-color);
  }
  @media (max-width: 991px) {
  .navbar-collapse {
  justify-content: flex-start !important;
  }
  .navbar-nav {
  align-items: flex-start !important;
  width: 100%;
  }
  .navbar-nav .nav-link {
  text-align: left !important;
  padding-left: 1rem;
  }
  .navbar-nav .nav-item {
  width: 100%;
  }
  .navbar-nav .nav-item .btn {
  margin-left: 1rem;
  }
  }
  .hero-section {
    background: linear-gradient(rgb(10 36 99 / 74%), rgb(18 76 217 / 64%)),  url(https://www.farehawker.co.in/img/farehawker001.png);
    background-size: cover;
    z-index: 99;
    background-position: center;
    color: var(--white);
    padding: 5rem 0;
    position: relative;
}
  .hero-content h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  }
  .flight-form-container {
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin: 20px auto;
  max-width: 1200px;
  width: 100%;
  position: relative;
  }
  .form-header {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: right;
  color: #fff;
  }
  .tab-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 20px;
  gap: 10px;
  }
  .tab-buttons label {
  margin-right: 10px;
  margin-left: 5px;
  font-size: 1rem;
  color: #fff;
  }
  .tab-buttons input[type="radio"] {
  display: none;
  }
  .tab-buttons label {
  border: 2px solid transparent;
  border-radius: 20px;
  padding: 5px 15px;
  font-weight: 500;
  color: #fff;
  background-color: transparent;
  cursor: pointer;
  }
  .tab-buttons input[type="radio"]:checked+label {
  border-color: #FF5733;
  background-color: rgba(255, 87, 51, 0.1);
  }
  .flight-inputs,
  .multi-city-inputs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
  align-items: center;
  }
  .flight-inputs .input-group,
  .multi-city-inputs .input-group {
  flex: 1;
  min-width: 150px;
  position: relative;
  border: 1px solid #444;
  border-radius: 5px;
  padding: 10px;
  background-color: #2A3536;
  }
  .flight-inputs .input-group label,
  .multi-city-inputs .input-group label {
  font-size: 0.9rem;
  color: #ccc;
  }
  .flight-inputs .input-group .city,
  .multi-city-inputs .input-group .city {
  font-size: 1.5rem;
  font-weight: bold;
  border: none;
  outline: none;
  width: 100%;
  cursor: pointer;
  color: #fff;
  background-color: transparent;
  }
  .flight-inputs .input-group .date-info,
  .multi-city-inputs .input-group .date-info {
  font-size: 1.5rem;
  font-weight: bold;
  border: none;
  outline: none;
  padding: 0px !important;
  width: 100%;
  cursor: pointer;
  color: #fff;
  background-color: transparent;
  }
  .flight-inputs .input-group .return-info {
  font-size: 1.5rem;
  font-weight: bold;
  border: none;
  outline: none;
  width: 100%;
  cursor: pointer;
  color: #ccc;
  background-color: transparent;
  }
  .flight-inputs .input-group .date-day {
  font-size: 0.8rem;
  color: #ccc;
  padding: 0px !important;
  border: none;
  outline: none;
  width: 100%;
  cursor: pointer;
  background-color: transparent;
  }
  .flight-inputs .input-group .traveller-info {
  font-size: 1.2rem;
  font-weight: bold;
  border: none;
  outline: none;
  padding: 2px;
  width: 100%;
  cursor: pointer;
  color: #fff;
  background-color: transparent;
  }
  .flight-inputs .input-group .travel-class {
  font-size: 0.8rem;
  color: #ccc;
  padding: 0px !important;
  border: none;
  outline: none;
  width: 100%;
  cursor: pointer;
  background-color: transparent;
  }
  .swap-icon {
  width: 30px;
  height: 30px;
  background-color: #2A3536;
  /* Match input background */
  border-radius: 50%;
  padding: 5px;
  cursor: pointer;
  z-index: 1;
  margin: 0 5px;
  }
  .search-btn {
  background: linear-gradient(90deg, #ff5733, #ff8c66);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  padding: 10px 40px;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
  display: block;
  }
  .add-city-btn {
  border: 2px solid #FF5733;
  border-radius: 20px;
  padding: 5px 20px;
  font-weight: 500;
  color: #FF5733;
  background-color: transparent;
  cursor: pointer;
  }
  .city-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #2A3536;
  border: 1px solid #444;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 10;
  max-height: 300px;
  overflow-y: auto;
  padding: 10px;
  }
  .city-dropdown {
  width: 100%;
  }
  .city-dropdown div {
  padding: 10px;
  cursor: pointer;
  color: #fff;
  }
  .city-dropdown div:hover {
  background-color: #3A4546;
  }
  .flatpickr-calendar {
  background-color: #2A3536;
  }
  .flatpickr-day {
  color: #fff;
  }
  .flatpickr-day:hover {
  background-color: #3A4546;
  }
  .flatpickr-day.selected {
  background-color: #FF5733;
  border-color: #FF5733;
  }
  .disabled-date {
  opacity: 0.5;
  cursor: not-allowed;
  }
  .multi-city-inputs {
  position: relative;
  margin-bottom: 20px;
  width: 100%;
  }
  .multi-city-row {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  position: relative;
  width: 100%;
  }
  .multi-city-row .input-group {
  flex: 1;
  margin-right: 10px;
  }
  /* .remove-city-btn {
  position: absolute;
  right: -25px;
  padding: 0px 5px;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  background: transparent;
  border-radius: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: #ccc;
  } */
  @media (max-width: 1024px) {
  .flight-inputs .input-group,
  .multi-city-inputs .input-group {
  min-width: 45%;
  }
  .swap-icon {
  margin: 5px;
  }
  .flight-inputs,
  .multi-city-row {
  gap: 5px;
  }
  }
  @media (max-width: 768px) {
  .flight-inputs .input-group,
  .multi-city-inputs .input-group {
  min-width: 100%;
  }
  .swap-icon {
  margin: 10px auto;
  }
  .flight-inputs,
  .multi-city-inputs,
  .multi-city-row {
  flex-direction: column;
  align-items: stretch;
  }
  .multi-city-row .input-group {
  margin-right: 0;
  }
  .form-header {
  text-align: center;
  font-size: 1.2rem;
  }
  }
  @media (max-width: 480px) {
  .flight-inputs .input-group,
  .multi-city-inputs .input-group {
  padding: 8px;
  }
  .flight-inputs .input-group .city,
  .multi-city-inputs .input-group .city {
  font-size: 1.2rem;
  }
  .flight-inputs .input-group .date-info,
  .multi-city-inputs .input-group .date-info {
  font-size: 1.2rem;
  }
  .flight-inputs .input-group .traveller-info {
  font-size: 1.2rem;
  }
  .tab-buttons label {
  padding: 4px 10px;
  font-size: 0.9rem;
  }
  .search-btn {
  padding: 8px 30px;
  }
  }
  .traveler-details {
  color: var(--white);
  font-size: 0.65rem;
  margin-top: 0.2rem;
  }
  .trending-searches {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.9rem;
  margin-top: 1rem;
  color: var(--white);
  }
  .trending-searches i {
  margin-right: 5px;
  }
  .traveler-dropdown {
  display: none;
  position: absolute;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  width: 300px;
  padding: 8px;
  top: 100%;
  left: 0;
  }
  .traveler-dropdown.show {
  display: block;
  }
  .count-w{
  width: 50px !important;
  text-align: center;
}
  /* .counter-value {
  font-size: 12px;
  font-weight: 600;
  width: 30px;
  text-align: center;
  } */
  /* .bags-section h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 15px 0 10px;
  text-transform: uppercase;
  } */
  .traveler-footer {
  text-align: right;
  margin-top: 15px;
  }
  #doneBtn {
  background: #ff5733;
  color: #fff;
  border: none;
  padding: 8px 15px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  }
  .disabled {
  background-color: #e0e0e0 !important;
  color: #999 !important;
  cursor: not-allowed;
  }
  .select2-container--default .select2-selection--single {
  background: transparent !important;
  border: none !important;
  height: 35px !important;
  }
  .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: var(--dark-gray);
  font-size: 1rem;
  font-weight: 600;
  line-height: 35px;
  padding-left: 0;
  }
  .select2-container--default .select2-selection--single .select2-selection__arrow {
  display: none;
  }
  .select2-container {
  width: 100% !important;
  }
  .select2-dropdown {
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #000;
  margin-top: -27px;
  }
  .select2-results__option {
  color: #000;
  padding: 8px 12px;
  font-size: 0.9rem;
  }
  .select2-results__option--highlighted {
  background: var(--primary-color) !important;
  color: var(--white);
  }
  .select2-results__option--selected {
  background: rgba(255, 255, 255, 0.2);
  }
  @media (min-width: 993px) {
  .search-form {
  flex-wrap: nowrap;
  align-items: center;
  }
  .search-form .from-section,
  .search-form .to-section {
  flex: 1 1 200px;
  min-width: 200px;
  }
  .search-form .departure-section,
  .search-form .return-section {
  min-width: 100px;
  }

  .search-form .traveler-section {
  flex: 1 1 150px;
  min-width: 150px;
  }
  .search-form .swap-icon {
  display: flex !important;
  flex: 0 0 30px;
  margin: 0 5px;
  }
  .search-form .calendar-icon,
  .search-form .user-icon {
  display: flex;
  flex: 0 0 30px;
  }
  .search-form .btn-search {
  flex: 0 0 100px;
  }
  .select2-container--default .select2-selection--single .select2-selection__rendered {
  font-size: 1rem;
  }
  }
  @media (max-width: 992px) {
  .hero-content {
  padding: 0.5rem;
  }
  .search-form {
  flex-direction: column;
  align-items: stretch;
  padding: 0.5rem;
  }
  .search-form>div {
  width: 100% !important;
  }
  .search-form .form-control {
  font-size: 0.9rem;
  height: 30px;
  }
  .search-form .input-group-text {
  padding: 0.3rem;
  }
  .search-form .btn-search {
  width: 100%;
  height: 35px;
  font-size: 0.85rem;
  }
  .search-form label {
  font-size: 0.6rem;
  }
  .traveler-details {
  font-size: 0.6rem;
  }
  .search-form .swap-icon,
  .search-form .calendar-icon,
  .search-form .user-icon {
  display: none;
  }
  .traveler-dropdown {
  width: 100%;
  left: 0;
  right: 0;
  }
  .trending-searches {
  justify-content: center;
  font-size: 0.8rem;
  }
  .search-tag {
  font-size: 0.7rem;
  padding: 0.2rem 0.6rem;
  }
  }
  @media (max-width: 576px) {
  .hero-content {
  padding: 0.3rem;
  }
  .search-form {
  padding: 0.3rem;
  }
  .search-form .form-control {
  font-size: 0.8rem;
  height: 28px;
  }
  .search-form .input-group-text {
  padding: 0.2rem;
  }
  .search-form .btn-search {
  height: 32px;
  font-size: 0.8rem;
  }
  .search-form label {
  font-size: 0.55rem;
  }
  .traveler-details {
  font-size: 0.55rem;
  }
  .trending-searches {
  font-size: 0.7rem;
  }
  .search-tag {
  font-size: 0.65rem;
  padding: 0.2rem 0.5rem;
  }
  }
  .quick-services {
  padding: 2rem 0;
  background-color: #fcfcfc;
  }
  .service-item {
  text-align: center;
  padding: 1rem 0.5rem;
  z-index: 000;
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
  }
  .service-item:hover::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 3px;
  background-color: var(--primary-color);
  }
  .service-item.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 3px;
  background-color: var(--primary-color);
  }
  .service-item i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--dark-gray);
  }
  .service-item p {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0;
  color: var(--dark-gray);
  }
  @media (max-width: 576px) {
  .service-item i {
  font-size: 1.5rem;
  }
  .service-item p {
  font-size: 0.75rem;
  }
  .service-item {
  padding: 0.5rem 0.25rem;
  }
  }
  @media (min-width: 577px) and (max-width: 768px) {
  .service-item i {
  font-size: 1.75rem;
  }
  .service-item p {
  font-size: 0.85rem;
  }
  }
  @media (min-width: 769px) {
  .service-item p {
  font-size: 0.9rem;
  }
  }
  .flight-routes-services {
  padding: 3rem 0;
  background-color: #fff;
  }
  .header-with-tabs {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  }
  .section-header {
  display: flex;
  flex-direction: column;
  gap: 0;
  }
  .text-orange {
  color: #ff6200;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2px !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1;
  }
  .section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #003087;
  margin: 0;
  line-height: 1;
  }
  .route-tabs {
  display: flex;
  gap: 1rem;
  }
  .route-tab {
  background: transparent;
  border: none;
  color: #003087;
  padding: 0.5rem 0;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
  }
  .route-tab.active {
  color: #003087;
  }
  .route-tab.active::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #ff6200 !important;
  }
  .route-card-inner {
  background: #fff;
  border-radius: 15px;
  display: flex;
  overflow: hidden;
  align-items: center;
  border: 1px solid #e6e6e6;
  width: 100%;
  max-width: 450px;
  padding: 10px;
  transition: all 0.3s ease;
  }
  .route-card-inner:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  .route-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  margin-right: 5px;
  }
  .route-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  }
  .route-info {
  padding-right: 5px;
  }
  .route-info h4 {
  font-size: 1rem;
  margin-bottom: 5px;
  color: #1a73e8;
  font-weight: 600;
  }
  .route-info p {
  font-size: 0.7rem;
  color: #666;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  }
  .route-info p span {
  margin: 0 4px;
  color: #999;
  font-size: 0.8rem;
  }
  .airlines {
  display: flex;
  position: relative;
  padding-bottom: 20px;
  margin-right: -10px;
  }
  .airlines img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
  margin-left: -10px;
  border: 2px solid #fff;
  position: relative;
  }
  .airlines img::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), transparent);
  border-radius: 50%;
  z-index: -1;
  }
  @media (max-width: 400px) {
  .route-card-inner {
  padding: 8px;
  max-width: 100%;
  }
  .route-img {
  width: 50px;
  height: 50px;
  margin-right: 12px;
  }
  .route-info h4 {
  font-size: 1rem;
  }
  .route-info p {
  font-size: 0.85rem;
  }
  .route-info p span {
  margin: 0 6px;
  font-size: 0.75rem;
  }
  .airlines img {
  width: 28px;
  height: 28px;
  margin-left: -8px;
  }
  }
  .service-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1rem;
  height: 150px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  .service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
  }
  .service-card:hover img {
  transform: scale(1.05);
  }
  .service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0.8rem;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent);
  color: #fff;
  }
  .service-overlay h4 {
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
  font-weight: 600;
  }
  .service-overlay p {
  font-size: 0.85rem;
  margin-bottom: 0;
  font-weight: 400;
  }
  /* Responsive Design */
  @media (max-width: 991px) {
  .flight-routes-services {
  padding: 2rem 0;
  }
  .header-with-tabs {
  flex-direction: column;
  align-items: flex-start;
  }
  .section-header {
  flex-direction: row;
  gap: 0.5rem;
  }
  .route-tabs {
  margin-top: 0.5rem;
  }
  .text-orange {
  font-size: 1.3rem;
  }
  .section-title {
  font-size: 1.3rem;
  }
  .route-tab {
  font-size: 0.9rem;
  }
  .service-card {
  height: 140px;
  }
  }
  @media (max-width: 767px) {
  .flight-routes-services {
  padding: 1.5rem 0;
  }
  .section-header {
  flex-wrap: wrap;
  gap: 0.3rem;
  }
  .text-orange {
  font-size: 1.1rem;
  }
  .section-title {
  font-size: 1.1rem;
  }
  .route-tabs {
  gap: 0.8rem;
  }
  .route-tab {
  font-size: 0.85rem;
  }
  .route-img {
  width: 60px;
  height: 60px;
  }
  .route-info h4 {
  font-size: 0.95rem;
  }
  .route-info p {
  font-size: 0.8rem;
  }
  .airlines img {
  width: 18px;
  height: 18px;
  }
  .service-card {
  height: 130px;
  }
  .service-overlay h4 {
  font-size: 1rem;
  }
  .service-overlay p {
  font-size: 0.8rem;
  }
  }
  @media (max-width: 575px) {
  .section-header {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  }
  .text-orange {
  font-size: 1rem;
  }
  .section-title {
  font-size: 1.2rem;
  }
  .route-tabs {
  justify-content: flex-start;
  }
  .route-card-inner {
  flex-direction: column;
  text-align: center;
  border-radius: 20px;
  padding: 10px;
  }
  .route-img {
  width: 60px;
  height: 60px;
  margin: 10px auto;
  }
  .route-info {
  padding: 0.5rem;
  }
  .route-info h4 {
  font-size: 0.9rem;
  }
  .route-info p {
  font-size: 0.75rem;
  }
  .airlines img {
  width: 16px;
  height: 16px;
  }
  .service-card {
  height: 120px;
  }
  .service-overlay h4 {
  font-size: 0.9rem;
  }
  .service-overlay p {
  font-size: 0.75rem;
  }
  }
  .fly-indian-sky {
  padding: 3rem 0;
  background-color: var(--white);
  }
  .fly-indian-sky h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  }
  .fly-indian-sky h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  }
  .fly-indian-sky p {
  color: var(--gray);
  font-size: 0.9rem;
  }
  .app-airlines-section {
  padding: 3rem 0;
  background-color: var(--light-gray);
  }
  .app-content {
  background-color: #cad9ed;
  border-radius: 15px;
  padding: 2rem;
  position: relative;
  background-image: url("https://images.unsplash.com/photo-1507521628349-6e9b803360f5?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80");
  background-size: cover;
  background-position: right;
  background-repeat: no-repeat;
  }
  .app-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, var(--light-gray) 50%, transparent 100%);
  border-radius: 15px;
  }
  .app-text {
  position: relative;
  z-index: 1;
  }
  .app-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
  }
  .app-content h2 span {
  color: var(--primary-color);
  }
  .dot-separator {
  color: var(--primary-color);
  font-size: 1.5rem;
  vertical-align: middle;
  }
  .app-content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
  }
  .text-orange {
  color: var(--primary-color);
  font-weight: bold;
  }
  .app-content h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  }
  .travel-tabs {
  display: flex;
  margin-bottom: 1.5rem;
  }
  .travel-tab.active {
  background-color: #ff6200 !important;
  color: white;
  }
  .travel-tab {
  background: rgba(255, 255, 255, 0.1) !important;
  border: none;
  color: var(--white) !important;
  padding: 0.5rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  }
  .app-link-form {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 450px;
  background-color: var(--white);
  border-radius: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  }
  .app-link-form input {
  padding: 1rem 1.5rem;
  border: none;
  font-size: 1rem;
  width: 65%;
  outline: none;
  border-radius: 30px 0 0 30px;
  }
  .btn-orange {
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 0 30px 30px 0;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s;
  width: 35%;
  }
  .btn-orange:hover {
  background-color: #e55a00;
  }
  .btn-orange-main {
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s;
  }
  .btn-orange-main:hover {
  background-color: #e55a00;
  }
  /* .app-stores {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  } */
  .app-store img,
  .play-store img {
  height: 40px;
  transition: transform 0.3s;
  }
  .app-store img:hover,
  .play-store img:hover {
  transform: scale(1.05);
  }
  /* .qr-code img {
  width: 80px;
  height: 80px;
  } */
  .app-mockup img {
  max-height: 300px;
  width: 100%;
  object-fit: contain;
  }
  /* Airlines Box */
  .airlines-container {
  background-color: var(--dark-blue);
  border-radius: 8px;
  padding: 1.4rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  .airlines-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  }
  .airlines-box {
  flex: 1;
  color: var(--white);
  }
  .airlines-box h3 {
  font-size: 1.2rem;
  margin-bottom: 0.2rem;
  color: var(--primary-color);
  font-weight: 500;
  text-transform: uppercase;
  }
  .airlines-box h2 {
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
  color: var(--white);
  font-weight: 600;
  text-transform: uppercase;
  }
  .airlines-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  }
  .airline-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 8px 15px;
  border-radius: 4px;
  }
  .airline-item img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  background-color: white;
  border-radius: 50%;
  padding: 4px;
  }
  .airline-item span {
  font-weight: 500;
  font-size: 10px;
  }
  .flight-count {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-left: auto;
  }
  hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin: 10px 0;
  }
  @media (max-width: 768px) {
  .airlines-row {
  flex-direction: column;
  }
  .airlines-box h2 {
  font-size: 1.3rem;
  }
  .airline-item img {
  width: 35px;
  height: 35px;
  }
  .airline-item span {
  font-size: 0.9rem;
  }
  .flight-count {
  font-size: 0.8rem;
  }
  }
  @media (max-width: 576px) {
  .airlines-box h3 {
  font-size: 1rem;
  }
  .airlines-box h2 {
  font-size: 1.2rem;
  }
  .airline-item {
  padding: 6px 10px;
  }
  .airline-item img {
  width: 30px;
  height: 30px;
  }
  .airline-item span {
  font-size: 0.85rem;
  }
  }
  @media (max-width: 768px) {
  .app-content {
  text-align: center;
  background-image: none;
  }
  .app-content::before {
  background: var(--light-gray);
  }
  .app-text {
  text-align: center;
  }
  .app-content h2 {
  font-size: 1.8rem;
  }
  .app-content p {
  font-size: 0.9rem;
  }
  /* .app-stores {
  justify-content: center;
  } */
  .app-mockup {
  text-align: center;
  margin-top: 2rem;
  }
  .app-link-form {
  max-width: 100%;
  }
  .app-link-form input {
  width: 65%;
  }
  .btn-orange {
  width: 35%;
  }
  }
  @media (max-width: 576px) {
  .app-content {
  padding: 1.5rem;
  }
  .app-content h2 {
  font-size: 1.5rem;
  }
  .app-content p {
  font-size: 0.85rem;
  }
  .app-store img,
  .play-store img {
  height: 35px;
  }
  /* .qr-code img {
  width: 70px;
  height: 70px;
  } */
  .app-link-form input {
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  }
  .btn-orange {
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  }
  }
  /* Newsletter Section */
  /* .newsletter-section {
  padding: 0;
  margin-top: 3rem;
  }
  .newsletter-box {
  background-color: var(--white);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }
  .newsletter-box h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  }
  .newsletter-box p {
  font-size: 0.9rem;
  color: var(--gray);
  }
  .newsletter-form {
  display: flex;
  gap: 10px;
  }
  .newsletter-form .form-control {
  height: 45px;
  border-radius: 4px;
  }
  .newsletter-form .btn {
  height: 45px;
  min-width: 120px;
  } */
  /* Footer */
  /* .site-footer {
  background-color: var(--dark-blue);
  color: var(--white);
  margin-top: 3rem;
  }
  .footer-main {
  padding: 3rem 0;
  }
  .footer-widget h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  }
  .footer-widget h3::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
  }
  .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  }
  .footer-links li {
  margin-bottom: 0.8rem;
  }
  .footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  font-size: 0.9rem;
  }
  .footer-links a:hover {
  color: var(--primary-color);
  padding-left: 5px;
  }
  .footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 1rem;
  }
  .footer-bottom-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
  } */
  /* .copyright {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  } */
  .payment-methods img {
  max-width: 100%;
  }
  /* .footer-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 1.5rem;
  }
  .footer-info {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 2rem 0;
  }
  .info-box {
  margin-bottom: 1.5rem;
  }
  .info-box h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  }
  .info-box p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.8;
  } */
  /* .select2-container {
  width: 100% !important;
  }
  .select2-container--default .select2-selection--single {
  height: 45px;
  padding: 8px 12px;
  border: none;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.9);
  }
  .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 45px;
  }
  .select2-dropdown {
  border: none;
  } */
  /* .select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: var(--primary-color);
  } */
  .traveler-type {
  padding: 6px 0;
  border-bottom: 1px solid #eee;
  }
  .traveler-type:last-child {
  border-bottom: none;
  }
  .traveler-type h4 {
  font-size: 14px;
  color: #000;
  margin-bottom: 0.2rem;
  }
  .traveler-type p {
  font-size: 0.6rem;
  color: var(--gray);
  margin-bottom: 0.5rem;
  }
  .counter {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  }
  .counter-btn {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: white;
  border: none;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  }
  /* .counter-value {
  width: 25px;
  height: 20px;
  color: #000;
  border: 1px solid #eee;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  } */
  .traveler-footer {
  margin-top: 1rem;
  text-align: right;
  }
  .traveler-footer button {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  }
  /* .bags-section {
  margin-top: 1rem;
  }
  .bags-section h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  } */
  .class-selection {
  margin-top: 1rem;
  }
  /* .class-btn {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  width: 100%;
  } */
  @media (max-width: 991.98px) {
  .hero-section {
  padding: 3rem 0;
  }
  .hero-content h1 {
  font-size: 2rem;
  }
  .section-title {
  font-size: 1.5rem;
  }
  .app-content {
  margin-bottom: 2rem;
  }
  .airlines-box {
  margin-bottom: 2rem;
  }
  .newsletter-form {
  margin-top: 1.5rem;
  }
  }
  @media (max-width: 767.98px) {
  .hero-content h1 {
  font-size: 1.8rem;
  }
  .travel-tab {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  }
  .section-title {
  font-size: 1.5rem;
  }
  /* .newsletter-box {
  padding: 1.5rem;
  } */
  /* .newsletter-form {
  flex-direction: column;
  gap: 15px;
  } */
  /* .footer-widget {
  margin-bottom: 2rem;
  } */
  /* .footer-cta {
  flex-direction: column;
  gap: 15px;
  } */
  }
  @media (max-width: 575.98px) {
  .hero-content h1 {
  font-size: 1.5rem;
  }
  .search-form {
  padding: 1rem;
  }
  /* .trending-searches {
  flex-direction: column;
  align-items: flex-start;
  } */
  .section-title {
  font-size: 1.3rem;
  }
  .app-content h2 {
  font-size: 1.5rem;
  }
  /* .app-stores {
  flex-wrap: wrap;
  } */
  /* .footer-bottom-links {
  flex-direction: column;
  gap: 10px;
  } */
  }
  .btn-search {
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 100%;
  }
  .btn-search:hover {
  background-color: #e64a19;
  color: var(--white);
  }
  .travel-tab {
  background: var(--light-gray);
  border: none;
  color: var(--dark-gray);
  padding: 0.5rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  }
  .travel-tab.active {
  background-color: var(--primary-color);
  color: var(--white);
  }
  .travel-tab:hover {
  background-color: #e9ecef;
  }
  /* Tab Content */
  .tab-pane {
  display: none;
  }
  .tab-pane.active {
  display: block;
  }
  .form-check-label {
  color: var(--white);
  /* Adjusted to match white theme */
  }
  /* Search Form - White Theme */
  .search-form {
  background: var(--white);
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 10px;
  }
  .search-form label {
  color: var(--dark-gray);
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
  }
  .search-form .form-control {
  background: var(--white);
  border: 1px solid var(--border-light);
  height: 35px;
  color: var(--dark-gray) !important;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.5rem;
  }
  .search-form .form-control:focus {
  box-shadow: 0 0 0 2px rgba(255, 87, 51, 0.25);
  border-color: var(--primary-color);
  background: var(--white);
  color: var(--dark-gray);
  }
  .search-form select.form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: var(--white) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23343a40' viewBox='0 0 24 24'><path d='M7 10l5 5 5-5z'/></svg>") no-repeat right 0.5rem center;
  }
  .search-form .input-group {
  background: var(--white);
  }
  .search-form .input-group-text {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-left: none;
  padding: 0.5rem;
  color: var(--dark-gray);
  }
  .search-form .input-group-text i {
  color: var(--dark-gray);
  }
  .search-form .btn-search {
  background: linear-gradient(90deg, #ff5733, #ff8c66);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  height: 40px;
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  }
  .search-form .swap-icon {
  color: var(--dark-gray);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 35px;
  background: var(--light-gray);
  border-radius: 50%;
  }
  .traveler-details {
  color: var(--gray);
  font-size: 0.65rem;
  margin-top: 0.2rem;
  }
  .trending-searches i {
  margin-right: 5px;
  color: var(--primary-color);
  }
  .search-tag {
  background: var(--light-gray);
  color: var(--dark-gray);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  margin-left: 10px;
  font-size: 0.8rem;
  text-decoration: none;
  }
  .search-tag:hover {
  background: var(--primary-color);
  color: var(--white);
  }
  /* Traveler Dropdown - White Theme */
  .traveler-dropdown {
  display: none;
  position: absolute;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  width: 300px;
  padding: 8px;
  top: 100%;
  left: 0;
  }
  .traveler-type {
  padding: 6px 0;
  border-bottom: 1px solid var(--border-light);
  }
  .traveler-type:last-child {
  border-bottom: none;
  }
  .traveler-type h4 {
  font-size: 14px;
  color: var(--dark-gray);
  margin-bottom: 0.2rem;
  }
  .traveler-type p {
  font-size: 0.6rem;
  color: var(--gray);
  margin-bottom: 0.5rem;
  }
  .counter {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  }
  .counter-btn {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  }
  /* .counter-value {
  width: 25px;
  height: 20px;
  color: var(--dark-gray);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  } */
  .traveler-footer {
  margin-top: 1rem;
  text-align: right;
  }
  .traveler-footer button {
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  }
  /* Flight Form Container - White Theme */
  .flight-form-container,
  .travel-panel {
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 15px 35px;
  margin: 20px auto;
  max-width: 1200px;
  width: 100%;
  position: relative;
  }
  .tab-buttons,
  .mode-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  padding: 10px;
  }
  .tab-buttons label,
  .mode-nav label {
  margin-right: 10px;
  margin-left: 5px;
  font-size: 1rem;
  color: var(--dark-gray);
  }
  .tab-buttons input[type="radio"],
  .mode-nav input[type="radio"] {
  display: none;
  }
  .tab-buttons label,
  .mode-nav label {
  border: 2px solid var(--border-light);
  border-radius: 20px;
  padding: 5px 15px;
  font-weight: 500;
  color: var(--dark-gray);
  background-color: var(--white);
  cursor: pointer;
  }
  .tab-buttons input[type="radio"]:checked+label,
  .mode-nav input[type="radio"]:checked+label {
  border-color: var(--primary-color);
  background-color: rgba(255, 87, 51, 0.1);
  color: var(--primary-color);
  }
  .flight-inputs,
  .multi-city-inputs,
  .guest-section,
  .freight-section {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
  align-items: center;
  }
  .flight-inputs .input-group,
  .multi-city-inputs .input-group,
  .guest-section .field-box,
  .freight-section .field-box {
  flex: 1;
  min-width: 195px;
  position: relative;
  border: 1px solid var(--border-light);
  border-radius: 5px;
  padding: 10px;
  background-color: #eeeeee80;
  }
  .flight-inputs .input-group label,
  .multi-city-inputs .input-group label,
  .guest-section .field-box label,
  .freight-section .field-box label {
  font-size: 0.9rem;
  color: var(--gray);
  }
  .flight-inputs .input-group .city,
  .multi-city-inputs .input-group .city,
  .guest-section .field-box .origin,
  .freight-section .field-box .origin {
  font-size: 1.5rem;
  font-weight: bold;
  border: none;
  outline: none;
  width: 100%;
  cursor: pointer;
  color: var(--dark-gray);
  background-color: transparent;
  }
  .flight-inputs .input-group .date-info,
  .multi-city-inputs .input-group .date-info,
  .guest-section .field-box .travel-date,
  .freight-section .field-box .travel-date {
  font-size: 1.5rem;
  font-weight: bold;
  border: none;
  outline: none;
  padding: 0px;
  width: 100%;
  cursor: pointer;
  color: var(--dark-gray);
  background-color: transparent;
  }
  .flight-inputs .input-group .return-info {
  font-size: 1.5rem;
  font-weight: bold;
  border: none;
  outline: none;
  width: 100%;
  cursor: pointer;
  color: var(--gray);
  background-color: transparent;
  }
  .flight-inputs .input-group .date-day,
  .multi-city-inputs .input-group .date-day,
  .guest-section .field-box .day-display,
  .freight-section .field-box .day-display {
  font-size: 0.8rem;
  color: var(--gray);
  padding: 0px;
  border: none;
  outline: none;
  width: 100%;
  cursor: pointer;
  background-color: transparent;
  }
  .flight-inputs .input-group .traveller-info,
  .guest-section .field-box .guest-count {
  font-size: 1.2rem;
  font-weight: bold;
  border: none;
  outline: none;
  padding: 2px;
  width: 100%;
  cursor: pointer;
  color: var(--dark-gray);
  background-color: transparent;
  }
  .flight-inputs .input-group .travel-class,
  .guest-section .field-box .cabin-type {
  font-size: 0.8rem;
  color: var(--gray);
  padding: 0px;
  border: none;
  outline: none;
  width: 100%;
  cursor: pointer;
  background-color: transparent;
  }
  .freight-section .field-box input {
  font-size: 1.2rem;
  color: var(--dark-gray);
  border: none;
  outline: none;
  width: 100%;
  background-color: transparent;
  }
  .swap-icon,
  .exchange-arrow {
  width: 30px;
  height: 30px;
  background-color: var(--light-gray);
  border-radius: 50%;
  padding: 5px;
  cursor: pointer;
  z-index: 1;
  margin: 0 5px;
  }
  .price-tiers {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  justify-content: center;
  }
  .price-tiers .tier-btn {
  border: 2px solid var(--border-light);
  border-radius: 20px;
  padding: 10px 15px;
  font-weight: 500;
  color: var(--dark-gray);
  background-color: var(--white);
  position: relative;
  text-align: center;
  flex: 1 1 auto;
  min-width: 150px;
  max-width: 235px;
  white-space: nowrap;
  }
  .price-tiers .tier-btn.selected {
  border-color: var(--primary-color);
  color: var(--primary-color);
  }
  .price-tiers .tier-btn .deal-tag {
  position: absolute;
  top: -10px;
  left: -10px;
  background-color: var(--primary-color);
  color: var(--white);
  font-size: 0.8rem;
  padding: 2px 8px;
  border-radius: 10px;
  }
  .search-btn {
  background: linear-gradient(90deg, #ff5733, #ff8c66);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  padding: 10px 40px;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
  display: block;
  }
  /* .add-city-btn {
  border: 2px solid var(--primary-color);
  border-radius: 20px;
  padding: 5px 20px;
  font-weight: 500;
  color: var(--primary-color);
  background-color: var(--white);
  cursor: pointer;
  } */
  .city-dropdown,
  .guest-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 10;
  max-height: 300px;
  overflow-y: auto;
  padding: 10px;
  }
  .city-dropdown div,
  .guest-menu div {
  padding: 10px;
  cursor: pointer;
  color: var(--dark-gray);
  }
  .city-dropdown div:hover {
  background-color: var(--light-gray);
  }
  .guest-menu {
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 400px;
  max-width: 90vw;
  right: 0;
  left: auto;
  }
  .guest-menu label {
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
  font-size: 1rem;
  color: var(--dark-gray);
  }
  .count-controls,
  .cabin-choices {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 15px;
  }
  .count-controls .option-btn,
  .cabin-choices .option-btn {
  border: 1px solid var(--primary-color);
  border-radius: 5px;
  padding: 5px 10px;
  color: var(--primary-color);
  background-color: var(--white);
  font-size: 1rem;
  min-width: 40px;
  text-align: center;
  }
  .count-controls .option-btn.selected,
  .cabin-choices .option-btn.selected {
  background-color: var(--primary-color);
  color: var(--white);
  }
  /* .confirm-btn {
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50px;
  padding: 8px 20px;
  border: none;
  margin-top: 15px;
  display: block;
  margin-left: auto;
  font-weight: bold;
  } */
  /* .flatpickr-calendar {
  background-color: var(--white);
  } */
  /* .flatpickr-day {
  color: var(--dark-gray);
  }
  .flatpickr-day:hover {
  background-color: var(--light-gray);
  }
  .flatpickr-day.selected {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  } */
  /* .disabled-date {
  opacity: 0.5;
  cursor: not-allowed;
  } */
  /* Responsive Styles */
  @media (min-width: 993px) {
  .search-form {
  flex-wrap: nowrap;
  align-items: center;
  }
  .search-form .from-section,
  .search-form .to-section {
  flex: 1 1 200px;
  min-width: 200px;
  }
  .search-form .departure-section,
  .search-form .return-section {
  min-width: 100px;
  }
  .search-form .traveler-section {
  flex: 1 1 150px;
  min-width: 150px;
  }
  .search-form .swap-icon,
  .search-form .calendar-icon,
  .search-form .user-icon {
  display: flex;
  flex: 0 0 30px;
  }
  .search-form .btn-search {
  flex: 0 0 100px;
  }
  }
  @media (max-width: 992px) {
  .search-form {
  flex-direction: column;
  align-items: stretch;
  padding: 0.5rem;
  }
  .search-form>div {
  width: 100%;
  }
  .search-form .swap-icon,
  .search-form .calendar-icon,
  .search-form .user-icon {
  display: none;
  }
  .traveler-dropdown,
  .guest-menu {
  width: 100%;
  left: 0;
  right: 0;
  }
  }
  @media (max-width: 1024px) {
  .flight-inputs .input-group,
  .multi-city-inputs .input-group,
  .guest-section .field-box,
  .freight-section .field-box {
  min-width: 45%;
  }
  .swap-icon,
  .exchange-arrow {
  margin: 5px;
  }
  .flight-inputs,
  .multi-city-row,
  .guest-section,
  .freight-section {
  gap: 5px;
  }
  .guest-menu {
  right: 0;
  }
  }
  @media (max-width: 768px) {
  .flight-inputs .input-group,
  .multi-city-inputs .input-group,
  .guest-section .field-box,
  .freight-section .field-box {
  min-width: 100%;
  }
  .swap-icon,
  .exchange-arrow {
  margin: 10px auto;
  }
  .flight-inputs,
  .multi-city-inputs,
  .multi-city-row,
  .guest-section,
  .freight-section {
  flex-direction: column;
  align-items: stretch;
  }
  .multi-city-row .input-group {
  margin-right: 0;
  }
  /* .remove-city-btn {
  right: 0;
  top: auto;
  bottom: -20px;
  transform: none;
  } */
  .guest-menu {
  width: 100%;
  max-width: 100%;
  left: 0;
  right: 0;
  }
  }
  @media (max-width: 600px) {
  .price-tiers {
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  justify-content: start;
  }
  .price-tiers .tier-btn {
  flex: 0 0 auto;
  scroll-snap-align: start;
  min-width: 150px;
  font-size: 14px;
  white-space: normal;
  padding: 5px 4px;
  }
  }
  @media (max-width: 480px) {
  .flight-inputs .input-group,
  .multi-city-inputs .input-group,
  .guest-section .field-box,
  .freight-section .field-box {
  padding: 8px;
  }
  .flight-inputs .input-group .city,
  .multi-city-inputs .input-group .city,
  .guest-section .field-box .origin,
  .freight-section .field-box .origin {
  font-size: 1.2rem;
  }
  .flight-inputs .input-group .date-info,
  .multi-city-inputs .input-group .date-info,
  .guest-section .field-box .travel-date,
  .freight-section .field-box .travel-date {
  font-size: 1.2rem;
  }
  .flight-inputs .input-group .traveller-info,
  .guest-section .field-box .guest-count {
  font-size: 1.2rem;
  }
  .tab-buttons label,
  .mode-nav label {
  padding: 4px 10px;
  font-size: 0.9rem;
  }
  .search-btn {
  padding: 8px 30px;
  }
  }
  /* Specific fix for groupdesk form swap icon centering */
  #groupdesk .swap-icon {
    display: flex !important;
    align-items: center;
    justify-content: center;
    align-self: center;
    flex-shrink: 0;
    margin: 0 5px;
    position: relative;
    top: 50%;
  }

  /* Ensure the groupdesk flight inputs container properly aligns items */
  #groupdesk .flight-inputs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    align-items: center;
    position: relative;
  }

  /* Make sure the input groups in groupdesk are properly aligned */
  #groupdesk .flight-inputs .input-group {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  /* Responsive adjustments for groupdesk swap icon */
  @media (max-width: 1024px) {
    #groupdesk .swap-icon {
      margin: 5px;
      align-self: center;
    }
  }

  @media (max-width: 768px) {
    #groupdesk .swap-icon {
      margin: 10px auto;
      align-self: center;
    }
  }