/**
 * Hakkımızda sayfası (about.html)
 */

.about-page {
  --about-dark: #2D3748;
  --about-navy: #215387;
  --about-gold: #f5a524;
  --about-gold-muted: #DDA944;
  --about-cream: #FAF8F5;
  --about-dark-90: rgba(45,55,72,.9);
  --about-dark-70: rgba(45,55,72,.7);
  --about-dark-50: rgba(45,55,72,.5);
  --about-dark-30: rgba(45,55,72,.3);
  --about-dark-10: rgba(45,55,72,.1);
  --about-dark-05: rgba(45,55,72,.05);
  --about-navy-08: rgba(33,83,135,.08);
  --about-gold-12: rgba(245,165,36,.12);
  --about-gold-06: rgba(245,165,36,.06);
  --about-radius: 16px;
  --about-shadow-md: 0 8px 30px rgba(45,55,72,.08);
  --about-shadow-lg: 0 20px 50px rgba(45,55,72,.12);
  --about-transition: cubic-bezier(.4,0,.2,1);
}

.about-page .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s var(--about-transition), transform .7s var(--about-transition);
}
.about-page .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero */
.about-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--about-dark) 0%, #1a2538 50%, var(--about-navy) 100%);
}
.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(255,255,255,.008) 40px, rgba(255,255,255,.008) 41px),
    repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(255,255,255,.008) 40px, rgba(255,255,255,.008) 41px);
}
.about-hero-glow1 {
  position: absolute;
  top: -120px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,165,36,.06), transparent 70%);
  pointer-events: none;
}
.about-hero-glow2 {
  position: absolute;
  bottom: -150px;
  left: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(33,83,135,.1), transparent 70%);
  pointer-events: none;
}
.about-hero-ring {
  position: absolute;
  border: 1px solid rgba(255,255,255,.03);
  border-radius: 50%;
  animation: aboutRingFloat 25s ease-in-out infinite;
}
.about-hero-ring:nth-child(3) {
  width: 600px;
  height: 600px;
  top: -200px;
  left: -150px;
}
.about-hero-ring:nth-child(4) {
  width: 400px;
  height: 400px;
  bottom: -100px;
  right: -50px;
  animation-delay: -8s;
}
@keyframes aboutRingFloat {
  0%, 100% { transform: translate(0,0) rotate(0deg); }
  50% { transform: translate(20px,-15px) rotate(5deg); }
}

.about-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 750px;
  padding: 60px 40px;
}
.about-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.about-hero-eyebrow span:first-child,
.about-hero-eyebrow span:last-child {
  width: 32px;
  height: 1.5px;
  background: var(--about-gold);
}
.about-hero-eyebrow-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: var(--about-gold);
}
.about-hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
  opacity: 0;
  animation: aboutFadeUp .9s .3s ease forwards;
}
.about-hero h1 em {
  font-style: italic;
  color: var(--about-gold);
  position: relative;
}
.about-hero h1 em::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(245,165,36,.1);
  border-radius: 4px;
  z-index: -1;
}
.about-hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,.45);
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto;
  font-weight: 300;
  opacity: 0;
  animation: aboutFadeUp .9s .5s ease forwards;
}
@keyframes aboutFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.about-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: aboutFadeUp .8s 1.2s ease forwards;
}
.about-scroll-text {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255,255,255,.2);
}
.about-scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--about-gold), transparent);
  position: relative;
  overflow: hidden;
}
.about-scroll-line::after {
  content: '';
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--about-gold);
  animation: aboutScrollPulse 2s ease-in-out infinite;
}
@keyframes aboutScrollPulse {
  0% { top: -50%; opacity: 0; }
  50% { top: 50%; opacity: 1; }
  100% { top: 110%; opacity: 0; }
}

/* Stats bar */
.stats-bar {
  background: #fff;
  border-bottom: 1px solid var(--about-dark-05);
}
.stats-bar-inner {
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 36px 20px;
  position: relative;
  text-align: center;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: var(--about-dark-05);
}
.stat-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--about-dark);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-number .stat-suffix {
  font-size: 22px;
  font-weight: 500;
  color: var(--about-gold);
}
.stat-label {
  font-size: 13px;
  color: var(--about-dark-50);
}

/* Story */
.story-section {
  max-width: 1360px;
  margin: 0 auto;
  padding: 100px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.story-visual {
  position: relative;
}
.story-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--about-dark), var(--about-navy));
  box-shadow: var(--about-shadow-lg);
}
.story-img-main-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.story-img-main-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255,255,255,.015) 20px, rgba(255,255,255,.015) 21px);
}
.story-img-main-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 0;
}
.story-logo-big {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 48px;
  font-weight: 700;
  color: rgba(255,255,255,.06);
  text-align: center;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}
.story-logo-big span {
  display: block;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: rgba(255,255,255,.1);
  margin-top: 8px;
}
.story-img-float {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  height: 160px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--about-gold), var(--about-gold-muted));
  box-shadow: 0 15px 40px rgba(245,165,36,.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  z-index: 5;
}
.story-img-float .float-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 52px;
  font-weight: 800;
  color: var(--about-dark);
  line-height: 1;
}
.story-img-float .float-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--about-dark-70);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.story-text .story-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.story-eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--about-gold);
}
.story-eyebrow-label {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--about-gold-muted);
}
.story-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--about-dark);
  margin-bottom: 20px;
}
.story-heading em {
  font-style: italic;
  color: var(--about-navy);
}
.story-body p {
  font-size: 15.5px;
  color: var(--about-dark-50);
  line-height: 1.85;
  margin-bottom: 16px;
}
.story-body p strong {
  color: var(--about-dark-70);
  font-weight: 600;
}
.story-signature {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--about-dark-10);
}
.signature-avatar {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--about-dark), var(--about-navy));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.signature-avatar span {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--about-gold);
}
.signature-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--about-dark);
}
.signature-role {
  font-size: 12.5px;
  color: var(--about-dark-30);
}

/* Values */
.values-section {
  background: #fff;
  padding: 100px 60px;
  position: relative;
  overflow: hidden;
}
.values-section::before {
  content: '';
  position: absolute;
  top: -250px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(33,83,135,.03), transparent 70%);
  pointer-events: none;
}
.values-header {
  max-width: 1360px;
  margin: 0 auto 60px;
  text-align: center;
}
.values-header .section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.section-eyebrow .ey-line {
  width: 30px;
  height: 1.5px;
  background: var(--about-gold);
}
.section-eyebrow .ey-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--about-gold-muted);
}
.values-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 700;
  color: var(--about-dark);
  margin-bottom: 12px;
}
.values-title em {
  font-style: italic;
  color: var(--about-navy);
}
.values-subtitle {
  font-size: 16px;
  color: var(--about-dark-50);
  max-width: 520px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.7;
}

.values-grid {
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.value-card {
  padding: 36px 28px;
  background: var(--about-cream);
  border-radius: 20px;
  border: 1px solid var(--about-dark-05);
  position: relative;
  overflow: hidden;
  transition: all .4s var(--about-transition);
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--about-shadow-md);
  border-color: transparent;
}
.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--about-gold), var(--about-gold-muted));
  transform: scaleX(0);
  transition: transform .5s var(--about-transition);
  transform-origin: left;
}
.value-card:hover::before {
  transform: scaleX(1);
}
.value-card-num {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--about-dark-05);
  line-height: 1;
}
.value-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform .3s;
}
.value-card:hover .value-icon {
  transform: scale(1.08);
}
.value-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.8;
}
.value-card:nth-child(1) .value-icon { background: var(--about-navy-08); }
.value-card:nth-child(1) .value-icon svg { color: var(--about-navy); }
.value-card:nth-child(2) .value-icon { background: var(--about-gold-06); }
.value-card:nth-child(2) .value-icon svg { color: var(--about-gold); }
.value-card:nth-child(3) .value-icon { background: rgba(34,168,103,.07); }
.value-card:nth-child(3) .value-icon svg { color: #22a867; }
.value-card:nth-child(4) .value-icon { background: rgba(45,55,72,.06); }
.value-card:nth-child(4) .value-icon svg { color: var(--about-dark); }
.value-card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--about-dark);
  margin-bottom: 8px;
}
.value-card-desc {
  font-size: 14px;
  color: var(--about-dark-50);
  line-height: 1.7;
}

/* Timeline */
.timeline-section {
  max-width: 1360px;
  margin: 0 auto;
  padding: 100px 60px;
}
.timeline-header {
  text-align: center;
  margin-bottom: 70px;
}
.timeline {
  position: relative;
  padding: 0 40px;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(to bottom, var(--about-gold), var(--about-dark-10), var(--about-gold));
  transform: translateX(-50%);
}
.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  position: relative;
}
.timeline-item:last-child {
  margin-bottom: 0;
}
.timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
}
.timeline-content {
  width: calc(50% - 50px);
  padding: 28px 32px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--about-dark-05);
  transition: all .4s var(--about-transition);
  position: relative;
}
.timeline-content:hover {
  box-shadow: var(--about-shadow-md);
  border-color: transparent;
  transform: translateY(-4px);
}
.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--about-gold);
  border: 4px solid var(--about-cream);
  z-index: 5;
  box-shadow: 0 0 0 4px var(--about-gold-12);
}
.timeline-year {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--about-gold);
  margin-bottom: 6px;
}
.timeline-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--about-dark);
  margin-bottom: 6px;
}
.timeline-desc {
  font-size: 13.5px;
  color: var(--about-dark-50);
  line-height: 1.65;
}

/* Team */
.team-section {
  background: #fff;
  padding: 100px 60px;
  position: relative;
  overflow: hidden;
}
.team-header {
  max-width: 1360px;
  margin: 0 auto 60px;
  text-align: center;
}
.team-grid {
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  border-radius: 20px;
  overflow: hidden;
  background: var(--about-cream);
  border: 1px solid var(--about-dark-05);
  transition: all .4s var(--about-transition);
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--about-shadow-lg);
  border-color: transparent;
}
.team-card-img {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--about-dark), var(--about-navy));
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-card-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 15px, rgba(255,255,255,.01) 15px, rgba(255,255,255,.01) 16px);
}
.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 2px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-avatar span {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  color: rgba(255,255,255,.3);
}
.team-card-info {
  padding: 22px 24px;
}
.team-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--about-dark);
  margin-bottom: 2px;
}
.team-role {
  font-size: 13px;
  color: var(--about-gold-muted);
  font-weight: 500;
  margin-bottom: 10px;
}
.team-bio {
  font-size: 13px;
  color: var(--about-dark-50);
  line-height: 1.6;
  margin-bottom: 14px;
}
.team-social {
  display: flex;
  gap: 6px;
}
.team-social a {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid var(--about-dark-10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--about-dark-30);
  transition: all .3s;
}
.team-social a:hover {
  border-color: var(--about-navy);
  color: var(--about-navy);
  background: var(--about-navy-08);
}
.team-social svg {
  width: 14px;
  height: 14px;
}

/* CTA banner */
.cta-banner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 60px 100px;
}
.cta-banner-inner {
  background: linear-gradient(135deg, var(--about-dark), #1a2538, var(--about-navy));
  border-radius: 24px;
  padding: 70px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner-inner::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,165,36,.06), transparent 70%);
}
.cta-banner-inner::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(33,83,135,.1), transparent 70%);
}
.cta-banner-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.cta-banner-title em {
  font-style: italic;
  color: var(--about-gold);
}
.cta-banner-desc {
  font-size: 16px;
  color: rgba(255,255,255,.45);
  max-width: 500px;
  margin: 0 auto 32px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}
.cta-banner-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  position: relative;
  z-index: 1;
}
.cta-btn-gold {
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--about-gold), var(--about-gold-muted));
  color: var(--about-dark);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 14px;
  transition: all .4s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.cta-btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(245,165,36,.35);
  color: var(--about-dark);
}
.cta-btn-gold svg {
  width: 18px;
  height: 18px;
  transition: transform .3s;
}
.cta-btn-gold:hover svg {
  transform: translateX(4px);
}
.cta-btn-outline {
  padding: 15px 30px;
  border: 1.5px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.7);
  font-size: 14px;
  font-weight: 500;
  border-radius: 14px;
  transition: all .3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.cta-btn-outline:hover {
  border-color: rgba(255,255,255,.4);
  color: #fff;
  background: rgba(255,255,255,.05);
}
.cta-btn-outline svg {
  width: 16px;
  height: 16px;
}

/* Responsive */
@media (max-width: 1100px) {
  .story-section {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 70px 40px;
  }
  .story-img-float {
    right: 10px;
    bottom: -20px;
  }
  .values-grid,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .timeline-section {
    padding: 70px 30px;
  }
}

@media (max-width: 768px) {
  .about-hero {
    min-height: 420px;
  }
  .stats-bar-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item:nth-child(2)::after {
    display: none;
  }
  .values-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }
  .timeline::before {
    left: 24px;
  }
  .timeline-item,
  .timeline-item:nth-child(odd) {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 60px;
  }
  .timeline-content {
    width: 100%;
  }
  .timeline-dot {
    left: 24px;
  }
  .values-section,
  .team-section {
    padding: 70px 24px;
  }
  .cta-banner {
    padding: 0 24px 70px;
  }
  .cta-banner-inner {
    padding: 50px 28px;
  }
  .cta-banner-btns {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .story-section {
    padding: 50px 20px;
  }
  .story-img-float {
    width: 150px;
    height: 120px;
  }
  .story-img-float .float-num {
    font-size: 38px;
  }
}
