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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* --- 1. NAVBAR (Header) --- */
.navbar {
    background-color: rgba(20, 20, 20, 0.9); /* Yarı şeffaf koyu arka plan */
    color: #fff;
    position: fixed; /* Sayfa kaysa bile üstte kalır */
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    height: 80px;
    gap: 40px;
}

.logo {
    flex-shrink: 0;
}

.logo a {
    font-size: 1.3rem;
    font-weight: 300;
    color: #fff;
    white-space: nowrap;
}

.logo strong {
    font-weight: 700;
}

.nav-menu {
    flex: 1;
    display: flex;
    justify-content: center;
    min-width: 0;
}

.nav-menu ul {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: nowrap;
}

.nav-menu li {
    margin: 0 18px;
    white-space: nowrap;
}

.nav-menu a {
    font-size: 1rem;
    padding: 8px 0;
}


.cta-button {
    padding: 12px 24px;
    font-size: 1rem;
    white-space: nowrap;
}

@media (max-width: 1400px) {
    .navbar-container {
        padding: 0 25px;
        gap: 35px;
}

.nav-menu li {
    margin: 0 15px;
    }
}

@media (max-width: 1200px) {
    .navbar-container {
        padding: 0 20px;
        gap: 25px;
    }
    
    .nav-menu li {
        margin: 0 12px;
    }
    
    .nav-menu a {
        font-size: 0.95rem;
    }
    
    .logo a {
        font-size: 1.2rem;
    }
}

@media (max-width: 1024px) {
    .navbar-container {
        gap: 20px;
        padding: 0 20px;
        height: 75px;
    }
    
    .nav-menu li {
        margin: 0 10px;
    }
    
    .nav-menu a {
        font-size: 0.9rem;
    }
    
    .logo a {
        font-size: 1.1rem;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 900px) {
    .navbar-container {
        gap: 15px;
        padding: 0 15px;
    }
    
    .nav-menu li {
        margin: 0 8px;
    }
    
    .nav-menu a {
        font-size: 0.85rem;
    }
    
    .logo a {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

/* Hamburger Menü Butonu (Sadece Mobilde Görünür) */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
    display: block;
}

@media (max-width: 768px) {
    .navbar-container {
        gap: 15px;
        padding: 0 20px;
        height: 70px;
        justify-content: space-between;
    }
    
    .logo {
        flex: 0 0 auto;
    }
    
    .logo a {
        font-size: 0.9rem;
    }
    
    /* Desktop menüyü gizle */
    .nav-menu {
        display: none;
    }
    
    .cta-button {
        display: none;
    }
    
    /* Hamburger butonunu göster */
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Hamburger animasyonu (açıldığında X olur) */
    body.mobile-menu-open .mobile-menu-toggle span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    body.mobile-menu-open .mobile-menu-toggle span:nth-child(2) {
        opacity: 0;
    }
    
    body.mobile-menu-open .mobile-menu-toggle span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }
}

/* Mobil Menü Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobil Menü */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 350px;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    box-shadow: -2px 0 20px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    overflow-y: auto;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mobile-menu-overlay.active .mobile-menu {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-header .logo a {
    font-size: 1rem;
    color: #fff;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.mobile-menu-list > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-menu-list a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    color: #f1f1f1;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-menu-list a i:first-child {
    width: 20px;
    text-align: center;
    color: #c5a47e;
}

.mobile-menu-list a:hover,
.mobile-menu-list a.active {
    background: rgba(197, 164, 126, 0.1);
    color: #c5a47e;
    padding-left: 25px;
}

/* Mobil Dropdown */
.mobile-dropdown {
    position: relative;
}

.mobile-dropdown-toggle {
    position: relative;
}

.mobile-dropdown-toggle .fa-chevron-down {
    margin-left: auto;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-toggle .fa-chevron-down {
    transform: rotate(180deg);
}

.mobile-dropdown-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
    transition: max-height 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-menu {
    max-height: 500px;
}

.mobile-dropdown-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.mobile-dropdown-menu a {
    padding-left: 55px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.mobile-dropdown-menu a:hover {
    color: #c5a47e;
    background: rgba(197, 164, 126, 0.1);
}

.mobile-menu-footer {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-cta-button {
    display: block;
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, #c5a47e 0%, #a37f5b 100%);
    color: #fff;
    text-align: center;
    border-radius: 5px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-cta-button:hover {
    background: linear-gradient(135deg, #a37f5b 0%, #8b6a4a 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(197, 164, 126, 0.4);
}

.nav-menu a {
    color: #f1f1f1;
    font-weight: 600;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

/* Örnekteki gibi altın/kahve rengi vurgu */
.nav-menu a:hover,
.nav-menu a.active {
    color: #c5a47e; /* Altın/Kahve rengi */
    border-bottom-color: #c5a47e;
}

/* Sağdaki CTA (Call to Action) Butonu */
.cta-button {
    background-color: #c5a47e;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 700;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #b38f66;
}

/* --- 2. HERO SLIDER (Ana Karşılama) --- */
.hero-slider {
    height: 70vh;
    min-height: 500px;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h4 {
    font-size: 1.2rem;
    color: #c5a47e;
    font-weight: 600;
    margin-bottom: 10px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Slider kontrolleri */
.hero-slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    pointer-events: none;
}

.slider-btn {
    background: rgba(197, 164, 126, 0.8);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: rgba(197, 164, 126, 1);
    transform: scale(1.1);
}

.slider-btn.prev {
    left: 30px;
}

.slider-btn.next {
    right: 30px;
}

/* Slider noktaları */
.hero-slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: #c5a47e;
    transform: scale(1.2);
}

/* Mobil uyumluluk */
@media (max-width: 768px) {
    .hero-slider {
        height: 60vh;
        min-height: 400px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content h4 {
        font-size: 1rem;
    }
    
    .hero-content p {
        font-size: 0.95rem;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .hero-slider-controls {
        padding: 0 15px;
    }
}

/* Hero içindeki "Hakkımızda" butonu */
.cta-button-secondary {
    background-color: #b9936c; /* Ana butondan biraz farklı bir ton */
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.cta-button-secondary:hover {
    background-color: #a37f5b;
}

/* --- 3. & 4. GENEL İÇERİK ve KONTEYNER --- */
.content-section {
    padding: 80px 5%;
    text-align: center;
}

.bg-light {
    background-color: #f9f9f9;
}

.container {
    max-width: 1200px; /* İçeriğin genişliğini sınırlar */
    margin: 0 auto; /* Sayfada ortalar */
    padding: 0 20px;
}

.content-section h2 {
    font-size: 2.5rem; /* Başlığı büyütüyoruz */
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px; /* Kartlarla arasında boşluk */
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* --- 4. HİZMETLER BÖLÜMÜ (SEO Optimized & Modern Design) --- */
#hizmetler {
    padding: 80px 5% 100px 5%;
    background: linear-gradient(to bottom, #fafafa 0%, #ffffff 100%);
}

#hizmetler .container {
    margin-bottom: 50px;
}

#hizmetler h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 15px;
}

#hizmetler .section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hizmetler-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Tablet için 2 sütun */
@media (max-width: 1024px) {
    .hizmetler-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Mobil için 1 sütun */
@media (max-width: 768px) {
    #hizmetler {
        padding: 60px 5%;
    }
    
    .hizmetler-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }
}

.hizmet-kart {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(197, 164, 126, 0.1);
    will-change: transform;
    min-height: 350px;
}

/* Hover efekti için overlay */
.hizmet-kart::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(197, 164, 126, 0.03) 0%, rgba(197, 164, 126, 0.08) 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.hizmet-kart:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 30px rgba(197, 164, 126, 0.15);
    border-color: rgba(197, 164, 126, 0.3);
}

.hizmet-kart:hover::before {
    opacity: 1;
}

/* İkonlar için modern stil */
.hizmet-kart .icon-hizmet {
    font-size: 3.2rem;
    color: #c5a47e;
    margin-bottom: 20px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    display: inline-block;
}

.hizmet-kart:hover .icon-hizmet {
    transform: scale(1.15) rotate(5deg);
    color: #a37f5b;
}

/* Başlık stilleri */
.hizmet-kart h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c2c2c;
    line-height: 1.4;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.hizmet-kart:hover h3 {
    color: #c5a47e;
}

/* Paragraf stilleri */
.hizmet-kart p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.75;
    position: relative;
    z-index: 1;
    flex-grow: 1;
}

/* Link stilleri - modern buton görünümü */
.hizmet-kart .kart-link {
    font-weight: 600;
    color: #c5a47e;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.95rem;
    padding: 8px 0;
}

.hizmet-kart .kart-link::after {
    content: '';
    width: 0;
    height: 2px;
    background: #c5a47e;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.hizmet-kart .kart-link:hover {
    color: #a37f5b;
    padding-left: 5px;
}

.hizmet-kart .kart-link:hover::after {
    width: 100%;
}

/* Performans optimizasyonu */
@media (prefers-reduced-motion: reduce) {
    .hizmet-kart,
    .hizmet-kart .icon-hizmet,
    .hizmet-kart .kart-link {
        transition: none;
    }
}




/* --- HAKKIMIZDA.HTML SAYFASINA ÖZEL STİLLER (GÜNCELLENDİ) --- */

/* 1. Sayfa Başlığı (Bu kural zaten vardı, ama burada olması daha düzenli) */
.page-header {
    background-color: #333;
    color: #fff;
    padding: 120px 5% 60px 5%;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), #2c2c2c;
    background-size: cover;
    background-position: center;
}
.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
}
.page-header p {
    font-size: 1.1rem;
    color: #c5a47e;
}

/* 2. Sayfanın İçerik Alanı (Arka planı gri yap) */
#hakkimizda-detay.content-section {
    background-color: #f9f9f9; /* Açık gri arka plan */
    padding: 80px 5%;
    text-align: left; /* Üsteki .content-section'dan gelen ortalamayı iptal et */
}

/* 3. Ana İçerik Bloğu (Beyaz Kart Haline Getir) */
.hakkimizda-layout {
    display: flex; /* İki sütunlu yapı için */
    align-items: center; 
    gap: 50px;
    
    /* YENİ EKLENEN KART STİLLERİ */
    background-color: #fff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* 4. Sol Sütun (Metin) */
.hakkimizda-text {
    flex: 2; /* Metin alanı resimden daha fazla yer kaplasın */
}
.hakkimizda-text h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}
.hakkimizda-text p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

/* 5. Liste Stilleri */
.hakkimizda-list {
    list-style: none;
    margin: 25px 0;
    padding: 0;
}
.hakkimizda-list li {
    font-size: 1rem;
    font-weight: 600;
    color: #444;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}
.hakkimizda-list .icon-check {
    color: #c5a47e; /* Ana vurgu rengimiz */
    font-weight: 900;
    font-size: 1.2rem;
    margin-right: 12px;
}

/* 6. Sağ Sütun (Resim) */
.hakkimizda-image {
    flex: 1; 
    text-align: center;
}
.hakkimizda-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    
    /* Resim bulana kadar geçici yer tutucu stili */
    background-color: #e0e0e0;
    min-height: 350px;
    display: block;
    border: 1px solid #ccc;
    /* Geçici yazı (Bunu gizleyebiliriz) */
    color: #e0e0e0; /* Yazıyı gizle */
    font-size: 0.1px;
}

/* 7. Misyon/Vizyon Kutuları (Bunlar kartın dışında, gri zeminde) */
.extra-info {
    display: flex;
    gap: 30px;
    margin-top: 60px;
    border-top: 1px solid #eee;
    padding-top: 50px;
}
.info-box {
    flex: 1;
    background-color: #fff; /* Misyon/Vizyon da beyaz kart olsun */
    padding: 30px;
    border-radius: 8px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.info-box h4 {
    font-size: 1.5rem;
    color: #c5a47e;
    margin-bottom: 15px;
}
.info-box p {
    color: #555;
    line-height: 1.7;
}

/* İstatistikler Bölümü */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #c5a47e 0%, #a37f5b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(197, 164, 126, 0.3);
}

.stat-icon i {
    font-size: 1.8rem;
    color: #fff;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

/* Eskişehir Avukat İbrahim Yalçın Kimdir Bölümü - Yeni Tasarım */
.kimdir-section-new {
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.kimdir-header {
    background: linear-gradient(135deg, #c5a47e 0%, #a37f5b 100%);
    padding: 40px;
    text-align: center;
}

.kimdir-header h2 {
    font-size: 2.2rem;
    color: #fff;
    margin: 0;
    font-weight: 700;
}

.kimdir-layout {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 0;
}

.kimdir-image-wrapper {
    background: #f9f9f9;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kimdir-photo {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

.kimdir-text-wrapper {
    padding: 40px;
}

.kimdir-main-text {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.kimdir-main-text:last-of-type {
    margin-bottom: 30px;
}

.kimdir-main-text strong {
    color: #333;
    font-weight: 700;
}

.kimdir-highlights {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
}

.kimdir-highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 1rem;
    color: #555;
}

.kimdir-highlight-item:last-child {
    margin-bottom: 0;
}

.kimdir-highlight-item i {
    color: #c5a47e;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* CTA Bölümü Hakkımızda */
.cta-section-hakkimizda {
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    padding: 60px 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.cta-section-hakkimizda h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 15px;
}

.cta-section-hakkimizda p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.cta-buttons-hakkimizda {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons-hakkimizda .phone-cta {
    background: linear-gradient(135deg, #c5a47e 0%, #a37f5b 100%);
    color: #fff;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(197, 164, 126, 0.3);
}

.cta-buttons-hakkimizda .phone-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 164, 126, 0.4);
    background: linear-gradient(135deg, #a37f5b 0%, #8b6a4a 100%);
}

.cta-buttons-hakkimizda .phone-cta i {
    margin-right: 8px;
}

.cta-buttons-hakkimizda .whatsapp-cta {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.cta-buttons-hakkimizda .whatsapp-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
}

.cta-buttons-hakkimizda .whatsapp-cta i {
    margin-right: 8px;
    font-size: 1.2rem;
}

/* İletişim Sayfası Hızlı İletişim Butonları */
.quick-contact-buttons .phone-cta {
    background: #000;
    color: #c5a47e;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid #c5a47e;
}

.quick-contact-buttons .phone-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: #1a1a1a;
    color: #d4b896;
}

.quick-contact-buttons .phone-cta i {
    margin-right: 8px;
    color: #c5a47e;
}

.quick-contact-buttons .whatsapp-cta {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.quick-contact-buttons .whatsapp-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
}

.quick-contact-buttons .whatsapp-cta i {
    margin-right: 8px;
    font-size: 1.2rem;
}

.cta-buttons-hakkimizda .cta-button-secondary {
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* --- MOBİL UYUMLULUK (Hakkımızda için) --- */
@media (max-width: 768px) {
    .hakkimizda-layout {
        flex-direction: column; /* Sütunları alt alta diz */
        padding: 30px;
    }
    .hakkimizda-image {
        margin-top: 30px;
        order: -1; /* Resmi metnin üstüne al */
        width: 80%; 
        margin-left: auto;
        margin-right: auto;
    }
    .extra-info {
        flex-direction: column; /* Alt alta diz */
    }
    
    .kimdir-section-new {
        margin: 0 10px;
    }
    
    .kimdir-header {
        padding: 30px 20px;
    }
    
    .kimdir-header h2 {
        font-size: 1.6rem;
    }
    
    .kimdir-layout {
        grid-template-columns: 1fr;
    }
    
    .kimdir-image-wrapper {
        padding: 30px 20px;
    }
    
    .kimdir-photo {
        max-width: 250px;
    }
    
    .kimdir-text-wrapper {
        padding: 30px 20px;
    }
    
    .kimdir-main-text {
        font-size: 1rem;
    }
    
    .cta-section-hakkimizda {
        padding: 40px 20px;
    }
    
    .cta-section-hakkimizda h2 {
        font-size: 1.5rem;
        line-height: 1.4;
    }
    
    .cta-section-hakkimizda p {
        font-size: 1rem;
        text-align: left;
    }
    
    .cta-buttons-hakkimizda {
        flex-direction: column;
        gap: 12px;
    }
    
    .cta-buttons-hakkimizda a {
        width: 100%;
        padding: 14px 20px;
        font-size: 0.95rem;
    }
    
    /* CTA Banner mobil görünümü */
    .cta-banner .cta-buttons-hakkimizda {
        flex-direction: column;
    }
    
    .cta-banner .cta-buttons-hakkimizda a {
        width: 100%;
    }
}




/* --- 5. MÜVEKKİL YORUMLARI (GÜNCELLENDİ) --- */

#yorumlar {
background-color: #f9f9f9; /* Hafif gri, temiz arka plan */
}

/* YENİ EKLENEN GRID YAPISI */
.yorum-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px; /* Kartlar arası boşluk */
    max-width: 1200px;
    margin: 0 auto;
}

/* Tablet için 2 sütun (aynı kalır) */
@media (max-width: 1024px) {
    .yorum-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Mobil için 1 sütun */
@media (max-width: 768px) {
    .yorum-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ESKİ 'yorum-placeholder' YENİ 'yorum-kart' OLDU */
.yorum-kart {
    padding: 30px 40px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-left: 5px solid #c5a47e; /* Sol kenardaki altın çizgi */
    text-align: left;
    
    /* Kartların aynı yükseklikte olmasını sağlar */
    display: flex;
    flex-direction: column;
    min-height: 200px;
    height: 100%;
}

.yorum-kart p {
    font-size: 1.1rem;
    font-style: italic; /* İtalik yorum metni */
    color: #444;
    line-height: 1.7;
    margin-bottom: 20px;
    position: relative;
    padding-left: 35px;
    
    /* Metnin kart içinde kalan boşluğu doldurmasını sağlar */
    flex-grow: 1; 
}

/* Tırnak işareti efekti (Aynı kaldı) */
.yorum-kart p::before {
    content: '“'; 
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: #c5a47e;
    font-family: Georgia, serif;
}

.yorum-kart strong {
    font-style: normal;
    font-weight: 700;
    color: #222;
    padding-left: 35px;
}



/* --- 6. BLOG / SON YAZILAR --- */


.blog-grid-placeholder {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Tablet için 2 sütun (aynı kalır) */
@media (max-width: 1024px) {
    .blog-grid-placeholder {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Mobil için 1 sütun */
@media (max-width: 768px) {
    .blog-grid-placeholder {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.blog-kart-placeholder {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
    padding: 30px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.blog-kart-placeholder:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.blog-kart-badge {
    display: inline-block;
    background-color: #c5a47e;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Blog Card Badges */
.blog-card-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
    align-items: flex-start;
}

/* Öne Çıkan badge'i kategori badge'inin yanında tutmak için */
.blog-badge-featured {
    flex-shrink: 0;
}

/* Avukat badge'i geniş olduğu için alt satıra geçebilir */
.blog-badge-author {
    flex-basis: 100%;
    margin-top: 4px;
}

.blog-badge-category {
    display: inline-block;
    background-color: #c5a47e;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.blog-badge-author {
    display: inline-block;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 3px 12px rgba(231, 76, 60, 0.4);
    position: relative;
    overflow: hidden;
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        box-shadow: 0 3px 12px rgba(231, 76, 60, 0.4);
    }
    50% {
        box-shadow: 0 5px 20px rgba(231, 76, 60, 0.6);
    }
}

.blog-badge-author::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.blog-badge-author:hover::before {
    left: 100%;
}

.blog-badge-author:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 18px rgba(231, 76, 60, 0.6);
}

.blog-badge-featured {
    display: inline-block;
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 3px 12px rgba(243, 156, 18, 0.4);
    position: relative;
    overflow: hidden;
    animation: pulse-featured 2s ease-in-out infinite;
}

@keyframes pulse-featured {
    0%, 100% {
        box-shadow: 0 3px 12px rgba(243, 156, 18, 0.4);
    }
    50% {
        box-shadow: 0 5px 20px rgba(243, 156, 18, 0.6);
    }
}

.blog-badge-featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.blog-badge-featured:hover::before {
    left: 100%;
}

.blog-badge-featured:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 18px rgba(243, 156, 18, 0.6);
}

.blog-kart-placeholder .blog-card-badges {
    margin-bottom: 15px;
}

.blog-kart-placeholder h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.blog-kart-placeholder p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.7;
}
/* .kart-link stili zaten .hizmet-kart'tan geliyor ve burada da çalışacak. */


/* --- 7. İLETİŞİM ÇAĞRISI BANNER'I --- */
.cta-banner {
    padding: 80px 5%;
    text-align: center;
    color: #fff;
    /* Arka plan resmi dinamik olarak inline style ile ayarlanıyor */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax efekti */
}

.cta-banner h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-banner p {
    font-size: 1.1rem;
    color: #f1f1f1;
    max-width: 600px;
    margin: 0 auto 30px auto; /* Üst/alt 0, sağ/sol auto, alt 30px */
}

/* CTA Banner içindeki butonlar - Desktop görünümü */
.cta-banner .cta-buttons-hakkimizda {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: row; /* Desktop'ta yatay dizilim */
}

.cta-banner .cta-buttons-hakkimizda a {
    width: auto; /* Desktop'ta otomatik genişlik */
    flex: 0 0 auto; /* Shrink ve grow yok */
}

/* .cta-button stili zaten tanımlı (altın rengi) ve burada harika görünecek */


/* --- 8. GELİŞMİŞ FOOTER (ESKİ .footer'I SİLİN) --- */
.footer-gelismis {
    background-color: #222;
    color: #aaa;
    padding-top: 80px; /* Alttaki bar için padding'i alta vermiyoruz */
}

.footer-grid {
    display: grid;
    /* Geniş ekranda 4 sütunlu, yan yana */
    grid-template-columns: 1.5fr 1fr 1.2fr 1.3fr;
    gap: 40px; /* Sütunlar arası boşluk */
    margin-bottom: 60px;
    text-align: left;
}

/* Footer Responsive */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    /* Footer kolonlarını mobilde ortalama */
    .footer-col {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    /* Footer başlıklarını ortalama */
    .footer-col h4 {
        text-align: center;
        width: 100%;
    }
    
    /* Footer başlık altındaki çizgiyi ortalama */
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    /* Footer listelerini ortalama */
    .footer-links,
    .footer-contact {
        display: inline-block;
        text-align: center;
        width: auto;
    }
    
    .footer-links li,
    .footer-contact li {
        text-align: center;
    }
    
    /* Footer linklerindeki hover padding efektini kaldır (mobilde gereksiz) */
    .footer-links a:hover {
        padding-left: 0;
    }
    
    /* Footer açıklama metnini ortalama */
    .footer-hakkinda {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Footer mini map'i ortalama */
    .footer-mini-map {
        margin-left: auto;
        margin-right: auto;
    }
}

.footer-col .logo a {
    color: #fff; /* Footer'da logo beyaz görünsün */
    font-size: 1.3rem;
}

.footer-hakkinda {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: 20px;
}

.footer-col h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

/* Başlıkların altına vurgu çizgisi */
.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #c5a47e; /* Ana vurgu rengimiz */
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #aaa;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links a:hover {
    color: #c5a47e; /* Vurgu rengi */
    padding-left: 5px; /* Hafif içeri kayma efekti */
}

.footer-contact li {
    position: relative;
    padding-left: 5px; /* İkonlar gelirse diye boşluk */
    font-size: 0.95rem;
}

.footer-contact strong {
    color: #ccc;
    margin-right: 5px;
}

/* Footer'ın en altındaki telif hakkı barı */
.footer-bottom-bar {
    background-color: #1a1a1a;
    padding: 20px 5%;
    text-align: center;
    font-size: 0.9rem;
    border-top: 1px solid #333;
    margin-top: 20px;
}
/* --- AÇILIR MENÜ (DROPDOWN) STİLLERİ (GÜNCELLENDİ - KOYU TEMA) --- */

/* Menüdeki 'Hizmetlerimiz' yazısının yanındaki ok ikonu (Değişmedi) */
.nav-menu .dropdown-icon {
    font-size: 0.7rem;
    margin-left: 5px;
    display: inline-block;
    transition: transform 0.2s ease;
}

.nav-item-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

/* AÇILIR MENÜNÜN KUTUSU (KOYU TEMA) */
.dropdown-menu {
    display: none; 
    position: absolute;
    top: 100%;
    left: 0;
    
    /* YENİ RENKLER */
    background-color: #222; /* Koyu arka plan (navbar gibi) */
    border: 1px solid rgba(255, 255, 255, 0.1); /* Navbar ile uyumlu ince sınır */
    border-top: none; /* Navbar'a bitişik olduğu için üst sınırı kaldır */
    
    min-width: 240px;
    z-index: 1001;
    border-radius: 0 0 5px 5px; /* Alt köşeler yuvarlak kalsın */
    box-shadow: 0 8px 16px rgba(0,0,0,0.3); /* Daha koyu bir gölge */
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.nav-item-dropdown {
    position: relative;
}

/* Hover durumları (Değişmedi) */
.nav-item-dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

/* MENÜ İÇİNDEKİ LİNKLER (KOYU TEMA) */
.dropdown-menu li a {
    /* YENİ RENKLER */
    color: #f1f1f1; /* Açık renk yazı */
    
    font-weight: 500;
    padding: 12px 20px;
    display: block; 
    white-space: nowrap; 
    border-bottom: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

/* MENÜ LİNKLERİNİN HOVER (ÜZERİNE GELME) DURUMU */
.dropdown-menu li a:hover {
    /* YENİ RENKLER */
    background-color: #c5a47e; /* Vurgu rengi (altın) arka plan */
    color: #222; /* Üzerine koyu renk yazı */
    border-bottom: none;
}

/* Aktif sayfa linkinin stilini koru (Değişmedi) */
.nav-menu li.active > a {
    color: #c5a47e;
    border-bottom-color: #c5a47e;
}


/* --- HIZMETLERIMIZ.HTML SAYFA İÇERİĞİ (GÜNCEL KOYU TEMA) --- */
/* (Bu kodlar hizmetlerimiz.html sayfasının görünümünü sağlar) */

#hizmetler-detay-sayfasi {
    /* Arka plan resmi (filtresiz) ve yazım hatası düzeltildi */
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),url('HukRes2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax efekti */
    padding-top: 80px;
    padding-bottom: 80px;
}

#hizmetler-detay-sayfasi .container {
    max-width: 900px;
    text-align: left;
}

/* Metin blokları (Şeffaf) */
.hizmet-detay-blok {
    background-color: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 50px;
    margin-bottom: 60px; 
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.hizmet-detay-blok:last-child {
    margin-bottom: 0;
}

/* Başlıklar */
.hizmet-detay-blok h2 {
    font-size: 2.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
}

.hizmet-detay-blok h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #c5a47e;
    margin-top: 40px;
    margin-bottom: 20px;
}

/* Metinler */
.hizmet-detay-blok p {
    font-size: 1.1rem;
    color: #555;
    font-weight: 400;
    line-height: 1.9;
    margin-bottom: 20px;
}

.hizmet-detay-blok p strong {
    color: #333;
    font-weight: 700;
}

/* Liste */
.hizmet-detay-blok ul {
    max-width: 100%;
    margin: 25px 0;
    padding-left: 25px;
    list-style: none;
}

.hizmet-detay-blok ul li {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.hizmet-detay-blok ul li::before {
    content: "•";
    color: #c5a47e;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.hizmet-detay-blok ul li strong {
    color: #333;
    font-weight: 600;
}

/* --- BLOG.HTML SAYFASINA ÖZEL STİLLER --- */

#blog-listesi {
    padding-top: 60px;
    padding-bottom: 80px;
    background-color: #f9f9f9; /* Hafif bir gri arka plan */
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* 300px genişliğinde kartlar, otomatik sığdır */
    gap: 30px; /* Kartlar arası boşluk */
    margin-bottom: 50px;
}

.blog-card {
    background-color: #fff; /* Beyaz kart arka planı */
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08); /* Yumuşak gölge */
    overflow: hidden; /* Resmin köşeleri yuvarlak olsun */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex; /* İçerik ve resmin düzeni için */
    flex-direction: column; /* Dikey olarak sırala */
}

.blog-card:hover {
    transform: translateY(-5px); /* Hafifçe yukarı kalkma efekti */
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12); /* Gölgelenme artar */
}

.blog-card-img {
    width: 100%;
    height: 200px; /* Resim yüksekliği */
    background-size: cover;
    background-position: center;
    border-bottom: 3px solid #c5a47e; /* Altın rengi ayırıcı çizgi */
}

.blog-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* İçerik kalan alanı doldursun */
}

.blog-card-content .blog-card-badges {
    margin-bottom: 15px;
}

.blog-card-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333; /* Koyu başlık */
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card-content .blog-date {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.blog-card-content .blog-date i {
    margin-right: 5px;
    color: #c5a47e; /* Takvim ikonu altın rengi */
}

.blog-card-content .blog-date span {
    display: inline-flex;
    align-items: center;
    color: #666;
}

.blog-card-content .blog-date span i {
    margin-right: 5px;
    color: #999;
}

.blog-card-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1; /* Özet metni de kalan alanı doldursun */
}

.blog-read-more {
    display: inline-block;
    color: #c5a47e; /* Altın rengi link */
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-read-more:hover {
    color: #a38562; /* Üzerine gelince biraz daha koyu altın */
}

.blog-read-more i {
    margin-left: 8px;
    transition: margin-left 0.2s ease;
}

.blog-read-more:hover i {
    margin-left: 12px; /* Ok üzerine gelince hafifçe sağa kaysın */
}

/* Sayfalama (Pagination) Stilleri */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.page-link {
    display: inline-block;
    padding: 12px 18px;
    margin: 0 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
    color: #555;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.page-link:hover {
    background-color: #f0f0f0;
    border-color: #c5a47e;
    color: #c5a47e;
}

.page-link.active {
    background-color: #c5a47e;
    border-color: #c5a47e;
    color: #fff;
}

.page-link.active:hover {
    background-color: #a38562;
    border-color: #a38562;
}

.page-link i {
    margin-left: 5px;
}


/* --- ILETISIM.HTML SAYFASINA ÖZEL STİLLER --- */

#contact-page {
    padding: 80px 0;
    background-color: #f9f9f9; /* Blog sayfası gibi açık renk */
}

.contact-layout {
    display: grid;
    /* Geniş ekranda: %60 Form, %40 Bilgiler */
    grid-template-columns: 2fr 1fr; 
    gap: 50px;
}

/* İletişim Formu Stilleri */
.contact-form-wrapper {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(197, 164, 126, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #c5a47e 0%, #a37f5b 100%);
}

.contact-form-wrapper h3,
.contact-details-wrapper h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 35px;
    position: relative;
    padding-bottom: 15px;
}

.contact-form-wrapper h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #c5a47e 0%, #a37f5b 100%);
    border-radius: 2px;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.form-group label i {
    color: #c5a47e;
    font-size: 0.9rem;
    width: 18px;
    text-align: center;
}

/* Tüm form elemanları */
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 16px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fff;
    color: #333;
    box-sizing: border-box;
}

.form-group input[type="text"]:hover,
.form-group input[type="email"]:hover,
.form-group input[type="tel"]:hover,
.form-group textarea:hover {
    border-color: #c5a47e;
    box-shadow: 0 0 0 3px rgba(197, 164, 126, 0.1);
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group textarea:focus {
    border-color: #c5a47e;
    outline: none;
    box-shadow: 0 0 0 4px rgba(197, 164, 126, 0.15);
    transform: translateY(-1px);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

/* Form mesajı */
#form-message {
    padding: 18px 20px;
    border-radius: 10px;
    font-weight: 600;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideDown 0.3s ease-out;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

#form-message i {
    font-size: 1.2rem;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* "Formu Gönder" Butonu */
.contact-form-wrapper .cta-button {
    width: 100%;
    font-size: 1.1rem;
    padding: 18px 30px;
    border: none;
    cursor: pointer;
    margin-top: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.contact-form-wrapper .cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.contact-form-wrapper .cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.contact-form-wrapper .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(197, 164, 126, 0.4);
}

/* İletişim Bilgileri Stilleri (Sağ Sütun) */
.contact-info-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.contact-info-list li {
    display: flex; /* İkon ve metni yan yana getir */
    align-items: flex-start; /* Üstten hizala */
    margin-bottom: 25px;
}

.contact-info-list i {
    font-size: 1.5rem;
    color: #c5a47e; /* Vurgu rengi ikonlar */
    margin-right: 20px;
    margin-top: 5px; /* Dikeyde ortalamak için */
    min-width: 25px; /* İkonların hizalı durması için */
    text-align: center;
}

.contact-info-list div {
    flex: 1;
}

.contact-info-list strong {
    font-size: 1.1rem;
    color: #333;
    display: block;
    margin-bottom: 5px;
}

.contact-info-list p {
    color: #666;
    margin: 0;
    line-height: 1.7;
}

/* Harita Stili */
.map-wrapper {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #ddd;
}

.map-wrapper iframe {
    display: block; /* Altındaki gereksiz boşluğu kaldırır */
}


/* --- BLOG POST SAYFASI STİLLERİ --- */
.blog-post-content {
    padding: 80px 5%;
    background-color: #f9f9f9;
}

.blog-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.blog-post-body {
    background-color: #fff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.blog-post-body h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-top: 30px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #c5a47e;
}

.blog-post-body h2:first-child {
    margin-top: 0;
}

.blog-post-body h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #444;
    margin-top: 25px;
    margin-bottom: 15px;
}

.blog-post-body p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.blog-post-body ul,
.blog-post-body ol {
    margin: 20px 0;
    padding-left: 30px;
}

.blog-post-body li {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}

.blog-post-body strong {
    color: #333;
    font-weight: 600;
}

.blog-post-meta {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 20px;
    color: #c5a47e;
    font-size: 1rem;
}

.blog-post-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-post-meta i {
    font-size: 1rem;
}

.blog-cta-box {
    background-color: #f5f5f5;
    padding: 30px;
    border-radius: 8px;
    margin-top: 40px;
    border-left: 4px solid #c5a47e;
    text-align: center;
}

.blog-cta-box h4 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
}

.blog-cta-box p {
    margin-bottom: 20px;
    color: #666;
}

/* --- SSS (Sık Sorulan Sorular) STİLLERİ --- */
.sss-container {
    max-width: 900px;
    margin: 0 auto;
}

.sss-item {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.sss-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.sss-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    transition: background 0.3s ease;
}

.sss-question:hover {
    background: #f9f9f9;
}

.sss-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    flex: 1;
}

.sss-question i {
    font-size: 1rem;
    color: #c5a47e;
    transition: transform 0.3s ease;
    margin-left: 15px;
}

.sss-item.active .sss-question {
    background: #f9f9f9;
    border-bottom: 1px solid #e0e0e0;
}

.sss-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 25px;
}

.sss-item.active .sss-answer {
    padding: 20px 25px;
}

.sss-answer p {
    color: #555;
    line-height: 1.8;
    margin: 0;
}

.sss-answer a {
    color: #c5a47e;
    font-weight: 600;
    text-decoration: underline;
}

.sss-answer a:hover {
    color: #a37f5b;
}

/* Ana Sayfa SSS Bölümü */
/* Ana Sayfa SSS - Kart Tasarımı */
.sss-grid-home {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.sss-card-home {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.sss-card-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #c5a47e 0%, #a37f5b 100%);
    transition: width 0.3s ease;
}

.sss-card-home:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.sss-card-home:hover::before {
    width: 6px;
}

.sss-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #c5a47e 0%, #a37f5b 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(197, 164, 126, 0.3);
}

.sss-card-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.sss-card-home h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 15px 0;
    line-height: 1.4;
}

.sss-card-home p {
    color: #555;
    line-height: 1.8;
    margin: 0;
    font-size: 0.95rem;
    flex: 1;
}

.sss-card-home a {
    color: #c5a47e;
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.sss-card-home a:hover {
    color: #a37f5b;
}

.sss-card-home strong {
    color: #333;
    font-weight: 700;
}

/* Ana Sayfa SSS - Responsive */
@media (max-width: 768px) {
    .sss-grid-home {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .sss-card-home {
        padding: 25px;
    }
    
    .sss-card-icon {
        width: 50px;
        height: 50px;
    }
    
    .sss-card-icon i {
        font-size: 1.3rem;
    }
    
    .sss-card-home h3 {
        font-size: 1.1rem;
    }
}

.sss-cta {
    text-align: center;
}

.sss-cta h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 15px;
}

.sss-cta p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

/* --- Hukuk Bülteni Arama ve Çok Okunanlar --- */
.blog-search-section {
    background: #f9f9f9;
    padding: 40px 20px;
    margin-bottom: 50px;
}

/* Desktop görünümde arama bölümü tüm genişliği kaplar (grid'in ilk satırı) */
#blog-listesi .blog-search-section {
    grid-column: 1 / -1; /* Tüm grid sütunlarını kapsar */
}

@media (max-width: 768px) {
    /* Mobil görünümde blog arama bölümünü en üste al */
    #blog-listesi .main-content-with-sidebars {
        display: flex;
        flex-direction: column;
    }
    
    #blog-listesi .blog-search-section {
        order: 0;
        width: 100%;
        margin-bottom: 30px;
        margin-top: 0;
        grid-column: auto; /* Grid sütununu sıfırla */
    }
    
    #blog-listesi .left-sidebar,
    #blog-listesi .right-sidebar {
        display: contents;
    }
    
    #blog-listesi .left-sidebar > .sidebar-widget {
        order: 1;
    }
    
    #blog-listesi .right-sidebar > .sidebar-widget {
        order: 2;
    }
    
    #blog-listesi .main-content-area {
        order: 3;
    }
}

.blog-search-box {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.blog-search-box input {
    width: 100%;
    padding: 15px 50px 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.blog-search-box input:focus {
    outline: none;
    border-color: #c5a47e;
    box-shadow: 0 0 0 3px rgba(197, 164, 126, 0.1);
}

.blog-search-box button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: #c5a47e;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.blog-search-box button:hover {
    background: #a37f5b;
}

.popular-posts {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    margin-top: 50px;
}

.popular-posts h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #c5a47e;
}

.popular-post-item {
    display: flex;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.popular-post-item:last-child {
    border-bottom: none;
}

.popular-post-item:hover {
    padding-left: 10px;
}

.popular-post-number {
    font-size: 2rem;
    font-weight: 700;
    color: #c5a47e;
    margin-right: 20px;
    min-width: 40px;
}

.popular-post-content h4 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.4;
}

.popular-post-content h4 a {
    color: #333;
    transition: color 0.3s ease;
}

.popular-post-content h4 a:hover {
    color: #c5a47e;
}

.popular-post-meta {
    font-size: 0.9rem;
    color: #999;
    display: flex;
    align-items: center;
    gap: 15px;
}

.popular-post-meta i {
    font-size: 0.85rem;
}

/* --- ANA SAYFA SIDEBAR'LAR --- */
.main-content-with-sidebars {
    display: grid;
    grid-template-columns: 350px 1fr 350px;
    gap: 40px;
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 60px;
    box-sizing: border-box;
}

.main-content-area {
    min-width: 0;
}

.main-content-area .content-section {
    padding: 80px 0;
}

.main-content-area .container {
    padding: 0 20px;
    max-width: 100%;
}

.main-content-area .hizmetler-grid {
    padding: 0;
    max-width: 100%;
}

.left-sidebar,
.right-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: sticky;
    top: 100px;
    align-self: start;
    height: fit-content;
}

.sidebar-widget {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    display: flex;
    flex-direction: column;
}

/* İbrahim Yalçın Kimdir kartı için flex ayarları */
.left-sidebar > .sidebar-widget:first-child {
    min-height: auto;
}

.sidebar-widget h3 {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
    justify-content: flex-start;
}

.sidebar-widget h3 i {
    color: #c5a47e;
}

/* İbrahim Yalçın Kimdir Widget */
.bio-widget-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
    min-height: 0;
}

.bio-widget-image {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    max-height: 280px;
}

.bio-widget-image img {
    width: 100%;
    height: 280px;
    display: block;
    object-fit: cover;
}

.bio-widget-text {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
    flex: 1;
}

.bio-widget-text p {
    margin-bottom: 15px;
}

.bio-widget-text strong {
    color: #1a1a1a;
    font-weight: 600;
}

.bio-link {
    color: #c5a47e;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 10px;
    text-decoration: none;
}

.bio-link:hover {
    color: #b8946f;
    transform: translateX(5px);
}

/* Hızlı İletişim Formu */
.sidebar-contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.sidebar-contact-form .form-group {
    margin-bottom: 15px;
}

.sidebar-contact-form input,
.sidebar-contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 0.95rem;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.sidebar-contact-form input:focus,
.sidebar-contact-form textarea:focus {
    outline: none;
    border-color: #c5a47e;
}

/* Sidebar İletişim Linkleri */
.sidebar-contact-links {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-link {
    background-color: #25D366;
    color: #fff;
}

.whatsapp-link:hover {
    background-color: #20BA5A;
    transform: translateY(-2px);
}

.phone-link {
    background-color: #1a1a1a;
    color: #c5a47e;
}

.phone-link:hover {
    background-color: #2d2d2d;
    color: #b8946f;
    transform: translateY(-2px);
}

.contact-link i {
    font-size: 1.1rem;
}

/* Çok Okunanlar - Sidebar Versiyonu */
.popular-posts-sidebar {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.popular-posts-sidebar .popular-post-item {
    display: flex;
    align-items: flex-start;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.popular-posts-sidebar .popular-post-item:last-child {
    border-bottom: none;
}

.popular-posts-sidebar .popular-post-item:hover {
    padding-left: 5px;
}

.popular-posts-sidebar .popular-post-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #c5a47e;
    margin-right: 12px;
    min-width: 30px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popular-posts-sidebar .popular-post-number i {
    font-size: 1rem;
    color: #c5a47e;
}

.popular-posts-sidebar .popular-post-content {
    flex: 1;
    min-width: 0;
}

.popular-posts-sidebar .popular-post-content h4 {
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 6px;
    line-height: 1.4;
    text-align: left;
}

.popular-posts-sidebar .popular-post-content h4 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.popular-posts-sidebar .popular-post-content h4 a:hover {
    color: #c5a47e;
}

.popular-posts-sidebar .popular-post-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: #888;
}

.popular-posts-sidebar .popular-post-meta i {
    font-size: 0.75rem;
    color: #c5a47e;
}

/* --- RESPONSIVE: Sidebar'lar --- */
@media (max-width: 1400px) {
    .main-content-with-sidebars {
        grid-template-columns: 320px 1fr 320px;
        gap: 30px;
        padding: 0 40px;
    }
}

@media (max-width: 1200px) {
    .main-content-with-sidebars {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 40px;
    }
    
    .left-sidebar,
    .right-sidebar {
        position: static;
        max-height: none;
    }
    
    .left-sidebar {
        order: -1;
    }
    
    .right-sidebar {
        order: 1;
    }
    
    .sidebar-widget {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .bio-widget-content {
        display: grid;
        grid-template-columns: 250px 1fr;
        gap: 30px;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .main-content-with-sidebars {
        padding: 0 20px;
        display: flex;
        flex-direction: column;
    }
    
    /* Sidebar container'larını görünmez yap, widget'lar direkt flex çocuğu olsun */
    .left-sidebar,
    .right-sidebar {
        display: contents;
    }
    
    /* Mobil görünümde sıralama: İbrahim Yalçın Kimdir, Hızlı İletişim, Son Eklenen Yazılar, Ana İçerik */
    /* Sol sidebar'ın ilk widget'ı (İbrahim Yalçın Kimdir) */
    .left-sidebar > .sidebar-widget:first-child {
        order: 1;
    }
    
    /* Sağ sidebar'ın ilk widget'ı (Hızlı İletişim) */
    .right-sidebar > .sidebar-widget:first-child {
        order: 2;
    }
    
    /* Sol sidebar'ın ikinci widget'ı (Son Eklenen Yazılar) */
    .left-sidebar > .sidebar-widget:nth-child(2) {
        order: 3;
    }
    
    /* Sağ sidebar'ın ikinci widget'ı (Çok Okunanlar) */
    .right-sidebar > .sidebar-widget:nth-child(2) {
        order: 4;
    }
    
    .main-content-area {
        order: 5; /* Ana içerik - en altta */
    }
    
    .sidebar-widget {
        padding: 25px 15px;
    }
    
    .bio-widget-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .bio-widget-text h3 {
        font-size: 1.2rem;
    }
}

/* --- Floating Action Buttons --- */
.floating-whatsapp-btn,
.floating-scroll-top-btn {
    position: fixed;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9998;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 28px;
    color: #fff;
}

.floating-whatsapp-btn {
    left: 20px;
    bottom: 20px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.floating-whatsapp-btn:hover {
    background: linear-gradient(135deg, #128C7E 0%, #0f7a6d 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.floating-scroll-top-btn {
    right: 20px;
    bottom: 20px;
    background: linear-gradient(135deg, #c5a47e 0%, #a37f5b 100%);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.floating-scroll-top-btn:hover {
    background: linear-gradient(135deg, #a37f5b 0%, #8b6a4a 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(197, 164, 126, 0.4);
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .floating-whatsapp-btn,
    .floating-scroll-top-btn {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
    
    .floating-whatsapp-btn {
        left: 15px;
        bottom: 15px;
    }
    
    .floating-scroll-top-btn {
        right: 15px;
        bottom: 15px;
    }
    
    /* Cookie consent açıkken butonları yukarı taşı (JavaScript ile kontrol edilecek) */
    body.cookie-consent-open .floating-whatsapp-btn,
    body.cookie-consent-open .floating-scroll-top-btn {
        bottom: 90px;
    }
}

/* Tablet optimizations */
@media (min-width: 769px) and (max-width: 1024px) {
    .floating-whatsapp-btn {
        left: 20px;
        bottom: 20px;
    }
    
    .floating-scroll-top-btn {
        right: 20px;
        bottom: 20px;
    }
}

/* --- MOBİL UYUMLULUK (İletişim Sayfası) --- */
@media (max-width: 900px) {
    .contact-layout {
        grid-template-columns: 1fr; /* Sütunları alt alta diz */
        gap: 30px;
    }
    
    .contact-form-wrapper {
        padding: 30px 25px;
    }
    
    .contact-form-wrapper h3,
    .contact-details-wrapper h3 {
        font-size: 1.6rem;
        margin-bottom: 25px;
    }
    
    .contact-details-wrapper {
        /* Formun altında görünecek */
        margin-top: 40px; 
    }
    
    .blog-post-body {
        padding: 30px 20px;
    }
    
    .blog-post-body h2 {
        font-size: 1.6rem;
    }
    
    .blog-post-body h3 {
        font-size: 1.3rem;
    }
}