/* ============================================
   İÇ SAYFALAR — HAKKIMIZDA & İLETİŞİM ORTAK
   ============================================ */

/* ============================================
   HAKKIMIZDA — Hikaye
   ============================================ */
.story-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}
.story-block__visual {
  border-radius: var(--r-2xl);
  overflow: hidden;
  background: var(--g-hero);
  aspect-ratio: 4 / 3;
  position: relative;
  box-shadow: var(--shadow-xl);
}
.story-block__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--g-glow), var(--g-glow-blue);
}
.story-block__visual-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--on-dark);
  padding: var(--space-8);
  text-align: center;
}
.story-block__year {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 900;
  background: var(--g-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.04em;
  line-height: 1;
}
.story-block__year-label {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: var(--space-3);
  font-weight: 600;
}
.story-block__text h2 {
  font-family: var(--font-display);
  font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
  font-weight: 800;
  color: var(--on-light);
  margin-bottom: var(--space-5);
  letter-spacing: -0.025em;
  line-height: 1.2;
}
.story-block__text p {
  color: var(--on-light-2);
  line-height: 1.85;
  margin-bottom: var(--space-4);
}

/* Zaman çizelgesi */
.timeline {
  position: relative;
  padding-left: 60px;
  max-width: 820px;
  margin-inline: auto;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--cyan) 0%, var(--blue) 50%, var(--purple) 100%);
}
.timeline-item {
  position: relative;
  padding-bottom: var(--space-8);
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item__dot {
  position: absolute;
  left: -52px;
  top: 4px;
  width: 56px;
  height: 56px;
  background: var(--white);
  border: 2px solid var(--cyan-border);
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--blue);
  font-size: var(--text-sm);
  box-shadow: var(--shadow-sm);
}
.timeline-item__year {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-1);
}
.timeline-item__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--on-light);
  margin-bottom: var(--space-2);
}
.timeline-item__text {
  font-size: var(--text-sm);
  color: var(--on-light-3);
  line-height: 1.75;
}

/* Değerler */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

/* Ekip */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}
.team-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--r-xl);
  padding: var(--space-6);
  text-align: center;
  transition: all var(--ease-base);
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--cyan-border);
}
.team-card__avatar {
  width: 80px;
  height: 80px;
  border-radius: var(--r-full);
  background: var(--g-accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-2xl);
  margin: 0 auto var(--space-4);
}
.team-card__name {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--on-light);
}
.team-card__role {
  font-size: var(--text-xs);
  color: var(--on-light-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
  font-weight: 600;
}

/* ============================================
   İLETİŞİM
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--r-xl);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  transition: all var(--ease-base);
}
.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--cyan-border);
}
.contact-card__icon {
  width: 44px;
  height: 44px;
  background: var(--cyan-dim);
  border: 1px solid var(--cyan-border);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
}
.contact-card__label {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  color: var(--on-light-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.contact-card__value {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--on-light);
  line-height: 1.4;
}

.map-wrapper {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  margin-top: var(--space-12);
}
.map-wrapper iframe {
  width: 100%;
  height: 420px;
  display: block;
  border: 0;
}

@media (max-width: 1024px) {
  .story-block,
  .contact-grid { grid-template-columns: 1fr; gap: var(--space-10); }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .contact-cards { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 768px) {
  .values-grid,
  .team-grid { grid-template-columns: 1fr; }
  .timeline { padding-left: 50px; }
  .timeline::before { left: 20px; }
  .timeline-item__dot { left: -45px; width: 48px; height: 48px; }

  /* Form satırları — mobilde tek sütun */
  form > div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  /* Hikaye yıl bloğu — daha küçük */
  .story-block__year { font-size: clamp(3rem, 18vw, 6rem); }
  .story-block__visual { aspect-ratio: 5 / 3; }

  /* Harita — mobilde daha kısa */
  .map-wrapper iframe { height: 320px; }
}
@media (max-width: 480px) {
  .contact-cards { grid-template-columns: 1fr !important; }
  .contact-card { padding: var(--space-5); }
  .map-wrapper iframe { height: 260px; }
  .timeline { padding-left: 40px; }
  .timeline::before { left: 16px; }
  .timeline-item__dot { left: -38px; width: 40px; height: 40px; font-size: 11px; }
}
