/* ========================================
   DYNAMIC SECTIONS CSS
   ======================================== */

/* Steps Section Styles - Clean Design */
.booking-steps-section-new {
  background: white;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 3rem 0;
  position: relative;
  min-height: auto;
  overflow: visible;
}

/* Container */
.booking-steps-section-new .container {
  position: relative;
  z-index: 1;
}

/* Section header */
.section-header {
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

/* Section title - clean design */
.section-title {
  font-weight: bold;
  margin: 0;
  line-height: 1.2;
  position: relative;
  z-index: 1;
  color: #333;
  font-size: 2rem;
}

/* Steps container */
.booking-steps-container {
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

/* Step cards - clean design without boxes */
.step-card {
  text-align: center;
  padding: 1rem 0;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  position: relative;
  z-index: 1;
  border: none;
  opacity: 1;
  visibility: visible;
}

.step-card:hover {
  transform: none;
  background: transparent;
  box-shadow: none;
  border-color: transparent;
}

/* Step icons - clean design */
.step-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 3rem;
  background: transparent;
  border-radius: 0;
  transition: all 0.3s ease;
  box-shadow: none;
  position: relative;
  z-index: 1;
  border: none;
}

.step-icon i {
  font-size: 3rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  color: #dc3545;
}

.step-card:hover .step-icon i {
  transform: none;
}

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

/* Step title - clean design */
.step-title {
  font-weight: bold;
  margin: 0;
  line-height: 1.3;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  color: #333;
  font-size: 1rem;
}

.step-card:hover .step-title {
  transform: none;
}

/* Why Choose Us Section Styles */
.why-choose-section-new {
  background: white;
  padding: 4rem 0;
  position: relative;
}

.why-choose-container {
  background: white;
  border-radius: 50px;
  padding: 3rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.man-image-container {
  text-align: center;
}

.man-image {
  max-width: 100%;
  height: auto;
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.why-choose-content {
  padding-left: 2rem;
}

.why-choose-title {
  font-weight: bold;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.why-choose-title span {
  color: #dc3545;
}

.features-grid {
  margin-top: 2rem;
}

.feature-item {
  text-align: center;
  padding: 1.5rem 1rem;
  transition: all 0.3s ease;
  border-radius: 50px;
  background: #f8f9fa;
  margin-bottom: 1rem;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(220, 53, 69, 0.2);
  background: white;
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
  transform: scale(1.1);
}

.feature-title {
  font-weight: bold;
  margin: 0;
  line-height: 1.3;
  transition: all 0.3s ease;
}

.feature-item:hover .feature-title {
  transform: scale(1.05);
}

/* Statistics Section */
.statistics-section {
  background: #333;
  border-radius: 50px;
  padding: 3rem 2rem;
  margin-top: 2rem;
}

.statistic-item {
  padding: 1rem;
  transition: all 0.3s ease;
}

.statistic-item:hover {
  transform: translateY(-5px);
}

.statistic-number {
  font-weight: bold;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.statistic-label {
  font-weight: 500;
  opacity: 0.9;
  line-height: 1.2;
}

/* Responsive Design */
@media (max-width: 768px) {
  .booking-steps-section-new {
    padding: 2rem 0;
  }
  
  .section-title {
    font-size: 1.75rem !important;
  }
  
  .step-card {
    padding: 0.5rem 0;
  }
  
  .step-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
  }
  
  .step-icon i {
    font-size: 2.5rem;
  }
  
  .step-title {
    font-size: 0.9rem !important;
  }
  
  .why-choose-container {
    padding: 2rem 1.5rem;
  }
  
  .why-choose-content {
    padding-left: 0;
    padding-top: 2rem;
  }
  
  .why-choose-title {
    font-size: 2rem !important;
    text-align: center;
  }
  
  .feature-item {
    padding: 1rem 0.5rem;
  }
  
  .feature-icon {
    font-size: 2rem;
  }
  
  .feature-title {
    font-size: 0.9rem !important;
  }
  
  .statistics-section {
    padding: 2rem 1rem;
  }
  
  .statistic-number {
    font-size: 2.5rem !important;
  }
  
  .statistic-label {
    font-size: 1rem !important;
  }
}

@media (max-width: 576px) {
  .booking-steps-section-new {
    padding: 1.5rem 0;
  }
  
  .section-title {
    font-size: 1.5rem !important;
  }
  
  .step-icon {
    width: 50px;
    height: 50px;
  }
  
  .step-icon i {
    font-size: 2rem;
  }
  
  .step-title {
    font-size: 0.85rem !important;
  }
  
  .why-choose-container {
    padding: 1.5rem 1rem;
  }
  
  .why-choose-title {
    font-size: 1.75rem !important;
  }
  
  .feature-icon {
    font-size: 1.8rem;
  }
  
  .feature-title {
    font-size: 0.8rem !important;
  }
  
  .statistic-number {
    font-size: 2rem !important;
  }
  
  .statistic-label {
    font-size: 0.9rem !important;
  }
}

/* Remove all animations for steps section */
.step-card {
  opacity: 1 !important;
  transform: none;
  animation: none;
}

@keyframes fadeInUp {
  from {
    opacity: 1;
    transform: none;
  }
  to {
    opacity: 1;
    transform: none;
  }
} 