/* === GENEL SAYFA YAPISI === */
.page-section { padding: 5rem 2rem; }
.page-section.bg-dark { background-color: rgba(0,0,0,0.2); }
.section-title { text-align: center; font-size: 2.5rem; text-transform: uppercase; margin-bottom: 4rem; }
.section-title span { color: var(--primary-color); text-shadow: 0 0 10px var(--neon-glow-primary); }

/* === ANA HAKKIMIZDA BÖLÜMÜ === */
.about-main-content { display: grid; grid-template-columns: 1.5fr 1fr; gap: 4rem; align-items: center; padding-top: 2rem; }
.about-text h1 { font-size: 3rem; margin-bottom: 1.5rem; color: var(--primary-color); text-shadow: 0 0 15px var(--neon-glow-primary); }
.about-text p { line-height: 1.8; color: #ccc; font-size: 1.1rem; }
.about-image img { border-radius: 10px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); width: 100%; transition: transform 0.3s, box-shadow 0.3s; }
.about-image:hover img { transform: scale(1.03); box-shadow: 0 0 30px var(--neon-glow-primary); }

/* === FELSEFEMİZ BÖLÜMÜ === */
.philosophy-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.philosophy-card { background: rgba(255, 255, 255, 0.05); border: 1px solid var(--border-color); padding: 2rem; text-align: center; border-radius: 10px; transition: transform 0.3s, background-color 0.3s; }
.philosophy-card:hover { background-color: rgba(0, 191, 255, 0.1); transform: translateY(-10px); }
.philosophy-card i { font-size: 3rem; color: var(--primary-color); margin-bottom: 1rem; text-shadow: 0 0 10px var(--neon-glow-primary); }
.philosophy-card h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }

/* === ZAMAN TÜNELİ (TIMELINE) === */
.timeline { position: relative; max-width: 1000px; margin: 0 auto; }
.timeline::before { content: ''; position: absolute; left: 50%; width: 2px; top: 0; bottom: 0; background-color: var(--border-color); transform: translateX(-50%); }
.timeline-item { position: relative; width: 50%; padding: 1rem 3rem; }
.timeline-item:nth-child(odd) { left: 0; }
.timeline-item:nth-child(even) { left: 50%; }
.timeline-content { background: rgba(255, 255, 255, 0.05); border: 1px solid var(--border-color); padding: 1.5rem; border-radius: 10px; }
.timeline-dot { content: ''; position: absolute; top: 2rem; width: 16px; height: 16px; background-color: var(--primary-color); border-radius: 50%; z-index: 1; box-shadow: 0 0 15px var(--neon-glow-primary); }
.timeline-item:nth-child(odd) .timeline-dot { right: -8px; transform: translateX(50%); }
.timeline-item:nth-child(even) .timeline-dot { left: -8px; transform: translateX(-50%); }
.timeline-year { display: block; font-size: 1.5rem; font-weight: bold; color: var(--primary-color); margin-bottom: 0.5rem; }

/* === İSTATİSTİKLER BÖLÜMÜ === */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; text-align: center; }
.stat-item h3 { font-size: clamp(3rem, 8vw, 4rem); font-weight: 700; color: var(--primary-color); text-shadow: 0 0 15px var(--neon-glow-primary); }
.stat-item p { font-size: 1.1rem; color: #ccc; margin-top: 0.5rem; text-transform: uppercase; }

/* === EKİPLE TANIŞ CTA === */
.team-cta { text-align: center; background: linear-gradient(45deg, rgba(0, 191, 255, 0.1), rgba(255, 0, 255, 0.1)); padding: 5rem 2rem; border-radius: 10px; }
.team-cta h2 { font-size: 2.5rem; margin-bottom: 1rem; }
.team-cta p { max-width: 500px; margin: 0 auto 2rem auto; color: #ccc; }

/* === ANİMASYON İÇİN BAŞLANGIÇ DURUMLARI === */
.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* === RESPONSIVE === */
@media(max-width: 992px) { .about-main-content { grid-template-columns: 1fr; text-align: center; } .about-image { order: -1; margin: 0 auto 2rem auto; max-width: 500px; } }
@media(max-width: 768px) {
    .page-section { padding: 4rem 1rem; }
    .timeline::before { left: 8px; }
    .timeline-item { width: 100%; padding-left: 3rem; padding-right: 1rem; }
    .timeline-item:nth-child(even) { left: 0; }
    .timeline-dot { left: 0; }
}