/* Hakkımızda / about section under hero */
.home-about {
  position: relative;
  padding: clamp(64px, 8vw, 100px) clamp(24px, 3.5vw, 48px);
  background-color: #f7f8fa;
  background-image: url("../img/about-bg.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  font-family: "Outfit", sans-serif;
  color: #1a1a1a;
}

.home-about__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 4vw, 56px);
  align-items: center;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}

.home-about__media {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 2px;
  overflow: hidden;
  background: #d8dde4;
  box-shadow: 0 20px 50px rgba(15, 30, 50, 0.12);
}

.home-about__slides {
  position: absolute;
  inset: 0;
}

.home-about__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}

.home-about__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.home-about__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-about__slide-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 28px;
  z-index: 2;
  text-align: center;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
  padding: 0 20px;
}

.home-about__slide-caption strong {
  display: block;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.home-about__slide-caption span {
  display: block;
  font-size: 14px;
  font-weight: 400;
  opacity: 0.92;
}

.home-about__nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  backdrop-filter: blur(4px);
  transition: background 0.2s ease;
}

.home-about__nav:hover {
  background: rgba(255, 255, 255, 0.45);
}

.home-about__nav--prev { left: 12px; }
.home-about__nav--next { right: 12px; }

.home-about__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.home-about__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}

.home-about__dot.is-active {
  background: #fff;
}

.home-about__content {
  padding: 8px 0;
}

.home-about__eyebrow {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #8a93a0;
}

.home-about__title {
  margin: 0 0 18px;
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #111;
}

.home-about__text {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.7;
  color: #333;
}

.home-about__text:last-of-type {
  margin-bottom: 22px;
}

.home-about__acc {
  border-top: 1px solid #e4e7ec;
  margin-bottom: 28px;
}

.home-about__acc-item {
  border-bottom: 1px solid #e4e7ec;
}

.home-about__acc-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  border: none;
  background: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  color: #151515;
}

.home-about__acc-btn svg {
  flex-shrink: 0;
  transition: transform 0.25s ease;
  opacity: 0.7;
}

.home-about__acc-item.is-open .home-about__acc-btn svg {
  transform: rotate(180deg);
}

.home-about__acc-panel {
  display: none;
  padding: 0 0 16px 28px;
  font-size: 14px;
  line-height: 1.65;
  color: #555;
}

.home-about__acc-item.is-open .home-about__acc-panel {
  display: block;
}

.home-about__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  padding: 12px 24px;
  background: #4f8fb8;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: 2px;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.home-about__cta:hover {
  color: #fff;
  text-decoration: none;
  filter: brightness(1.06);
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .home-about__inner {
    grid-template-columns: 1fr;
  }

  .home-about__media {
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }
}
