/* Hakkimizda sayfasina ozel stiller */

.about-page {
  background: #f8f9fb;
}

.about-hero {
  position: relative;
  min-height: 360px;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.about-hero__bg {
  position: absolute;
  inset: 0;
}

.about-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(12, 32, 10, 0.92) 0%, rgba(35, 72, 20, 0.88) 50%, rgba(55, 95, 32, 0.82) 100%);
}

.about-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero__content {
  position: relative;
  z-index: 1;
  color: #fff;
  padding-top: 44px;
  padding-bottom: 44px;
}

.about-hero__eyebrow {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #b8f1be;
  margin-bottom: 8px;
}

.about-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  margin-bottom: 14px;
}

.about-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.95);
}

.about-overview {
  padding: 58px 0 34px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.about-grid--reverse {
  grid-template-columns: 1fr 1.2fr;
}

.about-card {
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 10px;
  overflow: hidden;
}

.about-card--text {
  padding: 28px 26px;
}

.about-card--text h2 {
  font-size: 1.7rem;
  margin-bottom: 12px;
  color: #262626;
}

.about-card--text p {
  color: #5b5b5b;
  margin-bottom: 14px;
}

.about-card--image img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.about-values {
  padding: 20px 0 40px;
}

.about-values h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.9rem;
  color: #262626;
}

.about-values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.about-value {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-top: 4px solid #8bc34a;
  border-radius: 8px;
  padding: 18px 16px;
}

.about-value h3 {
  font-size: 1rem;
  color: #2c2c2c;
  margin-bottom: 8px;
}

.about-value p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.about-process {
  padding: 16px 0 44px;
}

.about-process__head {
  text-align: center;
  margin-bottom: 20px;
}

.about-process__head h2 {
  font-size: 1.9rem;
  margin-bottom: 8px;
}

.about-process__head p {
  color: #666;
}

.about-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.about-step {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 16px;
}

.about-step__num {
  display: inline-block;
  color: #8bc34a;
  font-weight: 800;
  margin-bottom: 6px;
}

.about-step h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.about-step p {
  color: #666;
  font-size: 14px;
  margin: 0;
}

.about-locations {
  padding: 8px 0 60px;
}

.about-cta {
  display: inline-block;
  margin-top: 6px;
  background: #8bc34a;
  color: #fff;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 6px;
}

.about-cta:hover {
  color: #fff;
  background: #8bc34a;
  filter: brightness(0.94);
}

@media (max-width: 992px) {
  .about-grid,
  .about-grid--reverse {
    grid-template-columns: 1fr;
  }

  .about-values__grid,
  .about-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .about-values__grid,
  .about-steps {
    grid-template-columns: 1fr;
  }

  .about-card--text {
    padding: 22px 18px;
  }
}
