/* Premium Booking Section Styles */
.premium-booking-section {
  padding: 100px 0;
  background: linear-gradient(135deg, 
    rgba(255, 97, 0, 0.05) 0%, 
    rgba(255, 140, 0, 0.03) 25%, 
    rgba(255, 165, 0, 0.04) 50%, 
    rgba(255, 140, 0, 0.03) 75%, 
    rgba(255, 97, 0, 0.05) 100%);
  position: relative;
  overflow: hidden;
}

.premium-booking-section::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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ff6100" opacity="0.08"/><circle cx="75" cy="75" r="1" fill="%23ff8c00" opacity="0.06"/><circle cx="50" cy="10" r="0.5" fill="%23ffa500" opacity="0.05"/><circle cx="10" cy="60" r="0.5" fill="%23ff6100" opacity="0.04"/><circle cx="90" cy="40" r="0.5" fill="%23ff8c00" opacity="0.06"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

/* Section Header */
.section-header {
  position: relative;
  z-index: 2;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
  line-height: 1.2;
}

.section-title .highlight {
  background: linear-gradient(135deg, #ff6100, #ff8330);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #64748b;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
  font-weight: 400;
}

/* Booking Step Cards */
.booking-step-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.1),
    0 1px 3px rgba(0, 0, 0, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.booking-step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 97, 0, 0.05), rgba(255, 131, 48, 0.05));
  border-radius: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.booking-step-card:hover::before {
  opacity: 1;
}

.booking-step-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.15),
    0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: rgba(255, 97, 0, 0.2);
}

/* Step Icon Container */
.step-icon-container {
  position: relative;
  margin-bottom: 30px;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ff6100, #ff8330);
  color: white;
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(255, 97, 0, 0.3);
  transition: all 0.3s ease;
}

.booking-step-card:hover .step-icon {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(255, 97, 0, 0.4);
}

.step-icon svg {
  transition: all 0.3s ease;
}

.booking-step-card:hover .step-icon svg {
  transform: scale(1.1);
}

/* Step Content */
.step-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.step-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 15px;
  font-family: 'Inter', sans-serif;
}

.step-description {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* Step Arrow */
.step-arrow {
  position: absolute;
  top: 50%;
  right: -15px;
  transform: translateY(-50%);
  color: #ff6100;
  opacity: 0.6;
  transition: all 0.3s ease;
  z-index: 3;
}

.booking-step-card:hover .step-arrow {
  opacity: 1;
  transform: translateY(-50%) translateX(5px);
}

/* Hide arrow on last card */
.booking-step-card:last-child .step-arrow {
  display: none;
}

/* Call to Action */
.booking-cta {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 50px 40px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.1),
    0 8px 25px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.booking-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 97, 0, 0.05), rgba(255, 131, 48, 0.05));
  border-radius: 24px;
  z-index: 1;
}

.cta-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 15px;
  font-family: 'Inter', sans-serif;
  position: relative;
  z-index: 2;
}

.cta-description {
  font-size: 1.1rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #ff6100, #ff8330);
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 97, 0, 0.3);
  position: relative;
  z-index: 2;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(255, 97, 0, 0.4);
  color: white;
  text-decoration: none;
}

.cta-button svg {
  transition: transform 0.3s ease;
}

.cta-button:hover svg {
  transform: translateX(3px);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .section-title {
    font-size: 2.5rem;
  }
  
  .booking-step-card {
    padding: 35px 25px;
  }
}

@media (max-width: 992px) {
  .premium-booking-section {
    padding: 80px 0;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
  }
  
  .booking-step-card {
    padding: 30px 20px;
    margin-bottom: 30px;
  }
  
  .step-arrow {
    display: none;
  }
  
  .booking-cta {
    padding: 40px 30px;
  }
  
  .cta-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .premium-booking-section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .booking-step-card {
    padding: 25px 20px;
  }
  
  .step-icon {
    width: 70px;
    height: 70px;
  }
  
  .step-title {
    font-size: 1.3rem;
  }
  
  .step-description {
    font-size: 0.95rem;
  }
  
  .booking-cta {
    padding: 30px 20px;
  }
  
  .cta-title {
    font-size: 1.6rem;
  }
  
  .cta-description {
    font-size: 1rem;
  }
  
  .cta-button {
    padding: 14px 28px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.8rem;
  }
  
  .booking-step-card {
    padding: 20px 15px;
  }
  
  .step-icon {
    width: 60px;
    height: 60px;
  }
  
  .step-title {
    font-size: 1.2rem;
  }
  
  .step-description {
    font-size: 0.9rem;
  }
  
  .booking-cta {
    padding: 25px 15px;
  }
  
  .cta-title {
    font-size: 1.4rem;
  }
  
  .cta-button {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
}
