    .hero-section {
      background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../imgs/flight/los-angeles.jpg') no-repeat center center/cover;
      padding: 80px 0;
      color: #fff;
      text-align: center;
    }

    .hero-section h1 {
      font-size: 48px;
      font-weight: 700;
      margin-bottom: 20px;
    }

    .hero-section p {
      font-size: 20px;
      margin-bottom: 30px;
    }

    .search-form-container {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
      padding: 20px;
      margin-top: -60px;
      position: relative;
      z-index: 10;
    }

    .nav-tabs {
      border-bottom: none;
      display: flex;
      justify-content: flex-start;
      margin-bottom: 15px;
    }

    .nav-tabs .nav-link {
      border: none;
      padding: 8px 16px;
      font-size: 14px;
      font-weight: 500;
      color: #020d5c;
      background: transparent;
      margin: 0 8px 0 0;
      border-bottom: 2px solid transparent;
      transition: all 0.3s ease;
    }

    .nav-tabs .nav-link.active {
      border-bottom: #020d5c;
      color: #020d5c;
      font-weight: 600;
    }

    .nav-tabs .nav-link:hover {
      color: #003087;
    }

    .flight-form {
      display: flex;
      align-items: flex-end;
      gap: 12px;
      flex-wrap: wrap;
    }

    .flight-form .form-group {
      position: relative;
      flex: 1;
      min-width: 200px;
    }

    .flight-form label {
      font-size: 12px;
      font-weight: 500;
      color: #333;
      margin-bottom: 5px;
      display: block;
    }

    .flight-form .form-control {
      border-radius: 8px;
      height: 48px;
      border: 1px solid #d1d5db;
      font-size: 14px;
      padding: 10px 10px 10px 32px;
      background: #fff;
      width: 100%;
      transition: border-color 0.3s ease;
    }

    .flight-form .form-control:focus {
      border-color: #020d5c;
      outline: none;
      box-shadow: 0 0 0 2px rgba(2, 13, 92, 0.1);
    }

    .flight-form .form-control::placeholder {
      color: #6b7280;
    }

    .flight-form .icon-left {
      position: absolute;
      left: 10px;
      top: 58%;
      transform: translateY(-50%);
      color: #6b7280;
      font-size: 16px;
    }

    .swap-icon {
      position: absolute;
      left: 100%;
      top: 27%;
      transform: translate(-33%, 10%);
      background: #fff;
      border: 1px solid #d1d5db;
      border-radius: 50%;
      width: 46px;
      height: 46px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #020d5c;
      font-size: 10px;
      cursor: pointer;
      z-index: 1;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }
    

    .btn-primary {
      background: #020d5c;
      border: none;
      border-radius: 50%;
      width: 48px;
      height: 48px;
      font-size: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      margin-bottom: 13;
    }

    .btn-primary:hover {
      background: #003087;
      transform: translateY(-1px);
      box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
    }

    .class-dropdown {
      border: 1px solid #d1d5db;
      border-radius: 8px;
      background: #fff;
      padding: 6px 10px;
      font-size: 14px;
      color: #020d5c;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 5px;
      transition: border-color 0.3s ease;
    }

    .class-dropdown:hover {
      border-color: #020d5c;
    }

    .passenger-selector {
      display: flex;
      flex-direction: column;
      gap: 12px;
      padding: 15px;
    }

    .passenger-type {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 5px 0;
    }

    .passenger-type span {
      font-size: 14px;
      color: #333;
    }

    .passenger-type small {
      font-size: 12px;
      color: #6b7280;
    }

    .counter {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .counter button {
      width: 28px;
      height: 28px;
      border-radius: 4px;
      border: 1px solid #d1d5db;
      background-color: #fff;
      color: #020d5c;
      font-size: 16px;
      line-height: 1;
      transition: all 0.3s ease;
    }

    .counter button:hover {
      background-color: #dce4f6;
    }

    .counter span {
      min-width: 20px;
      text-align: center;
      font-size: 14px;
      font-weight: 500;
      color: #333;
    }

    .section-title {
      text-align: center;
      margin-bottom: 40px;
    }

    .section-title h4 {
      font-size: 28px;
      font-weight: 700;
      color: #020d5c;
    }

    .package-card {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      transition: transform 0.3s ease;
    }

    .package-card:hover {
      transform: translateY(-5px);
    }

    .package-img img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }

    .package-content {
      padding: 20px;
    }

    .package-content h4 {
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .price-review {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 10px;
    }

    .price-review .pera {
      font-size: 16px;
      font-weight: 600;
      color: #020d5c;
    }

    .rating {
      display: flex;
      align-items: center;
      gap: 5px;
      color: #f5a623;
    }

    .select-dropdown-section {
      min-height: 64px;
      display: flex;
      align-items: start;
      padding: 10px;
      width: 100%;
      overflow: hidden;
      text-align: start;
      padding: 8px;
    }

    .destination-result,
    .destination-result-three {
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      flex-grow: 1;
    }

    /* FAQ Section Styling */
    .faq-section {
      padding: 50px 0;
    }

    .faq-section h2 {
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 30px;
      color: #333;
    }

    .faq-item {
      border-bottom: 1px solid #e5e7eb;
      margin-bottom: 10px;
    }

    .faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 0;
      cursor: pointer;
      font-size: 16px;
      font-weight: 500;
      color: #333;
      transition: color 0.3s ease;
    }

    .faq-question:hover {
      color: #020d5c;
    }

    .faq-question.active {
      color: #020d5c;
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      padding: 0 15px;
      font-size: 14px;
      color: #666;
    }

    .faq-answer.active {
      padding: 15px;
    }

    .toggle-icon {
      font-size: 16px;
      transition: transform 0.3s ease;
    }

    .faq-question.active .toggle-icon {
      transform: rotate(180deg);
    }

    @media (max-width: 768px) {
      .flight-form {
        flex-direction: column;
        align-items: stretch;
      }

      .flight-form .form-group {
        min-width: 100%;
      }

      .swap-icon {
        left: 50%;
        top: 100%;
        transform: translate(-50%, -50%);
      }

      .btn-primary {
        margin: 10px auto 0;
      }
    }

    .class-dropdown {
      color: #000000;
      background-color: #ffffff;
      padding: 10px;
      border-radius: 8px;
      cursor: pointer;
    }

    .form-group {
      position: relative;
      flex: 1;
      min-width: 200px;
    }

    .form-group label {
      color: #aaa;
      font-size: 0.9rem;
    }


    .icon-left {
      position: absolute;
      left: 10px;
      top: 50%;
      transform: translateY(-50%);
      color: #aaa;
      font-size: 1.2rem;
    }

    .swap-icon {
      position: absolute;
      right: 10px;
      top: 22%;
      /* transform: translateY(-50%); */
      color: #aaa;
      cursor: pointer;
    }

    .btn-primary {
      background-color: #007bff;
      border: none;
      border-radius: 8px;
      padding: 10px 20px;
    }

    /* Date Group Styling for Round-trip */
    .date-group {
      display: flex;
      align-items: center;
      background-color: #ffffff;
      border: 1px solid #e4e4e4;
      border-radius: 8px;
      height: 48px;
      padding: 0 10px;
    }

    .date-group label {
      color: #aaa;
      font-size: 1rem;
      margin: 0 10px;
      flex: 1;
      text-align: center;
      cursor: pointer;
    }

    .date-group input[type="date"] {
      display: none;
    }

    .date-group .separator {
      width: 1px;
      height: 30px;
      background-color: #444;
    }

    /* Single Date Styling for One-way */
    .single-date {
      background-color: #ffffff;
      border: 1px solid #444;
      border-radius: 8px;
      height: 48px;
      padding-left: 40px;
      position: relative;
    }

    .single-date input[type="date"] {
      display: none;
    }

    .single-date label {
      color: #aaa;
      font-size: 1rem;
      line-height: 48px;
      margin: 0;
      cursor: pointer;
      display: block;
      padding-left: 10px;
    }



    /* Header Styling */
    .header {
      background-color: #fff;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .main-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 0;
    }

    .header-left {
      display: flex;
      align-items: center;
    }

    .header-nav {
      margin-left: 20px;
    }

    .main-menu {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
    }

    .main-menu li {
      position: relative;
      margin-right: 20px;
    }

    .main-menu li a {
      text-decoration: none;
      color: #333;
      font-weight: 500;
      padding: 10px;
      display: block;
    }

    .main-menu li a:hover,
    .main-menu li a.active {
      color: #28a745;
    }

    /* Dropdown Styling */
    .menu-item-has-children>a::after {
      content: '\f078';
      /* Font Awesome chevron-down icon */
      font-family: 'Font Awesome 6 Free';
      font-weight: 900;
      margin-left: 5px;
      font-size: 12px;
    }

    .mega-menu {
      display: none;
      /* Hidden by default */
      position: absolute;
      top: 100%;
      left: 0;
      background-color: #fff;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      border-radius: 5px;
      z-index: 1000;
      min-width: 200px;
    }

    .menu-item-has-children.active>.mega-menu {
      display: block;
      /* Show when parent has .active class */
    }

    .mega-menu-inner {
      padding: 10px;
    }

    .sub-menu {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .sub-menu li {
      margin: 0;
    }

    .sub-menu li a {
      padding: 8px 15px;
      color: #555;
      font-weight: 400;
      display: block;
    }

    .sub-menu li a:hover {
      background-color: #f8f9fa;
      color: #28a745;
    }

    /* Mobile Menu Toggle */
    .menu-toggle {
      display: none;
      font-size: 24px;
      background: none;
      border: none;
      cursor: pointer;
      color: #333;
    }

    /* Responsive Design */
    @media (max-width: 991px) {
      .menu-toggle {
        display: block;
      }

      .main-menu {
        display: none;
        /* Hidden by default on mobile */
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      }

      .main-menu.active {
        display: flex;
        /* Show when .active is added */
      }

      .main-menu li {
        margin: 0;
      }

      .main-menu li a {
        padding: 15px;
        border-bottom: 1px solid #eee;
      }

      .mega-menu {
        position: static;
        /* Static positioning on mobile */
        box-shadow: none;
        display: none;
        /* Hidden by default */
      }

      .menu-item-has-children.active>.mega-menu {
        display: block;
        /* Show on mobile when .active */
      }

      .header-right {
        display: none;
        /* Hide phone number on mobile */
      }
    }

    /* Default: hidden everywhere */
.only-phone {
  display: none;
}

/* Show only on small devices (max-width: 767px = phones) */
@media (max-width: 767px) {
  .only-phone {
    display: block; /* or flex, inline-block depending on layout */
  }
}


/* ------------------------------------- */

/* indexpage css */

  /* Custom Flatpickr Styles */
  .flatpickr-calendar {
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    font-family: 'Roboto', sans-serif;
  }

  .flatpickr-day {
    border-radius: 5px;
    transition: background 0.3s ease;
  }

  .flatpickr-day:hover {
    background: #007bff !important;
    color: #fff !important;
  }

  .flatpickr-day.selected,
  .flatpickr-day.startRange,
  .flatpickr-day.endRange {
    background: #007bff !important;
    border-color: #007bff !important;
    color: #fff !important;
  }

  .flatpickr-day.today {
    border-color: #28a745;
    font-weight: bold;
  }

  .flatpickr-monthDropdown-months,
  .flatpickr-year {
    font-weight: bold;
    color: #333;
  }

  .flatpickr-prev-month,
  .flatpickr-next-month {
    color: #007bff;
  }

  .flatpickr-prev-month:hover,
  .flatpickr-next-month:hover {
    color: #0056b3;
  }

  /* Updated Date Picker Styles */
  .date-group {
    position: relative;
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #ced4da;
    border-radius: 5px;
    padding: 10px;
  }

  .date-group input {
    border: none;
    background: transparent;
    cursor: pointer;
    width: 100%;
    padding: 0;
    color: #6c757d;
  }

  .date-group input:focus {
    outline: none;
  }

  .date-group .separator {
    width: 1px;
    height: 20px;
    background: #ced4da;
    margin: 0 10px;
  }

  .date-group .date-label {
    font-size: 0.9rem;
    color: #333;
    margin-right: 5px;
  }

  .single-date {
    position: relative;
    background: #fff;
    border: 1px solid #ced4da;
    border-radius: 5px;
    padding: 10px;
    display: flex;
    align-items: center;
  }

  .single-date input {
    border: none;
    background: transparent;
    cursor: pointer;
    width: 100%;
    padding: 0;
    color: #6c757d;
  }

  .single-date input:focus {
    outline: none;
  }

  .form-group label {
    font-weight: 500;
    color: #333;
  }

  .form-control[readonly] {
    background: #fff;
  }

  .flight-form {
    display: flex;
    gap: 15px;
    align-items: end;
  }

  .form-group {
    flex: 1;
  }

  .form-group:last-child {
    flex: 0 0 auto;
  }

  /* Disable buttons when appropriate */
  .counter button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }

  /* FAQ Section Styles */
  .faq-item {
    margin-bottom: 15px;
  }

  .faq-question {
    cursor: pointer;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
  }

  .faq-question:hover {
    background: #e9ecef;
  }

  .faq-answer {
    display: none;
    padding: 15px;
    background: #fff;
    border: 1px solid #dee2e6;
    border-top: none;
    border-radius: 0 0 5px 5px;
    max-height: 140px;
  }

