/* Process Section Styles */
.process-section {
  padding: 40px 0;
}

.process-step {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: flex-start;
  position: relative;
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.process-step.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 768px) {
  .process-step {
    gap: 48px;
  }
}

/* Left Column: Content */
.process-content {
  padding-top: 8px;
  text-align: left;
}

/* Middle Column: Timeline */
.process-timeline {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  min-height: 400px;
  padding-top: 8px;
  padding-left: 16px;
  padding-right: 16px;
  position: relative;
}

.process-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 20px;
  z-index: 10;
  position: relative;
  flex-shrink: 0;
  color: #000;
  background: linear-gradient(180deg, #ffffff 0%, #d0d0d0 100%);
  box-shadow: 
    0 6px 15px rgba(0, 0, 0, 0.4),
    0 2px 6px rgba(0, 0, 0, 0.25),
    inset 0 2px 3px rgba(255, 255, 255, 1),
    inset 0 -3px 8px rgba(0, 0, 0, 0.25);
  border: none;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-number span {
  position: relative;
  z-index: 2;
}

.process-number::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.2) 100%);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(1px);
  z-index: 1;
}

.process-step.is-active .process-number {
  transform: scale(1.1);
  box-shadow: 
    0 0 25px rgba(255, 235, 140, 0.7),
    0 15px 35px rgba(0, 0, 0, 0.45),
    inset 0 2px 3px rgba(255, 255, 255, 1),
    inset 0 -3px 8px rgba(0, 0, 0, 0.3);
}

.process-line-container {
  width: 1px;
  background-color: #333;
  position: absolute;
  top: 52px;
  bottom: -120px;
  overflow: hidden;
  left: 50%;
  transform: translateX(-50%);
}

.process-step.is-last .process-line-container {
  background: linear-gradient(to bottom, #333, transparent);
  bottom: 0;
  height: 100%;
}

.process-line-fill {
  width: 100%;
  height: 0%;
  background-color: #fff;
  display: block;
  transition: height 0.1s linear;
}

.process-step.is-last .process-line-fill {
  background: linear-gradient(to bottom, #fff, transparent);
}

/* Right Column: Media */
.process-media {
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
  background: transparent;
  border: none;
  box-shadow: none;
}

.process-media:hover {
  transform: scale(1.02);
}

.process-media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Mobile Styles */
.mobile-step-header {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.process-number-mobile {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 20px;
  flex-shrink: 0;
  color: #000;
  background: linear-gradient(180deg, #ffffff 0%, #d0d0d0 100%);
  box-shadow: 
    0 6px 15px rgba(0, 0, 0, 0.4),
    0 2px 6px rgba(0, 0, 0, 0.25),
    inset 0 2px 3px rgba(255, 255, 255, 1),
    inset 0 -3px 8px rgba(0, 0, 0, 0.25);
  border: none;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.6);
  position: relative;
}

.process-number-mobile::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.2) 100%);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(1px);
  z-index: 1;
}

.process-number-mobile span {
  position: relative;
  z-index: 2;
}

.desktop-only {
  display: block;
}

@media (max-width: 767px) {
  .process-step {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 64px;
  }
  
  .process-timeline {
    display: none;
  }
  
  .mobile-step-header {
    display: flex;
  }
  
  .desktop-only {
    display: none;
  }
  
  .process-title {
    margin-bottom: 0 !important;
    font-size: 32px !important;
    line-height: 1.2 !important;
  }

  .process-desc {
    font-size: 32px !important; 
    line-height: 1.2 !important;
  }
  
  .process-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

/* Typography overrides */
.process-title {
  margin-top: 0;
  margin-bottom: 16px;
}

.process-desc {
  margin-bottom: 0;
}

/* 3D Button Styles with shimmer */
.navbar-btn.w-button,
.navbar-btn-smaller.w-button {
  color: #000 !important;
  background: linear-gradient(180deg, #ffffff 0%, #d0d0d0 100%) !important;
  border-radius: 31.25rem !important;
  font-weight: 800 !important;
  line-height: 140% !important;
  transition: all .3s ease !important;
  box-shadow: 
    0 12px 30px rgba(0, 0, 0, 0.4),
    0 4px 12px rgba(0, 0, 0, 0.25),
    inset 0 2px 3px rgba(255, 255, 255, 1),
    inset 0 -3px 8px rgba(0, 0, 0, 0.25) !important;
  transform: translateY(0) !important;
  position: relative !important;
  border: none !important;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.6) !important;
  overflow: hidden !important;
}

/* Blurred border effect */
.navbar-btn.w-button::before,
.navbar-btn-smaller.w-button::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.2) 100%);
  border-radius: 31.25rem;
  pointer-events: none;
  filter: blur(1px);
  z-index: 1;
}

/* Shimmer effect */
.navbar-btn.w-button::after,
.navbar-btn-smaller.w-button::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, 
    rgba(255, 255, 255, 0) 0%, 
    rgba(255, 255, 255, 0.6) 50%, 
    rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
  z-index: 2;
  animation: shimmer 10s infinite;
}

@keyframes shimmer {
  0%, 90% { left: -100%; }
  100% { left: 200%; }
}

/* Keep text above effects */
.navbar-btn.w-button > *,
.navbar-btn-smaller.w-button > * {
  position: relative;
  z-index: 3;
}

.navbar-btn.w-button:hover,
.navbar-btn-smaller.w-button:hover {
  background: linear-gradient(180deg, #ffffff 0%, #c0c0c0 100%) !important;
  box-shadow: 
    0 0 35px rgba(255, 235, 140, 0.7),
    0 15px 35px rgba(0, 0, 0, 0.45),
    inset 0 2px 3px rgba(255, 255, 255, 1),
    inset 0 -3px 8px rgba(0, 0, 0, 0.3) !important;
  transform: translateY(-2px) scale(1.02) !important;
}

.navbar-btn.w-button:active,
.navbar-btn-smaller.w-button:active {
  background: linear-gradient(180deg, #d0d0d0 0%, #a5a5a5 100%) !important;
  transform: translateY(1px) scale(0.98) !important;
  box-shadow: 
    0 6px 20px rgba(0, 0, 0, 0.35),
    0 0 25px rgba(255, 235, 140, 0.5),
    inset 0 3px 6px rgba(0, 0, 0, 0.3) !important;
}

/* Responsive button sizing for mobile */
@media screen and (max-width: 767px) {
  .navbar-btn.w-button {
    font-size: 24px !important;
    padding: 10px 20px !important;
  }
  
  .navbar-btn-smaller.w-button {
    font-size: 14px !important;
    padding: 8px 16px !important;
  }
}

@media screen and (max-width: 479px) {
  .navbar-btn.w-button {
    font-size: 20px !important;
    padding: 8px 16px !important;
  }
  
  .navbar-btn-smaller.w-button {
    font-size: 12px !important;
    padding: 6px 12px !important;
  }
}

.w-slider-dot {
  background-color: #737373;
  width: 19px;
  height: 19px;
  border-radius: 500px;
  border: 1px solid #737373;
}

.w-slider-dot.w-active {
  background-color: #D9D9D9;
  width: 19px;
  height: 19px;
  border-radius: 500px;
  border: 1px solid #D9D9D9;
}

/* Testimonials */
.testimonials-section {
  background-color: #000;
  padding: 80px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all .3s ease;
}

.testimonial-card:hover {
  transform: scale(1.02);
  border-color: #3a3a3a;
}

.testimonial-header {
  display: flex;
  align-items: start;
  gap: 16px;
}

.testimonial-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-info {
  flex: 1;
}

.testimonial-name {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px 0;
  line-height: 1.3;
}

.testimonial-title {
  font-size: 14px;
  color: #a0a0a0;
  margin: 0;
  line-height: 1.4;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
  margin: 0;
}

.testimonial-more {
  font-size: 14px;
  color: #fff;
  text-decoration: underline;
  cursor: pointer;
  align-self: flex-start;
  margin-top: -8px;
}

.testimonial-more:hover {
  opacity: 0.8;
}

.testimonial-date {
  font-size: 14px;
  color: #a0a0a0;
  margin: 8px 0 0 0;
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 20px;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .testimonial-card {
    padding: 24px;
  }

  .s8_inner {
    padding-bottom: 0 !important;
  }
}

/* FAQ Section */
.faq-section {
  background-color: #000;
  padding: 80px 0;
  color: #fff;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-title {
  text-align: center;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(#e2dcdc, #fff);
  -webkit-background-clip: text;
  background-clip: text;
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 4rem;
  font-weight: 800;
  line-height: 120%;
  display: inline-block;
}

.faq-item {
  border-bottom: 1px solid #2a2a2a;
  margin-bottom: 0;
}

.faq-question {
  padding: 24px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 120%;
  color: #fff;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #d9d9d9;
}

.faq-answer {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
  color: #a0a0a0;
  font-size: 1rem;
  line-height: 150%;
  font-weight: 400;
}

.faq-answer.active {
  height: auto;
  padding-bottom: 24px;
}

.faq-icon {
  width: 24px;
  height: 24px;
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background-color: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}

.faq-icon::before {
  width: 2px;
  height: 16px;
}

.faq-icon::after {
  width: 16px;
  height: 2px;
}

.faq-item.active .faq-icon::before {
  transform: translate(-50%, -50%) rotate(90deg);
}

@media (max-width: 767px) {
  .faq-title {
    font-size: 3rem;
  }

  .faq-question {
    font-size: 1.25rem;
  }
}

@media (max-width: 479px) {
  .faq-title {
    font-size: 2.25rem;
  }

  .faq-question {
    font-size: 1.125rem;
  }
}
