/* ========== HOW SNAPBOOK WORKS - Light style ========== */
/* White bg, black text, orange accents */

.how-npr-section {
  position: relative;
  padding: 5rem 2rem;
  overflow: hidden;
  background: #FFFFFF;
}

.how-snapbook-premium {
  background: #FFFFFF;
}

.how-snapbook-premium .how-npr-wrap {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
}

/* Three-step process - line, arches, glowing dots */
.how-snapbook-steps {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0;
  margin-bottom: 3.5rem;
  position: relative;
  padding: 0 0.5rem;
}

.how-snapbook-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,140,0,0.4), rgba(255,140,0,0.7), rgba(255,140,0,0.4), transparent);
  z-index: 0;
}

.how-snapbook-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.how-snapbook-step-arch {
  width: 64px;
  height: 32px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255,140,0,0.8);
  border-bottom: none;
  border-radius: 32px 32px 0 0;
  box-shadow: 0 -2px 16px rgba(255,140,0,0.35);
  background: rgba(255,255,255,0.95);
}

.how-snapbook-step-arch span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #FF8C00;
}

/* Variant: empty arches (no numbers) - for instant booking page */
.how-snapbook-steps-simple .how-snapbook-step-arch {
  min-height: 32px;
}

.how-snapbook-steps-simple .how-npr-title {
  margin-bottom: 2rem;
}

.how-snapbook-steps-simple .how-snapbook-steps {
  margin-bottom: 0;
}

/* Tighter spacing when services follow (instant booking page) */
.how-npr-section.how-snapbook-steps-simple {
  padding-bottom: 2.5rem;
}

.how-npr-section.how-snapbook-steps-simple + main.instant-booking-content {
  padding-top: 2rem !important;
}

.how-snapbook-step-dot {
  position: absolute;
  top: 25px;
  width: 10px;
  height: 10px;
  background: #FF8C00;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(255,140,0,0.7);
  z-index: 3;
  flex-shrink: 0;
}

.how-snapbook-step-dot:nth-of-type(1) { left: 33.33%; transform: translateX(-50%); }
.how-snapbook-step-dot:nth-of-type(2) { left: 66.66%; transform: translateX(-50%); }

.how-snapbook-step-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  color: #FF8C00;
}

.how-snapbook-step-icons svg {
  width: 28px;
  height: 28px;
}

.how-snapbook-step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.5rem;
}

.how-snapbook-step-title span {
  color: #FF8C00;
}

.how-snapbook-step-desc {
  font-size: 0.9rem;
  color: #555555;
  line-height: 1.5;
  margin: 0;
}

/* Intro section - tagline, buttons, stats */
.how-snapbook-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.how-snapbook-intro-text {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: #333333;
  line-height: 1.6;
  max-width: 620px;
  margin: 0 auto 2rem;
}

.how-snapbook-intro-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.how-snapbook-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  background: linear-gradient(135deg, #FF8C00 0%, #E67E22 100%);
  color: #000000;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
}

.how-snapbook-btn-primary svg {
  width: 20px;
  height: 20px;
}

.how-snapbook-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255,140,0,0.4);
}

.how-snapbook-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  background: transparent;
  color: #000000;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  text-decoration: none;
  border: 1px solid rgba(255,140,0,0.7);
  transition: all 0.2s;
}

.how-snapbook-btn-ghost svg {
  width: 20px;
  height: 20px;
  color: #FF8C00;
}

.how-snapbook-btn-ghost:hover {
  background: rgba(255,140,0,0.1);
  border-color: #FF8C00;
}

.how-snapbook-stats {
  font-size: 0.95rem;
  color: #555555;
  margin: 0;
}

/* Title */
.how-npr-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  color: #FF8C00;
  text-align: center;
  margin-bottom: 2.5rem;
  letter-spacing: 0.02em;
}

/* Feature cards - light with orange accents */
.how-npr-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.how-npr-feature-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 18px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.how-npr-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,140,0,0.5), rgba(255,140,0,0.9), rgba(255,140,0,0.5), transparent);
  box-shadow: 0 0 20px rgba(255,140,0,0.4);
}

.how-npr-feature-card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  color: #FF8C00;
}

.how-npr-feature-card-icon svg {
  width: 100%;
  height: 100%;
  color: #FF8C00;
}

.how-npr-feature-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.35rem;
}

.how-npr-feature-card .card-subtitle {
  font-size: 0.95rem;
  color: #555555;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.how-npr-feature-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.how-npr-feature-card li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: #333333;
  margin-bottom: 0.5rem;
}

.how-npr-feature-card li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #FF8C00;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(255,140,0,0.5);
}

.how-npr-feature-card .btn-gold-solid {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #FF8C00 0%, #E67E22 100%);
  color: #000000;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  box-shadow: 0 4px 16px rgba(255,140,0,0.3);
}

.how-npr-feature-card .btn-gold-solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255,140,0,0.5);
}

.how-npr-feature-card .btn-gold-outline {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: transparent;
  color: #000000;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.2s;
  border: 1px solid rgba(255,140,0,0.7);
}

.how-npr-feature-card .btn-gold-outline:hover {
  background: rgba(255,140,0,0.15);
  border-color: #FF8C00;
  transform: translateY(-2px);
}

/* Mobile - horizontal scroll for cards */
@media (max-width: 768px) {
  .how-snapbook-steps {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
  }
  
  .how-snapbook-steps::before {
    display: none;
  }
  
  .how-snapbook-step-dot {
    display: none;
  }
  
  .how-snapbook-step {
    max-width: 280px;
  }
  
  .how-npr-cards {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 1rem;
    padding: 0.5rem 0;
    margin: 0 -1rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }
  
  .how-npr-cards::-webkit-scrollbar {
    height: 6px;
  }
  
  .how-npr-cards::-webkit-scrollbar-track {
    background: rgba(255,140,0,0.1);
    border-radius: 3px;
  }
  
  .how-npr-cards::-webkit-scrollbar-thumb {
    background: rgba(255,140,0,0.5);
    border-radius: 3px;
  }
  
  .how-npr-feature-card {
    flex: 0 0 88%;
    min-width: 300px;
    max-width: 400px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
}

@media (max-width: 600px) {
  .how-npr-section {
    padding: 3rem 1rem;
  }
  
  .how-npr-title {
    font-size: 1.6rem;
  }
  
  .how-npr-feature-card {
    padding: 1.5rem;
    min-width: 280px;
  }
}
