/* Temel Değişkenler - Tasarımın Ruhu */
:root {
    --bg-color: #FAF9F6; /* Kırık Beyaz / Krem */
    --primary-sage: #9CA986; /* Adaçayı Yeşili */
    --secondary-sage: #859271; 
    --text-dark: #3A3F38; /* Koyu Antrasit / Yeşilimsi Gri */
    --text-light: #6B7264;
    --card-bg: #FFFFFF;
    --transition: all 0.3s ease-in-out;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-dark);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.main-header {
    background-color: rgba(250, 249, 246, 0.9);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(156, 169, 134, 0.2);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
}

.main-nav a:hover {
    color: var(--primary-sage);
}

/* Butonlar */
.btn-primary {
    background-color: var(--primary-sage);
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--secondary-sage);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(156, 169, 134, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-dark);
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    border: 1px solid var(--text-dark);
    transition: var(--transition);
}

/* Hero Alanı */
.hero {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.hero-content p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* Hero Görseli ve Organik Çerçeve */
.hero-image {
    flex: 1;
}

.image-wrapper {
    /* Organik, asimetrik şekil (Border-radius manipulation) */
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    animation: morph 8s ease-in-out infinite;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

@keyframes morph {
    0% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
    100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
}

/* Dinamik Kartlar */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: var(--transition);
    border: 1px solid rgba(156, 169, 134, 0.1);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(156, 169, 134, 0.15);
}
/* =========================================
   YARDIMCI SINIFLAR (LAYOUT HELPERS)
   Sayfaların düzenli durmasını sağlayan grid yapıları
   ========================================= */
.flex-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}
.align-center { align-items: center; }
.space-between { justify-content: space-between; }
.half-width { flex: 1 1 calc(50% - 20px); }
.text-center { text-align: center; }
.section-padding { padding: 80px 0; }

/* Boşluk (Margin) Yardımcıları */
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }

/* =========================================
   FOOTER TASARIMI (footer.php)
   Premium ve Koyu Antrasit Alt Bilgi Alanı
   ========================================= */
.main-footer {
    background-color: var(--text-dark); /* Koyu antrasit zemin */
    color: #E8EBE6; /* Krem rengi metin */
    padding: 80px 0 20px 0;
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08); /* Zarif ayırıcı çizgi */
    padding-bottom: 50px;
}

.footer-brand h3 {
    color: #FFFFFF;
    font-size: 1.8rem;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.footer-brand p {
    color: #B5BEAF; /* Soluk adaçayı yeşili */
    line-height: 1.8;
    max-width: 85%;
}

.main-footer h4 {
    color: #FFFFFF;
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    font-weight: 500;
}

/* Başlıkların altındaki zarif yeşil çizgi */
.main-footer h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 40px;
    height: 2px;
    background-color: var(--primary-sage);
    border-radius: 2px;
}

.footer-links ul, 
.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li, 
.footer-contact li {
    margin-bottom: 16px;
    color: #B5BEAF;
    font-size: 0.95rem;
}

.footer-links a {
    color: #B5BEAF;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

/* Linklerin üzerine gelince sağa kayma efekti */
.footer-links a:hover {
    color: var(--primary-sage);
    transform: translateX(6px); 
}

.footer-bottom {
    text-align: center;
    color: #8C9685;
    font-size: 0.85rem;
}

.footer-bottom a {
    color: #8C9685;
    text-decoration: none;
    transition: var(--transition);
    margin: 0 5px;
}

.footer-bottom a:hover {
    color: #FFFFFF;
}

/* =========================================
   EKSTRA: ONLINE TERAPİ & HAKKIMDA TIMELINE
   ========================================= */
.online-therapy-cta {
    background-color: #EAEFE5; /* Çok açık adaçayı */
    padding: 60px 0;
    margin-top: 60px;
    border-radius: 20px;
}

.timeline-list {
    list-style: none;
    padding-left: 20px;
    border-left: 2px solid rgba(156, 169, 134, 0.3);
}

.timeline-list li {
    margin-bottom: 25px;
    position: relative;
}

/* Timeline noktaları */
.timeline-list li::before {
    content: '';
    position: absolute;
    left: -27px;
    top: 5px;
    width: 12px;
    height: 12px;
    background-color: var(--primary-sage);
    border-radius: 50%;
}

.timeline-list .year {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 4px;
}

.timeline-list strong {
    display: block;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.timeline-list .location {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* =========================================
   MOBİL UYUMLULUK (RESPONSIVE)
   ========================================= */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr; /* Mobilde tek sütun */
        gap: 40px;
    }
    
    .footer-brand p {
        max-width: 100%;
    }
    
    .flex-layout {
        flex-direction: column;
    }
    
    .half-width {
        flex: 1 1 100%;
        width: 100%;
    }
    
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
}

/* =========================================
   YAKLAŞIM SAYFASI (ZIGZAG TIMELINE)
   ========================================= */
.journey-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

/* Ortadaki dikey çizgi */
.journey-timeline::before {
    content: '';
    position: absolute;
    width: 2px;
    background-color: rgba(156, 169, 134, 0.3);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.journey-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
    box-sizing: border-box;
    margin-bottom: 40px;
}

.journey-item.left {
    left: 0;
}

.journey-item.right {
    left: 50%;
}

/* Zaman çizelgesi üzerindeki noktalar */
.journey-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: var(--primary-sage);
    border: 4px solid var(--bg-color);
    top: 30px;
    border-radius: 50%;
    z-index: 1;
}

.journey-item.right::after {
    left: -10px;
}

.journey-content {
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(156, 169, 134, 0.1);
    position: relative;
    transition: var(--transition);
}

.journey-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(156, 169, 134, 0.15);
}

.step-badge {
    display: inline-block;
    background-color: #EAEFE5;
    color: var(--secondary-sage);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.journey-content h2 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.journey-content p {
    color: var(--text-light);
    margin: 0;
}

/* Yaklaşım Sayfası Mobil Düzenleme */
@media screen and (max-width: 768px) {
    .journey-timeline::before {
        left: 31px;
    }
    .journey-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    .journey-item.right {
        left: 0;
    }
    .journey-item.left::after, 
    .journey-item.right::after {
        left: 21px;
    }
    .journey-content {
        padding: 25px;
    }
}

/* =========================================
   BLOG SAYFASI TASARIMI
   ========================================= */
.mb-40 { margin-bottom: 40px; }

.blog-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid rgba(156, 169, 134, 0.4);
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--primary-sage);
    color: #fff;
    border-color: var(--primary-sage);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.blog-card {
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: var(--transition);
    border: 1px solid rgba(156, 169, 134, 0.1);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(156, 169, 134, 0.15);
}

.blog-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.category-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    color: var(--text-dark);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.blog-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-date {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 10px;
    display: block;
}

.blog-content h3 {
    font-size: 1.3rem;
    line-height: 1.4;
    margin-bottom: 15px;
}

.blog-content h3 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.blog-content h3 a:hover {
    color: var(--primary-sage);
}

.blog-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 25px;
    flex-grow: 1;
}

.read-more-btn {
    color: var(--primary-sage);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.read-more-btn span {
    transition: transform 0.3s;
}

.read-more-btn:hover span {
    transform: translateX(5px);
}
/* =========================================
   SIK SORULAN SORULAR (FAQ) TASARIMI
   ========================================= */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #FFFFFF;
    border-radius: 16px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.02);
    border: 1px solid rgba(156, 169, 134, 0.15);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 25px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-sage);
}

.faq-question.active {
    color: var(--primary-sage);
    border-bottom: 1px solid rgba(156, 169, 134, 0.1);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--secondary-sage);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background-color: #FAF9F6;
}

.faq-answer p {
    padding: 25px 30px;
    margin: 0;
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}
/* =========================================
   RANDEVU & İLETİŞİM SAYFASI ÖZEL STİLLERİ
   ========================================= */

/* İki Sütunlu Yan Yana Düzen */
.appointment-section .container.flex-layout {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.appointment-section .half-width {
    flex: 0 0 calc(50% - 20px);
    box-sizing: border-box;
}

/* Sol Sütun: Klinik Bilgileri Kartı */
.contact-sidebar .info-card {
    background-color: var(--card-bg, #FFFFFF);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(156, 169, 134, 0.15);
}

.info-card h2 {
    font-size: 1.6rem;
    color: var(--text-dark, #3A3F38);
    margin-bottom: 15px;
}

.intro-text {
    color: var(--text-light, #6B7264);
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.icon-box {
    width: 45px;
    height: 45px;
    background-color: #EAEFE5;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.info-list strong {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light, #6B7264);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
}

.info-list span {
    color: var(--text-dark, #3A3F38);
    font-size: 1rem;
    font-weight: 500;
}

.divider {
    border: 0;
    height: 1px;
    background-color: rgba(156, 169, 134, 0.2);
    margin: 30px 0;
}

.working-hours h3 {
    font-size: 1.2rem;
    color: var(--text-dark, #3A3F38);
    margin-bottom: 15px;
}

.working-hours ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.working-hours li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(156, 169, 134, 0.3);
    color: var(--text-dark, #3A3F38);
    font-size: 0.95rem;
}

.working-hours li:last-child {
    border-bottom: none;
}

.working-hours .closed {
    color: #E74C3C;
    font-weight: 600;
}

/* Sağ Sütun: Randevu Formu Kartı */
.appointment-form-card {
    background-color: var(--card-bg, #FFFFFF);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(156, 169, 134, 0.15);
}

.form-header {
    margin-bottom: 25px;
}

.form-header h2 {
    font-size: 1.6rem;
    color: var(--text-dark, #3A3F38);
    margin-bottom: 5px;
}

.form-header p {
    color: var(--text-light, #6B7264);
    font-size: 0.95rem;
}

/* Modern Form Alanları */
.modern-form .form-group {
    margin-bottom: 20px;
}

.modern-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark, #3A3F38);
}

.modern-form input,
.modern-form select,
.modern-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #D5DCD0;
    border-radius: 10px;
    background-color: #FAF9F6;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-dark, #3A3F38);
    box-sizing: border-box;
    transition: all 0.3s ease-in-out;
}

.modern-form input:focus,
.modern-form select:focus,
.modern-form textarea:focus {
    outline: none;
    border-color: var(--primary-sage, #9CA986);
    background-color: #FFFFFF;
    box-shadow: 0 0 0 4px rgba(156, 169, 134, 0.15);
}

.modern-form textarea {
    resize: vertical;
    min-height: 100px;
}

.modern-form .form-row {
    display: flex;
    gap: 20px;
}

.modern-form .form-row .half {
    flex: 1;
}

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .appointment-section .container.flex-layout {
        flex-direction: column;
    }
    .appointment-section .half-width {
        flex: 0 0 100%;
        width: 100%;
    }
    .modern-form .form-row {
        flex-direction: column;
        gap: 0;
    }
}
/* =========================================
   GÜNÜN SÖZÜ BÖLÜMÜ
   ========================================= */
.daily-quote-section {
    padding: 40px 0;
    margin: 20px 0 40px 0;
}

.quote-card {
    background-color: #EAEFE5; /* Soft adaçayı arkaplan */
    padding: 40px 50px;
    border-radius: 20px;
    position: relative;
    max-width: 850px;
    margin: 0 auto;
    border: 1px solid rgba(156, 169, 134, 0.2);
}

.quote-icon {
    font-size: 4rem;
    font-family: Georgia, serif;
    color: var(--primary-sage);
    line-height: 1;
    display: block;
    margin-bottom: -10px;
}

.quote-text {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 15px;
}

.quote-author {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--secondary-sage);
    letter-spacing: 1px;
}

/* =========================================
   İSTATİSTİK VE GÜVEN ROZETLERİ
   ========================================= */
.trust-stats-section {
    padding: 30px 0;
    border-top: 1px dashed rgba(156, 169, 134, 0.25);
    border-bottom: 1px dashed rgba(156, 169, 134, 0.25);
    margin-bottom: 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-box .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-sage);
}

.stat-box .stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* =========================================
   HAKKIMDA ÖZET BÖLÜMÜ
   ========================================= */
.section-subtitle {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-sage);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.organic-radius {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    width: 100%;
    max-width: 450px;
    display: block;
    margin: 0 auto;
}
/* =========================================
   DİPLOMALAR VE SERTİFİKALAR BÖLÜMÜ
   ========================================= */
.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.cert-card {
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(156, 169, 134, 0.15);
    transition: var(--transition);
}

.cert-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(156, 169, 134, 0.15);
}

.cert-image {
    height: 220px;
    overflow: hidden;
    background-color: #f4f6f2;
}

.cert-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cert-card:hover .cert-image img {
    transform: scale(1.05);
}

.cert-content {
    padding: 25px;
}

.cert-year {
    display: inline-block;
    background-color: #EAEFE5;
    color: var(--secondary-sage);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.cert-content h3 {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.4;
}

.cert-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}
/* =========================================
   SERTİFİKA SLİDER (KARUSEL) TASARIMI
   ========================================= */
.cert-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.cert-slider-container {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox için scrollbar gizleme */
    -ms-overflow-style: none; /* IE/Edge için scrollbar gizleme */
    padding: 10px 5px;
    width: 100%;
}

/* Chrome, Safari ve Opera için scrollbar gizleme */
.cert-slider-container::-webkit-scrollbar {
    display: none;
}

.cert-slide-item {
    flex: 0 0 calc(33.333% - 20px); /* Masaüstünde yan yana 3 kart */
    scroll-snap-align: start;
    box-sizing: border-box;
}

/* Slider Kart Tasarımı */
.cert-card {
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(156, 169, 134, 0.15);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.cert-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(156, 169, 134, 0.15);
}

.cert-image {
    height: 220px;
    overflow: hidden;
    background-color: #f4f6f2;
}

.cert-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cert-card:hover .cert-image img {
    transform: scale(1.05);
}

.cert-content {
    padding: 25px;
    flex-grow: 1;
}

.cert-year {
    display: inline-block;
    background-color: #EAEFE5;
    color: var(--secondary-sage);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.cert-content h3 {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.4;
}

.cert-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* Slider Ok Butonları */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #FFFFFF;
    color: var(--text-dark);
    border: 1px solid rgba(156, 169, 134, 0.3);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.slider-btn:hover {
    background-color: var(--primary-sage);
    color: #FFFFFF;
    border-color: var(--primary-sage);
}

.prev-btn {
    left: -25px;
}

.next-btn {
    right: -25px;
}

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .cert-slide-item {
        flex: 0 0 calc(50% - 15px); /* Tablette yan yana 2 kart */
    }
}

@media (max-width: 768px) {
    .cert-slide-item {
        flex: 0 0 100%; /* Mobilde tek kart */
    }
    .prev-btn {
        left: -10px;
    }
    .next-btn {
        right: -10px;
    }
}
/* =========================================
   FOTOĞRAF BOYUT VE ORAN SABitleMELERİ
   ========================================= */
.hero-image .image-wrapper img,
.about-summary-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.cert-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.blog-image img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

/* =========================================
   SCROLL REVEAL (AŞAĞI KAYDIRDIKÇA HAREKET)
   ========================================= */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.reveal-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}