/* =========================================================
   HIZMETLER OVERVIEW PAGE
   ========================================================= */

/* Highlights → shared .page-highlights / .page-hero-stats in main.css */

/* ----- Expertise grid ----- */
.sv-expertise {
  padding: 36px 0 88px;
}

.sv-expertise-head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  margin-bottom: clamp(36px, 5vw, 52px);
}

.sv-expertise-head .sp-kicker {
  margin-bottom: 10px;
}

.sv-expertise-head h2 {
  margin: 0;
  font-family: "Newsreader", serif;
  font-size: clamp(1.95rem, 3.5vw, 2.75rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: var(--ink);
}

.sv-expertise-aside > p {
  max-width: 34ch;
}

.sv-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.sv-special-wrap {
  margin-top: 22px;
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

.sv-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 100%;
  padding: 28px 26px 24px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(27, 36, 32, 0.06);
  box-shadow: 0 18px 40px -28px rgba(27, 36, 32, 0.42);
  color: inherit;
  transition:
    transform 0.35s var(--ease),
    border-color 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}

.sv-card:hover {
  transform: translateY(-3px);
  border-color: rgba(197, 133, 93, 0.28);
  box-shadow: 0 24px 44px -24px rgba(27, 36, 32, 0.45);
}

.sv-card-main {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.sv-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--ochre-wash, rgba(197, 133, 93, 0.14));
  color: var(--ochre);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.sv-card-icon svg {
  width: 26px;
  height: 26px;
}

.sv-card-icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.sv-card h3 {
  margin: 0;
  font-family: "Newsreader", serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.25;
  letter-spacing: -0.015em;
  overflow-wrap: break-word;
}

.sv-card-main > p,
.sv-card-special-intro > p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 46ch;
}

.sv-card-children {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.sv-card-children a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 16px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--ochre) 11%, #f7f2eb);
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}

.sv-card-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ochre);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--ochre) 18%, transparent);
}

.sv-card-child-label {
  min-width: 0;
}

.sv-card-children a:hover {
  background: color-mix(in srgb, var(--ochre) 18%, #f7f2eb);
  color: var(--ink);
}

.sv-card-more-details {
  display: flex;
  flex-direction: column;
  margin: 0;
  gap: 10px;
}

.sv-card-more-details > summary {
  order: 2;
  list-style: none;
  cursor: pointer;
  width: fit-content;
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ochre);
  user-select: none;
}

.sv-card-more-details > summary::-webkit-details-marker {
  display: none;
}

.sv-card-more-details > summary::after {
  content: "";
  display: inline-block;
  width: 0.45em;
  height: 0.45em;
  margin-left: 0.45em;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: translateY(-0.12em) rotate(45deg);
  transition: transform 0.2s var(--ease);
  vertical-align: middle;
}

.sv-card-more-details[open] > summary::after {
  transform: translateY(0.08em) rotate(225deg);
}

.sv-card-more-details > summary:hover {
  text-decoration: underline;
}

.sv-card-more-details .sv-card-more-count__less {
  display: none;
}

.sv-card-more-details[open] .sv-card-more-count__more {
  display: none;
}

.sv-card-more-details[open] .sv-card-more-count__less {
  display: inline;
}

.sv-card-children--extra {
  order: 1;
  margin: 0;
}

.sv-card-more-count {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
}

.sv-card-more-count a {
  color: var(--ochre);
  text-decoration: none;
}

.sv-card-more-count a:hover {
  text-decoration: underline;
}

.sv-card-media {
  display: block;
  margin-top: 2px;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #ddd6cb;
}

.sv-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s var(--ease);
}

.sv-card:hover .sv-card-media img {
  transform: scale(1.04);
}

.sv-card-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 2px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ochre);
  text-decoration: none;
  width: fit-content;
}

.sv-card-more svg {
  width: 15px;
  height: 15px;
  transition: transform 0.3s var(--ease);
}

.sv-card:hover .sv-card-more svg,
.sv-card--special:hover .sv-card-more svg {
  transform: translateX(3px);
}

/* ----- Special wide card (full row) ----- */
.sv-card--special {
  display: grid;
  grid-template-columns: minmax(220px, 0.85fr) minmax(0, 1.55fr);
  gap: clamp(22px, 3vw, 40px);
  align-items: stretch;
  padding: 20px;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.sv-card--special > * {
  min-width: 0;
  max-width: 100%;
}

.sv-card-special-media {
  display: block;
  border-radius: 18px;
  overflow: hidden;
  min-width: 0;
  max-width: 100%;
  min-height: 280px;
  height: 100%;
  background: #ddd6cb;
  align-self: stretch;
}

.sv-card-special-media img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s var(--ease);
}

.sv-card--special:hover .sv-card-special-media img {
  transform: scale(1.04);
}

.sv-card-special-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
  padding: 8px 12px 8px 0;
  min-width: 0;
}

.sv-card-special-intro {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sv-card-special-intro .sv-card-icon {
  margin-bottom: 2px;
}

.sv-card-children--checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 14px;
  flex: none;
}

.sv-card-children--checks > li,
.sv-card-children--checks a,
.sv-card-child-label {
  min-width: 0;
  max-width: 100%;
}

.sv-card-children--checks a {
  border-radius: 14px;
  align-items: flex-start;
  padding: 12px 14px;
  gap: 10px;
}

.sv-card-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--ochre) 16%, #fff);
  color: var(--ochre);
  flex-shrink: 0;
  display: grid;
  place-items: center;
  margin-top: 1px;
}

.sv-card-check svg {
  width: 12px;
  height: 12px;
}

.sv-card--special > .sv-card-more,
.sv-card-special-body > .sv-card-more {
  margin-top: 4px;
}

/* ----- Values band ----- */
.sv-values {
  margin-top: clamp(48px, 7vw, 72px);
}

.sv-values-rule {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: clamp(28px, 4vw, 40px);
}

.sv-values-rule > span {
  flex: 1;
  height: 1px;
  background: rgba(27, 36, 32, 0.12);
}

.sv-values-rule i {
  width: 28px;
  height: 28px;
  color: var(--ochre);
  display: grid;
  place-items: center;
  flex: none;
}

.sv-values-rule i svg {
  width: 22px;
  height: 22px;
}

.sv-values-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px 24px;
}

.sv-values-list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.sv-values-icon {
  width: 44px;
  height: 44px;
  color: var(--ochre);
  display: grid;
  place-items: center;
}

.sv-values-icon svg {
  width: 36px;
  height: 36px;
}

.sv-values-list strong {
  font-family: "Manrope", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
  max-width: 18ch;
}

/* ----- Process ----- */
.sv-process {
  padding: 20px 0 96px;
  scroll-margin-top: 96px;
}

/* ----- Responsive ----- */
@media (max-width: 1100px) {
  .sv-card--special {
    grid-template-columns: minmax(180px, 0.75fr) minmax(0, 1.4fr);
  }

  .sv-card-children--checks {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .sv-values-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 20px;
  }

  .sv-card-children--checks {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .sv-expertise-head {
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
  }

  .sv-expertise-aside > p {
    max-width: none;
  }

  .sv-grid {
    grid-template-columns: 1fr;
  }

  .sv-card--special {
    grid-template-columns: 1fr;
    padding: 16px;
    min-width: 0;
  }

  .sv-card-special-media {
    width: 100%;
    min-height: 200px;
    aspect-ratio: 16 / 10;
    height: auto;
  }

  .sv-card-special-body {
    padding: 4px 4px 8px;
  }
}

@media (max-width: 480px) {
  .sv-values-list {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sv-card,
  .sv-card-media img,
  .sv-card-special-media img {
    transition: none;
  }

  .sv-card:hover {
    transform: none;
  }
}
