/* BOOKING PAGE STYLES */

/* Override Header for Booking Page */
.topbar {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

/* Hero Section */
.booking-hero {
  position: relative;
  background: url('images/booking/booking-hero.jpg') center/cover no-repeat;
  padding: 120px 0 100px;
  margin-top: 0;
  overflow: hidden;
  min-height: 400px;
}

.booking-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(42, 42, 42, 0.75) 100%);
  z-index: 1;
  pointer-events: none;
}

.booking-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(240,166,35,0.1) 0%, rgba(26,26,26,0.8) 100%);
}

.booking-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.booking-hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.booking-hero-content p {
  font-size: 18px;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* Booking Section */
.booking-section {
  padding: 80px 0;
  background: #f8f8f8;
}

/* Form Card */
.booking-form-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.booking-form-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 32px;
  color: #1a1a1a;
  position: relative;
  padding-bottom: 16px;
}

.booking-form-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #f0a623 0%, #d9991a 100%);
}

/* Modern Form Groups */
.form-group-modern {
  margin-bottom: 24px;
}

.form-group-modern label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  color: #333;
  margin-bottom: 8px;
}

.form-group-modern label svg {
  stroke: #f0a623;
  flex-shrink: 0;
}

.form-group-modern input,
.form-group-modern textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  font-size: 15px;
  transition: all 0.3s ease;
  background: #fff;
}

.form-group-modern input:focus,
.form-group-modern textarea:focus {
  outline: none;
  border-color: #f0a623;
  box-shadow: 0 0 0 4px rgba(240,166,35,0.1);
}

.form-group-modern textarea {
  resize: vertical;
  min-height: 120px;
  font-family: 'Roboto', sans-serif;
}

/* Submit Button */
.btn-booking-submit {
  width: 100%;
  padding: 16px 32px;
  background: linear-gradient(135deg, #f0a623 0%, #d9991a 100%);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(240,166,35,0.3);
  margin-top: 32px;
}

.btn-booking-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(240,166,35,0.4);
}

.btn-booking-submit svg {
  stroke: #fff;
}

/* Custom Alerts */
.alert-success-custom,
.alert-error-custom {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 24px;
  font-size: 15px;
}

.alert-success-custom {
  background: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}

.alert-success-custom svg {
  stroke: #155724;
  flex-shrink: 0;
}

.alert-error-custom {
  background: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
}

.alert-error-custom svg {
  stroke: #721c24;
  flex-shrink: 0;
}

/* Info Card */
.booking-info-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  margin-bottom: 24px;
}

.booking-info-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #1a1a1a;
}

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

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

.info-item:first-child {
  padding-top: 0;
}

.info-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(240,166,35,0.1) 0%, rgba(240,166,35,0.2) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-icon svg {
  stroke: #f0a623;
}

.info-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #1a1a1a;
}

.info-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.info-content a {
  color: #f0a623;
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-content a:hover {
  color: #d9991a;
}

/* Tips Card */
.booking-tips-card {
  background: linear-gradient(135deg, #f0a623 0%, #d9991a 100%);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 8px 32px rgba(240,166,35,0.3);
  color: #fff;
}

.booking-tips-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.booking-tips-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.booking-tips-card ul li {
  padding: 12px 0 12px 28px;
  position: relative;
  font-size: 14px;
  line-height: 1.6;
}

.booking-tips-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 12px;
  font-weight: 700;
  font-size: 16px;
}

/* Responsive */
@media (max-width: 991px) {
  .booking-hero {
    padding: 100px 0 80px;
    min-height: 350px;
  }
  
  .booking-hero-content h1 {
    font-size: 36px;
  }
  
  .booking-form-card {
    padding: 32px 24px;
  }
  
  .booking-info-card,
  .booking-tips-card {
    padding: 24px;
  }
}

@media (max-width: 768px) {
  .booking-hero {
    padding: 80px 0 60px;
    min-height: 300px;
  }
  
  .booking-hero-content h1 {
    font-size: 32px;
    padding: 0 20px;
  }
  
  .booking-hero-content p {
    font-size: 16px;
    padding: 0 20px;
  }
  
  .booking-section {
    padding: 40px 0;
  }
  
  .booking-form-card {
    padding: 24px 20px;
  }
  
  .booking-form-title {
    font-size: 24px;
  }
  
  .form-group-modern input,
  .form-group-modern textarea {
    padding: 12px 14px;
    font-size: 14px;
  }
  
  .btn-booking-submit {
    padding: 14px 24px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .booking-hero {
    padding: 60px 0 50px;
    min-height: 280px;
  }
  
  .booking-hero-content h1 {
    font-size: 26px;
    padding: 0 16px;
  }
  
  .booking-hero-content p {
    font-size: 14px;
    padding: 0 16px;
  }
}
