/* Flight Page Specific Styles */

.pax_selection:after{
    display: none !important;
}

.selected-date {
  font-size: 14px !important;
}

.note-cab {
  margin-top: 30px;
}

/* EXACT HOTEL CARD DESIGN FROM IMAGE - SQUARE IMAGES & CONSISTENT SIZING */
.hotel-cards-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.hotel-card-wrapper {
  display: flex;
  flex-direction: column;
}

.hotel-card-title {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  padding: 0 2px;
  line-height: 1.3;
}

.hotel-card {
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  background-color: #fff;
  padding: 0;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  display: flex;
  height: 140px; /* Fixed height for consistency */
}

.hotel-card:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  border-color: #ccc;
}

/* Hotel Image - Square on Left */
.hotel-image-section {
  width: 140px; /* Square dimensions */
  height: 140px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.hotel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

/* Hotel Details - Right Side */
.hotel-details-section {
  flex: 1;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  min-width: 0;
}

.hotel-main-details {
  flex-grow: 1;
}

.hotel-name {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 4px;
  line-height: 1.2;
}

/* Star Rating */
.hotel-star-rating {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  gap: 1px;
}

.star {
  color: #ff4444;
  font-size: 12px;
}

.star.filled {
  color: #ff4444;
}

.star.empty {
  color: #ddd;
}

/* Room Details */
.hotel-room-details {
  font-size: 12px;
  color: #666;
  margin-bottom: 8px;
  line-height: 1.3;
}

.room-count {
  font-weight: 500;
  color: #333;
}

/* TripAdvisor Rating */
.tripadvisor-section {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 0;
}

.tripadvisor-logo {
  width: 16px;
  height: 16px;
  background-image: url("https://images.icon-icons.com/2699/PNG/512/tripadvisor_logo_icon_169414.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

.rating-circles {
  display: flex;
  gap: 1px;
  align-items: center;
}

.rating-circle {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid #ddd;
}

.rating-circle.excellent {
  background-color: #00aa6c;
  border-color: #00aa6c;
}

.rating-circle.very-good {
  background-color: #00aa6c;
  border-color: #00aa6c;
}

.rating-circle.good {
  background-color: #00aa6c;
  border-color: #00aa6c;
}

.rating-circle.average {
  background-color: #ff9500;
  border-color: #ff9500;
}

.rating-circle.poor {
  background-color: #ff4444;
  border-color: #ff4444;
}

.rating-circle.empty {
  background-color: #f0f0f0;
}

.review-count {
  font-size: 10px;
  color: #666;
  margin-left: 3px;
}

/* Price Section - Bottom Right */
.hotel-price-section {
  position: absolute;
  bottom: 12px;
  right: 14px;
  text-align: right;
}

.hotel-price {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

/* Selection Checkbox - Right Middle */
.hotel-selection {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border: 2px solid #ddd;
  border-radius: 3px;
  cursor: pointer;
  background: white;
  z-index: 2;
}

.hotel-selection.selected {
  background-color: #ff4444;
  border-color: #ff4444;
}

.hotel-selection.selected::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 10px;
  font-weight: bold;
}

/* EXACT CAB CARD DESIGN FROM IMAGE - SQUARE IMAGES & CONSISTENT LAYOUT */
.cab-cards-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.cab-card-wrapper {
  display: flex;
  flex-direction: column;
}

.cab-card-title {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  padding: 0 2px;
  line-height: 1.3;
}

.cab-card {
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  background-color: #fff;
  padding: 0;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  display: flex;
  height: 140px; /* Fixed height for consistency */
}

.cab-card.unavailable {
  opacity: 0.6;
  pointer-events: none;
}

.cab-card:hover:not(.unavailable) {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  border-color: #ccc;
}

/* Cab Image - Square on Left */
.cab-image-section {
  width: auto; /* Square dimensions */
  height: 140px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.cab-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

/* Cab Type Badge - Top Left Corner of Image */
.cab-type-badge {
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: #ff4444;
  color: white;
  padding: 4px 8px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  z-index: 2;
}

/* Cab Details - Right Side */
.cab-details-section {
  flex: 1;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  min-width: 0;
}

.cab-main-details {
  flex-grow: 1;
}

/* Cab Seats Info */
.cab-seats-info {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  font-size: 14px;
  color: #333;
  font-weight: 500;
}

.cab-seats-icon {
  color: #ff4444;
  font-size: 16px;
}

/* Cab Features List */
.cab-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cab-features-list li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #333;
  margin-bottom: 4px;
  line-height: 1.3;
}

.cab-features-list li:last-child {
  margin-bottom: 0;
}

.cab-feature-icon {
  color: #00aa6c;
  font-size: 12px;
  font-weight: bold;
  width: 12px;
  flex-shrink: 0;
}

.cab-feature-icon-cross {
  color: red;
  font-size: 12px;
  font-weight: bold;
  width: 12px;
  flex-shrink: 0;
}

/* Price Section - Bottom Right */
.cab-price-section {
  position: absolute;
  bottom: 12px;
  right: 14px;
  text-align: right;
}

.cab-price {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

/* Selection Checkbox - Right Middle */
.cab-selection {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border: 2px solid #ddd;
  border-radius: 3px;
  cursor: pointer;
  background: white;
  z-index: 2;
}

.cab-selection.selected {
  background-color: #ff4444;
  border-color: #ff4444;
}

.cab-selection.selected::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 10px;
  font-weight: bold;
}

.cab-selection.disabled {
  background-color: #f0f0f0;
  border-color: #ddd;
  cursor: not-allowed;
}

/* ADDITIONAL CAB SECTION - DYNAMIC VISIBILITY */
.additional-cab-section {
  margin-top: 40px;
  transition: all 0.3s ease;
}

.additional-cab-section.fade-in {
  animation: fadeIn 0.5s ease-in-out;
}

.additional-cab-section.fade-out {
  animation: fadeOut 0.3s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-10px);
  }
}

/* SIMPLIFIED ADDON SECTION STYLES - LIST STYLE */
.addon-list-container {
  margin-top: 20px;
}

.addon-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  background-color: #fff;
  margin-bottom: 10px;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.addon-list-item:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  border-color: #ccc;
}

.addon-list-item:last-child {
  margin-bottom: 0;
}

.addon-info {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
}

.addon-name {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  min-width: 120px;
}

.addon-seats-simple {
  font-size: 14px;
  color: #666;
  display: flex;
  align-items: center;
  gap: 5px;
}

.addon-seats-icon {
  color: #17a2b8;
  font-size: 16px;
}

.addon-price-simple {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-right: 15px;
}

.addon-selection-simple {
  width: 20px;
  height: 20px;
  border: 2px solid #ddd;
  border-radius: 3px;
  cursor: pointer;
  background: white;
  position: relative;
  flex-shrink: 0;
}

.addon-selection-simple.selected {
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.addon-selection-simple.selected::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 12px;
  font-weight: bold;
}

/* SIMPLE BOOKING SUMMARY - NO BOXES, CLEAN LAYOUT */
.booking-summary {
  margin-top: 40px;
  margin-bottom: 40px;
  width: 100%;
}

.booking-summary-title {
  background: #c4e0c7;
  color: #29563d;
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 30px 0;
  padding: 18px 25px;
  text-align: center;
  font-style: italic;
  border-radius: 8px;
}

.summary-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.summary-details {
  flex: 1;
  min-width: 300px;
}

.summary-total-section {
  min-width: 280px;
  text-align: center;
  padding: 30px 20px;
  background-color: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

/* Passenger Information */
.passenger-summary {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.passenger-summary h4 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin: 0 0 12px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.passenger-list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.passenger-item {
  font-size: 14px;
  color: #666;
}

.passenger-count {
  font-weight: 600;
  color: #333;
}

/* Flight Summary */
.flight-summary {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.flight-summary h4 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin: 0 0 15px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.flight-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  padding: 15px;
  background-color: #f8f9fa;
  border-radius: 6px;
  border: 1px solid #e9ecef;
}

.flight-item:last-child {
  margin-bottom: 0;
}

.flight-logo {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  object-fit: contain;
  background: white;
  padding: 4px;
  border: 1px solid #ddd;
  flex-shrink: 0;
}

.flight-info {
  flex: 1;
  min-width: 0;
}

.flight-airline {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 2px;
}

.flight-number {
  font-size: 12px;
  color: #666;
  margin-bottom: 4px;
}

.flight-route {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #666;
  flex-wrap: wrap;
}

.flight-time {
  font-weight: 500;
  color: #333;
}

.flight-arrow {
  color: #999;
}

.flight-stops {
  font-size: 12px;
  color: #ff6b35;
  font-weight: 500;
  margin-left: 8px;
}

.flight-airports {
  font-size: 11px;
  color: #888;
  margin-top: 2px;
  line-height: 1.2;
}

.flight-date {
  font-size: 12px;
  color: #666;
  margin-top: 4px;
  font-weight: 500;
}

.flight-price {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  text-align: right;
  flex-shrink: 0;
}

/* Hotel Summary */
.hotel-summary {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.hotel-summary h4 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin: 0 0 15px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hotel-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background-color: #f8f9fa;
  border-radius: 6px;
  border: 1px solid #e9ecef;
}

.hotel-info {
  flex: 1;
}

.hotel-name {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 4px;
}

.hotel-room-info {
  font-size: 13px;
  color: #666;
}

.hotel-price {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

/* Transportation Summary */
.transport-summary {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.transport-summary h4 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin: 0 0 15px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.transport-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background-color: #f8f9fa;
  border-radius: 6px;
  border: 1px solid #e9ecef;
  margin-bottom: 10px;
}

.transport-item:last-child {
  margin-bottom: 0;
}

.transport-info {
  flex: 1;
}

.transport-name {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 4px;
}

.transport-details {
  font-size: 13px;
  color: #666;
}

.transport-price {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

/* Additional Services Summary */
.addon-summary {
  margin-bottom: 10px;
  padding-bottom: 20px;
}

.addon-summary h4 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin: 0 0 15px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Charges Summary */
.charges-summary {
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.charges-summary h5 {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin: 0 0 10px 0;
}

.charge-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 13px;
  color: #666;
  border-bottom: 1px solid #f0f0f0;
}

.charge-line:last-child {
  border-bottom: none;
}

.charge-amount {
  font-weight: 500;
  color: #333;
}

/* Total Section */
.total-section {
  border-top: 2px solid #333;
  padding-top: 20px;
  margin-top: 20px;
}

.total-label {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.total-price {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  margin-bottom: 25px;
}

.book-now-btn {
  background: linear-gradient(135deg, #ea4330 0%, #d63a27 100%);
  color: white;
  border: none;
  padding: 15px 35px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 250px;
  margin: 0 auto;
  display: block;
  box-shadow: 0 4px 15px rgba(234, 67, 48, 0.3);
}

.book-now-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(234, 67, 48, 0.4);
}

.book-now-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.no-selection {
  color: #999;
  font-style: italic;
  padding: 15px;
  text-align: center;
  background-color: #f8f9fa;
  border-radius: 6px;
  border: 1px solid #e9ecef;
}

.column-title {
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.column-title-text {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

.column-title-date {
  font-size: 14px;
  color: #666;
  font-weight: 500;
  text-align: right;
  line-height: 1.3;
}

.column-title-date .date-main {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

.column-title-date .date-day {
  display: block;
  font-size: 12px;
  color: #999;
  margin-top: 2px;
}

#page_content {
  padding-top: 0px !important;
}

/* Flight search section styles */
.flight-search-container {
  background-color: transparent;
  padding: 15px 0 25px;
  margin-top: 5px;
  margin-bottom: 0;
  position: relative;
  z-index: 5;
}

/* Enhanced Radio Tab Styling - Larger and Bold */
.journey-type-toggle {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 15px;
  width: fit-content;
  gap: 30px;
  background-color: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.journey-type-toggle label {
  position: relative;
  margin: 0;
  cursor: pointer;
  padding: 0;
  border-radius: 0;
  font-family: "Ubuntu-M";
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.journey-type-toggle input[type="radio"] {
  position: relative;
  opacity: 1;
  width: 22px;
  height: 22px;
  margin: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 3px solid #ddd;
  border-radius: 50%;
  background: white;
  transition: all 0.3s ease;
}

.journey-type-toggle input[type="radio"]:checked {
  border-color: #3291fa;
  background-color: #3291fa;
  position: relative;
}

.journey-type-toggle input[type="radio"]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: white;
}

.journey-type-toggle input[type="radio"]:hover {
  border-color: #3291fa;
}

.journey-type-toggle input[type="radio"]:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(241, 196, 15, 0.2);
}

.journey-type-toggle label:hover {
  color: #3291fa;
}

.journey-type-toggle input[type="radio"]:checked + span {
  color: #000;
  font-weight: 700;
  background-color: #ebf4fb;
  padding: 5px 10px;
  border-radius: 100px;
  box-shadow: none;
}

.journey-type-toggle span {
  background: none;
  padding: 0;
  border-radius: 0;
  color: inherit;
  font-weight: inherit;
  box-shadow: none;
  display: inline;
  transition: all 0.3s ease;
}

/* Search Form Styles */
.search-form-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 5px;
}

.search-form-col {
  transition: all 0.3s ease;
  flex: 1;
  min-width: 100px;
}

.search-form-col-city {
  flex: 2;
  min-width: 100px;
}

.search-form-col-date {
  flex: 1.5;
  min-width: 100px;
}

.search-form-col-pax {
  flex: 1.5;
  min-width: 220px;
}

.search-form-col-btn {
  flex: 1;
  min-width: 120px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #fff;
  font-size: 13px;
}

/* Form Control Styling */
.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 0px;
  font-size: 14px;
  transition: all 0.3s ease;
  height: 45px;
  background-color: white !important;
}

.form-control:focus {
  border-color: #ea4330;
  box-shadow: 0 0 0 2px rgba(234, 67, 48, 0.15);
  outline: none;
}

/* Custom Dropdown Styles */
.custom-dropdown {
  position: relative;
  display: inline-block;
  width: 100%;
}

.custom-dropdown select {
  display: none;
}

.dropdown-selected {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 0px;
  font-size: 14px;
  height: 45px;
  background: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.dropdown-selected:hover {
  border-color: #ea4330;
}

.dropdown-selected.active {
  border-color: #ea4330;
  box-shadow: 0 0 0 2px rgba(234, 67, 48, 0.15);
}

.dropdown-arrow {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #666;
  transition: transform 0.3s ease;
}

.dropdown-selected.active .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #ddd;
  border-top: none;
  max-height: 200px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.dropdown-option {
  padding: 12px 15px;
  cursor: pointer;
  border-bottom: 1px solid #f0f0f0;
  transition: background-color 0.2s ease;
}

.dropdown-option:hover {
  background-color: #f8f9fa;
}

.dropdown-option:last-child {
  border-bottom: none;
}

.dropdown-option.selected {
  background-color: #ea4330;
  color: white;
}

/* Custom Calendar Styles */
.custom-calendar {
  position: relative;
  display: inline-block;
  width: 100%;
}

.calendar-input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 0px;
  font-size: 14px;
  height: 45px;
  background: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.calendar-input:hover {
  border-color: #ea4330;
}

.calendar-input.active {
  border-color: #ea4330;
  box-shadow: 0 0 0 2px rgba(234, 67, 48, 0.15);
}

.calendar-input.disabled {
  background-color: #f5f5f5;
  color: #999;
  cursor: pointer;
  opacity: 0.6;
}

.calendar-input.disabled:hover {
  border-color: #ea4330;
}

.calendar-icon {
  width: 16px;
  height: 16px;
  background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%23666" viewBox="0 0 16 16"><path d="M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5 0zM1 4v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V4H1z"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.calendar-popup {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  z-index: 1000;
  display: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  min-width: 300px;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.calendar-nav {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}

.calendar-nav:hover {
  background-color: #f0f0f0;
}

.calendar-month-year {
  font-weight: 600;
  font-size: 16px;
  color: #333;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.calendar-day-header {
  text-align: center;
  font-weight: 600;
  font-size: 12px;
  color: #666;
  padding: 8px 4px;
}

.calendar-day {
  text-align: center;
  padding: 8px 4px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.2s ease;
  font-size: 14px;
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.calendar-day:hover {
  background-color: #f0f0f0;
}

.calendar-day.disabled {
  color: #ccc;
  cursor: not-allowed;
}

.calendar-day.disabled:hover {
  background-color: transparent;
}

.calendar-day.selected {
  background-color: #ea4330;
  color: white;
}

.calendar-day.today {
  background-color: #fff3cd;
  color: #856404;
  font-weight: 600;
}

.calendar-day.other-month {
  color: #ccc;
}

input[type="date"] {
  display: none;
}

.search-btn {
  background: #ea4330;
  color: white;
  border: none;
  border-radius: 0px;
  cursor: pointer;
  font-weight: 400;
  transition: all 0.3s ease;
  width: 100%;
  height: 45px;
  box-shadow: 0 2px 5px rgba(234, 67, 48, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.search-btn:hover {
  background: #d63a27;
  box-shadow: 0 3px 7px rgba(234, 67, 48, 0.4);
  transform: translateY(-2px);
}

/* PAX Selector Styles */
.pax_selection {
  position: relative;
  display: inline-block;
  width: 100%;
}

.pax_input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 0px;
  font-size: 14px;
  height: 45px;
  background: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pax_input:hover {
  border-color: #ea4330;
}

.pax_input:focus {
  border-color: #ea4330;
  box-shadow: 0 0 0 2px rgba(234, 67, 48, 0.15);
  outline: none;
}

.pax_card {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #ddd;
  /*padding: 20px;*/
  z-index: 1000;
  display: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.pax_card p {
  margin: 0 0 15px 0;
  font-weight: 600;
  font-size: 14px;
  color: #333;
}

.pax_counts {
  list-style: none;
  padding: 0;
  margin: 0 0 15px 0;
}

.pax_counts li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}

.pax_counts li:last-child {
  border-bottom: none;
}

.pax_counts li p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  display:inline;
}

.pax_counts li small {
  font-size: 12px;
  color: #666;
  font-weight: normal;
  display:inline;
}

.actions {
  display: flex;
  align-items: center;
  /*gap: 15px;*/
}

.actions .minus,
.actions .plus {
  width: 35px;
  height: 35px;
  border: 1px solid #ddd;
  background: #f8f9fa;
  color: #333;
  font-size: 18px;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  user-select: none;
}

.actions .minus:hover,
.actions .plus:hover {
  background: #ea4330;
  color: white;
  border-color: #ea4330;
}

.actions .minus.disabled,
.actions .plus.disabled {
  background: #f0f0f0;
  color: #ccc;
  cursor: not-allowed;
  border-color: #e0e0e0;
}

.actions .count {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  min-width: 30px;
  text-align: center;
}

.pax_card small {
  font-size: 12px;
  color: #666;
  margin-bottom: 15px;
  display: block;
  text-align: center;
}

.pax_confirm {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.pax_confirm button {
  padding: 2px 20px;
  border: none;
  border-radius: 0px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  flex: 1;
}

.pax_confirm .cancel {
  background: #f8f9fa;
  color: #333;
  border: 1px solid #ddd;
}

.pax_confirm .cancel:hover {
  background: #e9ecef;
}

.pax_confirm .done {
  background: #ea4330;
  color: white;
}

.pax_confirm .done:hover {
  background: #d63a27;
}

/* Flight Filter Styles */
.flight-filters {
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
}

.filter-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
  padding-bottom: 10px;
  border-bottom: 1px solid #f0f0f0;
}

.filter-group {
  margin-bottom: 20px;
}

.filter-label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #444;
}

.filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-checkbox {
  display: flex;
  align-items: center;
  margin-right: 15px;
  margin-bottom: 8px;
  cursor: pointer;
}

.filter-checkbox input {
  margin-right: 8px;
  cursor: pointer;
  transform: scale(1.2);
  accent-color: #ea4330;
}

.price-range {
  display: flex;
  align-items: center;
  gap: 8px;
}

.price-input {
  width: 90px;
  padding: 8px 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 13px;
}

.price-input:focus {
  border-color: #ea4330;
  outline: none;
}

.filter-mobile-toggle {
  display: none;
  width: 100%;
  background: #f8f9fa;
  border: 1px solid #eee;
  padding: 10px 15px;
  border-radius: 4px;
  text-align: left;
  font-weight: 500;
  margin-bottom: 15px;
  cursor: pointer;
  color: #333;
  position: relative;
  z-index: 2;
}

.filter-mobile-toggle i {
  float: right;
  transition: transform 0.3s ease;
}

.filter-mobile-toggle.active i {
  transform: rotate(180deg);
}

/* Flight Results Styles */
.flight-results-container {
  margin-top: 30px;
}

.flight-results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.flight-results-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

.flight-results-count {
  font-size: 14px;
  color: #666;
}

/* Flight Card Styles */
.flight-card {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background-color: #fff;
  margin-bottom: 15px;
  padding: 0;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.flight-card:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  border-color: #ccc;
}

.flight-card-main {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Airline Section */
.airline-section {
  display: flex;
  align-items: center;
  min-width: 120px;
  flex-shrink: 0;
}

.airline-logo {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  margin-right: 12px;
  object-fit: contain;
  background: #f8f9fa;
  padding: 4px;
}

.airline-info {
  display: flex;
  flex-direction: column;
}

.airline-name {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  line-height: 1.2;
  margin-bottom: 2px;
}

.flight-code {
  font-size: 12px;
  color: #666;
  font-weight: 500;
}

/* Flight Route */
.flight-route {
  display: flex;
  align-items: center;
  flex-grow: 0;
  margin: 0;
  min-width: 0;
  gap: 15px;
}

.flight-departure {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 80px;
}

.departure-time {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  line-height: 1.2;
}

.departure-city {
  font-size: 13px;
  color: #666;
  margin-top: 2px;
}

.flight-duration-inline {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 80px;
  position: relative;
}

.duration-line-inline {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 4px;
}

.duration-line-inline::before {
  content: "";
  flex: 1;
  height: 1px;
  background: #ddd;
}

.duration-line-inline::after {
  content: "✈︎";
  margin: 0 8px;
  color: #666;
  font-size: 16px;
}

.duration-time-inline {
  font-size: 13px;
  color: #666;
  font-weight: 500;
  margin-bottom: 2px;
}

.stops-info-inline {
  font-size: 12px;
  color: #ff6b35;
  font-weight: 500;
}

.flight-arrival {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 80px;
}

.arrival-time {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  line-height: 1.2;
}

.arrival-city {
  font-size: 13px;
  color: #666;
  margin-top: 2px;
}

/* Price Section */
.price-section {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  min-width: 120px;
  flex-shrink: 0;
}

.flight-price {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.price-selection {
  display: flex;
  align-items: center;
}

.price-selection input[type="radio"] {
  width: 18px;
  height: 18px;
  margin: 0;
  cursor: pointer;
  accent-color: #007bff;
}

/* Baggage Section */
.baggage-section {
  padding: 12px 20px;
  background-color: #f8f9fa;
  border-top: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  gap: 20px;
}

.baggage-item {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: #666;
}

.baggage-icon {
  width: 16px;
  height: 16px;
  margin-right: 6px;
  color: #666;
}

/* Connecting Flight Styles */
.connecting-flight {
  background-color: #f8f9fa;
  border-top: 1px solid #e0e0e0;
  padding: 12px 20px;
}

.connecting-header {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  justify-content: center;
}

.connecting-airline {
  color: #000;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  margin-right: 8px;
}

.connecting-details {
  font-size: 12px;
  color: #666;
}

.layover-info {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 8px 0;
  padding: 6px 12px;
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
}

.layover-text {
  font-size: 11px;
  color: #666;
  font-weight: 500;
}

/* Two-column layout styles */
.flights-container {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.flights-column {
  padding: 0 15px;
  box-sizing: border-box;
}

.flights-column-half {
  width: 50%;
}

.flights-column-image {
  width: 30%;
}

.flights-column-results {
  width: 70%;
}

/* Section Headers */
.section-header {
  display: flex;
  align-items: center;
  margin: 40px 0 25px 0;
  padding-bottom: 15px;
  border-bottom: 2px solid #f0f0f0;
}

.section-header h3 {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin: 0;
  position: relative;
}

.section-header h3:after {
  content: "";
  position: absolute;
  bottom: -17px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: #ea4330;
}

/* Page Banner */
.page_banner {
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23ea4330" width="1200" height="600"/></svg>');
  background-size: cover;
  background-position: center;
  padding: 80px 0 2px;
  z-index: 1;
  margin-bottom: 30px;
}

.page_banner > .container {
  padding-top: 35px;
  padding-bottom: 0px !important;
}

.banner_title {
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 20px;
  font-size: 36px;
}

header,
.navbar {
  position: relative;
  z-index: 10;
}

.breadcrumb {
  background: transparent;
  margin-bottom: 30px;
}

.breadcrumb li,
.breadcrumb li a {
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Booking Popup Styles */
.booking-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.popup-content {
  display: flex;
  width: 80%;
  max-width: 800px;
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
}

.popup-image {
  width: 40%;
  overflow: hidden;
}

.popup-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.popup-text {
  width: 60%;
  padding: 30px;
}

.popup-close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 24px;
  color: #999;
  cursor: pointer;
  background: none;
  border: none;
}

.popup-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #333;
}

.popup-message {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #555;
}

.popup-phone {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #ea4330;
}

.popup-company {
  font-size: 18px;
  color: #ea4330;
  font-weight: 500;
}

/* Mobile Responsive Styles */
@media (max-width: 1024px) {
  .hotel-cards-container,
  .cab-cards-container {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .flights-column-image,
  .flights-column-results,
  .flights-column-half {
    width: 100%;
  }

  .static-image-container {
    margin-bottom: 20px;
  }

  .search-form-col-city,
  .search-form-col-date,
  .search-form-col-pax,
  .search-form-col-btn {
    flex: 1 1 calc(50% - 5px);
    min-width: calc(50% - 5px);
  }

  .search-form-col-pax {
    min-width: calc(100% - 10px);
    flex: 1 1 100%;
  }

  .page_banner {
    padding: 60px 0 30px;
  }

  .banner_title {
    font-size: 30px;
  }

  .filter-mobile-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .flight-filters .row {
    display: none;
    margin-top: 15px;
  }

  .flight-filters.active .row {
    display: flex;
    flex-direction: column;
  }

  .flight-filters .col-md-3 {
    width: 100%;
    margin-bottom: 15px;
    padding: 0;
  }

  .filter-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .price-range {
    flex-wrap: wrap;
  }

  .price-input {
    width: calc(50% - 10px);
  }

  .popup-content {
    flex-direction: column;
    width: 90%;
    max-width: 500px;
  }

  .popup-image,
  .popup-text {
    width: 100%;
  }

  .popup-text {
    padding: 20px;
  }

  .summary-container {
    flex-direction: column;
    gap: 20px;
  }

  .summary-details {
    min-width: auto;
  }

  .summary-total-section {
    min-width: auto;
    margin-top: 20px;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .hotel-card {
    height: auto;
    min-height: 120px;
  }

  .hotel-image-section {
    width: 120px;
    height: 120px;
  }

  .hotel-details-section {
    padding: 10px 12px;
  }

  .hotel-price-section {
    bottom: 10px;
    right: 12px;
  }

  .hotel-selection {
    right: 10px;
  }

  .cab-card {
    height: auto;
    min-height: 120px;
  }

  .cab-image-section {
    width: 120px;
    height: 120px;
  }

  .cab-details-section {
    padding: 10px 12px;
  }

  .cab-price-section {
    bottom: 10px;
    right: 12px;
  }

  .cab-selection {
    right: 10px;
  }

  .addon-list-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 15px;
  }

  .addon-info {
    width: 100%;
    justify-content: space-between;
  }

  .addon-name {
    min-width: auto;
    font-size: 15px;
  }

  .addon-seats-simple {
    font-size: 13px;
  }

  .addon-price-simple {
    margin-right: 0;
    font-size: 15px;
  }

  .addon-selection-simple {
    align-self: center;
  }

  .page_banner {
    padding: 50px 0 25px;
  }

  .banner_title {
    font-size: 24px;
  }

  .search-form-row {
    padding: 15px 12px;
    flex-direction: column;
    gap: 15px;
  }

  .search-form-col,
  .search-form-col-city,
  .search-form-col-date,
  .search-form-col-pax,
  .search-form-col-btn {
    width: 100%;
    flex: 1 1 100%;
    min-width: 100%;
    margin-bottom: 0;
  }

  .flight-search-container {
    padding: 10px 0 20px;
  }

  .search-btn {
    height: 50px;
    font-size: 16px;
    margin-top: 10px;
  }

  .journey-type-toggle {
    position: relative;
    z-index: 6;
    width: 100%;
    max-width: 100%;
    margin: 0 auto 20px;
    justify-content: center;
    gap: 20px;
  }

  .form-label {
    margin-bottom: 5px;
    font-size: 14px;
  }

  .form-control,
  .dropdown-selected,
  .calendar-input,
  .pax_input {
    height: 50px;
    font-size: 16px;
    padding: 15px;
  }

  .pax_confirm button {
    padding: 12px 16px;
    font-size: 14px;
  }

  .pax_card {
    width: 100%;
    max-width: 100%;
    left: 0;
    right: 0;
    transform: none;
    padding: 15px;
  }

  .actions .minus,
  .actions .plus {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .actions .count {
    min-width: 40px;
    font-size: 18px;
  }

  .calendar-popup {
    min-width: 280px;
    left: 50%;
    transform: translateX(-50%);
  }

  .dropdown-options {
    max-height: 150px;
  }

  .flight-card-main {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
    padding: 15px;
  }

  .airline-section {
    min-width: auto;
    justify-content: flex-start;
  }

  .flight-route {
    margin: 0;
    justify-content: center;
    gap: 10px;
  }

  .flight-duration-inline {
    margin: 0;
    min-width: 80px;
  }

  .price-section {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    min-width: auto;
  }

  .baggage-section {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }

  .flight-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .flight-route {
    flex-wrap: wrap;
  }

  .flight-price {
    text-align: left;
    margin-top: 5px;
  }

  .column-title {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .column-title-date {
    text-align: left;
  }

  .passenger-list {
    flex-direction: column;
    gap: 8px;
  }

  .hotel-item,
  .transport-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .hotel-price,
  .transport-price {
    margin-top: 5px;
  }
}

@media (max-width: 575px) {
  .journey-type-toggle {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .journey-type-toggle label {
    font-size: 14px;
    gap: 8px;
    flex: 1;
    min-width: 120px;
    justify-content: center;
  }

  .hotel-card-title {
    font-size: 13px;
  }

  .hotel-name {
    font-size: 13px;
  }

  .hotel-room-details {
    font-size: 11px;
  }

  .hotel-image-section {
    width: 100px;
    height: 100px;
  }

  .hotel-card {
    min-height: 100px;
  }

  .cab-card-title {
    font-size: 13px;
  }

  .cab-seats-info {
    font-size: 13px;
  }

  .cab-features-list li {
    font-size: 11px;
  }

  .cab-image-section {
    width: 100px;
    height: 100px;
  }

  .cab-card {
    min-height: 100px;
  }

  .addon-list-item {
    padding: 10px 12px;
  }

  .addon-name {
    font-size: 14px;
  }

  .addon-seats-simple {
    font-size: 12px;
  }

  .addon-price-simple {
    font-size: 14px;
  }

  .departure-time,
  .arrival-time {
    font-size: 16px;
  }

  .departure-city,
  .arrival-city {
    font-size: 12px;
  }

  .flight-price {
    font-size: 14px;
  }

  .airline-name {
    font-size: 14px;
  }

  .flight-route {
    gap: 8px;
  }

  .flight-departure,
  .flight-arrival {
    min-width: 60px;
  }

  .flight-duration-inline {
    min-width: 70px;
  }

  .flight-item {
    padding: 12px;
    gap: 8px;
  }

  .flight-logo {
    width: 35px;
    height: 35px;
  }

  .flight-info {
    min-width: 0;
  }

  .flight-airline {
    font-size: 13px;
  }

  .flight-number {
    font-size: 11px;
  }

  .flight-route {
    font-size: 12px;
    gap: 6px;
  }

  .flight-airports {
    font-size: 10px;
  }

  .booking-summary-title {
    font-size: 16px;
    padding: 15px 20px;
  }

  .summary-total-section {
    padding: 20px 15px;
  }

  .total-price {
    font-size: 24px;
  }

  .book-now-btn {
    padding: 12px 25px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .search-form-row {
    padding: 10px;
  }

  .journey-type-toggle {
    gap: 10px;
  }

  .journey-type-toggle label {
    font-size: 13px;
    min-width: 100px;
  }

  .form-control,
  .dropdown-selected,
  .calendar-input,
  .pax_input {
    height: 48px;
    font-size: 15px;
    padding: 12px;
  }

  .search-btn {
    height: 48px;
    font-size: 15px;
  }

  .banner_title {
    font-size: 20px;
  }

  .section-header h3 {
    font-size: 20px;
  }

  .flight-results-title {
    font-size: 16px;
  }

  .column-title-text {
    font-size: 16px;
  }

  .calendar-popup {
    min-width: 260px;
    padding: 15px;
  }

  .pax_card {
    padding: 12px;
  }

  .actions .minus,
  .actions .plus {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  .actions .count {
    min-width: 36px;
    font-size: 16px;
  }

  .popup-content {
    width: 95%;
    margin: 20px;
  }

  .popup-text {
    padding: 15px;
  }

  .popup-title {
    font-size: 18px;
  }

  .popup-message {
    font-size: 14px;
  }

  .popup-phone {
    font-size: 20px;
  }

  .popup-company {
    font-size: 16px;
  }
}

@media (max-width: 360px) {
  .hotel-image-section,
  .cab-image-section {
    width: 90px;
    height: 90px;
  }

  .hotel-card,
  .cab-card {
    min-height: 90px;
  }

  .hotel-details-section,
  .cab-details-section {
    padding: 8px 10px;
  }

  .hotel-price-section,
  .cab-price-section {
    bottom: 8px;
    right: 10px;
  }

  .hotel-selection,
  .cab-selection {
    right: 8px;
    width: 16px;
    height: 16px;
  }

  .flight-item {
    padding: 10px;
  }

  .flight-logo {
    width: 30px;
    height: 30px;
  }

  .summary-total-section {
    padding: 15px 10px;
  }

  .book-now-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}
