/* ==========================================================================
   UZMAN KLİNİK PSİKOLOG MELİKE ÇAPKIN - PREMIUM GLOBAL CSS HAVUZU
   ========================================================================== */

/* Google Fonts Entegrasyonu - Modern & Premium Tipografi */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,400&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 1. Tüm Düz Metinleri, Paragrafları ve Menüleri İnter Fontuna Kilitle */
html, body, p, span, a, li, address, td, th, label, input, textarea, .empathy-text, .video-info-area p, .testimonial-card p, .biography-text p {
    font-family: 'Inter', sans-serif !important;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

html, body {
    width: 100%;
    min-height: 100vh;
    background-color: #f8fafc;
    color: #1e293b;
    scroll-behavior: smooth;
}

/* Sitenin Genişlik Nizamı */
.mp-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

main {
    display: block;
    width: 100%;
}

/* 2. Sitedeki İSTİSNASIZ TÜM BAŞLIKLARI Premium Tırnaklı Fonta Zorla */
h1, h2, h3, h4, h5, h6, 
.logo a, 
.heading-global, 
.page-banner h2, 
.biography-text h3, 
.card-title-area h3, 
.footer-col h4,
.video-info-area h3,
.hero-content h2 {
    font-family: 'Playfair Display', serif !important;
    font-weight: 700 !important;
    color: #0f172a !important; /* Çiğ siyah/mavi yerine lüks derin antrasit */
    text-transform: none !important;
}

/* --- TOP BAR STİLLERİ --- */
.top-bar {
    background-color: #0f172a;
    color: #f1f5f9;
    font-size: 13.5px;
    padding: 12px 0;
    border-bottom: 1px solid #1e293b;
    width: 100%;
}

.top-bar .contact-info {
    display: flex;
    gap: 24px;
}

.top-bar .contact-info a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.top-bar .contact-info a:hover {
    color: #38bdf8;
}

.top-bar .contact-info i {
    margin-right: 8px;
    color: #38bdf8;
}

.top-bar .social-icons {
    display: flex;
    align-items: center;
}

.top-bar .social-icons a {
    color: #cbd5e1;
    margin-left: 18px;
    text-decoration: none;
    font-size: 15px;
    transition: transform 0.2s ease, color 0.3s ease;
    display: inline-block;
}

.top-bar .social-icons a.top-fb:hover { color: #1877F2; }
.top-bar .social-icons a.top-insta:hover { color: #E1306C; }
.top-bar .social-icons a.top-linkedin:hover { color: #0a66c2; }
.top-bar .social-icons a.top-wp:hover { color: #25D366; }
.top-bar .social-icons a:hover { transform: scale(1.15); }

/* --- NAVBAR STİLLERİ --- */
.main-header {
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.navbar {
    padding: 24px 0; 
    transition: all 0.3s ease;
}

.logo span {
    color: #0284c7;
    font-weight: 400;
    font-style: italic;
}

/* Mobil Menü Butonu (Hamburger) */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1010;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: #0f172a;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hamburger Açık Animasyonu */
.menu-toggle.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-menu li {
    margin-left: 36px;
}

.nav-menu a {
    color: #475569;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-menu a:hover, .nav-menu a.active {
    color: #0284c7;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #0284c7;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* --- BANNER (İÇ SAYFA) STİLLERİ --- */
.page-banner {
    background: linear-gradient(135deg, #f0fdf4 0%, #e0f2fe 100%);
    padding: 60px 0;
    text-align: center;
    width: 100%;
    border-bottom: 1px solid #e2e8f0;
}

.page-banner h2 {
    font-size: 38px !important;
    margin-bottom: 12px;
}

.page-banner p {
    color: #475569;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

/* --- GLOBAL ÖĞELER --- */
.sub-title-global {
    color: #0284c7;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 16px;
    display: block;
}

.heading-global {
    font-size: 36px !important;
    margin-bottom: 32px;
    line-height: 1.3 !important;
}

.btn-primary {
    display: inline-block;
    background-color: #0284c7;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(2, 132, 199, 0.2);
}

.btn-primary:hover {
    background-color: #0369a1;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(2, 132, 199, 0.3);
}

/* --- ANASAYFA SPESİFİK STİLLER --- */
.hero-section { background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%); padding: 80px 0; }
.hero-container { display: flex; justify-content: space-between; align-items: center; gap: 60px; }
.hero-content { flex: 1.2; }

/* O İnattçı Giriş Başlığının Ajans Nizamı Ayarı */
.hero-content h2 { 
    font-size: 46px !important; 
    margin-bottom: 24px !important; 
    line-height: 1.25 !important; 
    letter-spacing: -0.5px !important;
}

.hero-content p { font-size: 17px; color: #475569; margin-bottom: 36px; line-height: 1.7; }
.hero-image { flex: 0.8; text-align: right; }
.hero-image img { max-width: 100%; height: auto; border-radius: 16px; box-shadow: 0 20px 40px rgba(15,23,42,0.06); }

.empathy-section { background-color: #ffffff; padding: 100px 0; }
.empathy-container { display: flex; flex-direction: column; align-items: center; text-align: center; max-width: 850px; margin: 0 auto; }
.empathy-text { font-size: 17px; color: #475569; line-height: 1.8; margin-bottom: 48px; }
.problem-grid { display: flex; justify-content: center; gap: 24px; width: 100%; margin-bottom: 48px; }
.problem-item { flex: 1; background-color: #f8fafc; padding: 32px 24px; border-radius: 12px; border-bottom: 4px solid transparent; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
.problem-item:hover { transform: translateY(-4px); background-color: #ffffff; box-shadow: 0 12px 30px rgba(0,0,0,0.04); border-bottom-color: #0284c7; }
.problem-item i { font-size: 26px; color: #0284c7; margin-bottom: 18px; display: block;}
.problem-item h4 { font-size: 16px; color: #1e293b; font-weight: 600; line-height: 1.4;}

.services-section { background-color: #f8fafc; padding: 100px 0; border-top: 1px solid #e2e8f0; }
.services-header { text-align: center; max-width: 700px; margin: 0 auto 60px auto; }
.services-header p { font-size: 16px; color: #475569; line-height: 1.6; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; width: 100%; }
.service-card { background-color: #ffffff; padding: 40px 32px; border-radius: 16px; text-align: center; box-shadow: 0 4px 20px rgba(0,0,0,0.02); border: 1px solid #e2e8f0; transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); position: relative; overflow: hidden; }
.service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(2, 132, 199, 0.08); border-color: #0284c7; }
.service-icon-wrap { width: 72px; height: 72px; background-color: #f0f9ff; color: #0284c7; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px auto; font-size: 28px; transition: all 0.3s ease; }
.service-card:hover .service-icon-wrap { background-color: #0284c7; color: #ffffff; }
.service-card h4 { font-size: 20px; margin-bottom: 14px; }
.service-card p { font-size: 15px; color: #475569; line-height: 1.6; margin-bottom: 24px; }
.service-link { font-size: 14.5px; color: #0284c7; text-decoration: none; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }

.about-short-section { background-color: #ffffff; padding: 100px 0; border-top: 1px solid #e2e8f0; }
.about-short-container { display: flex; align-items: center; gap: 60px; }
.about-short-img { flex: 1; position: relative; }
.about-short-img::before { content: ''; position: absolute; width: 100%; height: 100%; border: 3px solid #0284c7; border-radius: 12px; top: 20px; left: -20px; z-index: 1; }
.about-short-img img { width: 100%; max-width: 450px; height: auto; border-radius: 12px; position: relative; z-index: 2; box-shadow: 0 15px 35px rgba(0,0,0,0.06); }
.about-short-text { flex: 1.2; }
.about-short-text p { font-size: 16px; color: #475569; line-height: 1.8; margin-bottom: 20px; }

.testimonials-section { background-color: #f4f6f9; padding: 100px 0; border-top: 1px solid #e2e8f0; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 50px; }
.testimonial-card { background-color: #ffffff; padding: 40px 32px; border-radius: 12px; box-shadow: 0 8px 25px rgba(0,0,0,0.02); border: 1px solid #e2e8f0; position: relative; transition: transform 0.3s ease; }
.testimonial-card:hover { transform: translateY(-5px); }
.testimonial-card .quote-icon { font-size: 32px; color: #e8f4fd; position: absolute; top: 25px; left: 25px; z-index: 1; }
.testimonial-card p { font-size: 15px; color: #475569; line-height: 1.7; position: relative; z-index: 2; font-style: italic; margin-bottom: 25px; }
.testimonial-user { display: flex; align-items: center; gap: 15px; border-top: 1px solid #f1f5f9; padding-top: 20px; }
.testimonial-user .user-info h4 { font-size: 15px; color: #0f172a; font-weight: 600; }
.testimonial-user .user-info span { font-size: 13px; color: #94a3b8; }

/* --- HAKKIMDA SPESİFİK STİLLER --- */
.biography-section { padding: 90px 0; background-color: #ffffff; width: 100%; }
.biography-container { display: flex; align-items: flex-start; gap: 64px; }
.biography-img { flex: 0.9; min-height: 400px; position: sticky; top: 140px; }
.biography-img img { width: 100%; height: auto; max-width: 480px; border-radius: 16px; display: block; box-shadow: 0 20px 40px rgba(0,0,0,0.05); }
.biography-text { flex: 1.4; }
.biography-text h3 { font-size: 32px !important; margin-bottom: 24px; }
.biography-text p { font-size: 16px; color: #475569; line-height: 1.8; margin-bottom: 20px; text-align: justify; }

.approach-section { padding: 80px 0; background-color: #f8fafc; border-top: 1px solid #e2e8f0; border-bottom: 1px solid #e2e8f0; width: 100%; }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 50px auto; }
.section-header h3 { font-size: 28px !important; }
.approach-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; width: 100%; }
.approach-card { background-color: #ffffff; padding: 35px 25px; border-radius: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.02); border: 1px solid #e2e8f0; transition: transform 0.3s; }
.approach-card:hover { transform: translateY(-5px); }
.approach-card i { font-size: 28px; color: #0284c7; margin-bottom: 20px; }
.approach-card h4 { font-size: 18px; color: #0f172a; margin-bottom: 12px; font-weight: 600; }
.approach-card p { font-size: 14.5px; color: #475569; line-height: 1.6; }

.education-section { padding: 80px 0; background-color: #ffffff; width: 100%; }
.education-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; width: 100%; }
.education-col h4 { font-size: 20px; color: #0f172a; margin-bottom: 25px; display: flex; align-items: center; gap: 10px; border-bottom: 2px solid #f1f5f9; padding-bottom: 10px; }
.education-col h4 i { color: #0284c7; }
.timeline { display: flex; flex-direction: column; gap: 20px; }
.timeline-item { padding-left: 20px; border-left: 3px solid #e2e8f0; position: relative; }
.timeline-item .year { font-size: 13px; font-weight: 700; color: #0284c7; margin-bottom: 3px; display: block; }
.timeline-item h5 { font-size: 15.5px; color: #0f172a; font-weight: 600; margin-bottom: 4px; }
.timeline-item p { font-size: 14px; color: #475569; line-height: 1.5; }
.test-list { display: flex; flex-direction: column; gap: 12px; list-style: none; padding-top: 15px; }
.test-list li { font-size: 14.5px; color: #334155; display: flex; align-items: center; gap: 10px; line-height: 1.4; }
.test-list li i { color: #2ecc71; font-size: 14px; }

.cta-section { background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%); color: white; padding: 60px 0; text-align: center; width: 100%; }
.cta-section h3 { font-size: 28px !important; margin-bottom: 15px; }
.cta-section p { color: #94a3b8; font-size: 16px; margin-bottom: 25px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* --- ÇALIŞMA ALANLARIM (ACCORDION) STİLLERİ --- */
.service-wrapper { width: 100%; margin-bottom: 18px; background-color: #ffffff; border-radius: 12px; box-shadow: 0 4px 12px rgba(0,0,0,0.01); overflow: hidden; border: 1px solid #e2e8f0; }
.service-wrapper .service-card { display: flex; align-items: center; justify-content: space-between; padding: 24px 32px; text-align: left; background-color: #ffffff; cursor: pointer; border-radius: 0; box-shadow: none; border: none; }
.service-wrapper .service-card::before { display: none; }
.service-wrapper .service-card:hover { transform: none; box-shadow: none; background-color: #f8fafc; }
.card-img-wrapper { width: 64px; height: 64px; border-radius: 50%; overflow: hidden; flex-shrink: 0; border: 2px solid #e2e8f0; }
.card-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.card-title-area { flex: 1; margin-left: 24px; }
.card-title-area h3 { font-size: 22px !important; }
.card-arrow { font-size: 16px; color: #94a3b8; transition: transform 0.3s ease; }
.service-card.mp-active .card-arrow { transform: rotate(90deg); color: #0284c7; }
.description-panel { display: none; padding: 36px 32px; background-color: #ffffff; border-top: 1px solid #f1f5f9; animation: slideDown 0.3s ease-out; }
.description-panel h4 { font-size: 18px; color: #0284c7; margin-bottom: 15px; font-weight: 600; }
.description-panel p { font-size: 15.5px; color: #475569; line-height: 1.8; margin-bottom: 15px; }
.welcome-note { font-style: italic; font-weight: 600; color: #0f172a !important; margin-top: 20px; }

/* --- BASINDA (VIDEO GRID) STİLLERİ --- */
.media-section { padding: 80px 0; background-color: #ffffff; }
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; width: 100%; }
.video-card { background-color: #ffffff; border-radius: 16px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.02); border: 1px solid #e2e8f0; transition: transform 0.3s; }
.video-card:hover { transform: translateY(-5px); }
.video-embed-wrapper { position: relative; width: 100%; padding-bottom: 56.25%; background-color: #000; }
.video-embed-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }
.video-info-area { padding: 24px; }
.video-tag { display: inline-block; background-color: #f0f9ff; color: #0284c7; font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 4px; text-transform: uppercase; margin-bottom: 12px; }
.video-info-area h3 { font-size: 18px; color: #0f172a; font-weight: 600; margin-bottom: 10px; line-height: 1.4; }

/* --- FOOTER STİLLERİ --- */
.main-footer {
    background-color: #0f172a;
    color: #cbd5e1;
    padding: 80px 0 32px 0;
    border-top: 4px solid #0284c7;
    width: 100%;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.5fr;
    gap: 48px;
    width: 100%;
    margin-bottom: 48px;
    align-items: start;
}

.footer-col h4 {
    font-size: 18px !important;
    margin: 0 0 24px 0;
    padding: 0 0 12px 0;
    position: relative;
    line-height: 1.2;
    height: 32px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 36px;
    height: 2px;
    background-color: #0284c7;
}

.footer-col p { color: #cbd5e1; font-size: 14.5px; line-height: 1.6; margin-bottom: 20px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 14px; line-height: 1; }
.footer-links a { color: #cbd5e1; text-decoration: none; font-size: 15px; transition: all 0.3s ease; display: inline-block; }
.footer-links a:hover { color: #38bdf8; transform: translateX(5px); }

.footer-contact-item { display: flex; gap: 16px; margin-bottom: 24px; align-items: flex-start; }
.footer-contact-item i { color: #38bdf8; font-size: 16px; margin-top: 4px; width: 20px; text-align: center; }
.footer-contact-content h5 { font-size: 14.5px; color: #ffffff; font-weight: 600; margin-bottom: 4px; line-height: 1.2; }
.footer-contact-content p { font-size: 14px; color: #cbd5e1; margin: 0; line-height: 1.5; }
.footer-contact-content p a { color: #cbd5e1; text-decoration: none; transition: color 0.3s ease; }
.footer-contact-content p a:hover { color: #38bdf8; }

.footer-social { margin-top: 25px; display: flex; align-items: center; }
.footer-social a { display: inline-flex; width: 40px; height: 40px; background-color: #1e293b; color: #cbd5e1; border-radius: 6px; align-items: center; justify-content: center; margin-right: 12px; text-decoration: none; transition: all 0.3s ease; }
.footer-social a.footer-fb:hover { background-color: #1877F2; color: #ffffff; transform: translateY(-3px); }
.footer-social a.footer-insta:hover { background-color: #E1306C; color: #ffffff; transform: translateY(-3px); }
.footer-social a.footer-linkedin:hover { background-color: #0a66c2; color: #ffffff; transform: translateY(-3px); }
.footer-social a.footer-wp:hover { background-color: #25D366; color: #ffffff; transform: translateY(-3px); }
.footer-social a i { font-size: 16px; display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; text-align: center; }

.footer-bottom { border-top: 1px solid #1e293b; padding-top: 32px; font-size: 14px; color: #64748b; display: flex; justify-content: space-between; align-items: center; }

/* Animasyonlar */
@keyframes slideDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

/* --- TAM UYUMLU RESPONSIVE & MOBİL MENÜ ALTYAPISI --- */
@media (max-width: 1024px) {
    .biography-container { flex-direction: column; text-align: center; gap: 40px; }
    .biography-img { position: relative; top: 0; min-height: auto; text-align: center; width: 100%; }
    .biography-img img { max-width: 450px; margin: 0 auto; }
    .video-grid, .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

@media (max-width: 768px) {
    .menu-toggle { display: flex; }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: #ffffff;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 48px;
        gap: 32px;
        transition: left 0.4s cubic-bezier(0.77,0.2,0.05,1);
        box-shadow: 0 15px 30px rgba(15, 23, 42, 0.05);
    }
    
    .nav-menu.open { left: 0; }
    .nav-menu li { margin-left: 0; }
    .nav-menu a { font-size: 18px; font-weight: 600; }

    .top-bar .mp-container { flex-direction: column; gap: 10px; text-align: center; }
    .top-bar .contact-info { flex-direction: column; gap: 8px; }
    .top-bar .social-icons { margin-top: 4px; justify-content: center; }
    .top-bar .social-icons a { margin: 0 10px; }
    
    .navbar { padding: 20px 0; }
    .hero-container, .about-short-container { flex-direction: column; text-align: center; gap: 40px; }
    .hero-section, .empathy-section, .services-section, .about-short-section, .testimonials-section, .biography-section, .approach-section, .education-section, .media-section { padding: 60px 0; }
    .hero-image, .about-short-img, .biography-img { text-align: center; width: 100%; }
    
    .hero-content h2, .heading-global, .biography-text h3 { font-size: 30px !important; }
    .empathy-text { font-size: 16px; padding: 0 10px; }
    
    .problem-grid, .services-grid, .testimonials-grid, .footer-grid, .approach-grid, .education-grid, .video-grid { grid-template-columns: 1fr; gap: 24px; padding: 0 10px; }
    .problem-item, .service-card, .testimonial-card, .approach-card { padding: 25px 20px; }
    .timeline-item { padding-left: 15px; text-align: left; }
    .card-title-area h3 { font-size: 18px !important; }
    .description-panel { padding: 25px 20px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ==========================================================================
   GELİŞMİŞ TAVAN VE TABAN BEYAZLIK SIFIRLAMA
   ========================================================================== */

html, body, #page, #page-wrapper, .site, .site-wrapper {
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden !important;
    background-color: #f8fafc !important;
}

.top-bar {
    margin-top: 0 !important;
    position: relative !important;
    top: 0 !important;
}

.entry-content, #content, .site-content, .main-content-page, #main, main, .elementor-section-wrap {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.main-footer {
    margin-bottom: 0 !important;
    position: relative !important;
    bottom: 0 !important;
}

.elementor-inner, .elementor-section, .elementor-container {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}