/* =========================
   Booking Page Styles
========================= */

/* Booking Banner */
.booking-banner {
  background: linear-gradient(135deg, #f8fcff 0%, #e8f4fd 50%, #d6ecf6 100%);
  color: var(--bg-dark);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.booking-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="booking-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(10,189,227,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(10,189,227,0.05)"/><circle cx="50" cy="10" r="1" fill="rgba(10,189,227,0.05)"/><circle cx="10" cy="60" r="1" fill="rgba(10,189,227,0.05)"/><circle cx="90" cy="40" r="1" fill="rgba(10,189,227,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23booking-grain)"/></svg>');
  opacity: 0.6;
}

.booking-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.booking-banner h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
  background: linear-gradient(45deg, var(--primary-color), var(--primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.booking-banner .subtitle {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  opacity: 0.8;
  font-weight: 500;
  line-height: 1.6;
  color: var(--bg-dark);
}

.booking-banner .description {
  font-size: 1.1rem;
  margin-bottom: 3rem;
  opacity: 0.7;
  line-height: 1.7;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: var(--light-text);
}

.booking-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.booking-stat {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(10, 189, 227, 0.2);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(10, 189, 227, 0.1);
}

.booking-stat:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 30px rgba(10, 189, 227, 0.15);
}

.booking-stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.booking-stat-label {
  font-size: 1rem;
  opacity: 0.8;
  font-weight: 500;
  color: var(--bg-dark);
}

/* Booking Section */
.booking-section {
  padding: 80px 0;
  background: var(--white);
}

.booking-container {
  max-width: 1000px;
  margin: 0 auto;
}

/* Booking Steps */
.booking-step {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}

.booking-step.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.step-header {
  text-align: center;
  margin-bottom: 3rem;
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 20px rgba(10, 189, 227, 0.3);
}

.step-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--bg-dark);
  margin-bottom: 1rem;
}

.step-header p {
  font-size: 1.1rem;
  color: var(--light-text);
  max-width: 600px;
  margin: 0 auto;
}

/* Package Selection */
.package-selection {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.package-option {
  position: relative;
}

.package-radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.package-card {
  display: block;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  border: 3px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.package-radio:checked + .package-card {
  border-color: var(--primary-color);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(10, 189, 227, 0.2);
}

.package-radio:checked + .package-card::before {
  content: '✓';
  position: absolute;
  top: 15px;
  right: 15px;
  width: 30px;
  height: 30px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  z-index: 2;
}

.package-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.package-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.package-card:hover .package-image img {
  transform: scale(1.05);
}

.package-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-color);
  border: 1px solid rgba(10, 189, 227, 0.2);
}

.package-content {
  padding: 2rem;
}

.package-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bg-dark);
  margin-bottom: 1rem;
}

.package-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.meta-item {
  background: rgba(10, 189, 227, 0.1);
  color: var(--primary-color);
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid rgba(10, 189, 227, 0.2);
}

.package-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.highlight {
  background: rgba(10, 189, 227, 0.05);
  color: var(--primary-color);
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(10, 189, 227, 0.15);
}

.package-pricing {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.original-price {
  color: #9ca3af;
  text-decoration: line-through;
  font-weight: 600;
  font-size: 1rem;
}

.current-price {
  color: var(--primary-color);
  font-weight: 800;
  font-size: 1.3rem;
}

.discount {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

/* Booking Form */
.booking-form {
  background: var(--white);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  border: 1px solid #e8f4fd;
}

.selected-package-info {
  background: linear-gradient(135deg, rgba(10, 189, 227, 0.1), rgba(10, 189, 227, 0.05));
  border: 1px solid rgba(10, 189, 227, 0.2);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.selected-package-info h3 {
  color: var(--primary-color);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.package-summary {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.package-summary span {
  color: var(--bg-dark);
  font-weight: 500;
}

.form-section {
  margin-bottom: 2.5rem;
}

.form-section h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--bg-dark);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(10, 189, 227, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  color: var(--bg-dark);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.8rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background: var(--white);
  font-family: 'Inter', sans-serif;
  width:auto;
  margin-bottom:1px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(10, 189, 227, 0.1);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.checkbox-group input[type="checkbox"] {
  margin-top: 0.2rem;
  transform: scale(1.2);
  width:auto;
}

.checkbox-group label {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--light-text);
}

.checkbox-group a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

.checkbox-group a:hover {
  text-decoration: underline;
}

/* Step Actions */
.step-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 3rem;
  gap: 1rem;
}

.btn-next,
.btn-back,
.btn-submit {
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-next,
.btn-submit {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  box-shadow: 0 4px 15px rgba(10, 189, 227, 0.3);
}

.btn-next:hover,
.btn-submit:hover {
  background: linear-gradient(135deg, var(--primary-dark), #036a8a);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(10, 189, 227, 0.4);
}

.btn-next:disabled {
  background: #e2e8f0;
  color: #9ca3af;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-back {
  background: transparent;
  color: var(--light-text);
  border: 2px solid #e2e8f0;
}

.btn-back:hover {
  background: #f8fafc;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

/* Confirmation Step */
.confirmation-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.confirmation-icon {
  font-size: 4rem;
  margin-bottom: 2rem;
}

.confirmation-content h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--bg-dark);
  margin-bottom: 1rem;
}

.confirmation-content p {
  font-size: 1.1rem;
  color: var(--light-text);
  line-height: 1.6;
  margin-bottom: 3rem;
}

.booking-summary {
  background: linear-gradient(135deg, rgba(10, 189, 227, 0.1), rgba(10, 189, 227, 0.05));
  border: 1px solid rgba(10, 189, 227, 0.2);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 3rem;
  text-align: left;
}

.booking-summary h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  text-align: center;
}

.summary-details {
  display: grid;
  gap: 1rem;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(10, 189, 227, 0.1);
}

.summary-item:last-child {
  border-bottom: none;
  font-weight: 700;
  font-size: 1.1rem;
}

.summary-item .label {
  color: var(--light-text);
  font-weight: 500;
}

.summary-item .value {
  color: var(--bg-dark);
  font-weight: 600;
}

.next-steps {
  background: var(--white);
  border: 1px solid #e8f4fd;
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 3rem;
  text-align: left;
}

.next-steps h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--bg-dark);
  margin-bottom: 1.5rem;
  text-align: center;
}

.next-steps ul {
  list-style: none;
  padding: 0;
}

.next-steps li {
  padding: 0.8rem 0;
  color: var(--light-text);
  font-size: 1rem;
  line-height: 1.5;
}

.confirmation-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-home,
.btn-contact {
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-home {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  box-shadow: 0 4px 15px rgba(10, 189, 227, 0.3);
}

.btn-home:hover {
  background: linear-gradient(135deg, var(--primary-dark), #036a8a);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(10, 189, 227, 0.4);
}

.btn-contact {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-contact:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .booking-banner {
    padding: 60px 0;
  }
  
  .booking-banner h1 {
    font-size: 2.5rem;
  }
  
  .booking-banner .subtitle {
    font-size: 1.2rem;
  }
  
  .booking-banner .description {
    font-size: 1rem;
  }
  
  .booking-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
  }
  
  .booking-stat {
    padding: 1.5rem;
  }
  
  .booking-stat-number {
    font-size: 2rem;
  }
  
  .booking-section {
    padding: 60px 0;
  }
  
  .step-header h2 {
    font-size: 2rem;
  }
  
  .package-selection {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .booking-form {
    padding: 2rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .step-actions {
    flex-direction: column;
    gap: 1rem;
  }
  
  .btn-next,
  .btn-back,
  .btn-submit {
    width: 100%;
    max-width: 300px;
  }
  
  .confirmation-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-home,
  .btn-contact {
    width: 100%;
    max-width: 250px;
  }
}

@media (max-width: 480px) {
  .booking-stats {
    grid-template-columns: 1fr;
  }
  
  .booking-form {
    padding: 1.5rem;
  }
  
  .package-content {
    padding: 1.5rem;
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

/* Payment Section */
.payment-section {
  margin-top: 2rem;
  padding: 2rem;
  background: linear-gradient(135deg, #f8fcff 0%, #e8f4fd 100%);
  border-radius: 16px;
  border: 2px solid rgba(10, 189, 227, 0.1);
  text-align: center;
}

.payment-section h4 {
  color: var(--bg-dark);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.payment-section .form-hint {
  color: var(--light-text);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.payment-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.payu-btn {
  display: inline-block;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  padding: 1rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
  border: none;
  cursor: pointer;
  min-width: 200px;
}

.payu-btn:hover {
  background: linear-gradient(135deg, #059669, #047857);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
  color: white;
  text-decoration: none;
}

.payment-info {
  margin-top: 0.5rem;
}

.payment-info small {
  color: var(--light-text);
  font-size: 0.9rem;
  opacity: 0.8;
}