:root {
    --neon: #d4ff00;
    --neon-hover: #bde600;
}

body, html {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    overflow-x: hidden;
    scroll-behavior: smooth; /* Menüden tıklayınca yumuşak kayma için */
}

/* Navigasyon Barı */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-sizing: border-box;
}

.logo {
    font-size: 28px;
    font-weight: 900;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.logo span {
    color: var(--neon);
    text-shadow: 1px 1px 0 #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000;
}

/* Hamburger Menü (Masaüstünde gizli) */
.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #1a1a1a;
}

.nav-links {
    display: flex;
    gap: 24px;
    margin: 0;
    padding: 0;
    list-style: none;
    align-items: center;
}

.nav-links > li {
    position: relative; 
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-links > li > a:hover {
    color: #000;
    text-shadow: 0 2px 10px rgba(212, 255, 0, 0.5);
}

/* Açılır Menü (Dropdown - Masaüstü) */
.dropdown-menu {
    position: absolute;
    top: 150%; 
    left: -15px; 
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    min-width: 180px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 12px;
    padding: 10px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    border-top: 3px solid var(--neon); 
    display: block; /* Masaüstünde görünürlük geçişleri için blok kalmalı */
}

/* Sadece geniş ekranlarda üzerine gelince (hover) görünür olsun */
@media (min-width: 993px) {
    .nav-links > li:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        top: 100%;
        display: block;
    }
}

.dropdown-menu li { margin: 0; }

.dropdown-menu a {
    padding: 12px 20px;
    font-size: 12px;
    color: #555;
    transition: all 0.3s;
    display: block;
}

.dropdown-menu a:hover {
    background-color: rgba(212, 255, 0, 0.15); 
    color: #000;
    padding-left: 25px; 
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.navbar-right a {
    text-decoration: none;
    color: #333;
    font-size: 13px;
    font-weight: 600;
}

.btn-join {
    background-color: var(--neon);
    color: #000000;
    border: none;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 13px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.btn-join:hover {
    background-color: var(--neon-hover);
    transform: scale(1.05);
}

/* Hero Alanı */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 10%;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out; 
    z-index: 1;
}

.hero-bg.active { opacity: 1; }

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.25); 
    backdrop-filter: blur(5px); 
    -webkit-backdrop-filter: blur(5px);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 700px;
    text-align: left;
}

.hero-badge {
    display: inline-block;
    border: 1px solid rgba(212, 255, 0, 0.4);
    background-color: rgba(212, 255, 0, 0.1);
    color: var(--neon);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 72px;
    font-weight: 300;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: -2px;
    line-height: 1.1;
    color: #ffffff; 
}

.hero-title .bold-neon {
    font-weight: 900;
    color: var(--neon);
    letter-spacing: 0;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 400;
    margin: 0 0 40px 0;
    line-height: 1.7;
    color: #e0e0e0;
    font-style: italic;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 25px;
}

.btn-hero {
    background-color: var(--neon);
    color: #000000;
    border: none;
    padding: 16px 40px;
    border-radius: 40px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 255, 0, 0.3);
}

.btn-secondary {
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding-bottom: 4px;
    transition: color 0.3s, border-color 0.3s;
}

.btn-secondary:hover {
    color: var(--neon);
    border-color: var(--neon);
}

/* ==========================================
   DERSLER (PROGRAMS) 
   ========================================== */
.programs-section {
    padding: 120px 50px;
    background-color: #ffffff;
    color: #1a1a1a;
    text-align: center;
}

.programs-header {
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.programs-title {
    font-size: 42px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: -1px;
    line-height: 1.2;
}

.programs-desc {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    font-weight: 400;
}

/* 4'lü Grid Yapısı */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    text-align: left;
}

.program-card {
    display: flex;
    flex-direction: column;
}

.program-image-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 20px;
    background-color: #f0f0f0; 
}

.program-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease; 
}

.program-card:hover .program-image-wrapper img {
    transform: scale(1.08); 
}

.program-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.program-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 20px 0;
    flex-grow: 1; 
}

.btn-explore {
    display: inline-block;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 3px solid var(--neon); 
    padding-bottom: 2px;
    align-self: flex-start; 
    transition: color 0.3s, border-color 0.3s, transform 0.3s;
}

.btn-explore:hover {
    color: #000;
    border-color: #000; 
    transform: translateX(5px); 
}

/* WhatsApp Kapsayıcı Dış Alan */
.wa-wrapper {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-family: 'Poppins', sans-serif;
}

/* Sabit Düzeltilmiş Yuvarlak İkon */
.whatsapp-icon {
    background-color: #25D366;
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    transition: transform 0.3s, background-color 0.3s, box-shadow 0.3s;
    text-decoration: none !important;
    padding: 0 !important;       
    line-height: 0 !important;   
    box-sizing: border-box !important;
    flex-shrink: 0 !important;
}

.whatsapp-icon img {
    width: 32px !important;
    height: 32px !important;
    max-width: 32px !important;   
    max-height: 32px !important;  
    display: block !important;
    flex-shrink: 0 !important;   
    object-fit: contain !important; 
    margin: 0 !important;
    padding: 0 !important;
}

.whatsapp-icon:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

/* Akıllı Mesaj Pop-up Kutusu */
.wa-popup {
    display: none; /* Varsayılan olarak kapalı */
    width: 280px;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 16px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: left;
    box-sizing: border-box;
    position: relative; 
}

/* Kutu bu sınıf gelince sıfırdan animasyonla açılacak */
.wa-popup.show {
    display: block !important;
    animation: waFadeIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

/* Kapatma (Çarpı) Butonu Stili */
.wa-popup-close {
    position: absolute;
    top: 10px;
    right: 14px;
    font-size: 20px;
    font-weight: 600;
    color: #999999;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
    user-select: none;
}

.wa-popup-close:hover {
    color: #ff0000;
}

.wa-popup-header {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #1a1a1a;
    margin-bottom: 6px;
    padding-right: 15px; 
}

.wa-popup-time {
    color: #999;
    font-size: 11px;
}

.wa-popup-body {
    font-size: 13px;
    color: #444;
    line-height: 1.5;
    margin-bottom: 12px;
}

.wa-popup-btn {
    display: block;
    background-color: #25D366;
    color: white;
    text-align: center;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 12px;
    border-radius: 8px;
    transition: background-color 0.2s;
}

.wa-popup-btn:hover {
    background-color: #20ba5a;
}

@keyframes waFadeIn {
    from { opacity: 0; transform: translateY(20px) scale(0.9); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 768px) {
    .wa-wrapper { bottom: 20px; right: 20px; }
    .whatsapp-icon { width: 55px !important; height: 55px !important; }
    .whatsapp-icon img { width: 28px !important; height: 28px !important; max-width: 28px !important; max-height: 28px !important; } 
    .wa-popup { width: 250px; }
}

/* ==========================================
   SADE VE FERAH FOOTER (ALT BİLGİ) BÖLÜMÜ
   ========================================== */
.site-footer {
    background-color: #f8f9fa; 
    padding: 60px 50px 30px 50px;
    border-top: 1px solid #eeeeee;
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
}

.footer-column h4 {
    font-size: 13px;
    font-weight: 800;
    color: #111111;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    text-decoration: none;
    color: #666666; 
    font-size: 13px;
    font-weight: 400;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: var(--neon); 
}

/* Sosyal Medya İkonları */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #111111;
    color: #ffffff;
    border-radius: 50%;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s;
}

.social-icons a:hover {
    background-color: var(--neon);
    color: #000000;
    transform: translateY(-3px);
}

.footer-bottom {
    max-width: 1400px;
    margin: 40px auto 0 auto;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    text-align: center;
    color: #999999;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================
   SIKÇA SORULAN SORULAR (SSS) BÖLÜMÜ
   ========================================== */
.faq-section {
    padding: 100px 50px;
    background-color: #ffffff; 
    font-family: 'Poppins', sans-serif;
}

.faq-container {
    max-width: 800px; 
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-title {
    font-size: 42px;
    font-weight: 900;
    text-transform: uppercase;
    color: #1a1a1a;
    margin: 0 0 15px 0;
    letter-spacing: -1px;
}

.faq-desc {
    color: #666;
    font-size: 15px;
    margin: 0;
}

/* Akordeon Yapısı */
.faq-item {
    margin-bottom: 15px;
    border: 1px solid #eeeeee;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #dddddd;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.faq-item details {
    width: 100%;
}

.faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    cursor: pointer;
    list-style: none; 
    outline: none;
    transition: color 0.3s;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #f8f9fa;
    color: #1a1a1a;
    font-size: 20px;
    font-weight: 300;
    transition: all 0.3s ease;
}

.faq-item details[open] summary .faq-icon {
    background-color: var(--neon); 
    color: #000000;
    transform: rotate(45deg); 
}

.faq-answer {
    padding: 0 25px 25px 25px;
    font-size: 14px;
    color: #555555;
    line-height: 1.7;
    border-top: 1px solid transparent;
}

.faq-item details[open] .faq-answer {
    border-top-color: #eeeeee;
    padding-top: 20px;
    margin-top: 5px;
}

/* ==========================================
   TABLI BÜYÜK GALERİ BÖLÜMÜ
   ========================================== */
.gallery-section {
    padding: 100px 50px;
    background-color: #fcfcfc; 
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.gallery-header {
    margin-bottom: 40px;
}

.gallery-title {
    font-size: 42px;
    font-weight: 900;
    text-transform: uppercase;
    color: #1a1a1a;
    margin: 0 0 10px 0;
    letter-spacing: -1px;
}

.gallery-desc {
    color: #666;
    font-size: 15px;
    margin-bottom: 40px;
}

/* Tab Butonları */
.gallery-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.tab-btn {
    padding: 12px 30px;
    background-color: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 40px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: #555555;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.tab-btn:hover {
    background-color: #f8f9fa;
    color: #1a1a1a;
    transform: translateY(-2px);
}

.tab-btn.active {
    background-color: var(--neon);
    color: #000000;
    border-color: var(--neon);
    box-shadow: 0 6px 20px rgba(212, 255, 0, 0.3);
}

/* Galeri İçeriği */
.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    min-height: 400px; 
}

.gallery-content {
    display: none; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    animation: fadeUp 0.6s ease forwards;
}

.gallery-content.active {
    display: grid; 
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4 / 3; 
    background-color: #eeeeee;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.08); 
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==========================================
   TAM EKRAN GALERİ (LIGHTBOX) BÖLÜMÜ
   ========================================== */
.gallery-modal {
    display: none; 
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9); 
    backdrop-filter: blur(8px); 
    opacity: 0;
    transition: opacity 0.3s ease;
    align-items: center;
    justify-content: center;
}

.gallery-modal.show {
    display: flex;
    opacity: 1;
}

.modal-content {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    transform: scale(0.8);
    transition: transform 0.3s ease;
    object-fit: contain; 
}

.gallery-modal.show .modal-content {
    transform: scale(1); 
}

.close-modal {
    position: absolute;
    top: 25px;
    right: 40px;
    color: #ffffff;
    font-size: 45px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s, transform 0.3s;
    line-height: 1;
    z-index: 10000;
}

.close-modal:hover {
    color: var(--neon);
    transform: scale(1.1);
}       

.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #ffffff;
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    padding: 15px;
    user-select: none; 
    transition: color 0.3s, transform 0.3s;
    z-index: 10000;
}

.prev-btn { left: 20px; }
.next-btn { right: 20px; }

.prev-btn:hover, .next-btn:hover {
    color: var(--neon);
    transform: translateY(-50%) scale(1.1); 
}

/* ==========================================
   YENİLENMİŞ VE HATASIZ MOBİL UYUMLULUK
   ========================================== */
@media (max-width: 992px) {
    .navbar { 
        padding: 15px 25px; 
    }
    
    .hamburger { 
        display: block; 
    }
    
    /* Mobil Menü Konteyneri */
    .nav-links {
        display: none; 
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ffffff; /* Alttaki yazıların sızmaması için tam beyaz */
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 15px 25px rgba(0,0,0,0.1);
        margin: 0;
        list-style: none;
        box-sizing: border-box;
        z-index: 9999; 
    }
    
    .nav-links.active { 
        display: flex; 
    }
    
    .nav-links > li { 
        margin: 0;
        padding: 0;
        width: 100%; 
        text-align: center; 
    }
    
    /* Mobil Linkler */
    .nav-links a {
        padding: 14px 20px;
        justify-content: center; 
        font-size: 14px;
        width: 100%;
        box-sizing: border-box;
    }
    
    /* Mobil Açılır Menü (Dropdown) Ayarı */
    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        display: none; /* Varsayılan gizli, JS tetikleyecek */
        box-shadow: none;
        border: none;
        text-align: center;
        padding: 0;
        margin: 0;
        background-color: #f9f9f9; /* Seçenekler için hafif gri ton arka plan */
        width: 100%;
    }
    
    .dropdown-menu a {
        padding: 12px 20px;
    }
    
    .dropdown-menu a:hover {
        padding-left: 20px; 
    }
    
    .navbar-right a { 
        display: none; 
    } 
}

@media (max-width: 768px) {
    /* Navbar ince ayar */
    .navbar { padding: 10px 20px; }
    .logo { font-size: 22px; }
    .btn-join { padding: 8px 16px; font-size: 11px; }

    /* Hero Alanı */
    .hero { padding: 0 20px; justify-content: center; text-align: center; }
    .hero-content { text-align: center; }
    .hero-title { font-size: 42px; margin-bottom: 20px; }
    .hero-subtitle { font-size: 15px; margin-bottom: 30px; }
    .hero-buttons { flex-direction: column; gap: 15px; justify-content: center; align-items: center; }

    /* Bölüm Boşlukları (Padding) */
    .programs-section, .gallery-section, .faq-section { padding: 60px 20px; }
    
    /* Başlık Boyutları */
    .programs-title, .gallery-title, .faq-title { font-size: 32px; }

    /* Galeri Butonları */
    .gallery-tabs { gap: 10px; }
    .tab-btn { padding: 8px 16px; font-size: 11px; }
    .gallery-content { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
    
    /* Lightbox Okları */
    .prev-btn, .next-btn { font-size: 30px; padding: 10px; }
    .prev-btn { left: 5px; }
    .next-btn { right: 5px; }

    /* Footer */
    .site-footer { padding: 40px 20px 20px 20px; }
    .footer-container { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .hero-title { font-size: 32px; }
    .footer-container { grid-template-columns: 1fr; }
}





/* ==========================================
   BLOG BÖLÜMÜ (BLOG SECTION)
   ========================================== */
.blog-section {
    padding: 100px 50px;
    background-color: #ffffff;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.blog-header {
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.blog-title {
    font-size: 42px;
    font-weight: 900;
    text-transform: uppercase;
    color: #1a1a1a;
    margin: 0 0 15px 0;
    letter-spacing: -1px;
}

.blog-desc {
    color: #666;
    font-size: 15px;
    margin: 0;
}

/* 3 Sütunlu Esnek Izgara Yapısı */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    text-align: left;
}

.blog-card {
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #eeeeee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.blog-image-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #f5f5f5;
}

.blog-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image-wrapper img {
    transform: scale(1.05); /* Üzerine gelince resmi hafifçe büyütür */
}

/* Kart Üzerindeki Kategori Etiketi */
.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #1a1a1a;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.blog-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* İçerik kısa olsa bile alt linkleri aynı hizaya eşitler */
}

.blog-date {
    font-size: 12px;
    color: #999999;
    margin-bottom: 10px;
    display: block;
}

.blog-card-content h3 {
    font-size: 18px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 12px 0;
    line-height: 1.4;
    text-transform: uppercase;
}

.blog-card-content p {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    margin: 0 0 20px 0;
    flex-grow: 1;
}

.blog-read-more {
    font-size: 13px;
    font-weight: 800;
    color: #1a1a1a;
    text-decoration: none;
    text-transform: uppercase;
    align-self: flex-start;
    transition: color 0.2s, transform 0.2s;
}

.blog-read-more:hover {
    color: var(--neon);
    transform: translateX(3px); /* Sağa doğru küçük hareket */
}

.blog-footer {
    margin-top: 60px;
}

/* Alt Kısımdaki Büyük Blog Yönlendirme Butonu */
.btn-blog-more {
    display: inline-block;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    padding: 14px 35px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s, color 0.3s;
}

.btn-blog-more:hover {
    background-color: var(--neon);
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 255, 0, 0.3);
}

/* Mobil Cihazlar İçin Blog Alanı Esneklik Ayarları */
@media (max-width: 768px) {
    .blog-section { padding: 60px 20px; }
    .blog-title { font-size: 32px; }
    .blog-grid { grid-template-columns: 1fr; gap: 25px; }
    .btn-blog-more { width: 100%; box-sizing: border-box; padding: 14px 20px; } /* Mobilde butonu tam genişlik yapar */
}