/* ============================================
   REKLAND MEDYA - Service Pages Styles
   ============================================ */

/* ---------- Service Hero ---------- */
.service-hero {
  position: relative;
  padding: 180px 0 100px;
  background: var(--gray-900);
  overflow: hidden;
}

.service-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 30%, rgba(230,57,70,0.12), transparent),
    radial-gradient(ellipse 40% 40% at 20% 70%, rgba(230,57,70,0.06), transparent);
  z-index: 1;
}

.service-hero .hero-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
  background-size: 80px 80px;
}

.service-hero .container {
  position: relative;
  z-index: 2;
}

.service-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
}

.service-hero-breadcrumb a {
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}

.service-hero-breadcrumb a:hover {
  color: var(--red-primary);
}

.service-hero-breadcrumb span {
  color: var(--red-primary);
}

.service-hero-icon {
  width: 80px;
  height: 80px;
  border-radius: 22px;
  background: rgba(230,57,70,0.12);
  border: 1px solid rgba(230,57,70,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.service-hero-icon svg {
  width: 36px;
  height: 36px;
  color: var(--red-primary);
}

.service-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--white);
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  max-width: 700px;
}

.service-hero-desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.5);
  max-width: 600px;
  line-height: 1.8;
  margin-bottom: 36px;
}

.service-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-hero-tag {
  padding: 8px 18px;
  border-radius: 60px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}

/* ---------- Service Content ---------- */
.service-content {
  background: var(--white);
}

.service-content .container {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 80px;
  align-items: flex-start;
}

.service-main h2 {
  font-size: 1.8rem;
  color: var(--gray-900);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.service-main h3 {
  font-size: 1.3rem;
  color: var(--gray-900);
  margin-top: 40px;
  margin-bottom: 14px;
}

.service-main p {
  font-size: 1.02rem;
  color: var(--gray-600);
  line-height: 1.85;
  margin-bottom: 16px;
}

.service-main ul {
  margin: 16px 0 24px;
  list-style: none;
}

.service-main ul li {
  position: relative;
  padding: 8px 0 8px 28px;
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.7;
}

.service-main ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: var(--red-primary);
  opacity: 0.7;
}

/* Sidebar */
.service-sidebar {
  position: sticky;
  top: 100px;
}

.service-sidebar-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 24px;
}

.service-sidebar-card h4 {
  font-size: 1.1rem;
  color: var(--gray-900);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-200);
}

.service-nav-list {
  list-style: none;
}

.service-nav-list li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 0.92rem;
  color: var(--gray-600);
  font-weight: 500;
  transition: all 0.3s var(--transition-smooth);
}

.service-nav-list li a::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: var(--gray-300);
  transition: background 0.3s;
  flex-shrink: 0;
}

.service-nav-list li a:hover,
.service-nav-list li a.active {
  background: var(--white);
  color: var(--red-primary);
  box-shadow: var(--shadow-sm);
}

.service-nav-list li a:hover::before,
.service-nav-list li a.active::before {
  background: var(--red-primary);
}

.service-sidebar-cta {
  background: linear-gradient(135deg, var(--red-primary), var(--red-dark));
  border: none;
  color: var(--white);
}

.service-sidebar-cta h4 {
  color: var(--white);
  border-bottom-color: rgba(255,255,255,0.15);
}

.service-sidebar-cta p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-sidebar-cta .btn {
  width: 100%;
  justify-content: center;
}

/* ---------- Process / Steps Section ---------- */
.service-process {
  background: var(--gray-50);
}

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

.service-process-header .section-subtitle {
  margin: 0 auto;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: var(--gray-200);
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-step-number {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--white);
  border: 2px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--red-primary);
  transition: all 0.4s var(--transition-smooth);
}

.process-step:hover .process-step-number {
  background: var(--red-primary);
  border-color: var(--red-primary);
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: var(--shadow-red);
}

.process-step h4 {
  font-size: 1.05rem;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.6;
  max-width: 240px;
  margin: 0 auto;
}

/* ---------- Service CTA ---------- */
.service-cta {
  background: var(--gray-900);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.service-cta::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--red-primary);
  opacity: 0.04;
  filter: blur(100px);
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
}

.service-cta .container {
  position: relative;
  z-index: 1;
}

.service-cta h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.service-cta p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.service-cta .btn {
  display: inline-flex;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .service-content .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .service-sidebar-card {
    margin-bottom: 0;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .process-steps::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .service-hero {
    padding: 140px 0 70px;
  }

  .service-sidebar {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
