/* ==========================================================
   MASSAGE ARMY SPA - BOOKING STEPS COMPONENT
   ========================================================== */

/* Base Container */
.masarmy-booking-quick {
  max-width: 1100px;
  margin: 40px auto;
  padding: 40px 24px;
  background: linear-gradient(135deg, #f5ecdb 0%, #ffffff 100%);
  border-radius: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  box-sizing: border-box;
}

.masarmy-booking-quick::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #d5893b, #3981d6, #22c55e);
}

/* Header */
.booking-header {
  margin-bottom: 32px;
}

.booking-header h2 {
  font-size: 2rem;
  color: #1a1a1a;
  margin: 0 0 10px;
  font-weight: 700;
}

.booking-header p {
  font-size: 1.05rem;
  color: #666;
  margin: 0;
}

/* Steps Grid (Desktop) */
.booking-steps-simple {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 36px;
  position: relative;
}

.booking-steps-simple::after {
  content: '';
  position: absolute;
  top: 36px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, 
    #d5893b 0%, 
    #d5893b 25%, 
    #3981d6 25%, 
    #3981d6 50%, 
    #22c55e 50%, 
    #22c55e 75%, 
    #6366f1 75%, 
    #6366f1 100%);
  z-index: 0;
  opacity: 0.3;
}

.step-item {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.6);
  padding: 16px 12px;
  border-radius: 16px;
  transition: all 0.3s ease;
  animation: fadeInScale 0.4s ease forwards;
}

.step-item:hover {
  transform: translateY(-5px);
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.step-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 12px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.step-icon.orange { border: 3px solid #d5893b; }
.step-icon.blue { border: 3px solid #3981d6; }
.step-icon.green { border: 3px solid #22c55e; }
.step-icon.purple { border: 3px solid #6366f1; }

.step-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 6px;
}

.step-desc {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.4;
  margin: 0;
}

/* Benefits Badges */
.benefits-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 28px 0;
  flex-wrap: wrap;
}

.benefit-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: #ffffff;
  border-radius: 30px;
  border: 1.5px solid #ffdeaa;
  font-size: 0.9rem;
  font-weight: 600;
  color: #d5893b;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.benefit-badge:hover {
  background: #d5893b;
  color: #ffffff;
  border-color: #d5893b;
}

/* CTA Buttons */
.booking-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

.booking-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.btn-order {
  background: #d5893b;
  color: #ffffff !important;
  border: 2px solid #d5893b;
  box-shadow: 0 4px 14px rgba(213, 137, 59, 0.35);
}

.btn-order:hover {
  background: #be752a;
  color: #ffffff !important;
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: #ffffff !important;
  border: 2px solid #25D366;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background: #1faf53;
  color: #ffffff !important;
  transform: translateY(-2px);
}

.btn-detail {
  background: transparent;
  color: #3981d6 !important;
  border: 2px solid #3981d6;
}

.btn-detail:hover {
  background: #3981d6;
  color: #ffffff !important;
  transform: translateY(-2px);
}

/* Animation */
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive Design - Tablet */
@media (max-width: 900px) {
  .booking-steps-simple::after {
    display: none;
  }
}

/* Responsive Design - Mobile (2 Grid Compact Layout) */
@media (max-width: 600px) {
  .masarmy-booking-quick {
    padding: 24px 14px;
    margin: 20px 10px;
    border-radius: 16px;
  }

  .booking-header {
    margin-bottom: 20px;
  }

  .booking-header h2 {
    font-size: 1.35rem;
  }

  .booking-header p {
    font-size: 0.88rem;
  }

  .booking-steps-simple {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 20px;
  }

  .step-item {
    padding: 12px 8px;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  }

  .step-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
    margin: 0 auto 8px;
  }

  .step-title {
    font-size: 0.95rem;
    margin-bottom: 4px;
  }

  .step-desc {
    font-size: 0.78rem;
    line-height: 1.3;
  }

  .benefits-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin: 20px 0;
  }

  .benefit-badge {
    justify-content: center;
    padding: 6px 8px;
    font-size: 0.78rem;
  }

  .booking-cta {
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
  }

  .booking-cta a {
    width: 100%;
    padding: 12px 16px;
    font-size: 0.92rem;
    box-sizing: border-box;
  }
}