/* =============================================
   service-page.css — Shared styles for all
   Callsoftbd service detail pages
   ============================================= */

/* ---- Content Blocks ---- */
.content-block {
  padding: 2rem 0;
}

.content-block h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
  color: #1a1a2e;
}

.content-block p {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 1.2rem;
}

/* ---- Page Hero ---- */
.page-hero {
  position: relative;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8, 12, 28, 0.92) 0%, rgba(15, 25, 55, 0.78) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 40px 0;
}

.hero-service-icon {
  width: 76px;
  height: 76px;
  border-radius: 18px;
  background: var(--color-primary, #2400A8);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  box-shadow: 0 8px 32px rgba(36, 0, 168, 0.4);
}

.hero-service-icon i {
  font-size: 2.1rem;
  color: #fff;
}

.page-hero-content h1 {
  font-size: 2rem;
  color: #fff;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  flex-wrap: wrap;
}

.breadcrumb-nav a {
  color: var(--color-primary, #2400A8);
  text-decoration: none;
  transition: opacity 0.2s;
}

.breadcrumb-nav a:hover {
  opacity: 0.8;
}

.breadcrumb-nav .sep {
  color: rgba(255, 255, 255, 0.35);
}

.breadcrumb-nav .current {
  color: #fff;
}

/* ---- Service Overview Section ---- */
.service-overview-section {
  background: #fff;
}

.overview-icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--color-primary, #B33170), var(--color-primary2, #93285c));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 28px rgba(36, 0, 168, 0.35);
}

.overview-icon-wrap i {
  font-size: 2.2rem;
  color: #fff;
}

.overview-checklist {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
}

.overview-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #f3f3f3;
  color: #444;
  font-size: 0.95rem;
  line-height: 1.6;
}

.overview-checklist li:last-child {
  border: none;
}

.overview-checklist li i {
  color: var(--color-primary, #2400A8);
  margin-top: 3px;
  flex-shrink: 0;
}

/* ---- Sidebar ---- */
.services-sidebar-widget {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.09);
  overflow: hidden;
}

.ssw-header {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  padding: 20px 24px;
}

.ssw-header h3 {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
}

.ssw-list {
  padding: 16px;
  list-style: none;
  margin: 0;
}

.ssw-list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 8px;
  color: #444;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.92rem;
  transition: all 0.22s;
  border-left: 3px solid transparent;
}

.ssw-list li a:hover,
.ssw-list li a.active {
  background: #f8f6ff;
  border-color: var(--color-primary, #2400A8);
  color: var(--color-primary, #2400A8);
}

.ssw-list li a i {
  width: 18px;
  font-size: 0.88rem;
  color: var(--color-primary, #2400A8);
  flex-shrink: 0;
}

.contact-widget {
  background: linear-gradient(135deg, var(--color-primary, #B33170), var(--color-primary2, #93285c));
  border-radius: 14px;
  padding: 26px 24px;
  margin-top: 24px;
  text-align: center;
}

.contact-widget .cw-big-icon {
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 12px;
  display: block;
}

.contact-widget h4 {
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.contact-widget p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.cw-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px;
  border-radius: 9px;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 10px;
  transition: all 0.25s;
  font-size: 0.95rem;
}

.cw-btn:last-child {
  margin-bottom: 0;
}

.cw-btn-phone {
  background: #fff;
  color: var(--color-primary, #2400A8);
}

.cw-btn-phone:hover {
  background: #1a1a2e;
  color: #fff;
}

.cw-btn-wa {
  background: #25D366;
  color: #fff;
}

.cw-btn-wa:hover {
  background: #128C7E;
  color: #fff;
}

/* ---- Sub-Services Grid ---- */
.sub-services-section {
  background: #f8f9fb;
}

.ssc {
  background: #fff;
  border-radius: 14px;
  padding: 2rem 1.75rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  transition: all 0.35s ease;
  border-bottom: 4px solid transparent;
  height: 100%;
  margin-bottom: 30px;
}

.ssc:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.13);
  border-color: var(--color-primary, #2400A8);
}

.ssc-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary, #B33170), var(--color-primary3, #c74283));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.ssc-icon i {
  font-size: 1.5rem;
  color: #fff;
}

.ssc h3 {
  font-size: 1.12rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
  color: #1a1a2e;
}

.ssc p {
  color: #666;
  font-size: 0.92rem;
  line-height: 1.7;
  margin: 0;
}

/* ---- Process Steps ---- */
.process-section {
  background: #fff;
}

.process-step-box {
  text-align: center;
  padding: 1.5rem 1rem;
  position: relative;
}

.ps-num {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary, #B33170), var(--color-primary2, #93285c));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  font-weight: 900;
  color: #fff;
  margin: 0 auto 1rem;
  box-shadow: 0 6px 20px rgba(36, 0, 168, 0.35);
}

.process-step-box h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #1a1a2e;
}

.process-step-box p {
  font-size: 0.87rem;
  color: #777;
  margin: 0;
  line-height: 1.6;
}

.process-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 28px;
  color: var(--color-primary, #2400A8);
  font-size: 1.5rem;
}

/* ---- Stat Strip ---- */
.stat-strip {
  background: linear-gradient(135deg, #0d1117 0%, #1a1a2e 100%);
  padding: 64px 0;
}

.stat-item {
  text-align: center;
  padding: 16px;
}

.stat-num {
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--color-primary, #2400A8);
  line-height: 1;
  display: block;
}

.stat-lbl {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.95rem;
  margin-top: 0.6rem;
  display: block;
}

/* ---- CTA Section ---- */
.service-cta-sec {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.service-cta-sec::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(36, 0, 168, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.service-cta-sec h2 {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 1rem;
  position: relative;
}

.service-cta-sec p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.12rem;
  margin-bottom: 2.2rem;
  position: relative;
}

.btn-cta-gold {
  background: var(--color-primary, #2400A8);
  color: #fff;
  padding: 16px 42px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  margin: 6px;
  font-size: 1rem;
  position: relative;
}

.btn-cta-gold:hover {
  background: #fff;
  color: var(--color-primary, #2400A8);
}

.btn-cta-outline-white {
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  padding: 14px 40px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  margin: 6px;
  font-size: 1rem;
  position: relative;
}

.btn-cta-outline-white:hover {
  background: #fff;
  color: #1a1a2e;
  border-color: #fff;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .page-hero-content h1 {
    font-size: 2rem;
  }

  .page-hero-content {
    padding: 40px 0;
  }

  .service-cta-sec h2 {
    font-size: 1.8rem;
  }

  .stat-num {
    font-size: 2.5rem;
  }
}