/* --- GÖNAK MODERN TASARIM (2025) --- */

:root {
    --primary: #2c3e50; /* Koyu Mavi */
    --accent: #e74c3c;  /* Kırmızı */
    --light: #f8f9fa;   /* Açık Gri Arkaplan */
    --dark: #1a252f;    /* Çok Koyu Mavi */
    --shadow: 0 15px 35px rgba(0,0,0,0.1); /* Derin modern gölge */
    --radius: 12px;     /* Standart Yuvarlaklık */
}

body {
    font-family: 'Segoe UI', 'Roboto', Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fdfdfd;
    color: #333;
    line-height: 1.6;
}

/* --- HEADER (MENÜ) --- */
.header {
    background-color: var(--primary);
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    transition: 0.3s;
}

.logo {
    font-size: 1.8em;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo i { color: var(--accent); }

.nav-links { display: flex; gap: 25px; align-items: center; }

.nav-links a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95em;
    transition: 0.3s;
    position: relative;
}
.nav-links a:hover { color: #fff; }

.nav-links a:not(.btn-highlight)::after {
    content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px;
    background: var(--accent); transition: width 0.3s;
}
.nav-links a:not(.btn-highlight):hover::after { width: 100%; }

.btn-highlight {
    background: var(--accent);
    color: white !important;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    transition: transform 0.3s;
}
.btn-highlight:hover { transform: translateY(-2px); background: #c0392b; }

.menu-toggle { display: none; color: white; font-size: 1.5em; cursor: pointer; }

/* --- HERO SLIDER (SİNEMATİK) --- */
.slider-container {
    position: relative;
    height: 90vh; /* Ekranı neredeyse kaplasın */
    overflow: hidden;
    /* Alt tarafı biraz kavisli veya düz bırakabiliriz, şimdilik düz ve temiz */
}

.slide {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0; transition: opacity 1s ease;
    background-size: cover; background-position: center;
    display: flex; align-items: center; justify-content: center;
}
.slide::before {
    content: ''; position: absolute; inset: 0;
    /* Daha modern bir degrade: Fotoğrafın altını karartır ki yazılar okunsun */
    background: linear-gradient(to bottom, rgba(44,62,80,0.4), rgba(44,62,80,0.9));
}
.slide.active { opacity: 1; }

.slide-content {
    position: relative; z-index: 2; text-align: center; color: white; max-width: 800px; padding: 20px;
    animation: fadeInUp 1s ease-out;
    margin-bottom: 50px; /* Stats kutuları için yer aç */
}

.slide-content h2 {
    font-size: 4em; font-weight: 900; margin-bottom: 15px; line-height: 1.1;
    text-shadow: 0 5px 15px rgba(0,0,0,0.3); text-transform: uppercase; letter-spacing: 1px;
}
.slide-content p { font-size: 1.4em; margin-bottom: 30px; opacity: 0.95; font-weight: 300; }

.hero-btns { display: flex; justify-content: center; gap: 20px; }

.hero-btn {
    padding: 15px 40px; font-size: 1.1em; border-radius: 50px; text-decoration: none; font-weight: bold;
    transition: 0.3s; display: inline-block;
}
.btn-primary { 
    background: var(--accent); color: white; border: 2px solid var(--accent);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
}
.btn-primary:hover { 
    background: #c0392b; border-color: #c0392b; transform: translateY(-3px);
}
.btn-outline { 
    border: 2px solid rgba(255,255,255,0.8); color: white; background: transparent; 
}
.btn-outline:hover { 
    background: white; color: var(--primary); border-color: white; transform: translateY(-3px);
}

.prev, .next {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,0.1); color: white; border: none;
    width: 50px; height: 50px; border-radius: 50%; cursor: pointer;
    backdrop-filter: blur(5px); z-index: 10; font-size: 1.2em; transition: 0.3s;
    display: flex; align-items: center; justify-content: center;
}
.prev:hover, .next:hover { background: var(--accent); transform: translateY(-50%) scale(1.1); }
.prev { left: 30px; } .next { right: 30px; }


/* --- FLOATING STATS (YÜZEN KARTLAR - EN ÖNEMLİ KISIM) --- */
.stats-overlap-container {
    display: flex; justify-content: center; gap: 30px; flex-wrap: wrap;
    margin-top: -100px; /* Slider'ın üzerine 100px bin */
    position: relative; z-index: 20; padding: 0 20px;
    max-width: 1200px; margin-left: auto; margin-right: auto;
}

.stat-card {
    background: white; padding: 30px 20px; border-radius: 15px;
    text-align: center; width: 220px;
    box-shadow: var(--shadow); /* Derin gölge */
    transition: transform 0.3s, box-shadow 0.3s;
    border-bottom: 4px solid transparent;
}

.stat-card:hover { 
    transform: translateY(-10px); 
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-bottom: 4px solid var(--accent);
}

.icon-circle {
    width: 70px; height: 70px; background: #ecf0f1; border-radius: 50%;
    margin: 0 auto 15px auto; display: flex; align-items: center; justify-content: center;
    color: var(--accent); font-size: 1.8em; transition: 0.3s;
}
.stat-card:hover .icon-circle { background: var(--accent); color: white; }

.stat-card h3 { font-size: 2.5em; color: var(--primary); margin: 0; font-weight: 800; }
.stat-card p { color: #7f8c8d; font-weight: 600; margin-top: 5px; font-size: 0.9em; text-transform: uppercase; }


/* --- GENEL BÖLÜM AYARLARI --- */
.section { padding: 100px 20px; max-width: 1200px; margin: 0 auto; }
.bg-light { background-color: #f8f9fa; }

.section-header { text-align: center; margin-bottom: 60px; }
.section-header h3 {
    font-size: 2.5em; color: var(--primary); margin-bottom: 15px; position: relative; display: inline-block;
    font-weight: 800;
}
.section-header p { color: #666; max-width: 600px; margin: 0 auto; font-size: 1.1em; }

.red-line {
    width: 80px; height: 4px; background: var(--accent); margin: 10px auto 0; border-radius: 2px;
}

/* --- HİZMET KUTULARI --- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }

.service-box {
    background: white; padding: 50px 30px; border-radius: 15px;
    border: 1px solid #f0f0f0; transition: 0.3s; text-align: left;
    position: relative; overflow: hidden;
}
.service-box::before {
    content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%;
    background: var(--accent); opacity: 0; transition: 0.3s;
}
.service-box:hover { box-shadow: var(--shadow); transform: translateY(-5px); border-color: transparent; }
.service-box:hover::before { opacity: 1; }

.service-box i { font-size: 3.5em; color: var(--primary); margin-bottom: 25px; display: block; }
.service-box h4 { font-size: 1.6em; color: var(--primary); margin-bottom: 15px; font-weight: 700; }
.service-box p { color: #666; line-height: 1.7; }

/* --- GALERİ --- */
.gallery-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 25px;
}
.gallery-item {
    height: 300px; border-radius: 15px; overflow: hidden; position: relative; cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.gallery-item img {
    width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; display: block;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
    position: absolute; bottom: 0; left: 0; width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white; padding: 25px; opacity: 0; transition: 0.3s;
    transform: translateY(20px);
}
.gallery-item:hover .gallery-overlay { opacity: 1; transform: translateY(0); }
.gallery-overlay h4 { margin: 0; font-size: 1.2em; }

/* --- FAQ --- */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { background: white; border-radius: 10px; margin-bottom: 15px; box-shadow: 0 2px 5px rgba(0,0,0,0.05); border: 1px solid #eee; overflow: hidden; }
.faq-question {
    padding: 20px 25px; cursor: pointer; display: flex; justify-content: space-between;
    font-weight: 600; color: var(--primary); align-items: center; font-size: 1.1em;
}
.faq-question:hover { background: #fcfcfc; }
.faq-answer {
    max-height: 0; overflow: hidden; transition: 0.4s ease; padding: 0 25px; color: #555; line-height: 1.6;
}
.faq-item.active .faq-answer { padding-bottom: 25px; max-height: 300px; }
.faq-item.active .faq-question { color: var(--accent); background: #fff5f5; }
.faq-item.active i { transform: rotate(180deg); }


/* --- FORM & CONTACT (Eski kodundan korundu ve modernize edildi) --- */
.contact-wrapper { display: flex; gap: 50px; flex-wrap: wrap; }
.contact-info { flex: 1; }

.contact-form-area {
    flex: 1; background: white; padding: 40px;
    border-radius: 15px; box-shadow: var(--shadow);
    border-top: 5px solid var(--accent);
}
.contact-form-area h3 { margin-top: 0; margin-bottom: 25px; color: var(--primary); font-size: 1.8em; }

input[type="text"], input[type="email"], textarea {
    width: 100%; padding: 15px;
    border: 1px solid #ddd; border-radius: 8px;
    font-size: 1em; box-sizing: border-box; font-family: inherit;
    transition: 0.3s; background: #f9f9f9; margin-bottom: 20px;
}
input:focus, textarea:focus {
    border-color: var(--primary); outline: none; background: #fff;
    box-shadow: 0 0 0 4px rgba(44, 62, 80, 0.1);
}
button[type="submit"], .cta-button {
    background-color: var(--accent); color: #fff;
    padding: 15px 30px; border: none; border-radius: 8px;
    font-weight: bold; cursor: pointer; transition: 0.3s;
    font-size: 1em; display: inline-block; text-decoration: none; width: 100%;
}
button[type="submit"]:hover, .cta-button:hover {
    background-color: #c0392b; transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.map-section iframe { width: 100%; display: block; filter: grayscale(20%); border-radius: 15px; box-shadow: var(--shadow); }


/* --- FOOTER & WHATSAPP --- */
.whatsapp-float {
    position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px;
    background: #25d366; color: white; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 32px; box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 100; transition: 0.3s;
}
.whatsapp-float:hover { transform: scale(1.1) rotate(10deg); }

.footer {
    background-color: var(--primary); color: #fff; text-align: center;
    padding: 50px 0; margin-top: 100px;
}

/* Animasyon */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* --- MOBİL UYUM --- */
@media (max-width: 768px) {
    .menu-toggle { display: block; }
    .nav-links {
        display: none; position: absolute; top: 100%; left: 0; width: 100%;
        background: var(--primary); flex-direction: column; padding: 20px;
    }
    .nav-links.active { display: flex; }
    
    .slider-container { height: 70vh; }
    .slide-content h2 { font-size: 2.2em; }
    .hero-btns { flex-direction: column; gap: 10px; }
    
    /* Stats mobilde üst üste binmesin, normal dursun */
    .stats-overlap-container { margin-top: 30px; flex-direction: column; align-items: center; }
    .stat-card { width: 100%; max-width: 320px; margin-bottom: 20px; }
    
    .contact-wrapper { flex-direction: column; }
    .contact-info { padding-right: 0; }
}
/* --- İLETİŞİM GELİŞMİŞ CSS --- */

/* Acil Durum Rozeti */
.badge-emergency {
    display: inline-block;
    background: #e74c3c;
    color: white;
    font-size: 0.8em;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: bold;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(231, 76, 60, 0); }
    100% { box-shadow: 0 0 0 0 rgba(231, 76, 60, 0); }
}

/* İkonlu Form Yapısı (Input Group) */
.input-group {
    position: relative;
    margin-bottom: 20px;
}

.input-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #95a5a6;
    transition: 0.3s;
}

.input-group.top-align i {
    top: 20px; /* Textarea için ikonu yukarı sabitle */
}

/* Inputların sol boşluğunu artır ki ikonla çakışmasın */
.input-group input, 
.input-group textarea {
    padding-left: 45px !important; 
}

.input-group input:focus + i,
.input-group input:focus ~ i, 
.input-group textarea:focus ~ i {
    color: var(--accent); /* Odaklanınca ikon kırmızı olsun */
}

.full-width { width: 100%; }

/* --- BANKA KARTLARI (IBAN KOPYALAMA) --- */
.bank-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: center;
    border-top: 4px solid var(--primary);
    transition: 0.3s;
}
.bank-card:hover { transform: translateY(-5px); border-top-color: var(--accent); }

.bank-icon {
    font-size: 2.5em; color: var(--primary); margin-bottom: 15px;
}

.iban-box {
    background: #f1f2f6;
    padding: 10px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: monospace;
    font-size: 1.1em;
    color: #2c3e50;
    margin: 15px 0;
    border: 1px solid #ddd;
}

.iban-box button {
    background: white;
    border: 1px solid #ccc;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 5px;
    transition: 0.2s;
    color: #555;
}
.iban-box button:hover { background: var(--accent); color: white; border-color: var(--accent); }

.receiver { font-size: 0.9em; color: #7f8c8d; font-weight: bold; }

/* Harita Tam Genişlik */
.full-width-map iframe {
    width: 100%;
    height: 400px;
    filter: grayscale(20%);
}
/* --- İLETİŞİM SAYFASI DÜZELTME PAKETİ (style.css EN ALTINA EKLE) --- */

/* 1. Hero (Başlık) Alanı Düzeltmesi */
.page-header {
    width: 100%;
    height: 350px; /* Yükseklik zorunlu */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff !important; /* Yazı rengi beyaz olsun */
    margin-bottom: 50px;
    background-color: #2c3e50; /* Resim yüklenmezse arka plan lacivert olsun */
}

/* Karanlık Perde */
.page-header .overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6); /* %60 Karanlık */
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2; /* Yazılar perdenin üstünde */
}

.page-header h1 {
    font-size: 3.5em;
    margin: 0;
    text-transform: uppercase;
    font-weight: 800;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
    color: #fff;
}

/* 2. Sol Taraf: İletişim Bilgileri İkonları */
.info-item {
    display: flex;
    align-items: flex-start; /* Üstten hizala */
    margin-bottom: 35px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee; /* Altına hafif çizgi */
}

.info-item:last-child { border-bottom: none; }

.info-item .icon {
    width: 60px;
    height: 60px;
    background-color: rgba(231, 76, 60, 0.1); /* Açık kırmızı zemin */
    color: #e74c3c; /* Kırmızı ikon */
    border-radius: 50%; /* Tam yuvarlak */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    margin-right: 25px;
    flex-shrink: 0; /* İkonun sıkışmasını engelle */
    transition: 0.3s;
}

.info-item:hover .icon {
    background-color: #e74c3c;
    color: #fff;
    transform: scale(1.1);
}

.info-item h4 {
    margin: 0 0 5px 0;
    font-size: 1.2em;
    color: #2c3e50;
    font-weight: 700;
}

/* 3. Sağ Taraf: Form Düzeni */
.contact-form-area {
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1); /* Derin gölge */
    border-top: 5px solid #e74c3c;
}

/* Form Input İkonları */
.input-group {
    position: relative;
    margin-bottom: 20px;
}

.input-group input, 
.input-group textarea {
    width: 100%;
    padding: 15px 15px 15px 50px !important; /* İkon için soldan boşluk bırak */
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
    font-size: 1em;
    box-sizing: border-box;
    transition: 0.3s;
}

.input-group i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #95a5a6;
    font-size: 1.1em;
    pointer-events: none; /* Tıklamayı engelle */
}

/* Textarea için ikonu yukarı sabitle */
.input-group.top-align i {
    top: 20px;
    transform: none;
}

/* Odaklanınca efekt */
.input-group input:focus,
.input-group textarea:focus {
    border-color: #e74c3c;
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(231, 76, 60, 0.1);
    outline: none;
}

.input-group input:focus + i, /* Bu kısım JS gerektirebilir, CSS ile kardeş seçici zordur, o yüzden alttaki renk değişimini kullanıyoruz */
.input-group:focus-within i {
    color: #e74c3c;
}

/* Buton */
.cta-button {
    width: 100%;
    padding: 15px;
    background-color: #e74c3c;
    color: white;
    font-size: 1.1em;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.cta-button:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
}
/* --- HAKKIMIZDA SAYFASI CSS --- */

/* Metin ve Resim Yan Yana */
.about-container {
    display: flex;
    gap: 50px;
    align-items: center; /* Dikeyde ortala */
}

.about-text {
    flex: 1;
}

.about-text p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
    text-align: center;
}

.about-image img {
    width: 100%;
    max-width: 450px; /* Çok büyümesin */
    border-radius: 20px; /* Modern yuvarlak köşe */
    box-shadow: 0 15px 40px rgba(0,0,0,0.15); /* Derin gölge */
    border: 5px solid white; /* Beyaz çerçeve */
    transition: transform 0.3s;
}

.about-image img:hover {
    transform: scale(1.02);
}

/* Misyon Vizyon Kartları */
.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mv-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-bottom: 4px solid transparent;
    transition: 0.3s;
}

.mv-card:hover {
    transform: translateY(-10px);
    border-bottom: 4px solid #e74c3c;
}

.mv-card .icon-circle {
    width: 70px; height: 70px;
    background: #ecf0f1; border-radius: 50%;
    margin: 0 auto 20px auto;
    display: flex; align-items: center; justify-content: center;
    color: #2c3e50; font-size: 1.8em;
    transition: 0.3s;
}

.mv-card:hover .icon-circle {
    background: #e74c3c; color: white;
}

/* Kurucu Sözü (Alıntı) Alanı */
.founder-quote {
    background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.9)), url('hero-image.jpg');
    background-size: cover;
    background-attachment: fixed;
    color: white;
    padding: 80px 20px;
    text-align: center;
    margin-top: 60px;
}

.quote-content blockquote {
    font-size: 1.6em;
    margin: 0 auto 30px auto;
    max-width: 900px;
    font-style: italic;
    line-height: 1.5;
}

.quote-content i {
    color: #e74c3c;
    font-size: 0.8em;
    margin: 0 10px;
    vertical-align: top;
}

.quote-content cite {
    font-size: 1.2em;
    font-weight: bold;
    color: #e74c3c;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mobilde Alt Alta Alma */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
    }
    .about-image img {
        max-width: 100%;
    }
}
/* --- HAKKIMIZDA GELİŞMİŞ TASARIM --- */

.center-title {
    text-align: center;
    font-size: 2.2em;
    color: var(--primary);
    margin-bottom: 50px;
    font-weight: 800;
    position: relative;
}
.center-title::after {
    content: ''; display: block; width: 60px; height: 4px;
    background: var(--accent); margin: 10px auto 0; border-radius: 2px;
}

/* --- ZAMAN TÜNELİ (TIMELINE) --- */
.timeline-section { margin-top: 80px; margin-bottom: 80px; }
.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

/* Ortadaki Çizgi */
.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: #ddd;
    top: 0; bottom: 0; left: 50%;
    margin-left: -2px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
    box-sizing: border-box;
}

/* Sol ve Sağ Kutular */
.timeline-item.left { left: 0; }
.timeline-item.right { left: 50%; }

/* Yuvarlak Noktalar */
.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px; height: 20px;
    right: -10px; top: 20px;
    background-color: white;
    border: 4px solid var(--accent);
    border-radius: 50%;
    z-index: 1;
}
.timeline-item.right::after { left: -10px; }

/* İçerik Kutusu */
.timeline-item .content {
    padding: 20px 30px;
    background-color: white;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-left: 4px solid var(--accent);
}
.timeline-item .content h2 { margin-top: 0; font-size: 1.2em; color: var(--accent); }
.timeline-item .content p { margin-bottom: 0; color: #555; }

/* --- YÖNETİM KADROSU (EKİP) --- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.team-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
    box-shadow: var(--shadow);
    transition: 0.3s;
    padding-bottom: 20px;
}

.team-card:hover { transform: translateY(-10px); }

.team-img {
    height: 250px;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-color: #eee;
    margin-bottom: 15px;
    /* Resim yoksa varsayılan */
    position: relative;
}
/* Resim yüklenmezse placeholder göster */
.team-img::before { 
    content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.05); 
}

.team-card h4 {
    margin: 10px 0 5px 0;
    font-size: 1.3em;
    color: var(--primary);
}

.team-card span {
    display: inline-block;
    padding: 5px 15px;
    background: #f1f2f6;
    color: #7f8c8d;
    font-size: 0.9em;
    border-radius: 20px;
    font-weight: 600;
}

/* --- MOBİL UYUMLULUK (Zaman Tüneli İçin) --- */
@media screen and (max-width: 768px) {
    .timeline::after { left: 31px; }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    .timeline-item::after { left: 21px; }
    .timeline-item.right { left: 0; }
}
/* --- GÖNÜLLÜ OL SAYFASI TASARIMI --- */

.volunteer-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start; /* Üstten hizala */
}

/* Sol Taraf: Bilgi */
.volunteer-info {
    flex: 1;
    padding-top: 10px;
}
.volunteer-info p {
    color: #666;
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Avantajlar Listesi */
.benefit-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
}
.benefit-item:hover { transform: translateX(5px); border-left: 4px solid var(--accent); }

.benefit-item i {
    font-size: 2em;
    color: var(--accent);
    margin-top: 5px;
}
.benefit-item h4 { margin: 0 0 5px 0; color: var(--primary); font-size: 1.2em; }
.benefit-item p { margin: 0; font-size: 0.95em; color: #777; }

/* Sağ Taraf: Form */
.volunteer-form {
    flex: 1;
    /* .contact-form-area stilini miras alır ama biraz daha geniş olabilir */
}

/* Yan Yana Inputlar (Tarih, Kan Grubu vb.) */
.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}
.form-row .input-group { margin-bottom: 0; } /* Row içindeyken alt boşluğu sil */

/* Mobil Uyum */
@media (max-width: 900px) {
    .volunteer-wrapper {
        flex-direction: column;
    }
    .form-row {
        flex-direction: column;
        gap: 20px;
    }
}