/* Process section – From order to delivery */
#sbv2-process {
  position: relative;
}

/* Order step: Phone, WhatsApp, email, visit – bold white links, no box */
#sbv2-process .sbv2-process-contact-link {
  font-weight: 700;
  color: #fff !important;
  background: none;
  padding: 0;
  text-decoration: none;
  text-shadow: 0 1px 2px rgba(0,0,0,0.8), 0 1px 3px rgba(0,0,0,0.6), 0 0 4px rgba(0,0,0,0.4);
  transition: opacity 0.2s ease;
}
#sbv2-process .sbv2-process-contact-link:hover {
  color: #fff !important;
  opacity: 0.9;
}
#sbv2-process .sbv2-process-contact-link:focus {
  outline: 2px solid #a67c52;
  outline-offset: 2px;
  color: #fff !important;
}

#sbv2-process .sbv2-process-timeline {
  position: relative;
}

/* Connecting line – hidden (removed per design) */
.sbv2-process-line {
  display: none !important;
}

/* Step cards */
.sbv2-process-step {
  position: relative;
  z-index: 1;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  animation: sbv2-process-step-in 0.6s ease-out forwards;
}

.sbv2-process-step[style*="--step: 1"] { animation-delay: 0.1s; }
.sbv2-process-step[style*="--step: 2"] { animation-delay: 0.25s; }
.sbv2-process-step[style*="--step: 3"] { animation-delay: 0.4s; }
.sbv2-process-step[style*="--step: 4"] { animation-delay: 0.55s; }
.sbv2-process-step[style*="--step: 5"] { animation-delay: 0.7s; }
.sbv2-process-step[style*="--step: 6"] { animation-delay: 0.85s; }

@keyframes sbv2-process-step-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Icon circle with number and SVG */
.sbv2-process-step-icon {
  position: relative;
  width: 64px;
  height: 64px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(212, 183, 150, 0.25) 0%, rgba(212, 183, 150, 0.45) 100%);
  border: 2px solid rgba(212, 183, 150, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.sbv2-process-step:hover .sbv2-process-step-icon,
.sbv2-process-step:focus-within .sbv2-process-step-icon {
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(212, 183, 150, 0.35);
  border-color: rgba(212, 183, 150, 0.9);
  background: linear-gradient(135deg, rgba(212, 183, 150, 0.35) 0%, rgba(212, 183, 150, 0.55) 100%);
}

.sbv2-process-step-num {
  position: absolute;
  font-family: Georgia, serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(26, 26, 26, 0.5);
  top: 6px;
  right: 10px;
  line-height: 1;
}

.sbv2-process-step-svg {
  color: #1a1a1a;
  opacity: 0.9;
  transition: transform 0.3s ease, color 0.3s ease;
}

.sbv2-process-step:hover .sbv2-process-step-svg {
  color: #a67c52;
  transform: scale(1.05);
}

/* Pulse ring animation on icon (subtle) */
.sbv2-process-step-icon::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(212, 183, 150, 0.25);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.sbv2-process-step:hover .sbv2-process-step-icon::before {
  opacity: 1;
  animation: sbv2-process-pulse-ring 1.5s ease-out infinite;
}

@keyframes sbv2-process-pulse-ring {
  0% {
    transform: scale(0.95);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.15);
    opacity: 0;
  }
}

/* Mobile: single column layout */
@media (max-width: 639px) {
  .sbv2-process-timeline {
    padding-left: 1.5rem;
  }

  .sbv2-process-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
  }

  .sbv2-process-step-icon {
    margin: 0;
    flex-shrink: 0;
  }

  .sbv2-process-step > h3 {
    margin-top: 0 !important;
  }

  .sbv2-process-step > p {
    margin-bottom: 0;
  }
}

/* Tablet 2-col / 3-col: centered steps */
@media (min-width: 640px) and (max-width: 1023px) {

  .sbv2-process-step {
    display: block;
    text-align: center;
  }

  .sbv2-process-step-icon {
    margin: 0 auto;
  }

  .sbv2-process-step > h3 {
    margin-top: 1rem !important;
  }
}

/* Bring Our Services section closer to process section by 2cm */
#services {
  margin-top: -2cm;
}
