:root {
    --primary: #0f172a; /* Çok koyu lacivert (Ağırlık katar) */
    --accent: #b89552;  /* Gold/Bronz (Lüks hissi) */
    --white: #ffffff;
    --gray: #f8fafc;
    --text: #334155;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background-color: var(--white);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Sabit Header ve Cam Efekti */
.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px); /* Premium hissi veren ana dokunuş */
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: 0.3s all ease;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    text-decoration: none;
    color: var(--primary);
    font-weight: 700;
}

.logo span { color: var(--accent); }

nav ul { display: flex; list-style: none; gap: 30px; }

nav ul li a {
    text-decoration: none;
    color: var(--primary);
    font-weight: 500;
    font-size: 15px;
}

.btn-nav {
    background: var(--primary);
    color: var(--white) !important;
    padding: 10px 25px;
    border-radius: 50px;
    transition: 0.3s;
}

.btn-nav:hover { background: var(--accent); }

/* Sticky Effect class (JS ile eklenecek) */
.header-scrolled { padding: 12px 0; background: rgba(255, 255, 255, 0.95); }

/* Genel Ayarlar */
:root {
    --primary: #0f172a;
    --accent: #b89552;
    --text-light: #64748b;
}

body {
    background-color: #fcfcfc;
    color: var(--primary);
    -webkit-font-smoothing: antialiased; /* Yazıları daha keskin yapar */
}

/* Header Düzenleme */
.main-header {
    display: flex;
    align-items: center;
    height: 80px; /* Sabit yükseklik */
}

.main-header .container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Hero Section (İçeriği aşağı itelim) */
.hero-section {
    padding: 160px 0 100px 0; /* Header'dan kurtulması için üstten pay verdik */
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem; /* Büyük ve iddialı başlık */
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin-bottom: 30px;
}

/* WhatsApp Butonu Şıklaştırma */
.fixed-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 999;
    transition: 0.3s;
}

.fixed-whatsapp:hover { transform: scale(1.1); }
.fixed-whatsapp img { width: 30px; height: 30px; }

/* Menü Linkleri Hover Efekti */
nav ul li a {
    transition: 0.3s;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0; height: 2px;
    bottom: -5px; left: 0;
    background: var(--accent);
    transition: 0.3s;
}

nav ul li a:hover::after { width: 100%; }
/* About Section Tasarımı */
.about-section {
    padding: 100px 0;
    background: #fff;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image .image-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    display: block;
    transition: 0.5s;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--primary);
    color: #fff;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(5px);
}

.about-text .sub-title {
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.about-text h2 {
    font-size: 2.8rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 25px;
}

.about-text h2 span { color: var(--accent); }

.about-features {
    list-style: none;
    margin: 30px 0;
}

.about-features li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.about-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

/* --- RESPONSIVE TASARIM (Mobile & Tablet) --- */

@media (max-width: 992px) {
    .about-wrapper {
        grid-template-columns: 1fr; /* Mobilde alt alta gelsin */
        text-align: center;
    }
    
    .about-text h2 { font-size: 2.2rem; }
    
    .desktop-nav { display: none; } /* Hamburger menü gerekecek */
    
    .hero-content h1 { font-size: 2.5rem; }
}

@media (max-width: 768px) {
    .container { padding: 0 30px; }
    .about-section { padding: 60px 0; }
    .experience-badge { padding: 10px; right: 15px; bottom: 15px; }
}
/* Hamburger İkon Stili */
.menu-toggle {
    display: none; /* Masaüstünde gizle */
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1001;
}

.menu-toggle .bar {
    width: 30px;
    height: 3px;
    background-color: var(--primary);
    transition: 0.3s;
    border-radius: 10px;
}

/* Mobil Menü Tasarımı (Responsive) */
@media (max-width: 992px) {
    .menu-toggle { display: flex; }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%; /* Başlangıçta ekran dışında */
        width: 80%;
        height: 100vh;
        background: var(--white);
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
        z-index: 1000;
    }

    .nav-menu.active { right: 0; } /* Açıldığında gelecek konum */

    .nav-menu ul {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .nav-menu ul li a {
        font-size: 1.5rem;
        font-weight: 600;
    }

    /* Hamburger Animasyonu (X işareti) */
    .menu-toggle.active .bar:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .menu-toggle.active .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.active .bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
}
/* Hizmetler Bölümü Genel */
.services-section {
    padding: 100px 0;
    background-color: #f8fafc; /* Hafif gri arka plan kartları belirginleştirir */
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
}

/* Grid Yapısı */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Masaüstü 3 kolon */
    gap: 30px;
}

/* Kart Tasarımı (Lüks Dokunuş) */
.service-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.03);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    border-color: var(--accent);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: rgba(184, 149, 82, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    width: 35px;
    height: 35px;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-family: 'Playfair Display', serif;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.service-link {
    text-decoration: none;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr); /* Tablet 2 kolon */
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr; /* Mobil tek kolon */
    }
    .service-card {
        padding: 30px;
    }
}
/* --- %100 RESPONSIVE VE MOBİL UYUM --- */

@media (max-width: 992px) {
    /* Hizmetler: Tableti 2 kolon yap */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    /* Hakkında Bölümü: Resim ve Yazıyı alt alta al */
    .about-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .about-text h2 { font-size: 2.2rem; }
}

@media (max-width: 768px) {
    /* Genel Container Payı */
    .container {
        padding: 0 20px;
        width: 100%;
        overflow-x: hidden; /* Yatay kaymayı kökten engeller */
    }

    /* Hero Alanı: Yazıları mobilde küçült */
    .hero-content h1 {
        font-size: 2rem;
        text-align: center;
    }
    
    .hero-content p {
        text-align: center;
        margin: 0 auto 30px;
    }

    /* Hizmetler ve Videolar: Mobilde TEK KOLON */
    .services-grid, 
    .video-grid {
        grid-template-columns: 1fr !important;
        gap: 25px;
    }

    /* Video Kartı: Mobilde başlıkları küçült */
    .video-card h4 {
        font-size: 1rem;
    }

    .play-button {
        width: 60px;
        height: 60px;
    }

    /* Hakkında Görseli: Mobilde çok büyük durmasın */
    .about-image .image-box {
        max-width: 400px;
        margin: 0 auto;
    }

    .experience-badge {
        padding: 10px 15px;
        font-size: 0.8rem;
    }
    
    /* Modal (Video Popup): Mobilde ekranı tam kaplasın */
    .modal-content {
        width: 95%;
    }
}

/* EKSTRA GÜVENLİK: Yatay kaymayı (Horizontal Scroll) yasakla */
html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;

}
/* Ana Section: İçeriğin dikey ve yatayda bölüme tam ortalanması */
.premium-video-section {
    padding: 120px 0;
    background: #0b0f19;
    display: flex;
    justify-content: center; /* Yatayda ortala */
    align-items: center;    /* Dikeyde ortala */
}

/* Container'ın genişliğini ve ortalanmasını garantiye alalım */
.premium-video-section .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto; /* Klasik ortalama yöntemi */
}

/* Wrapper: Grid kolonlarının tam dolmasını sağlayalım */
.premium-video-wrapper {
    display: grid;
    grid-template-columns: 1.6fr 0.9fr; /* Oranları biraz daha dengeledik */
    gap: 0;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,0.6);
    width: 100%; /* Sola kaymayı engellemek için genişliği sabitledik */
}

/* Video Görselinin tam sığması için */
.video-main-display img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block; /* Altındaki boşluğu siler */
}

/* Playlist'in (Sağ taraf) dolgun durması için */
.video-playlist {
    background: #161c2d;
    display: flex;
    flex-direction: column;
    height: 100%; /* Sol tarafla boyu eşitle */
}

/* Mobilde kayma olmaması için Media Query Güncellemesi */
@media (max-width: 992px) {
    .premium-video-wrapper {
        grid-template-columns: 1fr; /* Mobilde tek sütun yap ki merkezlensin */
        max-width: 600px; /* Mobilde çok yayılmasın, derli toplu dursun */
        margin: 0 auto;
    }
}
.mega-services {
    width: 100%;
    overflow: hidden;
}

.service-strip {
    display: flex;
    min-height: 80vh; /* Ekranın %80'ini kaplar, devasa görünür */
    width: 100%;
}

.service-strip.reverse {
    flex-direction: row-reverse;
}

.strip-image {
    flex: 1;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax etkisi: Ağırlık katar */
}

.strip-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(15, 23, 42, 0.2); /* Görselin üzerine hafif bir derinlik */
}

.strip-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px;
    background: #fff;
    z-index: 2;
}

.content-inner {
    max-width: 500px;
}

.strip-no {
    font-size: 5rem;
    font-weight: 900;
    color: rgba(184, 149, 82, 0.1); /* Altın rengi çok hafif, arkada devasa numara */
    position: absolute;
    top: 40px;
    font-family: 'Inter', sans-serif;
}

.content-inner h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--primary);
}

.content-inner p {
    font-size: 1.15rem;
    color: #64748b;
    margin-bottom: 40px;
    line-height: 1.8;
}

.strip-features {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.strip-features span {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--accent);
    text-transform: uppercase;
}

.btn-strip {
    display: inline-block;
    padding: 18px 40px;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 0; /* Keskin köşeler daha ciddi/ağır durur */
    transition: 0.3s;
}

.btn-strip:hover {
    background: var(--accent);
}

/* --- MOBİL UYUM (Responsive) --- */
@media (max-width: 1024px) {
    .service-strip, .service-strip.reverse {
        flex-direction: column;
    }
    .strip-image {
        height: 400px;
        flex: none;
    }
    .strip-content {
        padding: 60px 30px;
    }
    .content-inner h2 {
        font-size: 2.5rem;
    }
}
.premium-video-section {
    padding: 120px 0;
    background: #0b0f19; /* Derin Gece Mavisi / Siyah */
}

.premium-video-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr; /* Sol taraf daha geniş */
    gap: 0; /* Aradaki boşluğu kapattık, bütünleşik dursun */
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}

/* Sol Ana Ekran */
.video-main-display {
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.video-main-display img {
    width: 100%; height: 100%; object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(0deg, rgba(11,15,25,1) 0%, rgba(11,15,25,0) 60%);
}

.video-info {
    position: absolute;
    bottom: 40px; left: 40px;
    color: #fff;
}

.video-info span { color: var(--accent); font-weight: 600; text-transform: uppercase; }
.video-info h3 { font-size: 1.8rem; font-family: 'Playfair Display', serif; margin-top: 10px; }

/* Oynat Butonu Animasyonu (Pulse) */
.play-btn-large {
    position: absolute;
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 90px; height: 90px;
    background: var(--accent);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    z-index: 2;
}

.pulse {
    position: absolute;
    width: 100%; height: 100%;
    border: 2px solid var(--accent);
    border-radius: 50%;
    animation: pulse-ring 1.5s infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* Sağ Liste */
.video-playlist {
    background: #161c2d;
    display: flex;
    flex-direction: column;
}

.playlist-item {
    padding: 25px;
    display: flex;
    gap: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    cursor: pointer;
    transition: 0.3s;
}

.playlist-item:hover { background: rgba(184, 149, 82, 0.1); }
.playlist-item.active { border-left: 4px solid var(--accent); background: rgba(184, 149, 82, 0.1); }

.pl-thumb img { width: 100px; border-radius: 10px; }

.pl-content span { color: var(--accent); font-size: 0.8rem; font-weight: 700; }
.pl-content p { color: #fff; font-size: 0.95rem; margin-top: 5px; }

/* --- RESPONSIVE FIX --- */
@media (max-width: 992px) {
    .premium-video-wrapper { grid-template-columns: 1fr; }
    .video-main-display { height: 400px; }
}
.contact-section {
    padding: 120px 0;
    background: #fcfcfc;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Sol taraf */
.contact-info .sub-title { color: var(--accent); font-weight: 700; letter-spacing: 2px; }
.contact-info h2 { font-size: 2.8rem; font-family: 'Playfair Display', serif; margin: 20px 0; }
.contact-info h2 span { color: var(--accent); }

.info-items { margin-top: 40px; }
.info-item { display: flex; gap: 20px; margin-bottom: 30px; }
.i-icon { 
    width: 50px; height: 50px; background: #fff; 
    display: flex; align-items: center; justify-content: center;
    border-radius: 12px; box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    font-size: 1.2rem;
}
.i-text h4 { font-size: 1rem; color: var(--primary); }
.i-text p { color: #888; margin: 0; }

/* Sağ taraf (Form) */
.contact-form-box {
    background: #fff;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.08);
}

.form-group { margin-bottom: 20px; }
.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #eee;
    background: #f9f9f9;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: 0.3s;
}

.form-group input:focus { border-color: var(--accent); background: #fff; }

.btn-submit {
    width: 100%;
    padding: 18px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover { background: var(--accent); transform: translateY(-3px); }

/* Harita */
.map-container { line-height: 0; filter: grayscale(1); transition: 0.5s; }
.map-container:hover { filter: grayscale(0); }

/* MOBİL UYUM */
@media (max-width: 992px) {
    .contact-wrapper { grid-template-columns: 1fr; gap: 60px; text-align: center; }
    .info-item { justify-content: center; text-align: left; }
    .contact-form-box { padding: 30px; }
    .contact-info h2 { font-size: 2.2rem; }
}
.blog-header {
    padding: 180px 0 80px;
    background: var(--primary);
    color: #fff;
    text-align: center;
}

.blog-header h1 { font-family: 'Playfair Display', serif; font-size: 3rem; }
.blog-header h1 span { color: var(--accent); }

.blog-list { padding: 80px 0; background: #fdfdfd; }

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.blog-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    transition: 0.4s;
}

.blog-card:hover { transform: translateY(-10px); }

.blog-img { position: relative; height: 250px; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; }

.blog-category {
    position: absolute;
    top: 20px; left: 20px;
    background: var(--accent);
    color: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.blog-info { padding: 30px; }
.blog-date { color: var(--accent); font-size: 0.85rem; font-weight: 600; }
.blog-info h3 { 
    font-family: 'Playfair Display', serif; 
    margin: 15px 0; 
    font-size: 1.4rem; 
    color: var(--primary);
}

.blog-info p { color: #64748b; font-size: 0.95rem; line-height: 1.6; margin-bottom: 20px; }

.read-more { 
    text-decoration: none; 
    color: var(--primary); 
    font-weight: 700; 
    font-size: 0.9rem;
    transition: 0.3s;
}

.read-more:hover { color: var(--accent); }

@media (max-width: 992px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 768px) { .blog-grid { grid-template-columns: 1fr; } }
/* Blog Detay Özel Stilleri */
.blog-post-header {
    padding: 200px 0 60px;
    background: #0f172a;
    color: #fff;
    text-align: center;
}

.post-meta {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
}

.category-badge {
    background: var(--accent);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

.blog-post-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.post-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    padding: 80px 0;
}

.featured-image {
    margin-bottom: 40px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.featured-image img { width: 100%; }

.article-text {
    font-family: 'Inter', sans-serif;
    color: #334155;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #1e293b;
    font-weight: 500;
    font-style: italic;
    margin-bottom: 40px;
    padding-left: 20px;
    border-left: 4px solid var(--accent);
}

.full-content {
    line-height: 1.9;
    font-size: 1.1rem;
}

.full-content h2, .full-content h3 {
    font-family: 'Playfair Display', serif;
    margin: 40px 0 20px;
    color: #0f172a;
}

/* Sidebar Tasarımı */
.sidebar-box {
    background: #f8fafc;
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 30px;
    text-align: center;
}

.doctor-mini-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.btn-sidebar, .btn-wa {
    display: block;
    padding: 12px;
    margin-top: 15px;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-sidebar { background: #0f172a; color: #fff; }
.btn-wa { background: #25d366; color: #fff; }

/* Responsive */
@media (max-width: 992px) {
    .post-wrapper { grid-template-columns: 1fr; }
    .blog-post-header h1 { font-size: 2.5rem; }
}
.full-content {
    line-height: 1.8;
    word-wrap: break-word; /* Uzun kelimeleri böler */
    overflow-wrap: break-word;
}

.full-content img {
    max-width: 100%; /* Resimlerin dışarı taşmasını engeller */
    height: auto !important;
    border-radius: 15px;
    margin: 20px 0;
}

.full-content h2 { font-size: 2rem; margin-top: 40px; color: var(--primary); border-left: 5px solid var(--accent); padding-left: 15px; }
.full-content h3 { font-size: 1.5rem; margin-top: 30px; color: var(--primary); }

/* İçerik içindeki listeler */
.full-content ul, .full-content ol { padding-left: 20px; margin-bottom: 20px; }
.author-signature {
    margin-top: 60px;
    padding: 30px;
    background: #f8fafc;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
}

.signature-line {
    width: 50px;
    height: 3px;
    background: var(--accent);
    margin-bottom: 20px;
}

.author-info { display: flex; gap: 20px; align-items: center; }
.author-info img { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; }
.auth-title { font-size: 0.8rem; font-weight: 800; color: var(--accent); text-transform: uppercase; }
.author-text h4 { margin: 5px 0; font-family: 'Playfair Display', serif; }
.author-text p { margin: 0; font-weight: 600; color: var(--primary); }
.author-text small { color: #64748b; line-height: 1.4; display: block; margin-top: 5px; }
/* Blog Detay İçerik Alanını Sabitle */
.article-text {
    width: 100%;
    max-width: 100%; /* Dışarı asla taşamaz */
    overflow-wrap: break-word; /* Çok uzun kelimeleri otomatik böler */
    word-wrap: break-word;
    word-break: break-word; /* sadasdasdasd gibi metinleri kırar */
}

.full-content {
    width: 100%;
    display: block;
}

/* Resimlerin aşırı büyümesini engelle */
.full-content img {
    max-width: 100% !important; /* Kapsayıcısından büyük olamaz */
    height: auto !important; /* Orantıyı bozmaz */
    display: block;
    margin: 30px auto; /* Ortalar ve dikey boşluk bırakır */
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Başlıkların ve paragrafların taşmasını engelle */
.full-content h1, .full-content h2, .full-content h3, .full-content p {
    max-width: 100%;
    overflow-wrap: break-word;
}
.slim-post-header {
    background: #0a0f1a; /* Çok derin bir lacivert */
    padding: 120px 0 40px; /* Üstten header payı, alttan ince boşluk */
    border-bottom: 1px solid rgba(184, 149, 82, 0.2); /* İnce altın rengi çizgi */
    position: relative;
}

.slim-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* Meta Bilgileri */
.slim-meta {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.s-category {
    color: var(--accent);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.s-divider {
    width: 1px;
    height: 15px;
    background: rgba(255,255,255,0.2);
    margin: 0 15px;
}

.s-date {
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
}

/* Başlık: İnce ama net */
.slim-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem; /* Daha kibar boyut */
    color: #fff;
    margin: 0;
    flex-grow: 1;
    text-align: left;
    line-height: 1.2;
}

/* Sağdaki Küçük Yazar Bölümü */
.slim-author {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    background: rgba(255,255,255,0.03);
    padding: 8px 15px;
    border-radius: 50px;
}

.slim-author img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--accent);
}

.slim-author span {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Mobil Uyumluluk: Şıklığı bozmadan daralt */
@media (max-width: 992px) {
    .slim-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .slim-title {
        font-size: 1.8rem;
    }

    .slim-author {
        order: -1; /* Doktor ismini mobilde en üste alabilirsin (Opsiyonel) */
        padding: 0;
        background: none;
    }
}
.blog-list-premium {
    padding: 100px 0;
    background: #fdfdfd;
}

.blog-intro {
    text-align: center;
    margin-bottom: 70px;
}

.blog-intro .sub-title {
    color: var(--accent);
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 10px;
}

.blog-intro h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--primary);
}

/* Grid Yapısı */
.blog-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 40px;
}

/* Kart Tasarımı */
.modern-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #f0f0f0;
    position: relative;
}

.card-link { text-decoration: none; color: inherit; display: block; }

.card-img-wrap {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.card-tag {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(10, 15, 26, 0.8);
    backdrop-filter: blur(10px); /* Glassmorphism */
    color: #fff;
    padding: 6px 15px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
}

.card-body-modern {
    padding: 30px;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 15px;
}

.modern-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--primary);
    line-height: 1.3;
    transition: color 0.3s;
}

.modern-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Özeti 3 satırda keser */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-footer-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
}

/* Hover Efektleri */
.modern-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
    border-color: var(--accent);
}

.modern-card:hover img {
    transform: scale(1.1);
}

.modern-card:hover h3 {
    color: var(--accent);
}

/* Mobil Düzenleme */
@media (max-width: 768px) {
    .blog-grid-modern {
        grid-template-columns: 1fr;
    }
    .blog-intro h2 { font-size: 2.2rem; }
}
.premium-archive {
    padding: 120px 0;
    background-color: #ffffff;
}

.archive-header {
    margin-bottom: 80px;
    max-width: 700px;
}

.display-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #0a0f1a;
    line-height: 1.1;
    margin-bottom: 20px;
}

.display-title span {
    color: var(--accent);
    font-style: italic;
}

.lead-text {
    font-size: 1.1rem;
    color: #666;
    border-left: 2px solid var(--accent);
    padding-left: 20px;
}

/* Editorial Grid */
.editorial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2'li yan yana dizilim daha lüks durur */
    gap: 80px 60px;
}

.editorial-item {
    transition: all 0.5s ease;
}

.editorial-link {
    text-decoration: none;
    color: inherit;
}

.editorial-figure {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    border-radius: 2px; /* Keskin ama asil */
    aspect-ratio: 16 / 10;
}

.editorial-figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.editorial-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #fff;
    color: #000;
    padding: 8px 16px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.editorial-content {
    padding-right: 20px;
}

.editorial-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    font-weight: 700;
}

.e-dot {
    width: 4px;
    height: 4px;
    background: #ccc;
    border-radius: 50%;
}

.e-read { color: #999; }

.editorial-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 15px;
    color: #0a0f1a;
    transition: 0.3s;
}

.editorial-excerpt {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.editorial-more {
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: gap 0.3s;
}

/* Hover Hareketleri */
.editorial-item:hover .editorial-figure img {
    transform: scale(1.05);
}

.editorial-item:hover .editorial-title {
    color: var(--accent);
}

.editorial-item:hover .editorial-more {
    gap: 20px;
    color: var(--accent);
}

/* Mobil Düzenleme */
@media (max-width: 992px) {
    .editorial-grid { grid-template-columns: 1fr; gap: 60px; }
    .display-title { font-size: 2.5rem; }
}
.minimal-blog-list {
    padding: 100px 0;
    background: #ffffff;
}

.section-title-wrap {
    margin-bottom: 60px;
}

.section-title-wrap h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.title-line {
    width: 60px;
    height: 3px;
    background: var(--accent);
}

/* Sıralı Liste Yapısı */
.blog-rows {
    display: flex;
    flex-direction: column;
    gap: 80px; /* Yazılar arasındaki asil boşluk */
}

.blog-row-item {
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 60px;
    transition: 0.3s ease;
}

.blog-row-item:last-child {
    border-bottom: none;
}

.row-link {
    display: flex;
    gap: 50px;
    text-decoration: none;
    align-items: center;
}

.row-image {
    flex: 0 0 450px; /* Resim genişliği sabit */
    height: 300px;
    overflow: hidden;
    border-radius: 4px;
}

.row-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.row-content {
    flex: 1;
}

.row-meta {
    margin-bottom: 15px;
    display: flex;
    gap: 20px;
    align-items: center;
}

.row-category {
    color: var(--accent);
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.row-date {
    color: #999;
    font-size: 0.85rem;
}

.row-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 20px;
    transition: 0.3s;
}

.row-summary {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.row-read-more {
    font-weight: 700;
    font-size: 0.9rem;
    color: #1a1a1a;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

/* Hover Efektleri */
.blog-row-item:hover .row-title {
    color: var(--accent);
}

.blog-row-item:hover .row-image img {
    transform: scale(1.03);
}

.blog-row-item:hover .row-read-more {
    gap: 20px;
    color: var(--accent);
}

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .row-link {
        flex-direction: column;
        gap: 30px;
    }
    
    .row-image {
        flex: 0 0 auto;
        width: 100%;
        height: 250px;
    }

    .row-title {
        font-size: 1.8rem;
    }
}
.page-intro-slim {
    padding: 140px 0 60px; /* Üstten header payı, alttan makul boşluk */
    background: #ffffff;
    border-bottom: 1px solid #f2f2f2;
}

.intro-content {
    max-width: 800px;
}

.intro-badge {
    color: var(--accent);
    font-weight: 800;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.intro-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem; /* Büyük ama zarif */
    color: #1a1a1a;
    line-height: 1.1;
    margin-bottom: 25px;
}

.intro-title span {
    color: var(--accent);
    font-style: italic;
    font-weight: 400;
}

.intro-line {
    width: 40px;
    height: 2px;
    background: var(--accent);
    margin-bottom: 25px;
}

.intro-text {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .page-intro-slim {
        padding: 120px 0 40px;
    }
    .intro-title {
        font-size: 2.2rem;
    }
    .intro-text {
        font-size: 1rem;
    }
}
.main-header .logo {
    display: flex;
    align-items: center;
}

.main-logo {
    height: 50px; /* Bu değeri logonun formuna göre 40px - 60px arası ayarlayabilirsin */
    width: auto;  /* Orantıyı bozmaz */
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* Hover yapınca hafif bir hareket (Lüks hissi) */
.logo:hover .main-logo {
    transform: scale(1.05);
}

/* Mobil için logo boyutu ayarı */
@media (max-width: 768px) {
    .main-logo {
        height: 40px; /* Mobilde biraz daha kibar dursun */
    }
}
.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 15px; /* Logo ve metin arası boşluk */
    text-decoration: none;
    transition: 0.3s ease;
}

.header-logo {
    height: 60px; /* Amblem boyutu */
    width: auto;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid rgba(0,0,0,0.1); /* İnce ayraç çizgisi */
    padding-left: 15px;
}

.dr-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.dr-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    color: var(--accent); /* Altın rengi vurgu */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

/* Hover Efekti */
.logo-wrapper:hover {
    opacity: 0.9;
    transform: translateX(3px);
}

/* Mobil Uyumluluk (Önemli: Mobilde metin çok uzun gelirse daraltalım) */
@media (max-width: 992px) {
    .header-logo {
        height: 45px;
    }
    .dr-name {
        font-size: 1.1rem;
    }
    .dr-title {
        font-size: 0.6rem;
        max-width: 180px; /* Metnin alt satıra düzgün kayması için */
        line-height: 1.2;
    }
}

@media (max-width: 480px) {
    .dr-title {
        display: none; /* Çok küçük ekranlarda sadece isim kalsın, kalabalık yapmasın */
    }
}
.mega-cards-slim {
    padding: 80px 0;
    background: #080c14;
}

.slim-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.slim-card {
    position: relative;
    background: linear-gradient(145deg, #0f172a, #0a0f1a);
    border: 1px solid rgba(184, 149, 82, 0.2);
    padding: 80px 50px; /* Daha yüksek ve asil bir duruş için */
    border-radius: 20px;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    align-items: center;
}

.slim-inner {
    position: relative;
    z-index: 5;
    width: 100%;
}

.slim-tag {
    color: var(--accent);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 4px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.slim-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem; /* Başlığı odak noktası yaptık */
    color: #fff;
    line-height: 1.1;
    margin: 0;
    transition: 0.4s;
}

.slim-card h2 span {
    color: var(--accent);
    font-style: italic;
    font-weight: 400;
}

.slim-icon {
    position: absolute;
    right: 0;
    bottom: 50%;
    transform: translateY(50%);
    font-size: 1.5rem;
    color: var(--accent);
    opacity: 0;
    transition: all 0.4s;
}

/* Hover Efektleri */
.slim-card:hover {
    background: #0f172a;
    border-color: var(--accent);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.slim-card:hover h2 {
    transform: translateX(10px);
}

.slim-card:hover .slim-icon {
    opacity: 1;
    right: -10px;
}

.slim-glow {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(184, 149, 82, 0.05), transparent);
    pointer-events: none;
}

/* Mobil */
@media (max-width: 992px) {
    .slim-grid { grid-template-columns: 1fr; }
    .slim-card { padding: 60px 30px; }
    .slim-card h2 { font-size: 2.2rem; }
    .slim-icon { display: none; } /* Mobilde ikona gerek yok, temiz kalsın */
}
.mega-cards-slim {
    padding: 80px 0;
    background: #080c14;
    display: flex; /* Sayfayı dikeyde de ortalamak istersen */
    justify-content: center;
    align-items: center;
}

.slim-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    width: 100%; /* Konteynırın tamamını kullan */
    max-width: 1200px; /* Çok geniş ekranlarda dağılmasın */
    margin: 0 auto; /* Grid'in kendisini sayfada ortalar */
}

.slim-card {
    position: relative;
    background: linear-gradient(145deg, #0f172a, #0a0f1a);
    border: 1px solid rgba(184, 149, 82, 0.2);
    padding: 100px 40px; 
    border-radius: 20px;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    
    /* İÇERİĞİ KARTIN İÇİNDE ORTALAYAN KISIM */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; 
    text-align: center; /* Yazıları merkeze alır */
}

.slim-inner {
    position: relative;
    z-index: 5;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center; /* Badge ve başlığı alt alta ortalar */
}

.slim-tag {
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 4px;
    margin-bottom: 25px;
    opacity: 0.8;
}

.slim-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #fff;
    line-height: 1.2;
    margin: 0;
    transition: 0.4s;
}

/* Mobilde sola kaymayı önleyen ve tam merkezleyen ayar */
@media (max-width: 992px) {
    .slim-grid {
        grid-template-columns: 1fr; /* Mobilde tek sütun */
        padding: 0 20px; /* Kenarlardan eşit boşluk */
    }
    
    .slim-card {
        padding: 80px 20px;
        width: 100%; /* Kartın genişliğini mobilde tam yay */
        box-sizing: border-box; /* Padding'in genişliği bozmasını engeller */
    }

    .slim-card h2 {
        font-size: 2rem;
    }
}
.featured-blog-section {
    padding: 100px 0;
    background: #ffffff; /* Ana sayfanın o koyu alanından sonra ferah bir geçiş */
}

.featured-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.f-badge {
    color: var(--accent);
    font-weight: 800;
    font-size: 0.7rem;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 10px;
}

.f-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #1a1a1a;
    margin: 0;
}

.f-title span { color: var(--accent); font-style: italic; }

.f-all-link {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 5px;
    transition: 0.3s;
}

.f-all-link:hover { gap: 15px; color: var(--accent); }

/* Grid ve Kartlar */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.f-blog-card a { text-decoration: none; color: inherit; display: block; }

.f-img-wrap {
    height: 350px;
    overflow: hidden;
    position: relative;
    border-radius: 4px;
    margin-bottom: 25px;
}

.f-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.f-cat {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #1a1a1a;
    color: #fff;
    padding: 6px 15px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.f-date {
    font-size: 0.8rem;
    color: #999;
    display: block;
    margin-bottom: 10px;
}

.f-blog-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 15px;
    transition: 0.3s;
}

.f-blog-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.f-more {
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--accent);
    letter-spacing: 1px;
}

/* Hover Efektleri */
.f-blog-card:hover img { transform: scale(1.08); }
.f-blog-card:hover h3 { color: var(--accent); }

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .featured-grid { grid-template-columns: 1fr; }
    .featured-header { flex-direction: column; align-items: flex-start; gap: 20px; }
    .f-img-wrap { height: 250px; }
    .f-title { font-size: 2.2rem; }
}
.home-blog-section {
    padding: 100px 0;
    background: #ffffff;
}

/* Başlığı Kartların Üstüne ve Merkeze Alan Kısım */
.section-heading-centered {
    text-align: center; /* Yazıları ortalar */
    margin-bottom: 60px;
    width: 100%;
}

.section-heading-centered .heading-line {
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin: 15px auto 0; /* Çizgiyi ortalar */
}

/* Grid Yapısı: Sadece yan yana 2 kart */
.home-blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 40px;
    max-width: 1100px; /* Kartların çok yayılmaması için */
    margin: 0 auto; /* Grid'in kendisini sayfada ortalar */
}

/* Kart Tasarımı Detayları */
.home-blog-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.home-blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.card-media {
    height: 300px;
    overflow: hidden;
}

.card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-info {
    padding: 30px;
}

/* Mobil Düzenleme */
@media (max-width: 992px) {
    .home-blog-grid {
        grid-template-columns: 1fr; /* Mobilde alt alta tekli */
        padding: 0 20px;
    }
    .section-heading-centered h2 {
        font-size: 2.2rem;
    }
}
.home-blog-section {
    padding: 100px 0;
    background: #fcfcfc;
}

/* Başlık Alanı Düzenlemesi */
.section-heading {
    text-align: left;
    margin-bottom: 50px;
    width: 100%;
}

.top-subtitle {
    color: var(--accent);
    font-weight: 800;
    font-size: 0.7rem;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 10px;
}

.section-heading h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #1a1a1a;
    margin: 0;
}

.section-heading h2 span { color: var(--accent); font-style: italic; }

.heading-line {
    width: 50px;
    height: 3px;
    background: var(--accent);
    margin-top: 15px;
}

/* Blog Grid Yapısı */
.home-blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Yan yana 2 adet */
    gap: 40px;
}

/* Kart Tasarımı */
.home-blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid #eee;
    transition: all 0.4s ease;
}

.card-inner-link { text-decoration: none; color: inherit; display: block; }

.card-media {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.card-info {
    padding: 35px;
}

.card-date {
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 15px;
    display: block;
}

.home-blog-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 15px;
}

.home-blog-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.card-link-text {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--accent);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Hover Efektleri */
.home-blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.home-blog-card:hover .card-media img {
    transform: scale(1.1);
}

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .home-blog-grid {
        grid-template-columns: 1fr; /* Mobilde tekli card */
    }
    .section-heading h2 { font-size: 2.2rem; }
    .card-media { height: 220px; }
}
/* Ana Başlık Kapsayıcısı */
.journal-hero-header {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 80px; /* Alttaki kartlardan asil bir uzaklık */
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Küçük Üst Başlık (Badge) */
.journal-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(184, 149, 82, 0.08); /* Accent renginin çok şeffaf hali */
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.journal-badge .dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s infinite; /* Hafif bir canlılık katar */
}

/* Ana Başlık */
.journal-display-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem; /* Daha iddialı boyut */
    color: #1a1a1a;
    line-height: 1.1;
    margin-bottom: 20px;
}

.journal-display-title span {
    color: var(--accent);
    font-weight: 400;
    font-style: italic;
}

/* Alt Açıklama Yazısı */
.journal-desc {
    font-size: 1.1rem;
    color: #777;
    max-width: 600px;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Yeni Nesil Ayraç */
.journal-divider {
    width: 40px;
    height: 4px;
    background: #1a1a1a; /* Koyu renk asalet katar */
    border-radius: 2px;
}

/* Animasyon: Pulsating Dot */
@keyframes pulse {
    0% { transform: scale(0.95); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.7; }
}

/* Mobil Düzenleme */
@media (max-width: 768px) {
    .journal-display-title {
        font-size: 2.4rem;
        padding: 0 15px;
    }
    .journal-desc {
        font-size: 1rem;
        padding: 0 20px;
    }
}
/* Ana Kapsayıcı */
.journal-wrapper {
    padding: 100px 0;
    background: #ffffff;
    width: 100%;
}

/* BAŞLIĞI ÜSTTE TUTAN GÜÇLÜ STİL */
.journal-hero-header {
    width: 100% !important; /* Tüm genişliği kapla */
    display: block !important; /* Yan yana dizilmeyi engelle */
    text-align: center;
    margin-bottom: 80px; /* Kartlarla arana mesafe koy */
}

.journal-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(184, 149, 82, 0.1);
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.journal-display-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #1a1a1a;
    margin: 0 auto 20px;
    max-width: 800px;
}

.journal-display-title span { color: var(--accent); font-style: italic; }

.journal-desc {
    color: #777;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

.journal-divider {
    width: 50px;
    height: 4px;
    background: #1a1a1a;
    margin: 0 auto;
}

/* KARTLARI ALTTA TUTAN GRID */
.journal-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Sadece 2 kart yan yana */
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Kartların İç Detayları */
.journal-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    transition: 0.3s;
}

.journal-card a { text-decoration: none; color: inherit; }

.j-card-img { height: 300px; overflow: hidden; }
.j-card-img img { width: 100%; height: 100%; object-fit: cover; }

.j-card-body { padding: 30px; }
.j-card-body h3 { font-family: 'Playfair Display', serif; font-size: 1.8rem; margin: 15px 0; }

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .journal-cards-grid { grid-template-columns: 1fr; padding: 0 20px; }
    .journal-display-title { font-size: 2.2rem; }
}
/* Başlığı kartlardan ayıran dış kapsayıcı */
.journal-outer-wrapper {
    padding: 100px 0;
    background: #ffffff;
    display: block !important; /* Flex veya Grid varsa iptal eder */
    width: 100% !important;
}

/* BAŞLIK: Satırı tamamen kapatır */
.journal-full-header {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    margin-bottom: 60px !important;
    float: none !important; /* Eğer float varsa temizler */
    clear: both !important; /* Etrafındaki her şeyi iter */
}

.journal-display-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #1a1a1a;
    margin: 20px 0 !important;
}

.journal-display-title span { color: var(--accent); font-style: italic; }

.journal-badge {
    background: rgba(184, 149, 82, 0.1);
    color: var(--accent);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 3px;
}

/* KARTLAR: Başlığın altındaki yeni satır */
.journal-cards-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 30px;
    width: 100%;
}

/* Kart Görsel ve İçerik */
.journal-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    overflow: hidden;
}

.j-card-img { height: 280px; }
.j-card-img img { width: 100%; height: 100%; object-fit: cover; }
.j-card-body { padding: 25px; }

/* Mobil */
@media (max-width: 992px) {
    .journal-cards-grid {
        grid-template-columns: 1fr !important;
    }
    .journal-display-title { font-size: 2.2rem; }
}
.premium-video-section {
    padding: 100px 0;
    background: #080c14; /* Koyu arka plan videoyu patlatır */
}

.premium-video-wrapper {
    display: grid;
    grid-template-columns: 1.8fr 1fr; /* Sol geniş, sağ dar */
    gap: 20px;
    background: #0f172a;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid rgba(184, 149, 82, 0.2);
}

.video-main-display {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    height: 500px;
}

.video-main-display img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    z-index: 1;
}

.play-btn-large {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    width: 80px;
    height: 80px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
}

.pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.6;
    animation: videoPulse 2s infinite;
}

@keyframes videoPulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.8); opacity: 0; }
}

.video-info {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 2;
}

.video-info span { color: var(--accent); font-weight: 700; font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; }
.video-info h3 { color: #fff; font-size: 2rem; margin-top: 10px; font-family: 'Playfair Display', serif; }

/* Playlist */
.video-playlist {
    background: rgba(255,255,255,0.03);
    border-radius: 15px;
    padding: 10px;
    overflow-y: auto;
    max-height: 500px;
}

.playlist-header {
    padding: 15px;
    color: #fff;
    font-weight: 700;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 10px;
}

.playlist-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
    border: 1px solid transparent;
}

.playlist-item:hover, .playlist-item.active {
    background: rgba(184, 149, 82, 0.1);
    border-color: rgba(184, 149, 82, 0.3);
}

.pl-thumb { width: 100px; height: 60px; border-radius: 5px; overflow: hidden; }
.pl-thumb img { width: 100%; height: 100%; object-fit: cover; }

.pl-content span { color: var(--accent); font-size: 0.6rem; font-weight: 800; }
.pl-content p { color: #ccc; font-size: 0.85rem; margin-top: 5px; line-height: 1.2; }

@media (max-width: 992px) {
    .premium-video-wrapper { grid-template-columns: 1fr; }
    .video-main-display { height: 300px; }
}
.premium-video-section {
    padding: 100px 0;
    background: #080c14;
}

/* BAŞLIK: Satırı tamamen kapatıp merkezler */
.video-section-header {
    width: 100%;
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.v-badge {
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.v-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #fff;
    margin: 0;
}

.v-title span { color: var(--accent); font-style: italic; }

.v-line {
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin-top: 20px;
}

/* VİDEO GRİD: Sadece alt kısımda çalışır */
.premium-video-wrapper {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 25px;
    width: 100%;
}

.video-main-display {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 550px;
    cursor: pointer;
}

.video-main-display img { width: 100%; height: 100%; object-fit: cover; }

/* Mobilde başlık ve videoların iç içe girmemesi için */
@media (max-width: 992px) {
    .premium-video-wrapper { grid-template-columns: 1fr; }
    .v-title { font-size: 2.5rem; }
}
.premium-video-section {
    padding: 100px 0;
    background: #080c14;
    display: block !important; /* Yan yana dizilme kuralını tamamen yıkar */
}

/* BAŞLIK ALANI: Kesinlikle tek başına bir satır */
.video-full-row-header {
    width: 100% !important;
    max-width: 100% !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 50px !important;
    clear: both !important; /* Sağında solunda bir şey bırakmaz */
}

.v-badge {
    color: var(--accent);
    font-size: 0.8rem;
    letter-spacing: 3px;
    font-weight: 800;
    margin-bottom: 15px;
}

.v-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #ffffff;
    margin: 0;
}

.v-title span { color: var(--accent); font-style: italic; }

.v-line {
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin-top: 20px;
}

/* VİDEO GRİD: Sadece başlığın bittiği yerden başlar */
.premium-video-wrapper {
    display: grid !important;
    grid-template-columns: 1.8fr 1fr !important;
    gap: 25px;
    width: 100%;
}
@media (max-width: 992px) {
    /* Ana kapsayıcıyı tek sütuna düşür */
    .premium-video-wrapper {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
        padding: 10px !important;
    }

    /* Ana video ekranını küçült ve yüksekliğini ayarla */
    .video-main-display {
        height: 250px !important;
        border-radius: 12px !important;
    }

    /* Ana video içindeki başlık fontunu mobilde küçült */
    .video-info h3 {
        font-size: 1.2rem !important;
        bottom: 15px !important;
        left: 15px !important;
    }

    /* Playlist alanını mobilde yan yana dizilmekten kurtar */
    .video-playlist {
        max-height: none !important; /* Yükseklik sınırını kaldır, aşağı uzasın */
        padding: 5px !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
    }

    /* Her bir küçük video kartını mobilde tam genişlik yap */
    .playlist-item {
        width: 100% !important;
        background: rgba(255, 255, 255, 0.05) !important;
        display: flex !important;
        align-items: center !important;
        padding: 10px !important;
    }

    /* Küçük resimlerin boyutunu mobilde sabitle */
    .pl-thumb {
        width: 100px !important;
        min-width: 100px !important;
        height: 60px !important;
    }

    /* Yazı alanının mobilde daralmasını önle */
    .pl-content p {
        font-size: 0.8rem !important;
        white-space: normal !important; /* Yazıların taşmasını önler, alt satıra geçer */
    }

    /* Bölüm başlığı (Süreçlerimiz) mobilde ortalansın */
    .v-title {
        font-size: 1.8rem !important;
    }
}
.about-premium-section {
    padding: 120px 0;
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

/* Görsel Alanı */
.about-image-wrapper {
    position: relative;
    padding-right: 30px;
}

.image-main {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.1);
}

.image-main img {
    width: 100%;
    height: auto;
    display: block;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: 0;
    background: var(--accent);
    color: #fff;
    padding: 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 20px 40px rgba(184, 149, 82, 0.3);
}

.exp-year { font-size: 3rem; font-weight: 800; line-height: 1; }
.exp-text { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

/* İçerik Alanı */
.about-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 25px;
}

.about-title span { color: var(--accent); font-style: italic; font-weight: 400; }

.about-lead {
    font-size: 1.25rem;
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 20px;
    border-left: 4px solid var(--accent);
    padding-left: 20px;
}

.about-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Özellikler */
.about-features {
    display: grid;
    gap: 25px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    gap: 20px;
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--accent);
    margin-top: 5px;
}

.feature-item h5 { font-size: 1.1rem; font-weight: 700; margin-bottom: 5px; }
.feature-item p { font-size: 0.9rem; color: #777; margin: 0; }

/* Mobil */
@media (max-width: 992px) {
    .about-grid { grid-template-columns: 1fr; gap: 60px; }
    .about-image-wrapper { padding-right: 0; margin-bottom: 40px; }
    .about-title { font-size: 2.2rem; }
}
.biography-section {
    padding: 120px 0;
    background: #fcfcfc;
}

.bio-header { margin-bottom: 80px; }
.bio-main-title { font-family: 'Playfair Display', serif; font-size: 4rem; color: #1a1a1a; }
.bio-main-title span { color: var(--accent); font-style: italic; font-weight: 400; }

.bio-wrapper {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 80px;
    align-items: start;
}

/* Sidebar & Sticky Image */
.bio-sticky-card {
    position: sticky;
    top: 120px;
}

.bio-info-box {
    margin-top: 30px;
    padding: 25px;
    background: #fff;
    border-radius: 15px;
    border-left: 5px solid var(--accent);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.bio-info-box p { margin-bottom: 10px; font-size: 0.95rem; color: #444; }

/* Ana Metin Alanı */
.bio-main-text {
    font-size: 1.15rem;
    line-height: 2;
    color: #444;
}

.text-block { margin-bottom: 50px; }
.text-block h4 { 
    font-family: 'Playfair Display', serif; 
    font-size: 1.8rem; 
    color: #1a1a1a; 
    margin-bottom: 20px; 
}

/* İlk Harf Büyütme (Drop Cap) */
.drop-cap::first-letter {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    float: left;
    margin-right: 15px;
    color: var(--accent);
    line-height: 0.8;
}

.highlight-block {
    background: #f9f6f0;
    padding: 40px;
    border-radius: 20px;
    position: relative;
}

/* Mobil */
@media (max-width: 992px) {
    .bio-wrapper { grid-template-columns: 1fr; }
    .bio-sticky-card { position: relative; top: 0; margin-bottom: 50px; }
    .bio-main-title { font-size: 2.8rem; }
}
.bio-page-section {
    padding: 100px 0;
    background: #ffffff;
    overflow: hidden;
}

/* Başlık Kaymasını Engelleyen Kesin Çözüm */
.bio-full-header {
    width: 100% !important;
    display: block !important;
    text-align: center;
    margin-bottom: 60px;
    clear: both;
}

.bio-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #1a1a1a;
    margin: 15px 0;
}

.bio-title span { color: var(--accent); font-style: italic; }

.v-line { width: 60px; height: 3px; background: var(--accent); margin: 0 auto; }

/* Grid Yapısı */
.bio-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

/* Görsel Stili - Arka plansız resmi ön plana çıkarır */
.bio-img-container {
    position: sticky;
    top: 100px;
    background: radial-gradient(circle, rgba(184,149,82,0.1) 0%, rgba(255,255,255,0) 70%);
    border-radius: 30px;
}

.bio-img-container img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1));
}

/* Metin Stili */
.bio-content-side {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #444;
}

.bio-paragraph { margin-bottom: 25px; text-align: justify; }

.highlight-box {
    background: #fdfaf3;
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid var(--accent);
}

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .bio-grid { grid-template-columns: 1fr; }
    .bio-title { font-size: 2.2rem; }
    .bio-img-container { position: relative; top: 0; width: 80%; margin: 0 auto 40px; }
}
.bio-page-section {
    padding: 100px 0;
    background: #ffffff;
}

/* Başlık alanı sabit */
.bio-full-header {
    width: 100%;
    text-align: center;
    margin-bottom: 50px;
}

/* Metin ve Resim Sargı Düzeni (Desktop) */
.bio-article-wrapper {
    display: block; /* Grid'i kapattık */
    width: 100%;
}

.bio-visual {
    float: left; /* Resmi sola yasla */
    width: 400px; /* Resim genişliği */
    margin-right: 40px; /* Metinle aradaki boşluk */
    margin-bottom: 20px; /* Alttaki metnin çok yapışmaması için */
}

.bio-visual img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.1));
}

.bio-text-content {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #444;
    text-align: justify;
}

.bio-text-content p {
    margin-bottom: 20px;
}

/* Temizlik: Float'ın diğer bölümleri etkilememesi için */
.bio-article-wrapper::after {
    content: "";
    display: table;
    clear: both;
}

/* Mobil için Float'ı iptal et (Mevcut güzel görüntüyü bozmamak için) */
@media (max-width: 992px) {
    .bio-visual {
        float: none;
        width: 100%;
        margin-right: 0;
        margin-bottom: 30px;
        text-align: center;
    }
    .bio-visual img {
        width: 80%;
    }
}
.certificates-section {
    padding: 80px 0 120px;
    background: #fff;
}

.cert-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin-bottom: 40px;
}

.cert-main-title span { color: var(--accent); font-style: italic; }

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.cert-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    border: 1px solid #f0f0f0;
}

.cert-card:hover {
    transform: translateY(-10px);
}

.cert-link {
    position: relative;
    display: block;
    overflow: hidden;
}

.cert-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(184, 149, 82, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    opacity: 0;
    transition: 0.3s;
    z-index: 2;
}

.cert-link:hover .cert-overlay { opacity: 1; }

.cert-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: 0.5s;
}

.cert-link:hover img { transform: scale(1.1); }

.cert-info {
    padding: 20px;
    text-align: center;
}

.cert-info h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #1a1a1a;
}

.cert-info p {
    font-size: 0.85rem;
    color: var(--accent);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mobil Düzenleme */
@media (max-width: 576px) {
    .certificates-grid {
        grid-template-columns: 1fr;
    }
}
/* Sertifika bölümünün yukarıdaki resmin yanına kaçmasını engeller */
.certificates-section {
    width: 100% !important;
    display: block !important;
    clear: both !important; /* En önemli kısım burası */
    padding: 80px 0;
    margin-top: 50px;
    background: #fff;
}

.cert-header {
    text-align: center;
    margin-bottom: 50px;
    width: 100%;
}

.cert-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #1a1a1a;
    margin-top: 15px;
}

.cert-main-title span { color: var(--accent); font-style: italic; }

/* Sertifika Kartları Düzeni */
.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.cert-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.cert-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.cert-img-holder {
    width: 100%;
    height: 250px;
    background: #f9f9f9;
}

.cert-img-holder img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Sertifikaların kesilmemesi için önemli */
    padding: 10px;
}

.cert-info {
    padding: 15px;
    text-align: center;
    background: #fff;
}

.cert-info h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #1a1a1a;
}

.cert-info p {
    font-size: 0.8rem;
    color: var(--accent);
    margin: 0;
    text-transform: uppercase;
}

/* Mobil için tam genişlik */
@media (max-width: 768px) {
    .certificates-grid {
        grid-template-columns: 1fr 1fr; /* Mobilde yan yana ikişerli */
    }
}

@media (max-width: 480px) {
    .certificates-grid {
        grid-template-columns: 1fr; /* Çok küçük ekranda tekli */
    }
}
.cert-container-new {
    padding: 60px 0;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: block;
    clear: both;
}

.cert-header-box {
    text-align: center;
    margin-bottom: 40px;
}

.cert-badge {
    font-size: 12px;
    background: #f9f6f0;
    padding: 5px 15px;
    border-radius: 50px;
    color: #b89552;
    letter-spacing: 1px;
}

.cert-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin: 15px 0;
    color: #1a1a1a;
}

.cert-main-title span { color: #b89552; font-style: italic; }

.cert-line { width: 50px; height: 2px; background: #b89552; margin: 0 auto; }

/* Yan Yana Dizilimi Sağlayan Bölüm */
.cert-flex-row {
    display: flex;
    flex-wrap: nowrap; /* Zorla yan yana tutar */
    gap: 20px;
    justify-content: center;
    align-items: stretch;
}

.cert-item-card {
    flex: 1; /* Her kartın eşit genişlikte olmasını sağlar */
    min-width: 0; /* Flexbox genişlik hatasını önler */
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.cert-item-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }

.cert-img {
    width: 100%;
    height: 180px;
    background: #fdfdfd;
    padding: 10px;
}

.cert-img img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Sertifikayı bozmadan kutuya sığdırır */
}

.cert-body {
    padding: 15px;
    text-align: center;
    border-top: 1px solid #f5f5f5;
}

.cert-body h6 { font-size: 0.95rem; font-weight: 700; margin-bottom: 5px; color: #333; }
.cert-body p { font-size: 0.75rem; color: #b89552; margin: 0; }

/* Mobil Düzenleme (Ekran küçüldüğünde alt alta geçer) */
@media (max-width: 992px) {
    .cert-flex-row {
        flex-wrap: wrap; /* Mobilde taşma yapmasın diye açıyoruz */
    }
    .cert-item-card {
        flex: 0 0 calc(50% - 20px); /* Mobilde 2'li dizi */
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .cert-item-card {
        flex: 0 0 100%; /* Telefondan tekli dizi */
    }
}
.section-panel {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: #fff;
}

.bg-ghost-text {
    position: absolute;
    font-size: 15vw;
    font-weight: 900;
    color: rgba(0,0,0,0.02);
    z-index: 0;
    pointer-events: none;
    text-transform: uppercase;
}

.bio-container {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.bio-grid {
    display: flex;
    align-items: center;
    gap: 80px;
}

/* Görsel Alanı */
.bio-visual { flex: 0 0 450px; }

.image-stack {
    position: relative;
    z-index: 1;
}

.main-img-frame {
    border-radius: 30px;
    overflow: hidden;
    background: #f9f9f9;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.bio-img { width: 100%; display: block; transition: 0.5s; }

.deco-frame {
    position: absolute;
    top: -20px; left: -20px; width: 100%; height: 100%;
    border: 2px solid var(--accent);
    border-radius: 30px;
    z-index: -1;
}

.experience-badge {
    position: absolute;
    bottom: 30px; right: -30px;
    background: var(--accent);
    color: #fff;
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(184, 149, 82, 0.3);
}

.exp-num { font-size: 2.5rem; font-weight: 800; display: block; line-height: 1; }
.exp-txt { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; }

/* Metin Alanı */
.bio-text-content { flex: 1; }

.mini-tag {
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.bio-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
}

.bio-main-title span { color: var(--accent); font-style: italic; font-weight: 400; }

.bio-description p { font-size: 1.1rem; line-height: 1.8; color: #555; margin-bottom: 25px; }

.bio-quote {
    border-left: 4px solid var(--accent);
    padding-left: 25px;
    font-style: italic;
    font-size: 1.2rem;
    color: #1a1a1a;
    margin: 30px 0;
}

/* Butonlar */
.bio-actions { display: flex; gap: 20px; margin-top: 40px; }

.btn-premium {
    background: #1a1a1a;
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
    text-decoration: none;
}

.btn-premium:hover { background: var(--accent); transform: translateY(-3px); }

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .bio-grid { flex-direction: column; gap: 50px; text-align: center; }
    .bio-visual { flex: 0 0 auto; width: 80%; }
    .bio-quote { text-align: left; }
    .bio-main-title { font-size: 2.5rem; }
    .bio-actions { justify-content: center; flex-direction: column; }
}
.results-page {
    padding: 80px 0;
    background: #fcfcfc;
}

.results-header {
    margin-bottom: 60px;
}

.badge-gold {
    background: #f9f1e2;
    color: #b89552;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.results-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin: 20px 0;
}

.results-header h1 span { color: #b89552; font-style: italic; }

/* 3'lü Grid Yapısı */
.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Yan yana 3 tane */
    gap: 30px;
}

.result-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    transition: 0.3s ease;
}

.result-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.result-image-wrapper {
    position: relative;
    height: 350px; /* Görsel yüksekliği */
    overflow: hidden;
    background: #fff;
}

.result-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Tıbbi raporların kesilmemesi için */
    padding: 15px;
    transition: 0.5s;
}

/* Hover Efekti */
.zoom-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(184, 149, 82, 0.1); /* Hafif altın rengi katman */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
    color: #b89552;
    font-size: 2rem;
}

.result-card:hover .zoom-overlay { opacity: 1; }
.result-card:hover img { transform: scale(1.05); }

.result-info {
    padding: 20px;
    text-align: center;
    border-top: 1px solid #f5f5f5;
}

.result-info h5 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.stat-row {
    color: #b89552;
    font-weight: 500;
}

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .results-grid { grid-template-columns: repeat(2, 1fr); } /* Tablette 2'li */
}

@media (max-width: 576px) {
    .results-grid { grid-template-columns: 1fr; } /* Mobilde tekli */
}
/* Bölümün Genel Ayarı */
.results-main-section {
    padding: 100px 0;
    background: #ffffff;
    display: block;
    clear: both; /* Yukarıdan gelen float etkisini sıfırlar */
}

/* Başlık Alanı Sabitleme */
.results-header-fixed {
    width: 100%;
    text-align: center;
    margin-bottom: 60px;
    display: block;
}

.gold-tag {
    font-size: 13px;
    font-weight: 700;
    color: #b89552;
    background: #fdf8ef;
    padding: 5px 15px;
    border-radius: 50px;
    letter-spacing: 1px;
}

.main-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    margin-top: 20px;
    color: #1a1a1a;
}

.main-title span { color: #b89552; font-style: italic; }

.title-divider {
    width: 60px;
    height: 3px;
    background: #b89552;
    margin: 20px auto;
}

/* Yan Yana Dizilim Ayarı */
.results-flex-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.patient-result-card {
    flex: 0 0 calc(33.333% - 20px); /* Yan yana tam 3 tane */
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.patient-result-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* Resim ve Zoom Efekti */
.img-zoom-container {
    position: relative;
    height: 300px;
    overflow: hidden;
    background: #fdfdfd;
}

.img-zoom-container img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Raporların okunması için kesilmemesi lazım */
    padding: 20px;
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

.patient-result-card:hover img {
    transform: scale(1.1); /* Hover olunca büyüme */
}

.hover-plus {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(184, 149, 82, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2.5rem;
    opacity: 0;
    transition: 0.3s;
}

.patient-result-card:hover .hover-plus {
    opacity: 1;
}

/* Kart Alt Bilgisi */
.patient-details {
    padding: 25px;
    text-align: center;
    border-top: 1px solid #fafafa;
}

.patient-details h5 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.patient-details p {
    color: #777;
    margin: 0;
    font-weight: 500;
}

.patient-details span {
    color: #b89552;
    font-weight: 700;
}

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .patient-result-card { flex: 0 0 calc(50% - 15px); } /* Tablet 2'li */
}

@media (max-width: 600px) {
    .patient-result-card { flex: 0 0 100%; } /* Mobil Tekli */
    .main-title { font-size: 2.2rem; }
}
.results-page-wrapper {
    padding: 100px 0;
    background: #fff;
    width: 100%;
    overflow: hidden;
}

/* Başlık Alanı - Kesinlikle Üstte ve Ortada */
.results-top-content {
    width: 100%;
    text-align: center;
    margin-bottom: 70px; /* Kartlarla arasını açar */
    display: block;
}

.clinical-tag {
    background: #fdf8ef;
    color: #b89552;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.results-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin: 20px 0;
}

.results-title span { color: #b89552; font-style: italic; }

.results-underline {
    width: 50px; height: 3px; background: #b89552; margin: 20px auto;
}

/* Grid Düzeni - Yan Yana 3 Kart */
.results-main-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Tam olarak 3 eşit kolon */
    gap: 40px;
    width: 100%;
}

.patient-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
    transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
}

.patient-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

/* Resim ve Zoom Alanı */
.patient-img-box {
    position: relative;
    height: 320px;
    background: #fdfdfd;
    overflow: hidden;
}

.patient-img-box img {
    width: 100%; height: 100%;
    object-fit: contain; /* Raporlar kesilmesin diye */
    padding: 20px;
    transition: 0.6s;
}

.patient-card:hover img { transform: scale(1.08); }

.zoom-icon {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(26, 26, 26, 0.05);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: 0.3s; color: #b89552; font-size: 1.8rem;
}

.patient-card:hover .zoom-icon { opacity: 1; }

/* Alt Bilgi */
.patient-meta { padding: 25px; text-align: center; background: #fff; }
.patient-meta h4 { font-size: 1.4rem; font-weight: 800; margin-bottom: 10px; color: #1a1a1a; }
.hba1c-flow { color: #888; font-weight: 500; display: flex; align-items: center; justify-content: center; gap: 10px; }
.hba1c-flow .target { color: #b89552; font-weight: 700; }

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .results-main-grid { grid-template-columns: repeat(2, 1fr); } /* Tablet 2'li */
    .results-title { font-size: 2.8rem; }
}

@media (max-width: 650px) {
    .results-main-grid { grid-template-columns: 1fr; } /* Mobil Tekli */
}
.results-page-wrapper {
    padding: 80px 0;
    background: #fdfdfd;
}

/* Başlık Grubu */
.results-main-header {
    text-align: center;
    margin-bottom: 60px;
    display: block;
    width: 100%;
}

.results-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-top: 20px;
}

/* Müşteri Kartı Ana Yapı */
.customer-cards-stack {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.customer-result-card {
    background: #fff;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 40px;
    border: 1px solid #f0f0f0;
}

/* Kartın Solu: Bilgiler */
.card-info-side {
    flex: 0 0 300px;
}

.patient-id {
    font-size: 11px;
    font-weight: 800;
    color: #b89552;
    letter-spacing: 1px;
}

.card-info-side h3 {
    font-size: 2rem;
    margin: 15px 0;
    color: #1a1a1a;
}

.hba1c-badge {
    display: inline-block;
    background: #1a1a1a;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 20px;
}

/* Kartın Sağı: Gömülü 3 Resim */
.card-images-side {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 20px;
}

.embedded-image {
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #eee;
    transition: 0.3s;
}

.embedded-image:hover {
    transform: scale(1.03);
    border-color: #b89552;
}

.embedded-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

/* Mobil Uyumluluk */
@media (max-width: 1100px) {
    .customer-result-card { flex-direction: column; text-align: center; }
    .card-info-side { flex: 0 0 auto; }
    .card-images-side { width: 100%; }
}

@media (max-width: 600px) {
    .card-images-side { grid-template-columns: 1fr; } /* Mobilde resimler alt alta */
}
/* Genel Wrapper */
.vaka-results-wrapper { padding: 80px 0; background: #fff; clear: both; }

/* Başlık Alanı */
.vaka-main-header { text-align: center; margin-bottom: 50px; width: 100%; display: block; }
.vaka-badge { background: #fdf8ef; color: #b89552; padding: 5px 15px; border-radius: 50px; font-weight: 700; font-size: 12px; }
.vaka-title { font-family: 'Playfair Display', serif; font-size: 3rem; margin: 15px 0; }
.vaka-title span { color: #b89552; font-style: italic; }
.vaka-line { width: 50px; height: 3px; background: #b89552; margin: 0 auto; }

/* Vaka Kartı Ana Gövde */
.vaka-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
}

.vaka-grid-layout {
    display: flex;
    gap: 30px;
    align-items: stretch;
}

/* Sol Taraf (Öncesi/Sonrası) */
.vaka-report-side { flex: 0 0 450px; }
.ba-container { display: flex; flex-direction: column; gap: 15px; }
.ba-item { position: relative; border: 2px solid #eee; border-radius: 12px; overflow: hidden; height: 200px; }
.ba-item.gold-border { border-color: #b89552; }
.ba-label { position: absolute; top: 10px; left: 10px; font-size: 10px; font-weight: 800; background: #eee; padding: 4px 10px; border-radius: 4px; z-index: 2; }
.ba-label.gold-bg { background: #b89552; color: #fff; }
.ba-item img { width: 100%; height: 100%; object-fit: contain; background: #fafafa; transition: 0.3s; }
.ba-item:hover img { transform: scale(1.05); }

/* Sağ Taraf (3'lü Resim Grid) */
.vaka-info-side { flex: 1; }
.info-images-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    height: 100%;
}
.info-img-wrap {
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    background: #fdfdfd;
    height: 100%;
    min-height: 415px; /* Sol tarafla eşitlemek için */
}
.info-img-wrap img { width: 100%; height: 100%; object-fit: contain; padding: 10px; transition: 0.3s; }
.info-img-wrap:hover img { transform: scale(1.05); }

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .vaka-grid-layout { flex-direction: column; }
    .vaka-report-side { flex: 0 0 auto; width: 100%; }
    .ba-container { flex-direction: row; }
    .ba-item { flex: 1; }
    .info-img-wrap { min-height: 250px; }
}

@media (max-width: 600px) {
    .ba-container { flex-direction: column; }
    .info-images-grid { grid-template-columns: 1fr; }
}
.vaka-section {
    padding: 100px 0;
    background: #fcfcfc;
}

/* Başlık Stilleri */
.vaka-header { margin-bottom: 60px; }
.gold-badge { background: #fdf8ef; color: #b89552; padding: 6px 15px; border-radius: 50px; font-size: 11px; font-weight: 800; }
.display-title { font-family: 'Playfair Display', serif; font-size: 3.2rem; margin: 15px 0; }
.display-title span { color: #b89552; font-style: italic; }
.title-line { width: 60px; height: 3px; background: #b89552; margin: 0 auto; }

/* Kartın Ortalanması ve Genel Yapısı */
.vaka-card-container {
    max-width: 1100px; /* Kartın maksimum genişliği */
    margin: 0 auto;    /* Sitenin tam ortasına getirir */
}

.vaka-main-card {
    background: #fff;
    border-radius: 30px;
    padding: 35px;
    display: flex; /* Yan yana dizilim */
    gap: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
}

/* Sol Taraf: Büyük Bilgi Resmi */
.vaka-info-big {
    flex: 1.5; /* Daha geniş alan kaplar */
}

.info-img-box {
    position: relative;
    height: 100%;
    min-height: 450px;
    border-radius: 20px;
    overflow: hidden;
    background: #fafafa;
    border: 1px solid #eee;
}

.info-img-box img {
    width: 100%; height: 100%; object-fit: contain; padding: 15px;
    transition: 0.5s ease;
	
}

/* Sağ Taraf: Raporlar */
.vaka-reports-side {
    flex: 1; /* Daha dar alan kaplar */
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.report-box {
    position: relative;
    height: calc(50% - 10px);
    border: 2px solid #eee;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
}

.report-box.gold-border { border-color: #b89552; }

.report-box img {
    width: 100%; height: 100%; object-fit: contain; padding: 10px;
    transition: 0.5s ease;
}

/* Etiketler ve Hover */
.report-tag {
    position: absolute; top: 12px; left: 12px; font-size: 9px; font-weight: 800;
    background: #eee; padding: 4px 10px; border-radius: 5px; z-index: 2;
}

.report-tag.gold-bg { background: #b89552; color: #fff; }

.vaka-main-card img:hover { transform: scale(1.05); }

.img-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(184, 149, 82, 0.1);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: 0.3s; color: #b89552; font-size: 2rem;
}

.info-img-box:hover .img-overlay { opacity: 1; }

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .vaka-main-card { flex-direction: column; }
    .vaka-info-big { width: 100%; }
    .vaka-reports-side { flex-direction: row; }
    .report-box { flex: 1; height: 250px; }
}

@media (max-width: 600px) {
    .vaka-reports-side { flex-direction: column; }
    .display-title { font-size: 2.2rem; }
}
/* Masaüstü Genel Kart Ayarı */
.vaka-main-card {
    display: flex;
    gap: 30px;
    background: #fff;
    padding: 30px;
    border-radius: 24px;
    align-items: stretch;
    max-width: 1100px; /* Kartın genişliğini sınırlar */
    margin: 0 auto;    /* Sayfada ortalar */
    max-height: 550px; /* KARTIN MASAÜSTÜNDE KOCAMAN OLMASINI ENGELLER */
}

/* Sol Taraf: Büyük Resim Konteynırı */
.vaka-info-big {
    flex: 1.4; /* Bilgi resmine biraz daha fazla ağırlık verir */
    display: flex;
}

.image-inner-wrap {
    width: 100%;
    height: 100%;
    border-radius: 18px;
    overflow: hidden;
    background: #fdfdfd;
    border: 1px solid #f0f0f0;
}

.image-inner-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Resmi kesmez, kutunun içine sığdırır */
    padding: 10px;
}

/* Sağ Taraf: Raporlar (Öncesi/Sonrası) */
.vaka-reports-side {
    flex: 1; /* Raporlar alanı daha dar durur */
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.report-box-item {
    flex: 1;
    height: calc(50% - 7.5px); /* İki resim tam olarak kartın yarısına bölünür */
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    background: #fff;
}

.report-box-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

/* MOBİL AYARLAR (Mobildeki güzel halini korur) */
@media (max-width: 768px) {
    .vaka-main-card {
        flex-direction: column;
        max-height: none; /* Mobilde dikey uzamaya izin ver */
        padding: 15px;
    }

    .vaka-info-big {
        height: auto; 
        min-height: 250px;
        margin-bottom: 15px;
    }

    .vaka-reports-side {
        flex-direction: row; /* Mobilde raporlar yan yana durur */
        height: 160px;
        width: 100%;
    }

    .report-box-item {
        height: 100%;
        flex: 1;
    }
}
.yorum-section {
    padding: 80px 0;
    background: #fcfcfc;
}

.yorum-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
    margin-bottom: 40px; /* Kartlar arası boşluk */
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.yorum-grid {
    display: flex;
    align-items: stretch;
}

/* Sol Taraf: Resim */
.yorum-image {
    flex: 1;
    background: #f9f9f9;
    border-right: 1px solid #eee;
}

.yorum-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Resmi kutuya tam yayar */
    display: block;
}

/* Sağ Taraf: Metin */
.yorum-content {
    flex: 1.5;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.patient-meta {
    margin-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
}

.patient-meta h4 {
    font-family: 'Playfair Display', serif;
    color: #b89552;
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.patient-meta span {
    font-size: 0.9rem;
    color: #888;
    font-weight: 500;
}

.text-area p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 15px;
}

/* MOBİL UYUMLULUK */
@media (max-width: 768px) {
    .yorum-grid {
        flex-direction: column;
    }
    
    .yorum-image {
        height: 300px; /* Mobilde resim yüksekliğini sabitler */
        border-right: none;
        border-bottom: 1px solid #eee;
    }
    
    .yorum-content {
        padding: 25px;
    }
}
/* Footer Genel Tasarım */
.main-footer {
    background: #111; /* Koyu lüks arka plan */
    color: #fff;
    padding: 80px 0 30px;
    font-family: 'Poppins', sans-serif;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

/* Kolon Başlıkları */
.footer-col h4 {
    color: #b89552; /* Altın rengi vurgu */
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 20px;
}

.footer-logo span { color: #b89552; }

.footer-col p {
    color: #999;
    line-height: 1.8;
    font-size: 14px;
}

/* Linkler */
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
    color: #999;
    text-decoration: none;
    transition: 0.3s;
    font-size: 14px;
}
.footer-col ul li a:hover { color: #b89552; padding-left: 5px; }

/* Alt Bar ve Senin İsmin */
.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #666;
}

.coordinator-credit {
    font-size: 11px;
    letter-spacing: 0.5px;
    opacity: 0.5; /* Çok göze batmaması için transparanlık */
    transition: 0.3s;
}

.coordinator-credit span {
    font-weight: 600;
    text-transform: uppercase;
}

.coordinator-credit:hover { opacity: 1; color: #b89552; }

/* WhatsApp Butonu */
.fixed-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 999;
    transition: 0.3s;
}

.fixed-whatsapp:hover { transform: translateY(-5px); background: #128c7e; }

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
}
.comments-section { padding: 40px 0; }
.reply-title { font-family: 'Playfair Display', serif; font-size: 24px; margin-bottom: 20px; color: #1a1a1a; }

/* Yorum Listesi */
.single-comment {
    display: flex;
    gap: 20px;
    background: #f9f9f9;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    border: 1px solid #f0f0f0;
}

.comment-avatar {
    width: 50px; height: 50px; background: #b89552; color: #fff;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-weight: 700; flex-shrink: 0;
}

.comment-body h5 { margin: 0 0 5px; font-weight: 700; font-size: 16px; }
.comment-date { font-size: 12px; color: #999; display: block; margin-bottom: 10px; }
.comment-body p { font-size: 14px; color: #555; line-height: 1.6; }

/* Form Tasarımı */
.comment-form-wrap { margin-top: 60px; background: #fff; padding: 40px; border-radius: 20px; border: 1px solid #eee; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group input, .form-group textarea {
    width: 100%; padding: 15px; border: 1px solid #eee; border-radius: 10px;
    background: #fafafa; font-family: inherit; transition: 0.3s;
}
.form-group input:focus, .form-group textarea:focus { border-color: #b89552; outline: none; background: #fff; }
.submit-btn {
    background: #1a1a1a; color: #fff; border: none; padding: 15px 35px;
    border-radius: 10px; font-weight: 600; cursor: pointer; transition: 0.3s;
}
.submit-btn:hover { background: #b89552; transform: translateY(-3px); }

@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
/* İlgili Makaleler Bölümü Genel Yapısı */
.related-articles {
    padding: 80px 0;
    background-color: #fcfdfe;
    border-top: 1px solid #f0f0f0;
}

.related-articles h3 {
    font-size: 28px;
    color: #1a202c;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    width: 100%;
    text-align: center;
}

/* Kart Tasarımı */
.related-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #edf2f7;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.related-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: #e2e8f0;
}

/* Görsel Alanı */
.related-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-bottom: 1px solid #f7fafc;
    transition: transform 0.5s ease;
}

.related-card:hover img {
    transform: scale(1.03);
}

/* İçerik Alanı */
.related-card-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.related-category {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #3182ce; /* Doktor siteleri için güven veren mavi tonu */
    margin-bottom: 12px;
    display: block;
}

.related-card h4 {
    font-size: 19px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 15px;
}

.related-card h4 a {
    color: #2d3748;
    text-decoration: none;
    transition: color 0.2s;
}

.related-card h4 a:hover {
    color: #3182ce;
}

/* "Devamını Oku" Linki */
.read-more-link {
    margin-top: auto;
    font-size: 14px;
    font-weight: 600;
    color: #4a5568;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s;
}

.read-more-link:hover {
    color: #3182ce;
    padding-left: 5px;
}

/* Grid Düzeni (CSS Grid) */
.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .related-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .related-articles {
        padding: 50px 0;
    }
}
<style>
.custom-input {
    background: #f8fafc !important;
    border: 2px solid #f1f5f9 !important;
    padding: 12px 18px !important;
    border-radius: 12px !important;
    font-size: 15px;
    transition: all 0.3s ease;
}

.custom-input:focus {
    border-color: #3182ce !important;
    background: #fff !important;
    box-shadow: none !important;
}

.btn-submit {
    background: #1a202c;
    color: #fff;
    border: none;
    padding: 15px 35px;
    border-radius: 12px;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-submit:hover {
    background: #3182ce;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(49, 130, 206, 0.2);
}

/* Mobilde boşlukları düzenle */
@media (max-width: 768px) {
    .contact-form-card {
        padding: 25px !important;
    }
}
</style>
<style>
/* 1. Header'ın Altına İtme (En Önemli Kısım) */
.contact-page-wrapper {
    padding-top: 150px; /* Header yüksekliğine göre burayı artırıp azaltabilirsin */
    padding-bottom: 80px;
    background-color: #ffffff;
}

/* 2. Sol Taraf Stil Düzeltmeleri */
.section-title {
    font-size: 36px;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 10px;
}
.section-subtitle {
    color: #718096;
    margin-bottom: 40px;
}
.info-box {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}
.info-icon {
    font-size: 20px;
    background: #f1f5f9;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}
.info-text strong {
    display: block;
    font-size: 12px;
    color: #3182ce;
    letter-spacing: 1px;
}
.info-text p {
    margin: 0;
    font-weight: 600;
    color: #2d3748;
}

/* 3. Modern Form Kartı */
.modern-contact-card {
    background: #fff;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
    border: 1px solid #f0f4f8;
}
.modern-contact-card h3 {
    margin-bottom: 30px;
    font-weight: 700;
}

/* 4. Inputları Nizami Yapma */
.modern-input {
    background-color: #f8fafc !important;
    border: 2px solid #edf2f7 !important;
    padding: 12px 15px !important;
    border-radius: 12px !important;
    font-size: 15px !important;
    transition: all 0.3s ease !important;
    width: 100%; /* Formun dışına taşmayı engeller */
}
.modern-input:focus {
    background-color: #fff !important;
    border-color: #3182ce !important;
    box-shadow: 0 0 0 4px rgba(49, 130, 206, 0.1) !important;
}

/* 5. Buton Tasarımı */
.modern-btn {
    background: #1a202c;
    color: white;
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    margin-top: 10px;
    cursor: pointer;
}
.modern-btn:hover {
    background: #3182ce;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(49, 130, 206, 0.3);
}

/* Mobil Düzenlemeleri */
@media (max-width: 768px) {
    .contact-page-wrapper { padding-top: 120px; }
    .modern-contact-card { padding: 25px; }
}
</style>
<style>
/* Header Payı ve Genel Sayfa Ayarı */
.contact-page-wrapper {
    padding-top: 160px; /* Header masaüstünde daha genişse burayı 180px yapabilirsin */
    padding-bottom: 100px;
    background: linear-gradient(to bottom, #f8fafc, #ffffff);
    min-height: 80vh;
}

/* Sol Kart Tasarımı */
.contact-details-card {
    background: #1a202c; /* Kurumsal lacivert/siyah tonu */
    padding: 50px;
    border-radius: 30px;
    color: white;
    height: 100%;
}

.contact-details-card .section-title {
    color: #fff;
    font-size: 32px;
    margin-bottom: 5px;
}

.info-item-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-top: 35px;
}

.info-icon {
    font-size: 22px;
    background: rgba(255, 255, 255, 0.1);
    min-width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
}

.info-text strong {
    font-size: 11px;
    letter-spacing: 1.5px;
    color: #63b3ed; /* Açık mavi vurgu */
    display: block;
    margin-bottom: 5px;
}

.info-text p, .info-text a {
    color: #e2e8f0;
    text-decoration: none;
    margin: 0;
    font-size: 16px;
    font-weight: 500;
}

.info-text small {
    color: #a0aec0;
}

/* Sağ Kart Tasarımı */
.modern-contact-card {
    background: #fff;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.05);
    border: 1px solid #edf2f7;
}

/* Form Elemanları */
.form-label-custom {
    font-size: 14px;
    font-weight: 700;
    color: #4a5568;
    margin-bottom: 8px;
    display: block;
}

.modern-input {
    background: #f7fafc !important;
    border: 2px solid #edf2f7 !important;
    padding: 14px !important;
    border-radius: 12px !important;
    transition: all 0.3s ease !important;
}

.modern-input:focus {
    background: #fff !important;
    border-color: #3182ce !important;
    box-shadow: 0 0 0 4px rgba(49, 130, 206, 0.1) !important;
}

.modern-btn {
    background: #3182ce;
    color: #fff;
    width: 100%;
    padding: 18px;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s;
}

.modern-btn:hover {
    background: #2c5282;
    transform: translateY(-3px);
}

/* Masaüstü Özel: Yan yana hizalamayı zorla */
@media (min-width: 992px) {
    .container {
        max-width: 1140px; /* İçeriğin çok yayılmasını engeller */
    }
}

/* Mobil Düzenlemeler */
@media (max-width: 768px) {
    .contact-page-wrapper { padding-top: 120px; }
    .contact-details-card, .modern-contact-card { padding: 30px; }
}
</style>
<style>
/* Header Payı ve Genel Hizalama */
.contact-main-area {
    padding-top: 180px; /* Header'ın altına girmesini engeller */
    padding-bottom: 80px;
    background-color: #fcfcfc;
}

.custom-container {
    max-width: 1100px !important; /* Masaüstünde çok yayılmasını engeller, kutu gibi durur */
}

.main-box-shadow {
    box-shadow: 0 40px 100px rgba(0,0,0,0.08);
    border-radius: 30px;
    overflow: hidden; /* Köşelerin yuvarlak kalmasını sağlar */
    background: #fff;
}

/* Sol Panel (Koyu) */
.contact-dark-side {
    background: #1a202c;
    color: #fff;
    padding: 60px 50px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.side-title { font-weight: 800; font-size: 32px; margin-bottom: 10px; }
.side-text { color: #a0aec0; margin-bottom: 40px; }

.c-item { display: flex; gap: 20px; margin-bottom: 30px; }
.c-icon { 
    background: rgba(255,255,255,0.05); 
    width: 45px; height: 45px; 
    display: flex; align-items: center; justify-content: center; 
    border-radius: 12px; font-size: 18px;
}
.c-text strong { display: block; color: #63b3ed; font-size: 11px; letter-spacing: 1px; margin-bottom: 5px; }
.c-text p, .c-text a { color: #e2e8f0; text-decoration: none; margin: 0; font-size: 15px; }
.c-text small { color: #718096; }

.side-footer { margin-top: auto; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.05); font-size: 13px; color: #718096; }

/* Sağ Panel (Beyaz) */
.contact-light-side {
    padding: 60px 50px;
    background: #fff;
}

.form-title { font-weight: 700; margin-bottom: 5px; }
.form-subtitle { color: #718096; margin-bottom: 35px; }

/* Inputlar */
.biz-input {
    background: #f8fafc !important;
    border: 2px solid #f1f5f9 !important;
    padding: 12px 15px !important;
    border-radius: 12px !important;
    font-size: 15px !important;
}

.biz-input:focus {
    border-color: #3182ce !important;
    background: #fff !important;
    box-shadow: none !important;
}

.biz-btn {
    background: #3182ce;
    color: #fff;
    border: none;
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    font-weight: 700;
    transition: 0.3s;
}

.biz-btn:hover { background: #2c5282; transform: translateY(-3px); }

/* Masaüstünde yan yana durmayı garanti et */
@media (min-width: 992px) {
    .row.g-0 { display: flex !important; }
}

/* Mobil Düzeltme */
@media (max-width: 768px) {
    .contact-main-area { padding-top: 120px; }
    .contact-dark-side, .contact-light-side { padding: 40px 30px; }
}
</style>
<style>
/* 1. Header Payı: İçeriği header'ın altından kurtarır */
.contact-main-area {
    margin-top: 120px; /* Header yüksekliğine göre burayı artırabilirsin */
    padding-bottom: 60px;
    background-color: #fcfcfc;
}

/* 2. Form ve Kutu Düzeni */
.custom-container {
    max-width: 1200px !important;
    margin: 0 auto;
}

.main-box-shadow {
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    display: flex;
    flex-wrap: wrap; /* Mobilde alt alta geçmesi için */
}

/* Sol Panel Düzeltme */
.contact-dark-side {
    background: #1a202c;
    color: #fff;
    padding: 50px;
    height: 100%;
}

/* Sağ Panel ve Form Elemanları (Buraya Dikkat) */
.contact-light-side {
    padding: 50px;
    background: #fff;
}

.biz-input {
    width: 100% !important; /* Inputların dışarı taşmasını engeller */
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    padding: 12px 15px !important;
    border-radius: 10px !important;
    font-size: 15px !important;
    margin-bottom: 5px;
}

.biz-btn {
    background: #3182ce;
    color: #fff;
    border: none;
    width: 100%;
    padding: 16px;
    border-radius: 10px;
    font-weight: 700;
    margin-top: 20px;
    transition: 0.3s;
}

.biz-btn:hover {
    background: #2c5282;
}

/* Mobil için Header Ayarı */
@media (max-width: 768px) {
    .contact-main-area { margin-top: 80px; }
    .contact-dark-side, .contact-light-side { padding: 30px; }
}
</style>