/* css/booking-glass.css */
:root {
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 1);
  --accent-orange: #ff5722;
  --accent-blue: #007aff;
  --accent-orange-glow: rgba(255, 87, 34, 0.2);
  --text-main: #1a202c;
  --text-dim: #4a5568;
  --card-radius: 32px;
  --bg-main: #f4f7fa;
}

body.booking-page {
  background-color: var(--bg-main) !important;
  background-image: 
    radial-gradient(circle at 0% 0%, rgba(255, 87, 34, 0.05), transparent 40%),
    radial-gradient(circle at 100% 100%, rgba(0, 122, 255, 0.03), transparent 40%) !important;
  color: var(--text-main) !important;
  font-family: 'Inter', sans-serif;
}

.booking-page section {
  background: transparent !important;
  padding: 10px 0 !important; /* Reduced from 20px */
}

/* Glass Panels */
.booking-page .glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-left: 10px solid var(--accent-orange); /* Signature Left Accent */
  border-radius: var(--card-radius);
  padding: 40px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.08);
  margin-bottom: 10px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.booking-page .glass-panel:hover {
  transform: translateY(-5px);
  box-shadow: 0 50px 120px rgba(0, 0, 0, 0.12);
}

.booking-page h2 {
  color: var(--text-main);
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 20px; /* Reduced from 35px */
  letter-spacing: -1px;
}

/* Form Styling */
.booking-page .form-group {
  margin-bottom: 15px; /* Reduced from 25px */
}

.booking-page .form-group label {
  color: var(--text-main);
  font-weight: 800;
  font-size: 11px; /* Slightly smaller for compactness */
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px; /* Reduced from 10px */
  display: block;
}

.booking-page .form-control {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  height: 56px;
  padding: 0 20px;
  box-shadow: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.booking-page .form-control:focus {
  background: #fff;
  border-color: var(--accent-orange);
  box-shadow: 0 0 0 5px var(--accent-orange-glow);
  transform: scale(1.01);
}

/* Summary Panel (Beautified like journey-info) */
.booking-page .booking-summary {
  position: sticky;
  top: 100px;
}

.booking-page .journey-step {
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
}

.booking-page .journey-step::before {
  content: '';
  position: absolute;
  left: 9px;
  top: 24px;
  bottom: -15px;
  width: 2px;
  background: rgba(0,0,0,0.05);
}

.booking-page .journey-step:last-child::before { display: none; }

.booking-page .journey-icon {
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  background: #fff;
  border: 2px solid var(--accent-orange);
  border-radius: 50%;
  z-index: 1;
}

.booking-page .journey-step.destination .journey-icon { border-color: var(--accent-blue); }

.booking-page .info-label {
  color: var(--text-dim);
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 1px;
  font-weight: 800;
  display: block;
  margin-bottom: 2px;
}

.booking-page .info-value {
  color: var(--text-main);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}

.booking-page .journey-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.booking-page .meta-item i {
  color: var(--accent-orange);
  margin-right: 6px;
  font-size: 14px;
}

/* Extras Grid Premium */
.booking-page .extras-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 8px;
}

.booking-page .extra-card {
  position: relative;
}

.booking-page .extra-card input[type="checkbox"] {
  display: none;
}

.booking-page .extra-label {
  display: flex !important;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(0,0,0,0.06);
  padding: 12px 16px;
  border-radius: 18px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 0 !important;
}

.booking-page .extra-label:hover {
  background: #ffffff;
  border-color: rgba(255, 87, 34, 0.3);
  transform: translateY(-2px);
}

.booking-page .extra-icon {
  width: 38px;
  height: 38px;
  background: rgba(255, 87, 34, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-orange);
  font-size: 16px;
  transition: all 0.3s ease;
}

.booking-page .extra-content {
  flex: 1;
}

.booking-page .extra-title {
  font-size: 12px;
  font-weight: 800;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.booking-page .extra-check-icon {
  color: rgba(0,0,0,0.08);
  font-size: 18px;
  transition: all 0.3s ease;
}

/* Checked State */
.booking-page .extra-card input[type="checkbox"]:checked + .extra-label {
  border-color: var(--accent-orange);
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(255, 87, 34, 0.12);
}

.booking-page .extra-card input[type="checkbox"]:checked + .extra-label .extra-icon {
  background: var(--accent-orange);
  color: #fff;
}

.booking-page .extra-card input[type="checkbox"]:checked + .extra-label .extra-check-icon {
  color: var(--accent-orange);
}

.booking-page .booking-section-label {
  font-size: 13px !important;
  font-weight: 900 !important;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-dim);
  margin-bottom: 5px;
  display: block;
}

@media (max-width: 600px) {
  .booking-page .extras-grid {
    grid-template-columns: 1fr;
  }
}

/* Vehicle Detail Card */
.booking-page .vehicle-detail-card {
  text-align: center;
}

.booking-page .vehicle-detail-card img {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin-bottom: 25px;
  filter: drop-shadow(0 15px 30px rgba(0,0,0,0.1));
  transition: transform 0.5s ease;
}

.booking-page .vehicle-detail-card:hover img {
  transform: scale(1.05) rotate(-2deg);
}

.booking-page .vehicle-detail-card h3 {
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 15px;
  color: var(--text-main);
}

.booking-page .vehicle-badges {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.booking-page .v-badge {
  background: #f8f9fa;
  padding: 8px 15px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 800;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(0,0,0,0.04);
}

.booking-page .v-badge i { color: var(--accent-orange); }

/* Price Styling */
.booking-page .price-display {
  background: #fcfdfe;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 87, 34, 0.1);
  margin-top: 20px;
}

.booking-page .price-display .p-label {
  font-size: 11px;
  font-weight: 800;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.booking-page .price-display .p-value {
  font-size: 32px;
  font-weight: 900;
  color: var(--accent-orange);
  line-height: 1;
}

/* Confirm Button */
.booking-page .btn-confirm-booking {
  background: #1a202c; /* Premium Dark */
  color: #fff !important;
  border: none;
  border-radius: 20px;
  height: 64px;
  width: 100%;
  font-weight: 900;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  transition: all 0.4s ease;
  margin-top: 20px;
}

.booking-page .btn-confirm-booking:hover {
  background: var(--accent-orange);
  transform: translateY(-5px);
  box-shadow: 0 20px 45px var(--accent-orange-glow);
}

/* Mobile */
@media (max-width: 991px) {
  .booking-page .container > .row { display: flex !important; flex-direction: column !important; }
  .booking-page .container > .row > div:nth-child(1) { order: 3; } /* Form */
  .booking-page .container > .row > div:nth-child(2) { order: 1; } /* Summary */
  .booking-page .container > .row > div:nth-child(3) { order: 2; } /* Vehicle */

  .booking-page .glass-panel { padding: 30px 20px !important; border-left-width: 6px !important; }
  .booking-page h2 { font-size: 26px !important; }
  .booking-page .booking-summary { position: static; }
}
