/* ============================================================
   LEISTUNGEN.CSS — Kolkowsky GmbH Services page
   ============================================================ */

/* ── Page Hero ──────────────────────────────────────────── */
#leistungen-hero {
  height: 50vh;
  min-height: 340px;
}

/* ── Services Grid ──────────────────────────────────────── */
#services-grid {
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-surface) 100%);
}

#services-grid .container {
  width: min(1500px, calc(100vw - clamp(1.5rem, 4vw, 4rem)));
  max-width: 1500px;
}

.services-grid__header {
  text-align: center;
  margin-bottom: 5rem;
}


.services-sections {
  display: flex;
  flex-direction: column;
  gap: clamp(4rem, 7vw, 7rem);
  margin-top: 3rem;
}

.service-section {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(360px, 0.9fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  overflow: hidden;

  border-radius: 0;
  background: transparent;
  box-shadow: none;
  border: none;
}

.service-section--reverse {
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.3fr);
}

.service-section--reverse .service-section__media {
  order: 2;
}

.service-section__media {
  min-height: 460px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.service-section__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-section__content {
  padding: clamp(1.5rem, 4vw, 3.5rem) clamp(1rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.15rem;
  align-self: center;
}

.service-section__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.2vw, 3rem);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text);
}

.service-section__desc {
  font-size: 1.03rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  max-width: 60ch;
}

.service-section__price {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  padding-top: 0.75rem;
  border-top: 1px solid var(--color-border);
}

@media (max-width: 900px) {
  .service-section,
  .service-section--reverse {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .service-section--reverse .service-section__media {
    order: 0;
  }

  .service-section__media {
    min-height: 240px;
  }
}

.services-grid__cta {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
}

.services-grid__cta .btn {
  font-size: 0.95rem;
  padding: 0.75rem 1.5rem;
}

/* ── FAQ Accordion ──────────────────────────────────────── */
#faq {
  background: var(--color-surface);
}

.faq__header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq__list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--color-white);
}

.faq-item__trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  text-align: left;
  transition: background-color var(--transition);
}

.faq-item__trigger:hover {
  background: rgba(37,99,168,0.04);
}

.faq-item__trigger[aria-expanded="true"] {
  background: rgba(37,99,168,0.05);
}

.faq-item__question {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--color-text);
}

.faq-item__chevron {
  width: 20px;
  height: 20px;
  color: var(--color-accent);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item__trigger[aria-expanded="true"] .faq-item__chevron {
  transform: rotate(180deg);
}

.faq-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item__body.open {
  max-height: 400px;
}

.faq-item__answer {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}
