/* about.css - Mobil Uyumlu Hakkımızda Bölümü - DİKEY HİZALAMA DÜZELTİLDİ */

.about-section {
  position: relative;
  min-height: 100vh;
  padding: 10rem 0 4rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  overflow: hidden;
  z-index: 1;
}

.about-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  grid-template-rows: 1fr; /* ← YENİ: Tek satır */
  gap: 4rem;
  align-items: center; /* ← Bu zaten var */
  min-height: 80vh;
}

.about-intro {
  position: relative; /* ← Sticky kaldır */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: center; /* ← YENİ: Kendini ortala */
  z-index: 10;
}

.about-label {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.33, 1, 0.68, 1);
}

.about-label.in-view {
  opacity: 1;
  transform: translateY(0);
}

.about-number {
  font-family: 'Unbounded', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #A71623;
  margin-right: 1rem;
  padding: 0.5rem 1rem;
  border: 1px solid #A71623;
  border-radius: 2px;
}

.about-subtitle {
  font-size: 0.9rem;
  font-weight: 500;
  color: #999;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.about-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: #0a0a0a;
  letter-spacing: -2px;
}

.about-title .title-line {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.33, 1, 0.68, 1);
}

.about-title .title-line.in-view {
  opacity: 1;
  transform: translateY(0);
}

.about-title .title-line:nth-child(2) {
  transition-delay: 0.2s;
}

.about-description {
  margin-top: 2rem;
}

.fade-in-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #666;
  max-width: 450px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 0.4s;
}

.fade-in-text.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Sağ Taraf - İçerik Kartları */
.about-content {
  position: relative;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.content-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.33, 1, 0.68, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}

.content-card.in-view {
  opacity: 1;
  transform: translateY(0);
}

.content-card:nth-child(1) { transition-delay: 0.1s; }
.content-card:nth-child(2) { transition-delay: 0.2s; }
.content-card:nth-child(3) { transition-delay: 0.3s; }
.content-card:nth-child(4) { transition-delay: 0.4s; }

.content-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.card-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

/* ICON GRADIENT - TÜM KARTLAR AYNI RENK TONU (Mavi-Kırmızı) */
.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
  position: relative;
  background: linear-gradient(135deg, #0061EF, #A71623);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(167, 22, 35, 0.3);
}

.card-icon svg {
  width: 28px;
  height: 28px;
  position: relative;
  z-index: 3;
  stroke: currentColor;
  fill: none;
}

/* Tüm kartlar için aynı gradient (artık farklı renkler yok) */
.card-story .card-icon,
.card-vision .card-icon,
.card-values .card-icon,
.card-team .card-icon {
  background: linear-gradient(135deg, #0061EF, #A71623);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(167, 22, 35, 0.3);
}

/* Hover efekti - Ters gradient (tüm kartlarda aynı) */
.content-card:hover .card-icon {
  transform: scale(1.15) rotate(8deg);
  background: linear-gradient(135deg, #A71623, #0061EF);
  box-shadow: 0 10px 40px rgba(167, 22, 35, 0.5);
}

.card-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #0a0a0a;
  margin: 0;
  line-height: 1.3;
}

.card-content {
  position: relative;
  z-index: 2;
}

.card-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

/* Dekoratif Elementler */
.about-decorations {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.deco-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  filter: blur(60px);
}

.deco-1 {
  width: 300px;
  height: 300px;
  background: #A71623;
  top: 10%;
  right: 10%;
  animation: float 6s ease-in-out infinite;
}

.deco-2 {
  width: 200px;
  height: 200px;
  background: #0061EF;
  bottom: 20%;
  left: 15%;
  animation: float 4s ease-in-out infinite reverse;
}

.deco-3 {
  width: 150px;
  height: 150px;
  background: #FFA1CC;
  top: 50%;
  left: 50%;
  animation: float 5s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* ===================================
   RESPONSIVE - MOBİL UYUMLU
   =================================== */

/* Tablet */
@media (max-width: 1024px) {
  .about-section {
    padding: 5rem 0 3rem;
  }
  
  .about-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start; /* ← Mobilde normal akış */
  }
  
  .about-intro {
    position: relative; /* ← Sticky kaldır */
    top: 0;
    transform: none; /* ← Transform kaldır */
  }
  
  .about-title {
    font-size: 3rem;
  }
  
  .content-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .card-icon {
    width: 50px;
    height: 50px;
  }
  
  .card-icon svg {
    width: 24px;
    height: 24px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .about-section {
    padding: 4rem 0 2rem;
  }
  
  .about-container {
    padding: 0 1.5rem;
    gap: 2.5rem;
  }
  
  .about-title {
    font-size: 2.5rem;
    letter-spacing: -1px;
  }
  
  .fade-in-text {
    font-size: 1.1rem;
    max-width: 100%;
  }
  
  .content-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .content-card {
    padding: 1.8rem 1.5rem;
  }
  
  .card-header {
    margin-bottom: 1.2rem;
  }
  
  .card-icon {
    width: 48px;
    height: 48px;
    margin-right: 0.8rem;
  }
  
  .card-icon svg {
    width: 22px;
    height: 22px;
  }
  
  .card-title {
    font-size: 1.2rem;
  }
  
  .card-content p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .deco-1 {
    width: 200px;
    height: 200px;
  }
  
  .deco-2 {
    width: 150px;
    height: 150px;
  }
  
  .deco-3 {
    width: 100px;
    height: 100px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .about-section {
    padding: 3rem 0 2rem;
  }
  
  .about-container {
    padding: 0 1rem;
  }
  
  .about-label {
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
  }
  
  .about-number {
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
  }
  
  .about-subtitle {
    font-size: 0.8rem;
  }
  
  .about-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .fade-in-text {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .content-card {
    padding: 1.5rem 1.2rem;
  }
  
  .card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }
  
  .card-icon svg {
    width: 20px;
    height: 20px;
  }
  
  .card-title {
    font-size: 1.1rem;
  }
  
  .card-content p {
    font-size: 0.9rem;
  }
}