/**
 * Homepage — Dr. Ercüment
 */

.home-page .home-kicker {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-color, #3357a2);
  margin-bottom: 0.5rem;
}

.home-page .section-heading {
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.home-page .section-lead {
  max-width: 640px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

/* Hero — Dr. Ercüment Türkmen (şablon .hero stillerini override) */
.home-page .home-hero.hero {
  min-height: 0;
  padding-top: calc(var(--site-header-height, 7rem) + 1rem);
  padding-bottom: clamp(2.75rem, 5vw, 4rem);
  align-items: stretch;
  overflow: visible;
  background: linear-gradient(
    160deg,
    color-mix(in srgb, var(--accent-color, #3357a2), transparent 95%) 0%,
    var(--surface-color, #fff) 48%
  );
}

.home-page .home-hero.hero::before {
  display: none;
}

.home-page .home-hero .hero-content {
  padding: 0;
  max-width: 36rem;
}

.home-page .home-hero .hero-content h1.home-hero__title {
  font-size: clamp(1.75rem, 3.6vw, 2.5rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
  color: var(--heading-color);
}

.home-page .home-hero .hero-content .hero-description.home-hero__lead {
  font-size: 1rem;
  line-height: 1.65;
  max-width: none;
  margin-bottom: 1.25rem;
  color: color-mix(in srgb, var(--default-color), transparent 18%);
}

.home-page .home-hero .hero-actions.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.home-page .home-hero .hero-actions .btn {
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-size: 0.9375rem;
}

.home-page .home-hero .hero-visual {
  height: auto;
  margin-top: 0;
}

.home-page .home-hero .hero-visual .main-image.home-hero__portrait {
  height: auto;
  border-radius: 12px 12px 0 0;
  box-shadow: none;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-bottom: none;
  overflow: hidden;
  background: color-mix(in srgb, var(--accent-color), transparent 94%);
}

.home-page .home-hero .hero-visual .main-image img.home-hero__portrait-img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(520px, 62vh);
  object-fit: cover;
  object-position: center top;
  aspect-ratio: 4 / 5;
}

.home-hero__physician {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--heading-color, var(--default-color));
  margin: 0;
}

.home-hero__kicker {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-color, #3357a2);
  margin: 0.35rem 0 1rem;
}

.home-hero__title-accent {
  color: var(--accent-color, #3357a2);
}

.home-hero__domains {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.home-hero__domain {
  display: inline-block;
  padding: 0.3rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.35;
  text-decoration: none;
  color: color-mix(in srgb, var(--default-color), transparent 12%);
  background: #fff;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 4px;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.home-hero__domain:hover {
  color: var(--accent-color);
  border-color: color-mix(in srgb, var(--accent-color), transparent 65%);
}

.home-hero__domain--more {
  font-weight: 600;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 94%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 78%);
}

.home-hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  list-style: none;
  padding: 0.85rem 1rem;
  margin: 0 0 1.25rem;
  background: #fff;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 8px;
}

.home-hero__facts li {
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 0 0.25rem;
  border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.home-hero__facts li:last-child {
  border-right: none;
}

.home-hero__facts strong {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--accent-color, #3357a2);
  line-height: 1.2;
}

.home-hero__facts span {
  font-size: 0.6875rem;
  color: color-mix(in srgb, var(--default-color), transparent 42%);
  margin-top: 0.2rem;
}

.home-hero__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 28%);
}

.home-hero__phone a {
  font-weight: 600;
  color: inherit;
  text-decoration: none;
}

.home-hero__phone a:hover {
  color: var(--accent-color);
}

.home-hero__media {
  margin: 0;
  max-width: 480px;
  margin-left: auto;
}

.home-hero__credential {
  margin: 0;
  padding: 0.9rem 1.1rem;
  background: #fff;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-top: none;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.home-hero__credential-label {
  display: block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 45%);
  margin-bottom: 0.35rem;
}

.home-hero__credential p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

@media (max-width: 991.98px) {
  .home-page .home-hero .hero-visual {
    margin-top: 0.5rem;
  }

  .home-hero__media {
    max-width: none;
    margin-left: 0;
  }

  .home-page .home-hero .hero-visual .main-image img.home-hero__portrait-img {
    max-height: 420px;
  }
}

@media (max-width: 575.98px) {
  .home-hero__facts {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .home-hero__facts li {
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
    text-align: left;
    border-right: none;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 94%);
    padding-bottom: 0.5rem;
  }

  .home-hero__facts li:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .home-hero__facts span {
    margin-top: 0;
  }

  .home-page .home-hero .hero-actions.home-hero__actions {
    flex-direction: column;
  }

  .home-page .home-hero .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Hakkımızda görseli — filigransız */
.home-page .home-about__figure {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.08);
}

.home-page .home-about__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 6 / 5;
}

.home-page .home-about .about-visual .main-image.home-about__figure img.home-about__img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Service cards */
.home-service-card {
  background: var(--surface-color, #fff);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 16px;
  padding: 1.5rem;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.home-service-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.home-service-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.home-service-card h3 a {
  color: inherit;
  text-decoration: none;
}

.home-service-card h3 a:hover {
  color: var(--accent-color);
}

.home-service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

.home-service-list li {
  padding: 0.35rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.home-service-list a {
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  text-decoration: none;
  font-size: 0.9375rem;
}

.home-service-list a:hover {
  color: var(--accent-color);
}

.home-service-link {
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  color: var(--accent-color);
}

/* Value chips */
.home-value-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.85rem;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 600;
}

.home-value-chip i {
  color: var(--accent-color);
}

/* Process */
.home-process-step {
  text-align: center;
  padding: 1.5rem 1rem;
  background: #fff;
  border-radius: 16px;
  height: 100%;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.home-process-step__num {
  position: absolute;
  top: 12px;
  right: 14px;
  font-size: 0.75rem;
  font-weight: 800;
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
}

.home-process-step__icon {
  font-size: 2rem;
  color: var(--accent-color);
  display: block;
  margin-bottom: 0.75rem;
}

/* Featured pills */
.home-featured-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 1rem 1.15rem;
  background: var(--surface-color, #fff);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  font-weight: 600;
  transition: border-color 0.2s, background 0.2s;
}

.home-featured-pill:hover {
  border-color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 94%);
  color: var(--accent-color);
}

/* FAQ */
.home-faq-accordion .accordion-item {
  border: none;
  border-radius: 12px !important;
  margin-bottom: 0.65rem;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.home-faq-accordion .accordion-button {
  font-weight: 600;
  font-size: 1rem;
  padding: 1rem 1.25rem;
}

.home-faq-accordion .accordion-button:not(.collapsed) {
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  box-shadow: none;
}

.home-faq-accordion .accordion-body {
  padding: 0 1.25rem 1.15rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.65;
}

/* CTA */
.home-cta-box {
  background: linear-gradient(135deg, #3357a2 0%, #4d7ebf 100%);
  color: #fff;
  border-radius: 20px;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  box-shadow: 0 20px 50px rgba(51, 87, 162, 0.25);
}

.home-cta-box h2 {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 700;
}

@media (max-width: 991.98px) {
  .home-page .hero-stats {
    justify-content: flex-start;
  }
}
