/* Professional Booking Guide Section */
.booking-guide {
  padding: 8rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
  position: relative;
  overflow: hidden;
}

.booking-guide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(247, 183, 49, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(51, 102, 255, 0.05) 0%, transparent 50%);
  z-index: 0;
}

.booking-guide .container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.booking-guide .section-title {
  font-size: 3rem;
  font-weight: 800;
  color: #1a202c;
  text-align: center;
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.booking-guide .section-title::after {
  content: '';
  display: block;
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #f7b731 0%, #f97316 50%, #3366ff 100%);
  margin: 1.5rem auto 0;
  border-radius: 2px;
}

/* Enhanced Important Notice */
.important-notice {
  max-width: 1000px;
  margin: 0 auto 4rem;
  background: linear-gradient(135deg, 
    rgba(247, 183, 49, 0.08) 0%, 
    rgba(249, 115, 22, 0.05) 50%, 
    rgba(255, 255, 255, 0.9) 100%);
  border-radius: 20px;
  border: 1px solid rgba(247, 183, 49, 0.2);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.05),
    0 10px 25px rgba(247, 183, 49, 0.1);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.important-notice::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(to bottom, #f7b731, #f97316);
  border-radius: 0 0 3px 0;
}

.important-notice:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.08),
    0 15px 35px rgba(247, 183, 49, 0.15);
}

.notice-content {
  display: flex;
  padding: 2.5rem;
  align-items: flex-start;
}

.notice-icon {
  font-size: 3rem;
  color: #f7b731;
  margin-right: 2rem;
  flex-shrink: 0;
  background: rgba(247, 183, 49, 0.1);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(247, 183, 49, 0.2);
}

.notice-text h3 {
  font-size: 1.6rem;
  color: #1a202c;
  margin-bottom: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.notice-text p {
  color: #4a5568;
  margin-bottom: 1rem;
  line-height: 1.7;
  font-size: 1.05rem;
}

.notice-text p:last-child {
  margin-bottom: 0;
}

.notice-text p strong {
  color: #f97316;
  font-weight: 600;
}

/* Professional Guide Grid */
.guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

/* Enhanced Guide Cards */
.guide-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.04),
    0 10px 25px rgba(0, 0, 0, 0.02),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
}

.guide-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(247, 183, 49, 0.3), transparent);
}

.guide-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 
    0 35px 70px rgba(0, 0, 0, 0.08),
    0 20px 45px rgba(247, 183, 49, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* Professional Card Headers */
.booking-guide .card-header {
  background: linear-gradient(135deg, #f7b731 0%, #f97316 50%, #ea580c 100%);
  color: white;
  padding: 2rem;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.booking-guide .card-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.booking-guide .card-header i {
  font-size: 2.2rem;
  margin-right: 1.2rem;
  background: rgba(255, 255, 255, 0.15);
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.booking-guide .card-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.booking-guide .selected-price {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.2rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.95);
  color: #1a202c;
  padding: 0.6rem 1.2rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: scale(0.8) translateY(-10px);
  z-index: 10;
}

.booking-guide .selected-price:not(:empty) {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.booking-guide .selected-price::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, rgba(247, 183, 49, 0.3), rgba(249, 115, 22, 0.2));
  border-radius: 17px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.booking-guide .selected-price:not(:empty)::before {
  opacity: 1;
}

/* Enhanced Pricing Lists */
.booking-guide .pricing-list {
  padding: 2rem;
}

.booking-guide .price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1rem;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 12px;
  margin-bottom: 0.5rem;
  cursor: pointer;
}

.booking-guide .price-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.booking-guide .price-item:hover {
  background: linear-gradient(135deg, rgba(247, 183, 49, 0.05) 0%, rgba(51, 102, 255, 0.03) 100%);
  transform: translateX(8px);
  box-shadow: 0 4px 12px rgba(247, 183, 49, 0.1);
}

.booking-guide .vehicle-type {
  font-weight: 600;
  color: #2d3748;
  font-size: 1.05rem;
}

.booking-guide .booking-price-tag {
  font-weight: 700;
  color: #f97316;
  font-size: 1.1rem;
  background: rgba(249, 115, 22, 0.1);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  border: 1px solid rgba(249, 115, 22, 0.2);
  transition: all 0.3s ease;
  text-shadow: none;
  box-shadow: 0 2px 8px rgba(249, 115, 22, 0.1);
}

.booking-guide .price-item:hover .booking-price-tag {
  background: rgba(249, 115, 22, 0.15);
  border-color: rgba(249, 115, 22, 0.3);
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.2);
}

.booking-guide .price-tag-price {
  background: var(--taxi-yellow);
  box-shadow: 0 2px 10px #0000001a;
  color: var(--taxi-dark);
  font-weight: 600;
  padding: .5rem 1rem;
  position: absolute;
  right: 1rem;
  top: 1rem;
}

/* Enhanced Payment Info */
.payment-info {
  padding: 2rem;
}

.payment-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding: 1rem;
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
}

.payment-feature:hover {
  background: linear-gradient(135deg, rgba(247, 183, 49, 0.04) 0%, rgba(51, 102, 255, 0.02) 100%);
  transform: translateX(8px);
  border-color: rgba(247, 183, 49, 0.1);
  box-shadow: 0 4px 12px rgba(247, 183, 49, 0.08);
}

.payment-feature i {
  color: #f7b731;
  font-size: 1.4rem;
  margin-right: 1.2rem;
  background: linear-gradient(135deg, rgba(247, 183, 49, 0.1) 0%, rgba(51, 102, 255, 0.05) 100%);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  flex-shrink: 0;
  box-shadow: 0 4px 8px rgba(247, 183, 49, 0.15);
}

.payment-feature p {
  margin: 0;
  color: #4a5568;
  line-height: 1.6;
  font-size: 1.05rem;
  font-weight: 400;
}

/* Professional Assistance Note */
.assistance-note {
  margin-top: 2rem;
  padding: 1.8rem;
  background: linear-gradient(135deg, 
    rgba(51, 102, 255, 0.08) 0%, 
    rgba(99, 102, 241, 0.05) 50%, 
    rgba(139, 92, 246, 0.03) 100%);
  border-radius: 16px;
  border: 1px solid rgba(51, 102, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.assistance-note::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #3366ff, #6366f1);
  border-radius: 0 2px 2px 0;
}

.assistance-note p {
  margin: 0;
  color: #3366ff;
  font-weight: 500;
  line-height: 1.6;
  font-size: 1.05rem;
  padding-left: 1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .guide-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .booking-guide {
    padding: 6rem 0;
  }
  
  .booking-guide .section-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .booking-guide {
    padding: 4rem 0;
  }
  
  .booking-guide .container {
    padding: 0 1.5rem;
  }
  
  .booking-guide .section-title {
    font-size: 2.2rem;
  }
  
  .notice-content {
    flex-direction: column;
    padding: 2rem;
    text-align: center;
  }
  
  .notice-icon {
    margin-right: 0;
    margin-bottom: 1.5rem;
  }
  
  .guide-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .booking-guide .card-header {
    padding: 1.5rem;
  }
  
  .booking-guide .card-header i {
    width: 45px;
    height: 45px;
    font-size: 1.8rem;
  }
  
  .booking-guide .card-header h3 {
    font-size: 1.3rem;
  }
  
  .booking-guide .price-item:hover {
    transform: translateX(4px);
  }
  
  .payment-feature:hover {
    transform: translateX(4px);
  }
}

@media (max-width: 480px) {
  .booking-guide .section-title {
    font-size: 1.9rem;
  }
  
  .notice-content {
    padding: 1.5rem;
  }
  
  .notice-text h3 {
    font-size: 1.4rem;
  }
  
  .notice-text p {
    font-size: 1rem;
  }
  
  .booking-guide .card-header {
    padding: 1.2rem;
  }
  
  .booking-guide .pricing-list,
  .payment-info {
    padding: 1.5rem;
  }
} 