:root {
  --sop-primary: #3498db;
  --sop-secondary: #15416e;
  --sop-bg: #f5faff;
  --sop-price: #e67e22;
}

.service-detail-page {
  background: linear-gradient(120deg, #f5faff 70%, #e6eafd 100%);
  min-height: 100vh;
}

/* Service Header */
.service-detail-page .service-header {
  padding-top: 40px;
  padding-bottom: 30px;
  position: relative;
}

.service-detail-page .service-badge {
  display: inline-block;
  background: linear-gradient(90deg, #3498db 70%, #41c7c7 100%);
  color: #fff;
  font-weight: 600;
  border-radius: 40px;
  padding: 8px 24px;
  letter-spacing: 1px;
  font-size: 1rem;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(52, 152, 219, 0.07);
}

.service-detail-page .service-header h1 {
  color: var(--sop-secondary);
  font-size: 2.3rem;
  font-weight: 700;
}
.service-detail-page .service-header p {
  color: #416485;
  font-size: 1.13rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Price Badge */
.service-detail-page .service-price-badge {
  background: linear-gradient(90deg, #e5e4fd 60%, #f8d7a0 100%);
  display: inline-flex;
  align-items: baseline;
  border-radius: 32px;
  padding: 10px 36px 10px 20px;
  font-size: 1.35rem;
  box-shadow: 0 3px 12px rgba(230,126,34,0.08);
}
.service-detail-page .service-price {
  color: var(--sop-price);
  font-weight: 800;
  font-size: 2.3rem;
  margin: 0 8px;
}
.service-detail-page .price-label {
  color: #2ecc71;
  font-size: 1.08rem;
  margin-right: 5px;
}
.service-detail-page .price-desc {
  color: #888;
  font-size: 1rem;
  margin-left: 7px;
}

.service-detail-page .delivery-time {
  font-size: 1.04rem;
}

/* Overview & Features */
.service-detail-page .service-image {
  border-radius: 1.2rem;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  max-height: 340px;
  object-fit: cover;
  width: 100%;
}
.service-detail-page .service-features-simple {
  list-style: disc inside;
  margin: 0 0 18px 0;
  padding-left: 20px;
}
.service-detail-page .service-features-simple li {
  margin-bottom: 10px;
  font-size: 1.08rem;
  color: #185390;
  font-weight: 500;
  line-height: 1.5;
}
.sample-section table thead th,
.sample-section table tbody td {
  font-size: 0.98rem;
  text-align: left;
  vertical-align: middle;
}
.sample-section .table {
  border-radius: 1rem;
  overflow: hidden;
}
.service-detail-page .service-features li b {
  font-weight: 600;
  color: #1165c7;
}
.service-detail-page .badge {
  font-size: 1em;
  box-shadow: 0 2px 8px rgba(52,152,219,0.08);
}

/* Why Us Section */
.service-detail-page .why-us-section .why-box {
  background: #fff;
  border: 1px solid #d0e6f7;
  transition: box-shadow 0.2s;
}
.service-detail-page .why-us-section .why-box:hover {
  box-shadow: 0 4px 24px rgba(52, 152, 219, 0.12);
}
.service-detail-page .why-us-section h3 {
  color: var(--sop-secondary);
}

/* FAQ */
.service-detail-page .faq-section .accordion-button {
  font-weight: 600;
  background: #f6fafd;
  color: #15416e;
  border-radius: 8px 8px 0 0;
}
.service-detail-page .faq-section .accordion-item {
  margin-bottom: 12px;
  border-radius: 8px;
  border: 1px solid #e0e9f3;
}
.service-detail-page .faq-section .accordion-body {
  background: #fafdff;
  color: #233b56;
  font-size: 1.07rem;
  border-radius: 0 0 8px 8px;
}

/* WhatsApp Button */
.service-detail-page .contact-whatsapp.btn-success {
  background: #25d366;
  border: none;
  border-radius: 50px;
  padding: 14px 40px;
  font-size: 1.12rem;
  font-weight: 600;
  transition: background 0.2s;
}
.service-detail-page .contact-whatsapp.btn-success:hover {
  background: #128c7e;
}
.service-detail-page .contact-whatsapp i {
  font-size: 1.2em;
  margin-right: 6px;
  vertical-align: -2px;
}

.comparison-table .table {
  border-radius: 1rem;
  overflow: hidden;
}
.visa-checklist-list {
  list-style: disc inside;
  color: #185390;
  font-size: 1.06rem;
  margin: 0 0 12px 0;
  padding-left: 22px;
}


/* Responsive */
@media (max-width: 991.98px) {
  .service-detail-page .container {
    padding-left: 18px;
    padding-right: 18px;
  }
  .service-detail-page .row.align-items-center {
    flex-direction: column;
  }
  .service-detail-page .service-image {
    margin-bottom: 22px;
  }
}
@media (max-width: 576px) {
  .service-detail-page .service-header h1 {
    font-size: 1.35rem;
  }
  .service-detail-page .service-price-badge {
    padding: 8px 16px;
    font-size: 1rem;
  }
}


/* ---------- Other Services Cards (add to services.css) ---------- */
.other-services .section-title {
  color: var(--sop-secondary);
  font-size: 1.6rem;
  font-weight: 700;
}

.service-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.service-card {
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  border: 1px solid rgba(21,65,110,0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  min-height: 92px;
  align-items: center;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 32px rgba(21,65,110,0.08);
  border-color: rgba(52,152,219,0.12);
  text-decoration: none;
}

.service-card-icon {
  font-size: 1.9rem;
  line-height: 1;
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(52,152,219,0.08), rgba(65,199,199,0.04));
  color: var(--sop-primary);
  box-shadow: 0 6px 18px rgba(52,152,219,0.04);
}

.service-card-body .service-card-title {
  color: var(--sop-secondary);
  font-size: 1.02rem;
  font-weight: 700;
  margin: 0;
}

.service-card-body .service-card-desc {
  color: #3b5f7f;
  font-size: 0.945rem;
  margin-top: 4px;
  line-height: 1.35;
}

/* CTA arrow at right */
.service-card-cta {
  color: #8aa9c9;
  font-size: 1.35rem;
  align-self: center;
}

/* make cards equal height */
@media (min-width: 768px) {
  .service-card {
    min-height: 110px;
  }
}

/* responsive spacing */
@media (max-width: 575.98px) {
  .service-card-icon {
    width: 46px;
    height: 46px;
    font-size: 1.45rem;
  }
  .service-card-body .service-card-title {
    font-size: 0.98rem;
  }
  .service-card-body .service-card-desc {
    font-size: 0.9rem;
  }
}
