﻿/* service-page.css  shared styles for all individual service pages */
.svc-hero-icon {
  width: 72px;
  height: 72px;
  background: rgba(196, 30, 36, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--orange);
  border: 2px solid rgba(196, 30, 36, 0.4);
  flex-shrink: 0;
}

.svc-main-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--card-shadow);
  object-fit: cover;
  max-height: 420px;
}

.svc-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.svc-feat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.93rem;
  color: #374151;
}

.svc-feat-item i {
  font-size: 1rem;
  flex-shrink: 0;
}

.btn-outline-orange {
  border: 2px solid var(--orange);
  color: var(--orange);
  border-radius: 50px;
  padding: 12px 28px;
  font-weight: 600;
  background: transparent;
  transition: all 0.3s;
}

.btn-outline-orange:hover {
  background: var(--orange);
  color: #fff;
}

.process-step {
  background: #fff;
  border-radius: 16px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--card-shadow);
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  height: 100%;
}

.process-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(30, 42, 56, 0.14);
}

.step-num {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 3.5rem;
  font-weight: 900;
  font-family: 'Montserrat', sans-serif;
  color: rgba(196, 30, 36, 0.08);
  line-height: 1;
}

.step-icon {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, var(--orange), var(--accent));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  margin: 0 auto 16px;
}

.process-step h5 {
  color: var(--dark-blue);
  margin-bottom: 8px;
}

.process-step p {
  color: #6b7280;
  font-size: 0.86rem;
  margin: 0;
}

.related-svc-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 14px;
  padding: 22px 16px;
  box-shadow: var(--card-shadow);
  text-decoration: none;
  text-align: center;
  transition: all 0.35s;
  border: 1.5px solid transparent;
  color: var(--dark-blue);
}

.related-svc-card:hover {
  border-color: var(--orange);
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(196, 30, 36, 0.15);
  color: var(--orange);
}

.rs-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(196, 30, 36, 0.12), rgba(232, 53, 59, 0.18));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--orange);
  transition: all 0.35s;
  border: 1.5px solid rgba(196, 30, 36, 0.2);
}

.related-svc-card:hover .rs-icon {
  background: var(--orange);
  color: #fff;
  box-shadow: var(--orange-glow);
}

.related-svc-card span {
  font-size: 0.88rem;
  font-weight: 600;
}

.pricing-card {
  background: #fff;
  border-radius: 18px;
  padding: 32px 28px;
  box-shadow: var(--card-shadow);
  transition: all 0.35s;
  border-top: 4px solid transparent;
  height: 100%;
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-top-color: var(--orange);
  box-shadow: 0 20px 50px rgba(30, 42, 56, 0.14);
}

.pricing-card.featured {
  border-top-color: var(--orange);
  background: linear-gradient(180deg, rgba(196, 30, 36, 0.04), #fff);
}

.price-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--orange);
  margin-bottom: 10px;
}

.price-title {
  font-size: 1.3rem;
  color: var(--dark-blue);
  font-weight: 700;
  margin-bottom: 14px;
}

.price-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.price-list li {
  font-size: 0.88rem;
  color: #6b7280;
  padding: 7px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  gap: 8px;
}

.price-list li i {
  color: var(--orange);
  font-size: 0.8rem;
}

/* =============================================
   SERVICE PAGE RESPONSIVE
   ============================================= */
@media (max-width: 991px) {
  .svc-main-img {
    max-height: 360px;
  }

  .btn-outline-orange {
    padding: 11px 22px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {

  /* Hero icon smaller */
  .svc-hero-icon {
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
    border-radius: 12px;
  }

  /* Main service image */
  .svc-main-img {
    max-height: 250px;
    border-radius: 14px;
    margin-bottom: 0;
  }

  /* Feature list */
  .svc-features {
    gap: 10px;
  }

  .svc-feat-item {
    font-size: 0.88rem;
    gap: 8px;
  }

  /* Buttons */
  .btn-outline-orange {
    padding: 10px 20px;
    font-size: 0.88rem;
  }

  /* Process steps */
  .process-step {
    padding: 20px 14px;
    border-radius: 14px;
  }

  .step-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    border-radius: 12px;
  }

  .step-num {
    font-size: 2.8rem;
    top: 10px;
    right: 12px;
  }

  .process-step h5 {
    font-size: 0.95rem;
    margin-bottom: 6px;
  }

  .process-step p {
    font-size: 0.82rem;
  }

  /* Related service cards */
  .related-svc-card {
    padding: 18px 12px;
    border-radius: 12px;
  }

  .rs-icon {
    width: 46px;
    height: 46px;
    font-size: 1.1rem;
  }

  .related-svc-card span {
    font-size: 0.82rem;
  }

  /* Pricing cards */
  .pricing-card {
    padding: 24px 18px;
    border-radius: 14px;
  }

  .price-title {
    font-size: 1.1rem;
  }

  .price-list li {
    font-size: 0.84rem;
    padding: 6px 0;
  }
}

@media (max-width: 480px) {

  /* Stack hero icon and heading */
  .d-flex.align-items-center.gap-3.mb-3 {
    gap: 12px !important;
  }

  .svc-hero-icon {
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
    border-radius: 10px;
  }

  /* Image */
  .svc-main-img {
    max-height: 200px;
    border-radius: 12px;
  }

  /* Feature items */
  .svc-feat-item {
    font-size: 0.84rem;
  }

  /* Buttons full width on very small */
  .d-flex.flex-wrap.gap-3 .btn-orange,
  .d-flex.flex-wrap.gap-3 .btn-outline-orange {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* Process steps */
  .process-step {
    padding: 16px 10px;
  }

  .step-icon {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }

  .step-num {
    font-size: 2.2rem;
  }

  /* Pricing */
  .pricing-card {
    padding: 20px 14px;
  }

  .price-title {
    font-size: 1rem;
  }
}