/* 
 * Psikolog Child Theme - Main Stylesheet 
 * Renkler: Açık Gök Mavisi (#8ECAE6) ve Okyanus Yeşili (#219EBC)
 */

:root {
    --primary-blue: #7D7898; /* Dusty Purple / Tozlu Mor */
    --primary-green: #71C0B4; /* Soft Teal / Nane (Buton Rengi) */
    --primary-peach: #DD8E86; /* Soft Rose / Şeftali (Vurgu) */
    --light-bg-gradient: linear-gradient(135deg, #f1f5f9 0%, #f6efe9 100%); /* Soft Slate Blue -> Warm Beige */
    --dark-text: #2D2B38; /* Koyu Mor/Siyah - Okunabilirlik için */
    --light-text: #59556B;
}

body { overflow-x: hidden; font-family: 'Inter', -apple-system, sans-serif; }

/* GENERATEPRESS SIFIRLAMALARI (Hatalı Boşlukları Engeller) */
.site-content, .inside-article, .entry-content, .site-main {
    padding: 0 !important;
    margin: 0 !important;
}
.inside-article { background: transparent !important; }
.entry-header { display: none !important; } /* Anasayfadaki başlığı gizle */

.psikolog-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }

/* ORTAK YARDIMCI SINIFLAR */
.sub-heading {
    display: block; font-size: 0.85rem; font-weight: 700; color: var(--primary-green);
    text-transform: uppercase; letter-spacing: 2px; margin-bottom: 15px;
}
.section-desc {
    color: var(--light-text); font-size: 1.1rem; margin-bottom: 50px;
    max-width: 600px; margin-left: auto; margin-right: auto;
}

/* TAM GENİŞLİK FIX */
.full-bleed {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    box-sizing: border-box;
}

/* ===================================== */
/* TOP-BAR (ÜST BİLGİ ALANI)             */
/* ===================================== */
.psikolog-top-bar {
    background: #f1f5f9; /* Gümüş / Açık Gri (Silver) */
    color: var(--dark-text);
    font-size: 0.85rem;
    padding: 8px 0;
    font-weight: 600;
}
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.psikolog-top-bar a {
    color: var(--dark-text);
    text-decoration: none;
    transition: color 0.3s;
}
.psikolog-top-bar a:hover {
    color: var(--primary-green);
}
.tb-divider {
    margin: 0 10px;
    opacity: 0.5;
}
.tb-left, .tb-right {
    display: flex;
    align-items: center;
}

/* ===================================== */
/* 0. HEADER DÜZENLEMELERİ               */
/* ===================================== */
.site-header {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.04);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-cta-btn {
    background: var(--primary-green) !important;
    color: #ffffff !important;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(113, 192, 180, 0.3);
    display: inline-flex;
    align-items: center;
    margin-left: 20px;
}
.header-cta-btn:hover {
    background: #59A398 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(113, 192, 180, 0.4);
    color: #ffffff !important;
    text-decoration: none;
}
.main-navigation .main-nav ul li a {
    font-weight: 600;
    font-size: 15px;
    color: var(--dark-text);
    transition: color 0.3s;
}
.main-navigation .main-nav ul li[class*="current-menu-"] > a,
.main-navigation .main-nav ul li:hover > a {
    color: var(--primary-green) !important;
}

/* ===================================== */
/* 1. HERO SECTION (Banner)              */
/* ===================================== */
.psikolog-hero-section {
    background-image: url('/dashboard/PHP/inci/wp-content/uploads/bghero1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f7f9fa; /* Görsel yüklenmezse açık zemin */
    padding: 100px 20px 80px; 
    font-family: 'Inter', -apple-system, sans-serif;
    position: relative;
    z-index: 1;
}

/* Animasyonlu Renk Geçişi (Gradient Overlay) */
.psikolog-hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* 3 soft pastel renkten olusan ve sürekli akan bir filtre */
    background: linear-gradient(-45deg, rgba(125,120,152,0.35), rgba(221,142,134,0.35), rgba(113,192,180,0.35), rgba(125,120,152,0.35));
    background-size: 400% 400%;
    animation: flowBG 15s ease infinite;
    z-index: -1;
}

@keyframes flowBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.hero-container { display: flex; flex-wrap: wrap; align-items: center; gap: 50px; }
.hero-left { flex: 1 1 500px; z-index: 2; }
.hero-title { font-size: 3.5rem; font-weight: 800; color: var(--dark-text); line-height: 1.2; margin-bottom: 25px; letter-spacing: -1px; }
.hero-subtitle { font-size: 1.15rem; color: var(--light-text); line-height: 1.6; margin-bottom: 35px; max-width: 90%; }
.hero-actions { display: flex; align-items: center; gap: 20px; margin-bottom: 35px; flex-wrap: wrap; }
.hero-btn { background: var(--primary-green) !important; color: #fff !important; padding: 15px 35px; border-radius: 30px; font-weight: 600; text-decoration: none; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(113, 192, 180, 0.4); display: inline-block; border: 2px solid transparent; }
.hero-btn:hover { background: #59A398 !important; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(113, 192, 180, 0.5); color: #fff !important; text-decoration: none; }
.call-info { font-weight: 600; color: var(--dark-text); font-size: 1rem; }
.hero-features { display: flex; gap: 25px; flex-wrap: wrap; border-top: 1px solid rgba(44, 62, 80, 0.1); padding-top: 25px; }
.hero-features span { font-size: 0.95rem; font-weight: 600; color: var(--dark-text); display: flex; align-items: center; gap: 8px; }
.hero-features .check-icon { color: var(--primary-green); background: rgba(113, 192, 180, 0.15); padding: 3px 6px; border-radius: 50%; font-size: 0.8rem; font-style: normal; }

.hero-right { flex: 1 1 450px; position: relative; height: 500px; display: flex; justify-content: flex-end; }
.hero-image-slider { position: relative; width: 100%; max-width: 450px; height: 100%; border-radius: 20px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
.hero-image-slider img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; animation: fadeImage 8s infinite; }
.hero-image-slider img.img-1 { animation-delay: 0s; }
.hero-image-slider img.img-2 { animation-delay: 4s; opacity: 0; }
@keyframes fadeImage { 0%, 35% { opacity: 1; } 45%, 85% { opacity: 0; } 100% { opacity: 1; } }

/* ===================================== */
/* 2. HİZMETLER SECTION (6 KART)         */
/* ===================================== */
.psikolog-services-section { padding: 80px 20px; background-color: #FAFAFA; }
.services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 50px; }
.services-header .section-title { margin-bottom: 0px; font-size: 2.6rem; color: var(--dark-text); }
.button-outline { background: transparent; color: var(--primary-green); border: 2px solid var(--primary-green); padding: 12px 30px; border-radius: 30px; font-weight: 600; display: inline-block; text-decoration: none; transition: all 0.3s; }
.button-outline:hover { background: var(--primary-green); color: #fff; text-decoration: none; }

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.service-item { background: #fff; padding: 40px; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.02); transition: all 0.3s ease; text-align: left; }
.service-item:hover { box-shadow: 0 10px 40px rgba(0,0,0,0.06); transform: translateY(-5px); }
.service-icon { width: 60px; height: 60px; background: var(--light-bg-gradient); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 25px; color: var(--primary-green); }
.service-icon svg { width: 30px; height: 30px; }
.service-item h3 { font-size: 1.4rem; color: var(--dark-text); margin-bottom: 15px; font-weight: 700; }
.service-item p { color: var(--light-text); line-height: 1.6; margin-bottom: 25px; font-size: 0.95rem; }
.read-more { font-weight: 700; color: var(--dark-text); text-decoration: none; font-size: 0.95rem; transition: color 0.3s; display: inline-flex; align-items: center; gap: 5px; }
.read-more:hover { color: var(--primary-blue); text-decoration: none; }

/* ===================================== */
/* GÖRSEL AYIRICI BANT (VISUAL BREAK)    */
/* ===================================== */
.visual-break-banner {
    position: relative; background: var(--primary-blue); background-image: linear-gradient(120deg, var(--primary-blue), var(--primary-green));
    padding: 80px 20px; text-align: center; color: #fff; display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.banner-overlay {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0; opacity: 0.1; z-index: 1;
    background-image: radial-gradient(#ffffff 2px, transparent 2px); background-size: 30px 30px;
}
.visual-break-content { position: relative; z-index: 2; max-width: 1000px; margin: 0 auto; }
.visual-break-content blockquote { font-size: 2.2rem; font-weight: 400; font-style: italic; line-height: 1.5; margin: 0; color: #fff; text-shadow: 0 4px 10px rgba(0,0,0,0.1); }

/* ===================================== */
/* EĞİTİM & KAMPANYA SECTION (CPT)       */
/* ===================================== */
.psikolog-campaign-section { padding: 80px 20px; background-color: #F8FBFC; }
.campaign-wrap { display: flex; align-items: center; gap: 60px; max-width: 1100px; margin: 0 auto; }
.campaign-image { flex: 1; border-radius: 20px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
.campaign-image img { width: 100%; height: auto; display: block; object-fit: cover; }
.campaign-content { flex: 1; text-align: left; }
.campaign-title { font-size: 2.5rem; color: var(--dark-text); margin-bottom: 20px; line-height: 1.2; font-weight: 800; }
.campaign-text { color: var(--light-text); font-size: 1.1rem; line-height: 1.7; margin-bottom: 30px; }
.campaign-btn { display: inline-block; background: var(--primary-green) !important; color: #fff !important; padding: 15px 35px; border-radius: 30px; font-weight: 700; text-decoration: none; transition: 0.3s; box-shadow: 0 5px 15px rgba(113, 192, 180, 0.3); }
.campaign-btn:hover { background: #59A398 !important; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(113, 192, 180, 0.4); text-decoration: none; color: #fff; }

/* ===================================== */
/* 3. SÜREÇ SECTION (PROCESS)            */
/* ===================================== */
.psikolog-process-section { padding: 80px 20px; background-color: #ffffff; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 50px; position: relative; }
@media (min-width: 993px) { .process-steps::before { content: ''; position: absolute; top: 35px; left: 10%; right: 10%; height: 2px; background: #e2e8f0; z-index: 1; } }
.step-item { position: relative; z-index: 2; padding: 0 10px; }
.step-number { width: 70px; height: 70px; background: var(--light-bg-gradient); color: var(--primary-green); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; font-weight: 700; margin: 0 auto 25px; box-shadow: 0 0 0 10px #fff; }
.step-title { font-size: 1.25rem; color: #3b2b2b; margin-bottom: 15px; font-weight: 700; }
.step-item p { font-size: 0.95rem; color: var(--light-text); line-height: 1.6; }

/* ===================================== */
/* 4. GÜNCEL YAZILAR (BLOG) SECTION      */
/* ===================================== */
.psikolog-blog-section { padding: 80px 20px; background-color: #f7fbfd; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.blog-item { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.03); transition: transform 0.3s ease, box-shadow 0.3s; border: 1px solid #f1f5f9; }
.blog-item:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.08); }
.blog-image { width: 100%; height: 200px; background: #f8fafc; overflow: hidden; display: flex; align-items: center; justify-content: center; color: #cbd5e1; border-bottom: 1px solid #f1f5f9; }
.blog-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-item:hover .blog-image img { transform: scale(1.05); }
.blog-content { padding: 30px; }
.blog-categories { margin-bottom: 15px; font-size: 0.85rem; font-weight: 700; }
.blog-categories a { color: var(--primary-green); text-decoration: none; text-transform: uppercase; letter-spacing: 1px; }
.blog-title { font-size: 1.3rem; margin-bottom: 15px; line-height: 1.4; }
.blog-title a { color: var(--dark-text); text-decoration: none; transition: color 0.3s; }
.blog-title a:hover { color: var(--primary-blue); }
.blog-excerpt { color: var(--light-text); font-size: 0.95rem; line-height: 1.6; margin-bottom: 20px; }
.psikolog-blog-section .read-more { font-weight: 700; color: var(--primary-blue); border-bottom: 2px solid transparent; padding-bottom: 2px; text-decoration: none; }
.psikolog-blog-section .read-more:hover { color: var(--primary-green); border-bottom-color: var(--primary-green); }

/* ===================================== */
/* 5. PREFOOTER & FOOTER                 */
/* ===================================== */
.psikolog-prefooter {
    background: linear-gradient(-45deg, #7D7898, #DD8E86, #71C0B4, #7D7898);
    background-size: 400% 400%;
    animation: flowBG 15s ease infinite;
    padding: 70px 20px; 
    color: #fff; 
    box-shadow: inset 0 10px 20px rgba(0,0,0,0.03); 
}
.prefooter-title { font-size: 2.2rem; color: #fff; margin-bottom: 15px; font-weight: 800; letter-spacing: -0.5px; }
.prefooter-text { font-size: 1.15rem; color: #f0fdf4; margin-bottom: 0px; max-width: 700px; margin-left: auto; margin-right: auto; line-height: 1.6; }
.prefooter-custom-btn { display: inline-block; background: #ffffff !important; color: var(--primary-green) !important; padding: 18px 45px; border-radius: 40px; font-size: 1.15rem; font-weight: 800; text-decoration: none; box-shadow: 0 10px 30px rgba(0,0,0,0.2); transition: all 0.3s ease; }
.prefooter-custom-btn:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(0,0,0,0.4); color: var(--primary-blue) !important; text-decoration: none; }

.psikolog-footer { background: #1a2a30; color: #cbd5e1; padding: 60px 20px 20px; font-family: 'Inter', -apple-system, sans-serif; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 40px; }
.footer-logo { color: #fff; font-size: 1.8rem; font-weight: 800; margin-bottom: 20px; }
.brand-col p { line-height: 1.7; max-width: 400px; font-size: 0.95rem; color: #94a3b8; }
.footer-col h4 { color: #fff; font-size: 1.25rem; margin-bottom: 25px; font-weight: 600; }
.links-col ul { list-style: none; padding: 0; margin: 0; }
.links-col ul li { margin-bottom: 12px; }
.links-col ul li a { color: #cbd5e1; text-decoration: none; transition: color 0.3s; font-size: 0.95rem; }
.links-col ul li a:hover { color: var(--primary-blue); text-decoration: underline; }
.contact-col p { margin-bottom: 15px; line-height: 1.5; font-size: 0.95rem; }
.contact-col a { color: #cbd5e1; text-decoration: none; transition: color 0.3s; }
.contact-col a:hover { color: var(--primary-blue); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 25px; text-align: center; font-size: 0.9rem; color: #64748b; }

/* ===================================== */
/* 6. İÇ SAYFA HEADER (Page Header)      */
/* ===================================== */

.psikolog-page-header .page-title { font-size: 2.5rem; font-weight: 800; color: var(--dark-text); margin-bottom: 15px; }
.psikolog-page-header .page-subtitle { font-size: 1.15rem; color: var(--light-text); max-width: 600px; margin: 0 auto; }

.psikolog-page-header {
    background-image: url('/dashboard/PHP/inci/wp-content/uploads/bghero1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f7f9fa; /* Görsel yüklenmezse açık zemin */
    padding: 100px 20px 80px; 
    font-family: 'Inter', -apple-system, sans-serif;
    position: relative;
    z-index: 1;
}

/* Animasyonlu Renk Geçişi (Gradient Overlay) */
.psikolog-page-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* 3 soft pastel renkten olusan ve sürekli akan bir filtre */
    background: linear-gradient(-45deg, rgba(125,120,152,0.35), rgba(221,142,134,0.35), rgba(113,192,180,0.35), rgba(125,120,152,0.35));
    background-size: 400% 400%;
    animation: flowBG 15s ease infinite;
    z-index: -1;
}
/* ===================================== */
/* 7. RANDEVU SAYFASI (Appointment)      */
/* ===================================== */
.psikolog-appointment-section { padding: 80px 20px; background: #ffffff; }
.appointment-wrapper { display: flex; max-width: 1100px; margin: 0 auto; gap: 60px; align-items: flex-start; }
.appointment-info { flex: 1; }
.appointment-info h2 { font-size: 2.2rem; color: var(--dark-text); margin-bottom: 25px; line-height: 1.3; }
.contact-details-box { display: flex; flex-direction: column; gap: 25px; }
.detail-item { display: flex; align-items: flex-start; gap: 15px; }
.detail-item .d-icon { width: 50px; height: 50px; background: var(--light-bg-gradient); color: var(--primary-green); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.detail-item .d-text { line-height: 1.5; color: var(--light-text); }
.appointment-form-box { flex: 1; background: #ffffff; padding: 40px; border-radius: 12px; box-shadow: 0 10px 40px rgba(0,0,0,0.06); border: 1px solid #f1f5f9; }

/* ===================================== */
/* 8. SSS (FAQ) MANTIĞI                  */
/* ===================================== */
.psikolog-faq-section { padding: 80px 20px; max-width: 900px; margin: 0 auto; min-height: 50vh; }
.faq-accordion { display: flex; flex-direction: column; gap: 20px; }
.faq-item { background: #ffffff; border: 1px solid #e2e8f0; border-radius: 8px; overflow: hidden; transition: box-shadow 0.3s; }
.faq-item.active { border-color: var(--primary-blue); box-shadow: 0 10px 30px rgba(125, 120, 152, 0.1); }
.faq-question { padding: 20px 25px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; background: #fff; transition: background 0.3s; }
.faq-question:hover { background: #f8fafc; }
.faq-question h4 { margin: 0; font-size: 1.2rem; color: var(--dark-text); }
.faq-toggle-icon { width: 30px; height: 30px; border-radius: 50%; background: var(--light-bg-gradient); position: relative; display: flex; align-items: center; justify-content: center; }
.faq-toggle-icon::before, .faq-toggle-icon::after { content: ''; position: absolute; background: var(--primary-green); transition: transform 0.3s; }
.faq-toggle-icon::before { width: 14px; height: 2px; }
.faq-toggle-icon::after { width: 2px; height: 14px; }
.faq-item.active .faq-toggle-icon::after { transform: rotate(90deg); opacity: 0; }
.faq-answer { padding: 0 25px 25px; color: var(--light-text); line-height: 1.6; border-top: 1px solid #f1f5f9; margin-top: 10px; padding-top: 15px; }

/* ===================================== */
/* 9. ÖZEL POPUP (CUSTOM POST TYPE)      */
/* ===================================== */
.psikolog-popup-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); z-index: 99999; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all 0.4s ease; backdrop-filter: blur(4px); }
.psikolog-popup-overlay.show-popup { opacity: 1; visibility: visible; }
.psikolog-popup-box { background: #fff; width: 90%; max-width: 550px; border-radius: 16px; position: relative; overflow: hidden; transform: translateY(30px); transition: transform 0.4s ease; box-shadow: 0 20px 50px rgba(0,0,0,0.15); max-height: 90vh; display: flex; flex-direction: column; }
.psikolog-popup-overlay.show-popup .psikolog-popup-box { transform: translateY(0); }
.psikolog-popup-close { position: absolute; top: 15px; right: 15px; background: #fff; border: none; width: 35px; height: 35px; border-radius: 50%; font-size: 1.5rem; display: flex; align-items: center; justify-content: center; cursor: pointer; color: #64748b; transition: all 0.3s; z-index: 10; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.psikolog-popup-close:hover { background: #e2e8f0; color: #0f172a; transform: rotate(90deg); }
.popup-image { background: #f8fafc; text-align: center; flex-shrink: 0; }
.popup-image img { width: 100%; height: auto; max-height: 45vh; object-fit: contain; display: block; margin: 0 auto; }
.popup-content-wrap { padding: 30px; text-align: center; overflow-y: auto; }
.popup-content-wrap h3 { font-size: 1.6rem; color: var(--dark-text); margin-bottom: 15px; }
.popup-text { color: var(--light-text); line-height: 1.6; margin-bottom: 25px; font-size: 0.95rem; }
.popup-btn { display: inline-block; background: var(--primary-green) !important; color: #fff !important; padding: 12px 30px; border-radius: 30px; font-weight: 600; text-decoration: none; transition: 0.3s; border: none; }
.popup-btn:hover { background: #59A398 !important; transform: translateY(-2px); box-shadow: 0 5px 15px rgba(113, 192, 180, 0.4); text-decoration: none; }

/* ===================================== */
/* RESPONSIVE (MOBİL UYUMLULUK)          */
/* ===================================== */
@media (max-width: 1100px) {
    .services-header { flex-direction: column; align-items: flex-start; gap: 20px; }
    .appointment-wrapper { flex-direction: column; gap: 40px; }
    .appointment-form-box { width: 100%; padding: 30px; }
}
@media (max-width: 992px) {
    .hero-title { font-size: 2.8rem; }
    .hero-container { flex-direction: column; text-align: center; gap: 30px; }
    .hero-actions { justify-content: center; }
    .hero-features { justify-content: center; }
    .hero-right { width: 100%; height: 400px; display: flex; justify-content: center; }
    .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px 30px; }
    .visual-break-content blockquote { font-size: 1.8rem; }
    
    .campaign-wrap { flex-direction: column; text-align: center; gap: 40px; }
    .campaign-content { text-align: center; }
    .campaign-title { font-size: 2.2rem; }
    
    /* Paddingleri Düşürdük */
    .psikolog-hero-section { padding: 60px 20px; }
    .psikolog-services-section, .psikolog-process-section, .psikolog-blog-section, .psikolog-campaign-section, .visual-break-banner { padding: 50px 20px; }
    .psikolog-prefooter { padding: 50px 20px; }
    
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 768px) {
    .hero-title { font-size: 2.2rem; }
    .hero-right { height: 300px; }
    .services-header .section-title { font-size: 2rem; }
    .process-steps { grid-template-columns: 1fr; }
    .visual-break-content blockquote { font-size: 1.5rem; }
    .prefooter-title { font-size: 1.8rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .brand-col p { margin: 0 auto; }
    
    /* Mobil Header Ayarları */
    .header-cta-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
        margin-left: auto;
        margin-right: 15px; /* Hamburger butonu ile aradaki mesafe */
    }
    
    /* Mobil Top Bar Ayarları */
    .top-bar-inner {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
    .tb-divider { display: none; }
    .tb-left { flex-direction: column; gap: 5px; }
}

/* ===================================== */
/* HAKKIMDA (ABOUT) SAYFASI ÖZEL TASARIM */
/* ===================================== */
.about-hero-img:hover { transform: rotate(0deg) !important; }
.value-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.06) !important; }

.about-timeline {
    position: relative;
    padding: 20px 0;
    max-width: 800px;
    margin: 0 auto;
}
.timeline-line {
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e2e8f0;
}
.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 40px;
}
.timeline-item:last-child {
    margin-bottom: 0;
}
.timeline-dot {
    position: absolute;
    left: 11px; /* Center alignment with the vertical line */
    top: 5px;
    width: 20px;
    height: 20px;
    background: var(--primary-green);
    border-radius: 50%;
    box-shadow: 0 0 0 6px #fff;
    transition: transform 0.3s ease, background 0.3s;
}
.timeline-item:hover .timeline-dot {
    transform: scale(1.3);
    background: var(--primary-blue);
}
.timeline-date {
    display: inline-block;
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 0.95rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.timeline-content h3 {
    font-size: 1.4rem;
    margin: 0 0 5px;
    color: var(--dark-text);
    font-weight: 700;
}
.timeline-school {
    font-weight: 600;
    color: var(--primary-green);
    font-size: 1rem;
    margin-bottom: 12px;
}
.timeline-content p {
    color: var(--light-text);
    line-height: 1.6;
    margin: 0;
    font-size: 1.05rem;
}
@media (max-width: 768px) {
    .about-intro-wrap { flex-direction: column; text-align: center; }
    .about-intro-wrap .about-quote { text-align: left; }
}

/* ===================================== */
/* MAKALE / YAZI FORMATLARI (TYPOGRAPHY) */
/* ===================================== */
.format-standard-content h2, .format-standard-content h3, .format-standard-content h4 {
    margin-top: 50px;
    margin-bottom: 20px;
    font-weight: 800;
    color: var(--dark-text);
}
.format-standard-content p {
    margin-bottom: 25px;
    font-size: 1.15rem;
    line-height: 1.8;
}
.format-standard-content ul, .format-standard-content ol {
    margin-bottom: 30px;
    padding-left: 25px;
    line-height: 1.8;
    font-size: 1.15rem;
}
.format-standard-content blockquote {
    border-left: 5px solid var(--primary-green);
    padding: 20px 30px;
    margin: 40px 0;
    background: var(--light-bg-gradient);
    font-style: italic;
    border-radius: 0 15px 15px 0;
    font-size: 1.3rem;
    color: var(--primary-blue);
    line-height: 1.6;
}
.format-standard-content img {
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin: 30px 0;
    max-width: 100%;
    height: auto;
}

/* ===================================== */
/* HİZMETLER (SERVICES) KART ANİMASYONLARI*/
/* ===================================== */
.hizmet-card:hover { transform: translateY(-5px) !important; box-shadow: 0 15px 40px rgba(0,0,0,0.08) !important; }
.hizmet-card:hover .hizmet-img-wrap img { transform: scale(1.05) !important; }

/* ===================================== */
/* MODERN BLOG TASARIMI                  */
/* ===================================== */
.featured-blog-post {
    display: flex;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
    margin-bottom: 60px;
    transition: transform 0.4s;
    border: 1px solid #f1f5f9;
}
.featured-blog-post:hover {
    transform: translateY(-5px);
}
.featured-image {
    flex: 1 1 55%;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}
.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    transition: transform 0.6s ease;
}
.featured-blog-post:hover .featured-image img {
    transform: scale(1.05);
}
.featured-content {
    flex: 1 1 45%;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.cat-tag {
    display: inline-block;
    background: var(--light-bg-gradient);
    color: var(--primary-green);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    align-self: flex-start;
    margin-bottom: 20px;
}
.featured-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}
.featured-excerpt {
    font-size: 1.1rem;
    color: var(--light-text);
    line-height: 1.7;
    margin-bottom: 30px;
}

.modern-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 40px;
}
.modern-blog-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid #f1f5f9;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}
.modern-blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.card-img-wrap {
    position: relative;
    height: 240px;
    overflow: hidden;
}
.card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.modern-blog-card:hover .card-img-wrap img {
    transform: scale(1.05);
}
.floating-cat {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255,255,255,0.95);
    color: var(--primary-green);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 2;
    backdrop-filter: blur(5px);
}
.card-content {
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.card-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark-text);
    line-height: 1.3;
    margin-bottom: 15px;
}
.card-excerpt {
    color: var(--light-text);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 25px;
    flex: 1;
}
.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}
.read-more-link {
    color: var(--primary-blue);
    font-weight: 800;
    font-size: 0.95rem;
    text-decoration: none;
    transition: 0.3s;
}
.read-more-link:hover {
    color: var(--primary-green);
}
.card-date {
    color: #94a3b8;
    font-size: 0.85rem;
    font-weight: 600;
}

@media (max-width: 992px) {
    .featured-blog-post { flex-direction: column; }
    .featured-image { min-height: 300px; flex: none; }
    .featured-content { padding: 40px 30px; }
    
    /* Özel flex kolonları için mobil yönlendirme (İç içe binmeyi engeller) */
    .header-content-left, 
    .header-image-right, 
    .egitim-content-area, 
    .egitim-registration-box,
    .appointment-form-box,
    .appointment-info-card,
    .appointment-widget-box,
    .contact-info-col,
    .contact-form-col {
        flex: 1 1 100% !important;
        max-width: 100% !important;
        margin-bottom: 25px;
    }
    
    /* Padding Daraltmaları */
    .single-split-header, 
    .hizmet-detail-section,
    .psikolog-appointment-section,
    .psikolog-page-header,
    .contact-split-section {
        padding-left: 15px !important;
        padding-right: 15px !important;
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

    /* Boşlukları (Gap) Kontrol Etme */
    .psikolog-container > div[style*="gap"],
    .appointment-wrapper,
    .contact-grid {
        gap: 20px !important;
    }

    /* Yazı Puntosu */
    .entry-title, .page-title, h1 {
        font-size: 2.2rem !important;
        margin-bottom: 15px !important;
        line-height:1.2 !important;
    }

    /* Kart İç İçe Padding */
    .appointment-info-card, .appointment-widget-box,
    .contact-form-col,
    .egitim-registration-box > div,
    .egitim-content-area > div {
        padding: 30px 20px !important;
    }
}
