/* ============================================
   SERVICE DETAIL PAGE — hizmet.php
   ============================================ */

.service-hero {
  padding: 140px 0 64px;
  background: linear-gradient(160deg, var(--primary-deep) 0%, var(--primary) 60%, var(--primary-light) 100%);
  color: #fff;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.service-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 30%, rgba(37,99,235,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.service-hero .container {
  max-width: 900px;
  position: relative;
  z-index: 1;
}

.service-hero .tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37,99,235,0.2);
  color: var(--accent-pale);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: 1px solid rgba(37,99,235,0.2);
  margin-bottom: 16px;
}

.service-hero h1 {
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  margin: 16px 0 16px;
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.service-hero p {
  opacity: 0.7;
  font-size: 1.0625rem;
  max-width: 660px;
  line-height: 1.7;
}

.service-content {
  padding: var(--section-y) 0;
}

.service-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 56px;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.service-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 36px;
  box-shadow: var(--shadow-lg);
}

.service-image img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.service-image:hover img {
  transform: scale(1.03);
}

.service-detail-text {
  color: var(--muted);
  line-height: 1.85;
  font-size: 1.0625rem;
}

.service-detail-text p {
  margin-bottom: 20px;
}

.service-features {
  margin-top: 36px;
}

.service-features h3 {
  font-size: 1.25rem;
  margin-bottom: 20px;
  color: var(--ink);
}

.service-feature-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
  align-items: flex-start;
}

.service-feature-item:last-child { border-bottom: none; }

.service-feature-item svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.service-feature-item span {
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.service-cta {
  margin-top: 48px;
  padding: 36px;
  background: var(--accent-pale);
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid var(--accent-pale);
}

.service-cta h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
  color: var(--ink);
}

.service-cta p {
  color: var(--muted);
  margin-bottom: 24px;
  font-size: 0.9375rem;
}

.other-services {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  position: sticky;
  top: 100px;
  box-shadow: var(--shadow-sm);
}

.other-services h3 {
  padding: 20px 24px;
  font-size: 0.9375rem;
  font-weight: 700;
  border-bottom: 1px solid var(--line);
  margin: 0;
  background: var(--bg);
  color: var(--ink);
}

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

.other-services-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line-soft);
  transition: all 0.2s var(--ease);
  text-decoration: none;
  font-size: 0.9375rem;
}

.other-services-list li:last-child a { border-bottom: none; }

.other-services-list a:hover {
  background: var(--accent-pale);
  color: var(--accent);
  padding-left: 28px;
}

.other-services-list a.active {
  color: var(--accent);
  font-weight: 600;
  background: var(--accent-pale);
  border-left: 3px solid var(--accent);
}

.other-services-list a svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .service-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .other-services { position: static; }

  .service-hero { padding: 120px 0 48px; }
}

@media (max-width: 600px) {
  .service-hero { padding: 100px 0 40px; }
  .service-cta { padding: 28px 24px; }
  .service-layout { gap: 32px; }
}
