.logo-aviation:hover {
  transform: scale(1.05);
}

.logo-subtitle {
  font-size: 0.75rem;
  font-weight: 700;
  color: #E31E24;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  background: linear-gradient(135deg, #E31E24 0%, #c31a1f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding: 2px 8px;
  border-left: 3px solid #E31E24;
  line-height: 1;
}

.navbar-aviation .nav-link {
  color: #2d3748;
  font-weight: 500;
  padding: 10px 20px;
  transition: all 0.3s ease;
  position: relative;
  border-radius: 8px;
  margin: 0 2px;
}

.navbar-aviation .nav-link:hover {
  color: #E31E24;
  background: rgba(227, 30, 36, 0.05);
}

.navbar-aviation .nav-link.active {
  color: #E31E24;
  background: rgba(227, 30, 36, 0.08);
  font-weight: 600;
}

.navbar-aviation .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 20px;
  height: 3px;
  background: #E31E24;
  border-radius: 3px 3px 0 0;
}

.navbar-aviation .nav-link i {
  margin-right: 5px;
}

.btn-aviation {
  background: #E31E24;
  color: white;
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: 500;
  border: 2px solid #E31E24;
  transition: all 0.3s ease;
}

.btn-aviation:hover {
  background: white;
  color: #E31E24;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(227, 30, 36, 0.3);
}

.btn-aviation.active {
  background: white;
  color: #E31E24;
  box-shadow: 0 0 0 3px rgba(227, 30, 36, 0.2);
}

/* ===== BOOKING PROGRESS BAR (PROFESSIONAL) ===== */
.booking-progress-bar {
  background: white;
  padding: 25px 0;
  border-bottom: 2px solid #f0f0f0;
  margin-bottom: 40px;
}

.progress-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 2;
}

.step-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: white;
  border: 3px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.3rem;
  color: #94a3b8;
  transition: all 0.3s ease;
}

.progress-step.active .step-circle {
  border-color: #E31E24;
  background: #E31E24;
  color: white;
  box-shadow: 0 0 0 4px rgba(227, 30, 36, 0.1);
}

.progress-step.completed .step-circle {
  border-color: #10b981;
  background: #10b981;
  color: white;
}

.step-circle i {
  font-size: 1.8rem;
}

.step-info {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.step-label {
  font-size: 0.75rem;
  color: #94a3b8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.step-title {
  font-size: 0.95rem;
  color: #2d3748;
  font-weight: 600;
}

.progress-step.active .step-label,
.progress-step.active .step-title {
  color: #E31E24;
}

.progress-step.completed .step-label,
.progress-step.completed .step-title {
  color: #10b981;
}

.progress-line {
  flex: 1;
  height: 3px;
  background: #e2e8f0;
  margin: 0 15px;
  position: relative;
  top: -25px;
}

.progress-line.completed {
  background: #10b981;
}

@media (max-width: 768px) {
  .booking-progress-bar {
    padding: 15px 0;
    margin-bottom: 20px;
  }

  .progress-steps {
    flex-direction: row;
    gap: 5px;
    padding: 0 10px;
    overflow-x: auto;
  }

  .progress-step {
    gap: 5px;
    min-width: 70px;
  }

  .step-circle {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .step-info {
    gap: 2px;
  }

  .step-label {
    font-size: 0.65rem;
    display: none; /* Masquer sur mobile pour gagner de l'espace */
  }

  .step-title {
    font-size: 0.75rem;
  }

  .progress-line {
    height: 2px;
    margin: 0 5px;
    top: -20px;
    min-width: 20px;
  }
}

/* ===== END BOOKING PROGRESS BAR ===== */

/* ===== BOOKING SUMMARY CARD ===== */
.booking-summary-card {
  background: white;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid #f0f0f0;
  position: sticky;
  top: 20px;
}

.summary-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #E31E24;
}

.summary-title i {
  color: #E31E24;
  margin-right: 8px;
}

.summary-section {
  margin-bottom: 20px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}

.summary-label {
  font-size: 0.9rem;
  color: #64748b;
  font-weight: 500;
}

.summary-value {
  font-size: 0.95rem;
  color: #2d3748;
  font-weight: 600;
}

.badge-class {
  background: rgba(227, 30, 36, 0.1);
  color: #E31E24;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
}

.summary-route {
  margin: 20px 0;
  padding: 15px;
  background: #f8fafc;
  border-radius: 10px;
}

.route-point {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.route-point i {
  font-size: 1.3rem;
}

.route-city {
  font-weight: 700;
  color: #2d3748;
  font-size: 1rem;
}

.route-time {
  font-size: 0.85rem;
  color: #64748b;
}

.route-line {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 8px 0;
  color: #E31E24;
  font-size: 1.5rem;
}

.summary-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
  margin: 20px 0;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: linear-gradient(135deg, #E31E24 0%, #c31a1f 100%);
  border-radius: 10px;
  margin-top: 20px;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
}

.total-amount {
  font-size: 1.3rem;
}

/* ===== PASSENGER FORM CARD ===== */
.passenger-form-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid #f0f0f0;
}

.form-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 8px;
}

.form-card-title i {
  color: #E31E24;
  margin-right: 10px;
}

.form-card-subtitle {
  color: #64748b;
  margin-bottom: 30px;
  font-size: 0.95rem;
}

.passenger-section {
  background: #f8fafc;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 25px;
  border: 1px solid #e2e8f0;
}

.passenger-section-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #E31E24;
}

.passenger-section-title i {
  color: #E31E24;
  margin-right: 8px;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  gap: 15px;
}

.btn-primary-modern {
  padding: 14px 30px;
  background: linear-gradient(135deg, #E31E24 0%, #c31a1f 100%);
  border: none;
  border-radius: 10px;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(227, 30, 36, 0.3);
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-primary-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(227, 30, 36, 0.5);
}

.btn-secondary-modern {
  padding: 14px 30px;
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  color: #64748b;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-secondary-modern:hover {
  border-color: #E31E24;
  color: #E31E24;
  background: rgba(227, 30, 36, 0.05);
}

@media (max-width: 768px) {
  .form-actions {
    flex-direction: column;
  }

  .btn-primary-modern,
  .btn-secondary-modern {
    width: 100%;
    justify-content: center;
  }
}

/* ===== END PASSENGER FORM ===== */

/* ===== PAYMENT METHODS ===== */
.payment-methods-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid #f0f0f0;
}

.payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.payment-method-card {
  position: relative;
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.payment-method-card:hover {
  border-color: #E31E24;
  box-shadow: 0 5px 20px rgba(227, 30, 36, 0.15);
  transform: translateY(-3px);
}

.payment-method-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.payment-method-card input[type="radio"]:checked~.method-content {
  color: #E31E24;
}

.payment-method-card input[type="radio"]:checked+.method-content .method-icon-placeholder {
  border-color: #E31E24;
  background: rgba(227, 30, 36, 0.1);
  color: #E31E24;
}

.payment-method-card input[type="radio"]:checked~.method-check {
  opacity: 1;
}

.payment-method-card:has(input[type="radio"]:checked) {
  border-color: #E31E24;
  background: rgba(227, 30, 36, 0.03);
}

.method-icon-placeholder {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #64748b;
  transition: all 0.3s ease;
}

.method-icon-placeholder.paypal {
  color: #0070ba;
}

.method-icon-placeholder.visa {
  color: #1a1f71;
}

.method-icon-placeholder.airtel {
  color: #ed1c24;
}

.method-icon-placeholder.moov {
  color: #009fe3;
}

.method-icon-placeholder.zamani {
  color: #ff6b00;
}

.method-name {
  font-weight: 700;
  font-size: 1rem;
  color: #2d3748;
}

.method-description {
  font-size: 0.85rem;
  color: #64748b;
  margin-top: 5px;
}

.method-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.method-check {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #E31E24;
  font-size: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.payment-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-width: 60px;
  max-height: 60px;
}

.payment-notice {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: 8px;
  margin-top: 20px;
  color: #166534;
}

.payment-notice i {
  font-size: 1.3rem;
  color: #22c55e;
}

.search-box {
  background: white;
  padding: 40px 50px;
  border-radius: 15px;
  border: 2px solid #E31E24;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  max-width: 1200px;
  margin: 0 auto;
}
/* Modern Reservation Form */
.reservation-form-enhanced {
  margin-top: 20px;
}

.form-label-modern {
  color: #2d3748;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 8px;
  display: block;
}

.form-label-modern i {
  margin-right: 5px;
}

.form-select-modern,
.form-control-modern {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-size: 1rem;
  color: #2d3748;
  transition: all 0.3s ease;
  background: white;
}

.form-select-modern:focus,
.form-control-modern:focus {
  border-color: #E31E24;
  box-shadow: 0 0 0 4px rgba(227, 30, 36, 0.1);
  outline: none;
}

.form-select-modern {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23E31E24' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
  appearance: none;
}

/* Responsive pour les formulaires */
@media (max-width: 768px) {
  .reservation-form-enhanced .row {
    margin-left: 0;
    margin-right: 0;
  }

  .reservation-form-enhanced .col-lg-3,
  .reservation-form-enhanced .col-lg-2,
  .reservation-form-enhanced .col-md-6,
  .reservation-form-enhanced .col-md-12 {
    padding-left: 8px;
    padding-right: 8px;
    margin-bottom: 15px;
  }

  .form-label-modern {
    font-size: 0.85rem;
  }

  .form-select-modern,
  .form-control-modern {
    padding: 10px 12px;
    font-size: 0.95rem;
  }
}

.passenger-selector-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  background-image: none !important;
}

.passenger-selector-btn i {
  color: #E31E24;
  font-size: 0.9rem;
}

/* Passenger Popup */
.passenger-popup-modern {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 8px;
  background: white;
  border: 2px solid #E31E24;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  z-index: 1000;
}

.popup-header h6 {
  margin: 0 0 15px 0;
  font-size: 1rem;
  font-weight: 700;
  color: #2d3748;
}

.passenger-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #e2e8f0;
}

.passenger-type {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #2d3748;
  font-weight: 500;
}

.passenger-type i {
  color: #E31E24;
  font-size: 1.3rem;
}

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

.counter-btn {
  width: 35px;
  height: 35px;
  border: 2px solid #E31E24;
  background: white;
  color: #E31E24;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.counter-btn:hover {
  background: #E31E24;
  color: white;
}

.passenger-counter input {
  width: 45px;
  text-align: center;
  border: none;
  font-size: 1.1rem;
  font-weight: 700;
  color: #2d3748;
}

.popup-divider {
  height: 1px;
  background: #e2e8f0;
  margin: 15px 0;
}

.class-selection {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.class-radio {
  flex: 1;
  cursor: pointer;
}

.class-radio input[type="radio"] {
  display: none;
}

.class-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-weight: 600;
  color: #2d3748;
  transition: all 0.3s ease;
}

.class-radio input[type="radio"]:checked+.class-label {
  border-color: #E31E24;
  background: rgba(227, 30, 36, 0.08);
  color: #E31E24;
}

.btn-confirm-passengers {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, #E31E24 0%, #c31a1f 100%);
  border: none;
  border-radius: 8px;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-confirm-passengers:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(227, 30, 36, 0.4);
}

/* Responsive pour les popups passagers */
@media (max-width: 768px) {
  .passenger-popup-modern {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    right: auto !important;
    transform: translate(-50%, -50%) !important;
    width: 90% !important;
    max-width: 400px !important;
    margin-top: 0 !important;
    max-height: 80vh;
    overflow-y: auto;
    z-index: 9999 !important;
  }

  .passenger-row {
    flex-wrap: wrap;
    gap: 10px;
  }

  .passenger-type {
    font-size: 0.9rem;
  }

  .counter-btn {
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }

  .passenger-counter input {
    width: 40px;
    font-size: 1rem;
  }

  .class-selection {
    flex-direction: column;
    gap: 8px;
  }

  .class-label {
    padding: 10px;
    font-size: 0.9rem;
  }

  /* Ajouter un overlay sombre derrière la popup */
  .passenger-popup-modern::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
  }
}

/* Boutons responsive supplémentaires */
@media (max-width: 576px) {
  .btn-primary, .btn-outline-primary, .btn-outline-secondary {
    font-size: 0.9rem;
    padding: 10px 16px !important;
  }

  .d-flex.gap-3 {
    gap: 0.5rem !important;
  }

  .card {
    border-radius: 12px;
  }

  .list-group-item {
    font-size: 0.9rem;
    padding: 10px;
  }

  .list-group-item span {
    word-break: break-word;
  }
}

.btn-search-flight {
  width: 100%;
  height: 48px;
  background: linear-gradient(135deg, #E31E24 0%, #c31a1f 100%);
  border: none;
  border-radius: 10px;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-search-flight:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(227, 30, 36, 0.4);
}

.btn-search-flight-large {
  padding: 15px 50px;
  background: linear-gradient(135deg, #E31E24 0%, #c31a1f 100%);
  border: none;
  border-radius: 12px;
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(227, 30, 36, 0.3);
}

.btn-search-flight-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(227, 30, 36, 0.5);
}

.btn-search-flight-large i {
  margin-right: 8px;
  font-size: 1.2rem;
}

.tab-btns .nav-link {
  color: #333;
  font-weight: 500;
  border: none;
  padding: 12px 24px;
  transition: all 0.3s ease;
}

.tab-btns .nav-link.active {
  background-color: #E31E24;
  color: white;
  border-radius: 8px 8px 0 0;
}

.tab-btns .nav-link:hover {
  background-color: #f5f5f5;
}

#menu .nav-link {
  color: #000;
  position: relative;
  font-weight: 500;
  transition: color 0.3s ease;
}

#menu .nav-link:hover {
  color: #cd3737;
}

#menu .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 3px;
  background-color: #cd3737;
  transition: width 0.3s ease-in-out;
}

#menu .nav-link.active::after,
#menu .nav-link:hover::after {
  width: 100%;
}

/*  ALLER-SIMPLE ET ALLER-RETOUR */
.form-label {
  color: #2d3748;
  font-weight: 500;
  margin-bottom: 8px;
}

.form-control {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: #E31E24;
  box-shadow: 0 0 0 0.2rem rgba(227, 30, 36, 0.15);
}

.btn-danger {
  background-color: #E31E24;
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-danger:hover {
  background-color: #c31a1f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(227, 30, 36, 0.3);
}

.autocomplete-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgb(177, 33, 33);
  border: 1px solid #a72525;
  border-radius: 6px;
  max-height: 220px;
  overflow-y: auto;
  display: none;
  z-index: 9999;
}

.autocomplete-item {
  padding: 8px;
  display: flex;
  align-items: center;
  cursor: pointer;
  border-bottom: 1px solid #9b1c1c;
}

.autocomplete-item:hover {
  background: #ac2424;
}

.autocomplete-flag {
  font-size: 22px;
  margin-right: 10px;
}

.autocomplete-info {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.autocomplete-iata {
  font-size: 12px;
  color: #666;
}

.passenger-popup {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 9999;
  width: 250px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 10px;
  display: none;
}


/*  pour barre_prosess*/
.step-progress-container {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 12px 20px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);

}

.step-logo {
  margin-right: 25px;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.step-logo img {
  transition: transform .2s ease;
}

.step-logo img:hover {
  transform: scale(1.05);
}

.step-progress {
  display: flex;
  align-items: center;
  width: 100%;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 6px 12px;
  border-radius: 6px;
  min-width: 120px;
  text-align: center;
}

.step-item i {
  font-size: 20px;
}

.step-item span {
  font-size: 12px;
  margin-top: 2px;
}

.step-item.active {
  background: #a92c2c;
  color: #000;
  font-weight: bold;
}

.step-item.completed {
  background: #9AA728FF;
  color: #fff;
}

.step-item.disabled {
  opacity: 0.4;
}

.step-arrow i {
  font-size: 20px;
  margin: 0 8px;
  color: #999;
}


.recherche {
  display: flex;
  align-items: center;
  background: #E31E24;
  padding: 12px 20px;
  border-radius: 90px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* ========== NEWS SECTION ========== */
.news-section {
  background: #f8f9fa;
}

.news-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.news-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(227, 30, 36, 0.15);
}

.news-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
  transform: scale(1.1);
}

.news-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #E31E24;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.news-content {
  padding: 25px;
}

.news-date {
  color: #718096;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 10px;
}

.news-content h4 {
  color: #2d3748;
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.news-content p {
  color: #718096;
  line-height: 1.6;
  margin-bottom: 15px;
}

.news-link {
  color: #E31E24;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.news-link:hover {
  color: #c31a1f;
  padding-left: 5px;
}

/* ========== PARTNERS SECTION ========== */
.partners-section {
  background: white;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.partner-item {
  text-align: center;
  padding: 30px 20px;
  background: #f8f9fa;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.partner-item:hover {
  border-color: #E31E24;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(227, 30, 36, 0.1);
  background: white;
}

.partner-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.partner-logo p {
  color: #2d3748;
  font-weight: 600;
  margin: 0;
}

/* ========== SERVICES SECTION ========== */
.services-section {
  background: white;
}

.service-card {
  text-align: center;
  padding: 40px 25px;
  background: white;
  border-radius: 15px;
  border: 2px solid #f0f0f0;
  transition: all 0.4s ease;
  height: 100%;
}

.service-card:hover {
  border-color: #E31E24;
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(227, 30, 36, 0.15);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #E31E24 0%, #c31a1f 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.service-card:hover .service-icon {
  transform: rotate(360deg) scale(1.1);
}

.service-icon i {
  font-size: 2.5rem;
  color: white;
}

.service-card h4 {
  color: #2d3748;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.service-card p {
  color: #718096;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials-section {
  background: #f8f9fa;
}

.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  border-left: 5px solid #E31E24;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(227, 30, 36, 0.15);
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #E31E24 0%, #c31a1f 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.testimonial-avatar i {
  font-size: 2rem;
  color: white;
}

.testimonial-info h5 {
  color: #2d3748;
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.testimonial-rating {
  color: #FFC107;
  font-size: 0.9rem;
}

.testimonial-rating i {
  margin-right: 2px;
}

.testimonial-text {
  color: #4a5568;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 15px;
  position: relative;
}

.testimonial-text::before {
  content: '\201C';
  font-size: 3rem;
  color: #E31E24;
  opacity: 0.2;
  position: absolute;
  top: -20px;
  left: -10px;
}

.testimonial-date {
  color: #a0aec0;
  font-size: 0.85rem;
  display: block;
}

/* Professional Footer Styles */
.footer-professional {
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
  color: #e2e8f0;
  margin-top: 60px;
  border-top: 5px solid #E31E24;
}

.footer-title {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: #E31E24;
}

.footer-link {
  color: #cbd5e0;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.footer-link:hover {
  color: #ffffff;
  padding-left: 8px;
}

.footer-link i {
  font-size: 12px;
  margin-right: 8px;
  color: #E31E24;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid #E31E24;
  border-radius: 50%;
  color: #ffffff;
  font-size: 20px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background: #E31E24;
  color: white;
  transform: translateY(-5px) rotate(5deg);
  box-shadow: 0 8px 20px rgba(227, 30, 36, 0.4);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 30px;
}

.footer-professional .text-muted {
  color: #cbd5e0 !important;
}

.footer-professional p i {
  color: #E31E24;
  margin-right: 8px;
}

/* ========== PAGE HEADER ========== */
.page-header {
  background: linear-gradient(135deg, #E31E24 0%, #c31a1f 100%);
  color: white;
  padding: 60px 0;
  text-align: center;
  margin-bottom: 40px;
}

.page-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-header p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* ========== SERVICE DETAIL CARDS ========== */
.service-detail-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  border: 2px solid #f0f0f0;
  transition: all 0.3s ease;
  height: 100%;
}

.service-detail-card:hover {
  border-color: #E31E24;
  box-shadow: 0 10px 30px rgba(227, 30, 36, 0.1);
}

.service-detail-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #E31E24 0%, #c31a1f 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-detail-icon i {
  font-size: 2rem;
  color: white;
}

.service-detail-card h3 {
  color: #2d3748;
  font-weight: 700;
  margin-bottom: 15px;
}

.service-detail-card ul {
  list-style: none;
  padding: 0;
}

.service-detail-card ul li {
  padding: 8px 0;
  color: #4a5568;
  position: relative;
  padding-left: 25px;
}

.service-detail-card ul li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #E31E24;
  font-weight: bold;
}

/* ========== CTA SECTION ========== */
.cta-section {
  background: linear-gradient(135deg, rgba(227, 30, 36, 0.1) 0%, rgba(227, 30, 36, 0.05) 100%);
}

.cta-section h2 {
  color: #2d3748;
  font-weight: 700;
}

/* ========== VALUE & STAT CARDS ========== */
.value-card {
  text-align: center;
  padding: 30px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(227, 30, 36, 0.15);
}

.value-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #E31E24 0%, #c31a1f 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.value-icon i {
  font-size: 2rem;
  color: white;
}

.value-card h4 {
  color: #2d3748;
  font-weight: 700;
  margin-bottom: 10px;
}

.stat-card {
  text-align: center;
  padding: 30px;
  background: linear-gradient(135deg, #E31E24 0%, #c31a1f 100%);
  border-radius: 12px;
  color: white;
}

.stat-card h3 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.stat-card p {
  margin: 0;
  font-size: 1.1rem;
}

/* ========== TEAM CARDS ========== */
.team-card {
  text-align: center;
  padding: 30px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(227, 30, 36, 0.15);
}

.team-avatar {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #E31E24 0%, #c31a1f 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.team-avatar i {
  font-size: 4rem;
  color: white;
}

.team-card h4 {
  color: #2d3748;
  font-weight: 700;
  margin-bottom: 5px;
}

.team-role {
  color: #E31E24;
  font-weight: 600;
  margin-bottom: 15px;
}

.team-bio {
  color: #718096;
  font-size: 0.95rem;
}

/* ========== CONTACT PAGE ========== */
.contact-form-wrapper,
.contact-info-wrapper {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.contact-info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #f0f0f0;
}

.contact-info-item:last-child {
  border-bottom: none;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #E31E24 0%, #c31a1f 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 1.5rem;
  color: white;
}

.contact-info-item h5 {
  color: #2d3748;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-info-item p {
  color: #718096;
  margin: 0;
  line-height: 1.6;
}

.map-placeholder {
  background: #f8f9fa;
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #718096;
}

.map-placeholder i {
  font-size: 4rem;
  color: #E31E24;
  margin-bottom: 15px;
}

/* Social Media on Contact Page */
.social-contact-section {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.social-contact-section h3 {
  color: #2d3748;
  font-weight: 700;
}

.social-links-contact {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.social-contact-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 120px;
  padding: 20px;
  background: white;
  border: 2px solid #f0f0f0;
  border-radius: 12px;
  text-decoration: none;
  color: #2d3748;
  transition: all 0.3s ease;
}

.social-contact-icon:hover {
  border-color: #E31E24;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(227, 30, 36, 0.15);
  color: #E31E24;
}

.social-contact-icon i {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #E31E24;
}

.social-contact-icon span {
  font-weight: 600;
  font-size: 0.9rem;
}

.social-contact-icon:hover i {
  transform: scale(1.1);
}

/* ========== AUTH PAGES ========== */
.auth-wrapper {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.auth-wrapper .nav-tabs {
  border-bottom: 2px solid #f0f0f0;
}

.auth-wrapper .nav-link {
  color: #718096;
  font-weight: 600;
  border: none;
  padding: 15px 30px;
}

.auth-wrapper .nav-link.active {
  color: #E31E24;
  border-bottom: 3px solid #E31E24;
}

.auth-form {
  padding: 20px 0;
}

.auth-benefits {
  background: linear-gradient(135deg, rgba(227, 30, 36, 0.05) 0%, rgba(227, 30, 36, 0.1) 100%);
  padding: 30px;
  border-radius: 12px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.benefits-list {
  list-style: none;
  padding: 0;
}

.benefits-list li {
  padding: 12px 0;
  color: #2d3748;
  font-weight: 500;
}

.benefits-list li i {
  color: #E31E24;
  margin-right: 10px;
  font-size: 1.2rem;
}

.feature-item i {
  font-size: 3.5rem;
  color: #E31E24;
  margin-bottom: 15px;
}

.feature-item h5 {
  color: #2d3748;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-item p {
  color: #718096;
  margin: 0;
}

/* ========== FLIGHT SELECTION PAGE ========== */
.search-summary-card {
  background: white;
  padding: 20px 30px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  border-left: 5px solid #E31E24;
}

.route-info {
  font-size: 1.1rem;
}

.flight-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.flight-card:hover {
  box-shadow: 0 10px 30px rgba(227, 30, 36, 0.15);
  border-color: #E31E24;
  transform: translateY(-3px);
}

.flight-card-header {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 15px 25px;
  border-bottom: 1px solid #dee2e6;
}

.flight-number {
  font-weight: 700;
  color: #2d3748;
  font-size: 1.1rem;
}

.flight-company {
  color: #718096;
  font-size: 0.95rem;
}

.flight-card-body {
  padding: 30px 25px;
}

.flight-time {
  font-size: 2rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 5px;
}

.flight-location {
  color: #718096;
  font-size: 0.9rem;
  font-weight: 500;
}

.flight-duration-line {
  position: relative;
  height: 3px;
  background: linear-gradient(to right, #E31E24 0%, #c31a1f 100%);
  margin: 20px 0;
  border-radius: 2px;
}

.flight-icon-plane {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #E31E24;
}

.flight-icon-plane i {
  color: #E31E24;
  font-size: 1.2rem;
}

.flight-duration-text {
  color: #718096;
  font-size: 0.9rem;
  margin-top: 10px;
  font-weight: 600;
}

.flight-pricing {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.class-option {
  border: 2px solid #e9ecef;
  border-radius: 10px;
  padding: 12px 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.class-option:hover {
  border-color: #E31E24;
  background: rgba(227, 30, 36, 0.03);
}

.class-option.selected {
  border-color: #E31E24;
  background: rgba(227, 30, 36, 0.08);
  box-shadow: 0 0 0 3px rgba(227, 30, 36, 0.1);
}

.class-option input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.class-option label {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  width: 100%;
}

.class-name {
  font-weight: 600;
  color: #2d3748;
  font-size: 0.9rem;
}

.class-price {
  font-weight: 700;
  color: #E31E24;
  font-size: 1.1rem;
}

.flight-card-footer {
  background: #f8f9fa;
  padding: 15px 25px;
  border-top: 1px solid #dee2e6;
}

.page-title {
  color: #2d3748;
  font-weight: 700;
  font-size: 2rem;
}