/* === GENEL STİLLER VE SIFIRLAMA === */
/* Yıldız (*) işareti sayfadaki TÜM elemanları seçer. Bu kod, tarayıcıların varsayılan boşluklarını sıfırlar. */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; 
}

/* Sayfanın genel yazı tipi ve rengi */
body {
    font-family: 'Helvetica', 'Arial', sans-serif; /* Modern ve temiz bir yazı tipi ailesi */
    color: #333; /* Koyu gri, saf siyahtan daha okunabilirdir */
    line-height: 1.6;
}

/* Ana içeriği ortalamak için bir konteyner */
.container {
    width: 90%;
    max-width: 1100px; /* Ekran ne kadar büyürse büyüsün, içerik bu genişliği geçmesin */
    margin: auto; /* Konteyneri yatayda ortalar */
}

/* === HEADER / ÜST BÖLÜM STİLLERİ === */
header {
    background: #ffffff; /* Arka plan rengi beyaz */
    padding: 20px 0; /* Üstten ve alttan 20px boşluk */
    border-bottom: 1px solid #e0e0e0; /* Altına ince bir çizgi */
    width: 100%;
}

/* Flexbox kullanarak logo ve menüyü yan yana hizalama */
header .container {
    display: flex;
    justify-content: space-between; /* Logo ve menü arasına boşluk koyarak iki uca yaslar */
    align-items: center; /* Dikeyde ortalar */
}

/* Logo Stili */
header .logo a {
    font-size: 32px; /* Yazıyı biraz büyütelim */
    font-weight: bold;
    text-decoration: none;
    font-family: 'Georgia', 'Times New Roman', serif; /* Resimdekine benzer bir font ailesi */
    letter-spacing: 0.5px; /* Harf aralarını hafifçe açalım */
}

.logo-dark {
    color: #2c3e50; /* Koyu mavi/gri renk */
}

.logo-light {
    color: #00BFFF; /* Canlı mavi renk (DeepSkyBlue) */
}

/* Menü Linklerini Yatay Hizalama */
header nav ul {
    list-style: none; /* Liste başındaki noktaları kaldır */
    display: flex; /* Liste elemanlarını (li) yan yana dizer */
}

header nav ul li {
    margin-left: 25px; /* Menü elemanları arasına boşluk */
}

/* Menü Linklerinin Stili */
header nav a {
    color: #555;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 5px 0;
    transition: color 0.3s ease; /* Renk değişimine yumuşak bir geçiş efekti */
}

/* Fare ile üzerine gelince menü linklerinin rengi değişsin */
header nav a:hover {
    color: #007BFF; /* Mavi bir renk */
}
/* === HERO / KARŞILAMA BÖLÜMÜ STİLLERİ === */
.hero {
    /* Arka plan resmi ve üzerine yarı saydam siyah bir katman ekleyerek yazının okunurluğunu artırıyoruz */
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/hero-background.jpg');
    background-size: cover; /* Resmi alana sığacak şekilde kapla */
    background-position: center center; /* Resmi dikey ve yatayda ortala */
    height: 60vh; /* Ekran yüksekliğinin %60'ını kaplasın */
    color: #ffffff; /* İçindeki tüm yazıların rengi beyaz olsun */

    /* İçeriği (hero-content) tam ortaya getirmek için Flexbox kullanıyoruz */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-content {
    max-width: 800px; /* İçerik en fazla 800px genişliğinde olsun */
}

.hero h1 {
    font-size: 48px; /* Ana başlığı büyütelim */
    margin-bottom: 15px; /* Başlık ile altındaki paragraf arasına boşluk */
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px; /* Paragraf ile buton arasına boşluk */
}

/* Ana Buton Stili */
.btn-primary {
    background-color: #007BFF; /* Mavi arka plan */
    color: #ffffff;
    padding: 12px 28px; /* Butonun iç boşluğu */
    text-decoration: none; /* Link altındaki çizgiyi kaldır */
    border-radius: 5px; /* Kenarları yuvarlat */
    font-weight: bold;
    font-size: 16px;
    transition: background-color 0.3s ease; /* Renk değişimine yumuşak geçiş */
}

.btn-primary:hover {
    background-color: #0056b3; /* Fare üzerine gelince renk koyulaşsın */
}
/* === HİZMETLER / KARTLI BÖLÜM STİLLERİ === */
.features-section {
    padding: 80px 0; /* Bölümün üst ve alt boşluğu */
    background-color: #f9f9f9; /* Hafif kırık beyaz bir arka plan */
}

.section-title {
    text-align: center; /* Bölüm başlığını ortala */
    margin-bottom: 50px; /* Başlık ile kartlar arasına boşluk */
}

.section-title h2 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.section-title p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: auto; /* Açıklama metnini ortala */
}

/* Kartları tutan ızgara yapısı */
.features-grid {
    display: grid;
    /* 3 eşit sütun oluştur. Her sütun 1fr (fraction/kesir) kaplasın */
    grid-template-columns: repeat(3, 1fr);
    gap: 30px; /* Kartlar arasındaki boşluk */
}

.feature-card {
    background: #ffffff;
    padding: 35px 30px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07); /* Hafif bir gölge efekti */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Yumuşak geçiş efekti */
}

/* Fare ile üzerine gelince kart hafifçe yukarı kaysın ve gölgesi artsın */
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* İkon Stilleri */
.feature-card i {
    font-size: 48px;
    color: #007BFF; /* Ana mavi rengimiz */
    margin-bottom: 20px;
}

/* Kart Başlığı Stili */
.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
}

/* Kart Açıklaması Stili */
.feature-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}
/* === HAKKIMIZDA BÖLÜMÜ STİLLERİ === */
.about-section {
    padding: 80px 0;
    background: #ffffff;
}

.about-grid {
    display: grid;
    /* 2 eşit sütun oluştur. soldaki resim, sağdaki yazı */
    grid-template-columns: 1fr 1fr;
    gap: 50px; /* iki sütun arası boşluk */
    align-items: center; /* içerikleri dikeyde ortala */
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px; /* Resmin kenarlarını yuvarlat */
}

.about-content h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-content p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #666;
}

/* Özel tik işaretli liste */
.about-list {
    list-style: none; /* Varsayılan noktaları kaldır */
    padding: 0;
    margin-bottom: 30px;
}

.about-list li {
    color: #333;
    font-size: 17px;
    margin-bottom: 12px;
    position: relative;
    padding-left: 30px; /* Tik işareti için solda boşluk bırak */
}

/* Tik işaretini Font Awesome'dan ekliyoruz */
.about-list li::before {
    content: '\f00c'; /* Font Awesome tik ikonu kodu */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #007BFF; /* Mavi renk */
    position: absolute; /* li elemanına göre konumlandır */
    left: 0;
    top: 2px;
}
/* === PARTNER ÜNİVERSİTELER BÖLÜMÜ STİLLERİ (SWIPER.JS) === */
.partners-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.university-slider {
    width: 100%;
    padding: 20px 0; /* Slider'ın üst ve alt boşluğu */
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    max-width: 150px;
    width: 100%;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.4s ease;
}

.swiper-slide img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* Fare ile üzerine gelince */
.partner-logo img:hover {
    filter: grayscale(0%); /* Rengini geri getir */
    opacity: 1; /* Tamamen görünür yap */
    transform: scale(1.1); /* Hafifçe büyüt */
}
/* === FOOTER / ALT BİLGİ BÖLÜMÜ STİLLERİ === */
footer {
    background-color: #2c3e50; /* Koyu lacivert/gri bir arkaplan */
    color: #bdc3c7; /* Saf beyaz olmayan, yumuşak bir yazı rengi */
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 eşit sütun */
    gap: 30px; /* Sütunlar arası boşluk */
    padding-bottom: 40px;
}

.footer-col h3 {
    color: #ffffff; /* Başlıklar parlak beyaz olsun */
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-col p, .footer-col li {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-col a {
    color: #bdc3c7; /* Linkler de aynı yumuşak renkte */
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #ffffff; /* Üzerine gelince parlak beyaz olsun */
}

.footer-col ul {
    list-style: none; /* Liste noktalarını kaldır */
    padding: 0;
}

.footer-col i {
    width: 20px; /* İkonların hizalı durması için genişlik verelim */
    text-align: center;
    margin-right: 8px;
    color: #ffffff;
}

.social-links a {
    display: inline-block;
    color: #ffffff;
    background-color: #3b4a5a;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    margin-right: 10px;
    font-size: 18px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    background-color: #007BFF;
    transform: translateY(-3px);
}

.footer-bottom {
    background-color: #233140; /* Footer'dan bir ton daha koyu */
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
    border-top: 1px solid #3b4a5a;
    margin-top: 40px;
}
/* === MOBİL UYUM (RESPONSIVE DESIGN) === */

/* --- Tablet ve Altı (Genişlik 992px'den küçük olduğunda) --- */
@media (max-width: 992px) {
    .container {
        width: 95%; /* Kenar boşluklarını biraz artıralım */
    }
    .about-grid, .footer-grid, .partners-grid, .features-grid {
        /* ızgara yapılarını 2 sütuna düşürelim */
        grid-template-columns: repeat(2, 1fr);
    }
    .about-content h2, .hero h1 {
        font-size: 36px; /* Başlıkları biraz küçültelim */
    }
}


/* --- Telefon ve Altı (Genişlik 768px'den küçük olduğunda) --- */
@media (max-width: 768px) {
    /* === HAMBURGER MENÜ AYARLARI === */
    .hamburger-menu {
        display: block; /* Hamburger ikonu görünsün */
        font-size: 24px;
        cursor: pointer;
    }

    header nav {
        display: none; /* Normal menüyü gizle */
        position: absolute;
        top: 85px; /* Header yüksekliği kadar aşağıdan başla */
        left: 0;
        width: 100%;
        background-color: #ffffff;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    /* JavaScript ile eklenecek 'active' classı menüyü görünür yapacak */
    header nav.active {
        display: block;
    }

    header nav ul {
        flex-direction: column; /* Linkleri alt alta diz */
        width: 100%;
    }

    header nav ul li {
        margin: 0;
        text-align: center;
        border-bottom: 1px solid #f0f0f0;
    }
    header nav ul li a {
        display: block;
        padding: 15px; /* Tıklama alanını büyüt */
    }

    /* === DİĞER BÖLÜMLERİN MOBİL GÖRÜNÜMÜ === */
    .about-grid, .footer-grid, .features-grid {
        /* Tüm ızgara yapılarını tek sütuna düşür */
        grid-template-columns: 1fr;
    }
    .partners-grid {
        /* Logoları 2'li olarak göstermek daha iyi durur */
        grid-template-columns: repeat(2, 1fr);
    }

    .hero {
        height: 50vh; /* Karşılama alanının yüksekliğini azalt */
    }
    .hero h1 {
        font-size: 32px;
    }
    .hero p {
        font-size: 16px;
    }

    .about-image {
        /* Resmin yazının üstünde kalması için sıralamayı değiştir */
        grid-row: 1; /* Resmi 1. sıraya al */
    }
    .footer-col {
        text-align: center;
    }
    .social-links {
        justify-content: center;
    }
}
/* === İÇ SAYFA BAŞLIĞI STİLİ === */
.page-header {
    background-color: #f9f9f9;
    padding: 40px 0;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

.page-header h1 {
    font-size: 42px;
    color: #2c3e50;
}

/* Detaylı hakkımızda sayfası için ekstra boşluk */
.about-section-detailed {
    padding: 80px 0;
}
/* === İLETİŞİM SAYFASI STİLLERİ === */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

.contact-details h3, .contact-form h3 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 24px;
    color: #007BFF;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background-color: #f0f8ff;
    border-radius: 50%;
    margin-right: 20px;
}

.info-item h4 {
    margin: 0 0 5px 0;
    font-size: 18px;
}
.info-item p {
    margin: 0;
}

/* Form Stilleri */
.form-group {
    margin-bottom: 20px;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: 'Helvetica', 'Arial', sans-serif;
}

.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: #007BFF;
}

.contact-form button {
    border: none;
    cursor: pointer;
    width: 100%;
}

.map-section iframe {
    display: block; /* Altındaki küçük boşluğu kaldırır */
}

/* İletişim Sayfası Mobil Uyum */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr; /* Tek sütuna düşür */
    }
}
/* === ÜNİVERSİTELER SAYFASI STİLLERİ === */
.universities-page-section {
    padding: 80px 0;
}

.university-grid {
    display: grid;
    /* Masaüstünde 3 sütunlu bir görünüm */
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.university-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    background-color: #ffffff;
}

.university-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.university-card img {
    max-height: 80px; /* Logoların yüksekliğini sınırlayalım */
    width: auto;
    max-width: 180px;
    margin-bottom: 20px;
}

.university-card h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 10px;
    min-height: 50px; /* Başlıkların aynı hizada durması için */
}

.university-card .location {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.university-card .location i {
    margin-right: 5px;
    color: #007BFF;
}

/* İkincil Buton Stili (outline) */
.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #007BFF;
    border: 2px solid #007BFF;
    padding: 8px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #007BFF;
    color: #ffffff;
}

/* Üniversiteler Sayfası Mobil Uyum */
@media (max-width: 992px) {
    .university-grid {
        grid-template-columns: repeat(2, 1fr); /* Tablette 2 sütun */
    }
}

@media (max-width: 768px) {
    .university-grid {
        grid-template-columns: 1fr; /* Telefonda 1 sütun */
    }
    .university-card h3 {
        min-height: auto; /* Mobilde yükseklik sınırlamasını kaldır */
    }
}
/* === HİZMETLER SAYFASI STİLLERİ === */
.services-page-section {
    padding-top: 40px;
    padding-bottom: 40px;
}

.service-item {
    padding: 40px 0;
}

/* Her ikinci hizmet bölümünün arkaplanını farklılaştırarak monotonluğu kırıyoruz */
.service-item:nth-child(even) { /* 'even' yani 'çift sayılı' elemanları seçer */
    background-color: #f9f9f9;
}

/* === HAZIRLIK PAKETLERİ SAYFASI (TABLO) STİLLERİ === */
.university-pricing-section {
    padding: 80px 0;
}

/* Tabloyu sarmalayan ve mobil için kaydırma sağlayan konteyner */
.table-container {
    overflow-x: auto; /* Mobilde tablo taşarsa yanlara kaydırılabilsin */
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border-radius: 8px;
}

.price-table {
    width: 100%;
    border-collapse: collapse; /* Çizgileri birleştir */
    min-width: 600px; /* Mobilde tablonun çok sıkışmasını engelle */
}

.price-table th, .price-table td {
    padding: 18px 20px;
    text-align: left;
    border-bottom: 1px solid #eef0f2;
}

/* Tablo Başlığı */
.price-table thead th {
    background-color: #2c3e50;
    color: white;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.price-table thead th:first-child {
    border-top-left-radius: 8px;
}
.price-table thead th:last-child {
    border-top-right-radius: 8px;
}

/* Tablo İçeriği */
.price-table tbody td {
    color: #555;
    font-size: 16px;
}

.price-table tbody tr:last-child td {
    border-bottom: none;
}

.price-table tbody td:nth-child(2),
.price-table tbody td:nth-child(3),
.price-table tbody td:nth-child(4) {
    text-align: center;
    font-weight: 600;
    color: #2c3e50;
}

/* Fare ile üzerine gelme efekti */
.price-table tbody tr:hover td {
    background-color: #eaf5ff;
    color: #007BFF;
}

/* Dahil Olan Hizmetler Bölümü */
.includes-section {
    margin-top: 80px;
}

.includes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 40px;
    margin-top: 30px;
}

.includes-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.includes-grid ul li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
}

.includes-grid ul li .fa-check-circle {
    color: #28a745;
    margin-right: 12px;
    font-size: 20px;
}

/* Dahil olanlar bölümü için mobil uyum */
@media (max-width: 768px) {
    .includes-grid {
        grid-template-columns: 1fr;
    }
}
/* === ÜNİVERSİTE DETAY SAYFASI STİLLERİ === */
.page-header-image {
    padding: 80px 0;
    text-align: center;
    background-size: cover;
    background-position: center;
    color: white;
}

.page-header-image h1 {
    font-size: 52px;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}

.university-detail-section {
    padding: 80px 0;
}

.detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr; /* Sol taraf daha geniş olsun */
    gap: 50px;
}

.detail-content h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 15px;
    margin-top: 30px;
}
.detail-content h2:first-child {
    margin-top: 0;
}

.detail-content h3 {
    font-size: 24px;
    color: #34495e;
    margin-top: 25px;
    margin-bottom: 15px;
}

.detail-content p {
    line-height: 1.8;
    margin-bottom: 15px;
}

.faculty-list {
    list-style: none;
    padding: 0;
    column-count: 2; /* Fakülteleri 2 sütun halinde gösterelim */
    column-gap: 20px;
}
.faculty-list li {
    margin-bottom: 10px;
    font-size: 15px;
}
.faculty-list i {
    color: #007BFF;
    margin-right: 8px;
}

/* Kenar Çubuğu Stilleri */
.sidebar-box {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}
.sidebar-box h4 {
    font-size: 20px;
    margin-bottom: 20px;
    border-bottom: 2px solid #007BFF;
    padding-bottom: 10px;
}
.sidebar-box ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}
.sidebar-box ul li {
    margin-bottom: 12px;
}
.sidebar-box .btn-primary {
    width: 100%;
    text-align: center;
}

/* Detay Sayfası Mobil Uyum */
@media (max-width: 992px) {
    .detail-grid {
        grid-template-columns: 1fr; /* Tek sütuna düşür */
    }
    .faculty-list {
        column-count: 1; /* Listeyi tek sütun yap */
    }
}
@media (max-width: 768px) {
    .page-header-image h1 {
        font-size: 38px;
    }
}
/* === Detay Sayfası Bölüm Fiyat Tabloları === */
.detail-content .section-break {
    margin-top: 50px;
    margin-bottom: 20px;
    font-size: 28px;
    color: #2c3e50;
    border-bottom: 2px solid #007BFF;
    padding-bottom: 10px;
}

.department-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 25px;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.department-table th, .department-table td {
    border: 1px solid #e9ecef;
    padding: 12px 15px;
    text-align: left;
}

.department-table thead th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #495057;
}

.department-table tbody tr:nth-child(even) {
    background-color: #fdfdfd;
}

.department-table td:last-child {
    text-align: right;
    font-weight: 700;
    color: #007BFF;
    white-space: nowrap; /* Fiyatların alt satıra kaymasını engeller */
}
/* Karmaşık Tablolar için Dikey Hizalama */
.department-table.complex td {
    vertical-align: middle; /* Birleşik hücrelerdeki metni dikeyde ortalar */
}

/* Tablodaki ilk sütunu daha belirgin yapalım */
.department-table thead th:first-child,
.department-table tbody td:first-child {
    font-weight: 600;
    color: #2c3e50;
}
/* === BLOG SAYFASI STİLLERİ === */
.blog-section {
    padding: 80px 0;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.blog-card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.07);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover; /* Resmin orantısını bozmadan kaplamasını sağlar */
}
.blog-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Kart içeriğinin esneyerek tüm alanı kaplamasını sağlar */
}
.post-meta {
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
}
.post-meta i {
    margin-right: 5px;
}
.blog-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    flex-grow: 1; /* Başlığın kalan boşluğu doldurmasını sağlar */
}
.excerpt {
    font-size: 15px;
    margin-bottom: 20px;
}
.blog-card .btn-secondary {
    margin-top: auto; /* Butonu kartın en altına iter */
}

/* === TEKİL BLOG YAZISI STİLLERİ === */
.post-header {
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}
.post-header h1 {
    font-size: 48px;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.6);
    margin-bottom: 15px;
}
.post-header .post-meta {
    font-size: 16px;
    color: #eee;
}
article.post-content {
    padding: 80px 0;
    max-width: 800px; /* Yazı alanını okuma kolaylığı için daraltalım */
    margin: auto;
}
.post-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
}
.post-content blockquote {
    border-left: 4px solid #007BFF;
    margin: 30px 0;
    padding: 15px 25px;
    background-color: #f9f9f9;
    font-style: italic;
}

/* Blog Sayfası Mobil Uyum */
@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .post-header h1 {
        font-size: 36px;
    }
}
/* === SEKME (TAB) SİSTEMİ STİLLERİ === */
.tabs {
    display: flex;
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 30px;
}

.tab-button {
    padding: 12px 25px;
    cursor: pointer;
    border: none;
    background-color: transparent;
    font-size: 18px;
    font-weight: 600;
    color: #666;
    position: relative;
    bottom: -2px; /* Alt çizginin üzerine gelmesi için */
    transition: all 0.3s ease;
}

.tab-button.active {
    color: #007BFF;
    border-bottom: 2px solid #007BFF;
}

.tab-content {
    display: none; /* Varsayılan olarak tüm içerikleri gizle */
}

.tab-content.active {
    display: block; /* Sadece 'active' olanı göster */
    animation: fadeIn 0.5s ease-in-out;
}

/* İçeriklerin yumuşak geçişi için animasyon */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
/* === BÖLÜMLER SAYFASI STİLLERİ === */
.departments-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.departments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.department-card {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.department-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.department-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.department-card .card-content {
    padding: 20px;
    flex-grow: 1; /* içeriğin kalan boşluğu doldurmasını sağlar */
}

.department-card h3 {
    margin: 0 0 5px 0;
    font-size: 22px;
    color: #2c3e50;
}

.department-card .duration {
    font-size: 14px;
    color: #666;
}

.department-card .price-range {
    padding: 15px 20px;
    border-top: 1px solid #e0e0e0;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #007BFF;
    background-color: #f9f9f9;
}

/* Bölümler Sayfası Mobil Uyum */
@media (max-width: 992px) {
    .departments-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .departments-grid {
        grid-template-columns: 1fr;
    }
}
/* === Sıkça Sorulan Sorular (FAQ) Stili === */
.faq-item {
    margin-bottom: 25px;
}
.faq-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #34495e;
}
.faq-item p {
    margin: 0;
    padding-left: 15px;
    border-left: 3px solid #e0e0e0;
}
/* === İKİ SÜTUNLU BLOG YAZISI DÜZENİ === */
.post-detail-section {
    padding: 80px 0;
}
.post-layout {
    display: grid;
    grid-template-columns: 2fr 1fr; /* Sol sütun daha geniş */
    gap: 50px;
}
.post-main-content h1 {
    font-size: 42px;
    margin-bottom: 10px;
}
.post-main-content .post-meta {
    margin-bottom: 25px;
    font-size: 14px;
    color: #666;
}
.step-list {
    list-style-type: decimal;
    margin-left: 20px;
}
.step-list li {
    margin-bottom: 15px;
    line-height: 1.7;
}

/* Kenar Çubuğu (Sidebar) Stilleri */
.sidebar-widget {
    margin-bottom: 40px;
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
}
.sidebar-widget h4 {
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #007BFF;
}
.recent-posts {
    list-style: none;
    padding: 0;
}
.recent-posts li {
    margin-bottom: 15px;
    border-bottom: 1px dashed #ddd;
    padding-bottom: 15px;
}
.recent-posts li:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}
.recent-posts a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}
.recent-posts a:hover {
    color: #007BFF;
}

/* Blog Yazısı Mobil Uyum */
@media (max-width: 992px) {
    .post-layout {
        grid-template-columns: 1fr; /* Tek sütuna düşür */
    }
}
@media (max-width: 768px) {
    .post-main-content h1 {
        font-size: 34px;
    }
}
/* Yazı içi görseller için stil */
.post-inner-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 15px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
/* Sidebar Instagram Butonu Stili */
.instagram-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 8px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.instagram-button i {
    margin-right: 10px;
    font-size: 20px;
}

.instagram-button:hover {
    transform: scale(1.05);
}