/* --- WELCOME SECTION (Hakkımızda Giriş) --- */

.about-welcome {
  display: flex;
  flex-direction: column;
  gap: 30px;
  color: #fff;
  animation: fadeIn 0.8s ease-out;
}

/* Başlık: Hero H1 stili ile uyumlu */
.welcome-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin: 0;
  background: linear-gradient(to right, #ffffff, #4ade80);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -1px;
}

.welcome-content {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  max-width: 900px;
}

.welcome-content strong {
  color: #4ade80;
  font-weight: 700;
}

/* --- ÖZELLİK KUTULARI (GRID) --- */
.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.feature-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
}

.feature-box:hover {
  transform: translateY(-8px);
  background: rgba(74, 222, 128, 0.05);
  border-color: rgba(74, 222, 128, 0.3);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

/* Yan Şerit Efekti */
.feature-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: #4ade80;
  opacity: 0.3;
  transition: 0.3s;
}

.feature-box:hover::before {
  opacity: 1;
  box-shadow: 0 0 15px #4ade80;
}

.feature-box .title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #4ade80;
  margin: 0 0 15px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-box .title i {
  font-size: 1.4rem;
  transition: 0.3s;
}

.feature-box:hover .title i {
  transform: scale(1.2) rotate(5deg);
}

.feature-box .content {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

/* --- ALINTI ALANI (QUOTE) --- */
.about-quote {
  margin-top: 40px;
  padding: 40px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-style: italic;
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  position: relative;
  line-height: 1.6;
}

.about-quote::before {
  content: "\f10d"; /* FontAwesome Quote Left */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 15px;
  left: 20px;
  font-size: 2rem;
  color: rgba(74, 222, 128, 0.1);
  font-style: normal;
}

/* --- ANİMASYONLAR --- */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobil Düzenlemeler */
@media (max-width: 992px) {
  .welcome-title {
    font-size: 2.5rem;
  }
  .welcome-content {
    font-size: 1.1rem;
  }
  .feature-box {
    padding: 25px;
  }
  .about-quote {
    font-size: 1.2rem;
    padding: 35px;
  }
}

@media (max-width: 768px) {
  .welcome-title {
    font-size: 2.2rem;
  }
  .about-features {
    grid-template-columns: 1fr; /* Force single column on tablets too */
  }
  .feature-box .title {
    font-size: 1.15rem;
  }
  .feature-box .content {
    font-size: 0.9rem;
  }
  .about-quote {
    font-size: 1.1rem;
    padding: 30px 25px;
  }
  .about-quote::before {
    font-size: 1.8rem;
    top: 10px;
    left: 15px;
  }
}

@media (max-width: 576px) {
  .welcome-title {
    font-size: 1.8rem;
    text-align: center;
    line-height: 1.2;
  }
  .welcome-content {
    font-size: 1rem;
    text-align: center;
  }
  .about-features {
    gap: 15px;
  }
  .feature-box {
    padding: 20px;
  }
  .feature-box .title {
    font-size: 1.1rem;
    flex-direction: column; /* Stack icon and text */
    align-items: flex-start;
    gap: 5px;
  }
  .feature-box .title i {
    font-size: 1.2rem;
  }
  .feature-box::before {
    width: 3px;
  }
  .about-quote {
    font-size: 1rem;
    padding: 25px 20px;
  }
  .about-quote::before {
    font-size: 1.5rem;
    top: 8px;
    left: 10px;
  }
}

@media (max-width: 400px) {
  .welcome-title {
    font-size: 1.6rem;
  }
  .welcome-content {
    font-size: 0.95rem;
  }
  .feature-box .title {
    font-size: 1rem;
  }
  .feature-box .content {
    font-size: 0.85rem;
  }
  .about-quote {
    font-size: 0.95rem;
    padding: 20px 15px;
  }
  .about-quote::before {
    font-size: 1.2rem;
    top: 5px;
    left: 8px;
  }
}
