/* TAXIS PAGE STYLES */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
  background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
  color: #262626;
  line-height: 1.6;
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* TOP HEADER */
.top-header {
  background: #003580;
  color: white;
  padding: 8px 0;
  font-size: 14px;
}

.top-header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.currency-selector {
  display: flex;
  align-items: center;
  gap: 8px;
}

.currency-selector select {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  cursor: pointer;
}

.top-header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-link {
  color: white;
  text-decoration: none;
  transition: opacity 0.2s;
}

.top-link:hover {
  opacity: 0.8;
}

.btn-top-register,
.btn-top-signin {
  padding: 6px 16px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s;
}

.btn-top-register {
  background: white;
  color: #003580;
}

.btn-top-register:hover {
  background: #f0f0f0;
}

.btn-top-signin {
  border: 1px solid white;
  color: white;
}

.btn-top-signin:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* MAIN NAVIGATION */
.main-nav {
  background: #003580;
  padding: 0;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: white;
  font-size: 24px;
  font-weight: 700;
}

.logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  background: white;
  padding: 6px;
  border-radius: 8px;
}

.nav-tabs {
  display: flex;
  gap: 4px;
}

.nav-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  color: white;
  text-decoration: none;
  border-radius: 24px 24px 0 0;
  transition: all 0.2s;
  font-size: 14px;
  font-weight: 500;
}

.nav-tab:hover {
  background: rgba(255, 255, 255, 0.1);
}

.nav-tab.active {
  background: white;
  color: #003580;
}

.nav-tab i {
  font-size: 18px;
}

/* NAVBAR (Old styles for other pages) */
.navbar {
  background: #9ecae1;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(10px);
}

.nav-container {
  width: 95%;
  max-width: 1400px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

/* Logo */
.logo-section {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  width: 40px;
}

.brand-name {
  font-weight: 700;
  font-size: 1.2rem;
}

/* Nav links */
.nav-links {
  display: flex;
  gap: 18px;
  margin: 10px 0;
}

.nav-links li {
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-weight: 500;
  color: #333;
  padding: 5px 10px;
  border-radius: 4px;
}

.nav-links a.active,
.nav-links a:hover {
  background: #3182bd;
  color: #fff;
}

/* Auth buttons */
.auth-buttons .btn {
  margin-left: 10px;
  padding: 6px 16px;
  background: #3182bd;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  text-decoration: none;
}

.auth-buttons .btn:hover {
  background: #2771a3;
}

/* TAXI BOOKING SECTION */

.taxi-booking-section {
  padding: 50px 20px 80px;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  min-height: calc(100vh - 120px);
}

.booking-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.taxi-form-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.taxi-card {
  background: white;
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 53, 128, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.taxi-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.ride-type-selector {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.ride-type {
  padding: 20px 16px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.ride-type::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #003580 0%, #0056d2 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.ride-type:hover {
  background: linear-gradient(135deg, #e3f2fd 0%, #f5f5f5 100%);
  border-color: #003580;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 53, 128, 0.12);
}

.ride-type:hover::before {
  transform: scaleX(1);
}

.ride-type.active {
  background: linear-gradient(135deg, #003580 0%, #0056d2 100%);
  color: white;
  border-color: #003580;
  box-shadow: 0 8px 25px rgba(0, 53, 128, 0.25);
}

.ride-type.active::before {
  transform: scaleX(1);
  background: white;
}

.ride-type i {
  font-size: 2rem;
  margin-bottom: 6px;
  transition: transform 0.3s ease;
}

.ride-type:hover i,
.ride-type.active i {
  transform: scale(1.1);
}

.ride-type span {
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}

.taxi-booking-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  margin-bottom: 0;
  position: relative;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.form-group label i {
  color: #003580;
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #ffffff;
  color: #333;
  cursor: pointer;
}

.form-group select {
  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='%23003580' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
  padding-right: 40px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.form-group select optgroup {
  font-weight: 700;
  font-style: normal;
  color: #003580;
  padding: 8px 0;
}

.form-group select option {
  padding: 10px;
  color: #333;
}

.form-group input::placeholder {
  color: #999;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
  font-family: inherit;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: #bdbdbd;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #003580;
  box-shadow: 0 0 0 4px rgba(0, 53, 128, 0.08);
  background: #fff;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-row-four {
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.btn-current-location {
  margin-top: 10px;
  padding: 10px 16px;
  background: #f0f4ff;
  border: 1px solid #003580;
  color: #003580;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-current-location:hover {
  background: #003580;
  color: white;
}

.luggage-selector {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px;
  background: #f8f9fa;
  border-radius: 10px;
  width: fit-content;
}

.luggage-btn {
  width: 40px;
  height: 40px;
  border: 2px solid #e0e0e0;
  background: white;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: #003580;
  font-size: 0.9rem;
}

.luggage-btn:hover {
  background: #003580;
  color: white;
  border-color: #003580;
}

.luggage-selector input {
  width: 60px;
  text-align: center;
  border: none;
  background: transparent;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 8px;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: #f8f9fa;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-checkbox:hover {
  background: #e8eaf0;
}

.form-checkbox label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  cursor: pointer;
  font-weight: 500;
}

.form-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #003580;
}

.btn-search-taxis {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, #003580 0%, #0066ff 100%);
  color: white;
  border: none;
  border-radius: 14px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 6px 24px rgba(0, 53, 128, 0.35);
  margin-top: 8px;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
}

.btn-search-taxis::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.btn-search-taxis:hover::before {
  left: 100%;
}

.btn-search-taxis:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0, 53, 128, 0.45);
}

.btn-search-taxis:active {
  transform: translateY(0);
}

/* Available Vehicles */
.available-vehicles {
  margin-top: 20px;
  margin-bottom: 20px;
}

.available-vehicles h3 {
  font-size: 1.2rem;
  color: #1a1a1a;
  margin-bottom: 12px;
  font-weight: 700;
}

/* Grid container for vehicle cards */
.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.vehicle-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px;
  background: white;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.vehicle-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #003580 0%, #0056d2 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.vehicle-card:hover {
  border-color: #003580;
  box-shadow: 0 4px 16px rgba(0, 53, 128, 0.12);
  transform: translateY(-2px);
}

.vehicle-card:hover::before {
  transform: scaleX(1);
}

.vehicle-card.featured {
  border-color: #ffc107;
  background: white;
}

.vehicle-card.featured::before {
  background: linear-gradient(90deg, #ffc107 0%, #ffb300 100%);
  transform: scaleX(1);
}

.popular-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #ffc107;
  color: #1a1a1a;
  padding: 3px 8px;
  border-radius: 10px;
  font-size: 0.6rem;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(255, 193, 7, 0.3);
  z-index: 10;
}

.vehicle-card.selected {
  border-color: #003580;
  background: linear-gradient(135deg, #f0f4ff 0%, #ffffff 100%);
  box-shadow: 0 8px 30px rgba(0, 53, 128, 0.2);
}

.vehicle-card.selected::before {
  transform: scaleX(1);
}

.vehicle-image {
  width: 100%;
  height: 100px;
  border-radius: 8px;
  overflow: hidden;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vehicle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.vehicle-card:hover .vehicle-image img {
  transform: scale(1.05);
}

.vehicle-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.vehicle-info h4 {
  font-size: 0.95rem;
  margin: 0;
  color: #1a1a1a;
  font-weight: 600;
}

.vehicle-features {
  display: flex;
  gap: 10px;
  color: #666;
  font-size: 0.75rem;
  margin: 0;
}

.vehicle-features i {
  color: #003580;
  margin-right: 3px;
}

.vehicle-description {
  color: #757575;
  font-size: 0.8rem;
  line-height: 1.3;
  display: none;
}

.vehicle-rating {
  display: none;
}

.vehicle-rating i {
  color: #ffc107;
}

.vehicle-price {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid #e8e8e8;
}

.vehicle-price .price-label {
  font-size: 0.7rem;
  color: #757575;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.vehicle-price h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #003580;
  margin: 0;
  line-height: 1;
}

.btn-select-vehicle {
  width: 100%;
  padding: 8px 12px;
  background: white;
  border: 2px solid #003580;
  color: #003580;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-select-vehicle:hover {
  background: #003580;
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 53, 128, 0.2);
}

.btn-select-vehicle.primary {
  background: linear-gradient(135deg, #003580 0%, #0056d2 100%);
  color: white;
  border: none;
}

.btn-select-vehicle.primary:hover {
  box-shadow: 0 4px 16px rgba(0, 53, 128, 0.3);
}

/* Sidebar */
.taxi-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 20px;
}

.sidebar-card {
  background: white;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #e8e8e8;
}

.sidebar-card h3 {
  font-size: 1.4rem;
  margin-bottom: 24px;
  color: #1a1a1a;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sidebar-card h3 i {
  color: #003580;
}

.benefit-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #f0f0f0;
}

.benefit-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.benefit-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #e3f2fd 0%, #f0f4ff 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon i {
  color: #003580;
  font-size: 1.3rem;
}

.benefit-item h4 {
  font-size: 1rem;
  color: #1a1a1a;
  margin: 0 0 4px 0;
  font-weight: 600;
}

.benefit-item p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
  line-height: 1.4;
}

.promo-card {
  background: linear-gradient(135deg, #003580 0%, #0056d2 100%);
  color: white;
  text-align: center;
  border: none;
}

.promo-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.promo-icon i {
  font-size: 1.8rem;
  color: white;
}

.promo-card h4 {
  font-size: 1.3rem;
  margin: 0 0 12px 0;
  font-weight: 700;
}

.promo-card p {
  margin: 0 0 16px 0;
  opacity: 0.9;
}

.promo-code {
  background: rgba(255, 255, 255, 0.2);
  border: 2px dashed rgba(255, 255, 255, 0.5);
  padding: 12px 20px;
  border-radius: 8px;
  margin: 16px 0 12px;
}

.promo-code strong {
  font-size: 1.3rem;
  letter-spacing: 2px;
  font-weight: 700;
}

.promo-card small {
  opacity: 0.8;
  font-size: 0.8rem;
}

.contact-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.contact-card h3 {
  margin-bottom: 16px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: white;
  border-radius: 10px;
  border: 1px solid #e8e8e8;
}

.contact-item i {
  color: #003580;
  font-size: 1.1rem;
  width: 20px;
}

.contact-item span {
  color: #333;
  font-weight: 500;
}

/* Booking Summary */
.booking-summary h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: #333;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}

.summary-item:last-child {
  border-bottom: none;
  padding-top: 20px;
  margin-top: 10px;
  border-top: 2px solid #e0e0e0;
  font-weight: 700;
  font-size: 1.2rem;
}

.summary-item label {
  color: #666;
  font-weight: 500;
}

.summary-item .value {
  color: #333;
  font-weight: 600;
}

.summary-item.total .value {
  color: #003580;
  font-size: 1.5rem;
}

.promo-section {
  margin: 20px 0;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
}

.promo-section input {
  width: 100%;
  padding: 10px;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  margin-bottom: 10px;
}

.btn-promo {
  width: 100%;
  padding: 10px;
  background: white;
  border: 2px solid #003580;
  color: #003580;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-promo:hover {
  background: #003580;
  color: white;
}

.btn-confirm-booking {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(245, 87, 108, 0.3);
  margin-top: 20px;
}

.btn-confirm-booking:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(245, 87, 108, 0.4);
}

/* Booking Type Icon for Taxi */
.booking-type-icon.taxi {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

/* responsive design*/

@media (max-width: 1200px) {
  .booking-layout {
    grid-template-columns: 1fr 350px;
    gap: 30px;
  }
}

@media (max-width: 968px) {
  .booking-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .taxi-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .ride-type-selector {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }

  .form-row-four {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .vehicles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .taxi-booking-section {
    padding: 30px 16px 60px;
  }
  
  .taxi-card {
    padding: 24px;
  }
  
  .sidebar-card {
    padding: 20px;
  }
  
  .taxi-sidebar {
    grid-template-columns: 1fr;
  }
  
  .vehicle-card {
    padding: 20px;
    gap: 16px;
  }
  
  .vehicle-price h3 {
    font-size: 1.8rem;
  }
  
  .available-vehicles h3 {
    font-size: 1.5rem;
  }
  
  .vehicles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .ride-type-selector {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .ride-type {
    flex-direction: row;
    justify-content: flex-start;
    padding: 16px;
    text-align: left;
  }
  
  .ride-type i {
    font-size: 1.5rem;
  }

  .form-row-four {
    grid-template-columns: 1fr;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px 16px;
    font-size: 0.95rem;
  }
  
  .btn-search-taxis {
    padding: 16px;
    font-size: 1rem;
  }
  
  .vehicle-features {
    flex-direction: column;
    gap: 8px;
  }
  
  .vehicles-grid {
    grid-template-columns: 1fr;
  }
}

/* ROUTE INFO CARD */
.vehicles-subtitle {
  color: #666;
  margin-bottom: 24px;
}

.route-info-card {
  background: linear-gradient(135deg, #e3f2fd 0%, #f0f4ff 100%);
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 24px;
}

.route-info-card h4 {
  margin: 0 0 12px 0;
  color: #003580;
  font-size: 1.1rem;
  font-weight: 600;
}

.route-details {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.location-name {
  font-weight: 600;
  color: #1a1a1a;
}

.route-arrow {
  color: #003580;
}

.distance-info {
  margin-top: 12px;
  color: #666;
  font-size: 0.95rem;
}

/* BOOKING MODAL */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-content {
  background: white;
  border-radius: 16px;
  padding: 32px;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.modal-header {
  text-align: center;
  margin-bottom: 24px;
}

.modal-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #003580 0%, #0056d2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.modal-icon i {
  font-size: 2.5rem;
  color: white;
}

.modal-header h3 {
  margin: 0 0 8px 0;
  color: #1a1a1a;
  font-size: 1.5rem;
}

.modal-header p {
  color: #666;
  margin: 0;
}

.modal-body {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.booking-detail {
  margin-bottom: 12px;
}

.booking-detail:last-child {
  margin-bottom: 0;
}

.booking-detail strong {
  color: #666;
  font-size: 0.9rem;
}

.detail-value {
  color: #1a1a1a;
  margin-top: 4px;
  font-weight: 500;
}

.price-detail {
  border-top: 2px solid #e0e0e0;
  margin-top: 16px;
  padding-top: 16px;
}

.detail-price {
  font-size: 2rem;
  font-weight: 800;
  color: #003580;
  margin-top: 4px;
}

.modal-actions {
  display: flex;
  gap: 12px;
}

.btn-modal-cancel {
  flex: 1;
  padding: 14px;
  background: #f5f5f5;
  border: 2px solid #e0e0e0;
  color: #333;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.btn-modal-cancel:hover {
  background: #e8e8e8;
}

.btn-modal-confirm {
  flex: 1;
  padding: 14px;
  background: linear-gradient(135deg, #003580 0%, #0056d2 100%);
  border: none;
  color: white;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.btn-modal-confirm:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 53, 128, 0.3);
}

/* FOOTER */
footer {
  background: white;
  color: #333;
  text-align: center;
  padding: 30px 20px;
  margin-top: 60px;
  border-top: 1px solid #e0e0e0;
}

footer p {
  margin: 0;
  font-size: 14px;
}
