/*
Theme Name: Av. Aralcan Çalışkan Tema
Author: Gemini & Aralcan
Description: Özel Gold/Dark Hukuk Teması - V13.4 (V13.3 Base + Practice Card Soft Hover)
Version: 13.4
*/

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Inter:wght@300;400;500;600&family=Montserrat:wght@400;500;600;700&display=swap');

/* --- 1. TEMEL AYARLAR --- */
:root {
    --primary: #0B1120;
    --secondary: #1E293B;
    --gold: #D4AF37;
    --text: #F1F5F9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-y: scroll;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--primary);
    color: var(--text);
    line-height: 1.8;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Cinzel', serif;
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0f172a;
}

::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 4px;
    border: 2px solid #0f172a;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

/* --- 2. HEADER & NAVİGASYON --- */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: 0.4s ease;
    background: rgba(11, 17, 32, 0.2);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    height: 85px;
}

header.scrolled {
    padding: 15px 50px;
    background: rgba(11, 17, 32, 0.98);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Logo Animasyon */
@keyframes goldShineCycle {
    0% {
        background-position: 0% center;
    }

    50% {
        background-position: 100% center;
    }

    100% {
        background-position: 0% center;
    }
}

.logo {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 1001;
    background: linear-gradient(to right, #D4AF37 20%, #fff 50%, #D4AF37 80%);
    background-size: 200% auto;
    color: #D4AF37;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: goldShineCycle 8s linear infinite;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: #fff;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links li.current-menu-item a::after {
    width: 100%;
}

.nav-links li.current-menu-item a {
    color: var(--gold);
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    color: var(--gold);
    cursor: pointer;
    z-index: 1002;
}

/* --- 3. GENEL SECTION AYARLARI --- */
section {
    padding: 100px 20px 40px 20px;
    margin: 0 auto;
    width: 100%;
    position: relative;
}

body.home section {
    max-width: 1400px;
    width: 90%;
    padding: 120px 20px 60px 20px;
}

/* GÜNCELLEME: Tüm alt sayfalar tekrar 1200px'e sabitlendi */
body:not(.home) section {
    max-width: 1200px;
}

/* GÜNCELLEME: Yalnızca makaleler (articles-container) 1500px yapıldı */
body:not(.home) section.articles-container {
    max-width: 1500px;
}

/* --- 4. ANASAYFA (HERO) --- */
.hero {
    min-height: 100vh;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 0 20px;
    overflow: hidden;
    margin: 0 auto;
}

body.home .hero {
    max-width: 100%;
    width: 100%;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary);
    background-attachment: fixed;
    background-size: contain !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;
    z-index: 1;
    transition: 0.1s;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 100px;
}

.hero h1 {
    font-size: clamp(2.2rem, 4vw, 4rem);
    margin-bottom: 50px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 1);
    color: #fff;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1.5s ease forwards;
    animation-delay: 0.5s;
}

.hero-quote-container {
    margin: 0 auto 30px;
    max-width: 700px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1.5s ease forwards;
    animation-delay: 1s;
}

.hero p {
    font-family: 'Cinzel', serif;
    font-size: 1.35rem;
    color: #e2e8f0;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 1);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.quote-author {
    display: block;
    text-align: right;
    font-size: 0.95rem;
    color: var(--gold);
    font-weight: 600;
    margin-right: 20px;
    font-style: italic;
}

.hero-btn-container {
    opacity: 1;
    animation: none;
    margin-top: 200px;
}

@media (max-height: 900px) {
    .hero-btn-container {
        margin-top: 100px;
    }

    .hero h1 {
        margin-bottom: 40px;
    }

    .hero-quote-container {
        margin-bottom: 20px;
    }
}

@media (max-height: 700px) {
    .hero-btn-container {
        margin-top: 50px;
    }

    .hero-content {
        padding-top: 80px;
    }
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Butonlar */
.btn-gold {
    display: inline-block;
    padding: 15px 45px;
    background: transparent;
    border: 2px solid rgba(212, 175, 55, 0.35);
    color: rgba(212, 175, 55, 0.8);
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

@media (hover: hover) {
    .btn-gold:hover {
        background: var(--gold);
        color: var(--primary);
        border-color: var(--gold);
    }
}

/* Reveal */
.reveal {
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Motto & Offer */
.about-title {
    color: var(--gold);
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
}

.motto-text {
    font-size: 1.3rem;
    font-weight: 300;
    color: #e2e8f0;
    line-height: 2;
    border-left: 4px solid var(--gold);
    padding-left: 30px;
    background: rgba(255, 255, 255, 0.02);
    padding: 40px;
    text-align: justify;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

@media (max-width: 1100px) {
    .offer-grid {
        grid-template-columns: 1fr;
    }
}

.offer-item {
    background: rgba(30, 41, 59, 0.5);
    padding: 30px;
    border-left: 2px solid var(--gold);
    transition: 0.5s ease;
}

.offer-item:hover {
    background: rgba(30, 41, 59, 0.9);
    transform: translateX(10px);
    border-color: #fff;
}

.offer-item h3 {
    color: var(--gold);
    margin-bottom: 15px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.offer-item p {
    color: #94a3b8;
    font-size: 0.95rem;
    text-align: justify;
}

/* CTA Bölümü */
.cta-section {
    text-align: center;
    padding: 80px 20px;
    min-height: 400px;
    background: radial-gradient(circle at center, #1e293b 0%, #0b1120 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.cta-section>* {
    transform: translateY(-40px);
    transition: none !important;
}

.cta-section .btn-gold {
    transform: translateY(-35px) !important;
    animation: none !important;
    background-color: transparent !important;
    box-shadow: none;
    border-color: rgba(212, 175, 55, 0.35);
    color: rgba(212, 175, 55, 0.8);
    transition: box-shadow 0.2s linear, text-shadow 0.2s linear, border-color 0.2s linear, color 0.2s linear !important;
}

@keyframes intenseNeonPulse {
    0% {
        box-shadow: inset 0 0 10px rgba(212, 175, 55, 0.5), 0 0 20px rgba(212, 175, 55, 0.6);
        text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
        border-color: rgba(212, 175, 55, 0.8);
        color: rgba(212, 175, 55, 1);
    }

    50% {
        box-shadow: inset 0 0 30px rgba(212, 175, 55, 0.9), 0 0 60px rgba(212, 175, 55, 1);
        text-shadow: 0 0 25px rgba(212, 175, 55, 1);
        border-color: rgba(212, 175, 55, 1);
        color: #fff;
    }

    100% {
        box-shadow: inset 0 0 10px rgba(212, 175, 55, 0.5), 0 0 20px rgba(212, 175, 55, 0.6);
        text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
        border-color: rgba(212, 175, 55, 0.8);
        color: rgba(212, 175, 55, 1);
    }
}

.cta-section .btn-gold.neon-max {
    animation: intenseNeonPulse 3.5s infinite ease-in-out !important;
    background-color: transparent !important;
}

.cta-section .btn-gold:hover {
    background-color: var(--gold) !important;
    color: var(--primary) !important;
    box-shadow: 0 0 40px rgba(212, 175, 55, 1) !important;
    text-shadow: none !important;
    border-color: var(--gold) !important;
    transform: translateY(-35px) !important;
}

.cta-section h2 {
    margin-top: 0;
    margin-bottom: 20px;
}

.cta-section p {
    margin-top: 0;
    margin-bottom: 15px;
}

/* Logo Section */
.logo-section {
    text-align: center;
    padding: 40px 20px;
    background-color: var(--primary);
    overflow: hidden;
    max-width: 100% !important;
    margin-top: 0;
}

.logo-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 10px;
    opacity: 0.6;
}

.logo-placeholder {
    width: 172px;
    height: 92px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    background: rgba(255, 255, 255, 0.02);
    overflow: hidden;
}

.logo-placeholder:hover {
    border-color: var(--gold);
    color: var(--gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
    transform: scale(1.05);
    opacity: 1;
}

.logo-placeholder.has-image {
    border: none;
    background: transparent;
    box-shadow: none;
}

.logo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* --- 5. ORTAK SAYFA YAPILARI (PAGE HEADER) --- */
.page-header {
    height: 450px;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-color: var(--primary);
    background-size: 2500px auto !important;
    background-position: center top !important;
    padding-top: 100px;
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
}

/* FADE OUT EFEKTİ */
body:not(.home) .page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(to bottom, transparent, var(--primary));
    z-index: 1;
    pointer-events: none;
}

.page-header h1,
.header-quote {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 3.5rem;
    color: var(--gold);
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.8);
    margin-bottom: 20px;
}

.header-quote {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #cbd5e1;
    font-style: italic;
    max-width: 800px;
    animation: fadeIn 1.5s ease forwards;
}

.header-quote span {
    display: block;
    margin-top: 10px;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* SAYFAYA ÖZEL ODAK NOKTALARI */
#blogHeader {
    background-position: center 60% !important;
}

/* İLETİŞİM SAYFASI ÖZEL HEADER (Aşağıdan taşındı) */
#pageHeader {
    background-position: 0 0, center -1000px;
    background-size: cover, cover;
    background-repeat: no-repeat;
}

.page-template-iletisim .page-header {
    height: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-attachment: fixed;
    padding-top: 85px;
    padding-left: 20px;
    padding-right: 20px;
}

.page-template-iletisim .page-header h1 {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

/* --- 6. ÇALIŞMA ALANLARI (YUMUŞAK HOVER DÜZELTMESİ) --- */
.practice-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    position: relative;
    min-height: 800px;
    perspective: 2000px;
}

.practice-card {
    cursor: pointer;
    position: relative;
    display: block;
    height: 100%;
    z-index: 10;
    transition: top 0.8s, left 0.8s, width 0.8s, height 0.8s, transform 0.8s, opacity 0.8s;
}

.card-placeholder {
    visibility: hidden;
    opacity: 0;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
    transform-style: preserve-3d;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.card-front {
    background: var(--secondary);
    color: var(--text);
    z-index: 2;
}

.card-back {
    background: #0f172a;
    color: var(--text);
    transform: rotateY(180deg);
    border: 1px solid var(--gold);
    text-align: left;
    padding: 60px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
    overflow-y: auto;
    pointer-events: auto;
}

.icon-box {
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 20px;
    display: inline-block;
    padding: 15px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    line-height: 40px;
    text-align: center;
    margin: 0 auto 20px auto;
}

/* YUMUŞAK GEÇİŞ (Soft Hover) */
.card-front {
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Yumuşatıldı */
.card-front h3 {
    margin-bottom: 10px;
    font-size: 1.4rem;
    background: linear-gradient(to right, #b8860b 45%, #ffffff 50%, #b8860b 55%);
    background-size: 400% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: #fff;
    -webkit-text-fill-color: #fff;
    transition: all 0.6s ease;
}

/* Başlık geçişi de yumuşatıldı */
.card-back h3 {
    color: var(--gold);
    margin-bottom: 25px;
    font-size: 2rem;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 15px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin-top: 5px;
    text-align: left;
    width: 100%;
    padding-left: 10px;
}

.service-list li {
    color: #cbd5e1;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.service-list li i {
    color: var(--gold);
    margin-right: 10px;
    margin-top: 6px;
    font-size: 0.7rem;
}

.detail-item {
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 20px;
}

.detail-item h4 {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.detail-item p {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: justify;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.1);
    cursor: pointer;
    z-index: 20;
}

.close-btn:hover {
    color: var(--gold);
    transform: scale(1.2);
}

.practice-card.active {
    position: absolute;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 100;
    animation: centerAppear 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes centerAppear {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.practice-card.active .card-inner {
    transform: rotateY(180deg);
}

.practice-card.active .card-back {
    height: 100% !important;
    overflow-y: auto !important;
    pointer-events: auto !important;
    touch-action: pan-y;
    transform: rotateY(180deg) translateZ(1px);
    z-index: 50 !important;
}

.practice-card.active .card-front {
    pointer-events: none !important;
    visibility: hidden !important;
    opacity: 0;
}

.practice-card.slide-out-left {
    transform: translateX(-60vw) scale(0.9);
    opacity: 0;
    pointer-events: none;
}

.practice-card.slide-out-right {
    transform: translateX(60vw) scale(0.9);
    opacity: 0;
    pointer-events: none;
}

.card-back::-webkit-scrollbar {
    width: 6px;
}

.card-back::-webkit-scrollbar-track {
    background: #0f172a;
    border-radius: 4px;
    margin: 10px 0;
}

.card-back::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 4px;
}

.card-back::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

@media (min-width: 769px) {
    .practice-card:not(.active):not(.slide-out-left):not(.slide-out-right):hover {
        z-index: 20;
    }

    .practice-card:not(.active):not(.slide-out-left):not(.slide-out-right):hover .card-front {
        border-color: var(--gold);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
        transform: translateY(-10px);
    }

    .practice-card:not(.active):not(.slide-out-left):not(.slide-out-right):hover h3 {
        -webkit-text-fill-color: transparent;
        animation: goldShineCycle 3s linear infinite;
    }
}

/* --- 7. EKİBİMİZ VE DİĞER SAYFALAR --- */
.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 100px;
}

.team-card {
    background: var(--secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: all 0.6s ease;
    position: relative;
    width: 100%;
    max-width: 400px;
}

.img-container {
    height: 450px;
    overflow: hidden;
    position: relative;
}

.img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s ease;
    filter: grayscale(40%);
    object-position: top center;
}

.team-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.team-card:hover .img-container img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.team-info {
    padding: 35px 30px;
    text-align: center;
}

.team-info h3 {
    color: #fff;
    margin-bottom: 5px;
    font-size: 1.6rem;
    font-weight: 700;
}

.team-info .title {
    color: var(--gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.team-info p {
    text-align: justify;
    margin-bottom: 25px;
}

.social-links {
    text-align: center;
    display: block;
}

.social-links a {
    color: #fff;
    margin: 0 10px;
    font-size: 1.2rem;
    transition: 0.3s;
}

.social-links a:hover {
    color: var(--gold);
}

/* --- GÜNCELLENEN BLOG (MAKALELER) YAPISI: DİKDÖRTGEN YATAY TASARIM --- */
.blog-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* 2 Sütun */
    gap: 10px;
    /* GÜNCELLEME: Kartlar birbirine çok yaklaşsın diye gap 40px'den 10px'e indirildi */
}

.blog-card {
    background: var(--secondary);
    border-radius: 0px;
    /* Kenarlar keskinleştirildi */
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
    display: flex;
    /* YATAY YERLEŞİM İÇİN */
    flex-direction: row;
    /* Yan yana */
    min-height: 200px;
    /* GÜNCELLEME: Yükseklik %10 civarı azaltıldı (220px -> 200px) */
    align-items: stretch;
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Sol Taraf Resim Alanı */
.blog-img-wrapper {
    width: 35%;
    /* Resim alanı daraltılarak içerik alanı genişletildi */
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img {
    transform: scale(1.05);
}

/* Sıkça Sorulan Sorular */
.sss-page-container {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
    position: relative;
    /* scroll-margin-top kaldırıldı - Center mantığı kullanılacak */
}

/* Sağ Taraf İçerik Alanı */
.blog-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    width: 65%;
    /* İçerik alanı genişletildi */
    position: relative;
    /* Sağ alt köşe konumlandırması için */
}

/* Başlık */
.blog-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #fff;
    line-height: 1.4;
}

/* Açıklama Metni */
.blog-content p {
    font-size: 0.95rem;
    color: #94a3b8;
    margin-bottom: 40px;
    /* Alttaki yazar bilgisine yer açmak için boşluk */
    flex-grow: 1;
    text-align: justify;
}

/* Sağ Alt Köşe: Yazar ve Tarih */
.blog-meta-bottom {
    position: absolute;
    bottom: 20px;
    right: 25px;
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 600;
}

.blog-meta-bottom i {
    margin-right: 5px;
}

.read-more {
    display: none;
}

/* Eski butonu gizle (PHP'den kaldırdık ama garanti olsun) */

/* YENİ EKLENEN KATEGORİ BİLGİSİ STİLİ */
.blog-category-info {
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.blog-category-info .separator {
    color: #64748b;
    margin: 0 8px;
    font-size: 0.7rem;
}

/* YENİ MEGA FİLTRE VE ACCORDION TASARIMI */
.mega-filter-wrapper {
    margin-bottom: 40px;
    position: relative;
    width: 100%;
}

.filter-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 10px;
    /* Panel açılınca aradaki boşluk */
}

.filter-triggers {
    display: flex;
    gap: 20px;
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 12px 25px;
    font-family: 'Cinzel', serif;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 220px;
    /* Genişlik 220px */
    justify-content: space-between;
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--gold);
    color: var(--gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}

.filter-btn i {
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.filter-btn.active i {
    transform: rotate(180deg);
}

/* Genişleyen Panel (Expansion Panel) - GRID İLE HİDROLİK KAPANMA */
.filter-expansion-panel {
    display: grid;
    grid-template-rows: 0fr;
    /* Kapalıyken yükseklik 0 */
    transition:
        grid-template-rows 0.5s cubic-bezier(0.25, 1, 0.5, 1) 0.2s,
        /* Kapanırken 0.2s bekle (yazılar silinsin) */
        margin-bottom 0.5s cubic-bezier(0.25, 1, 0.5, 1) 0.2s,
        padding-bottom 0.5s cubic-bezier(0.25, 1, 0.5, 1) 0.2s,
        border-bottom-color 0.5s ease 0.2s;
    overflow: hidden;
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0);
    /* position: relative; Removed for max-height fix */
}

.filter-expansion-panel.open {
    grid-template-rows: 1fr;
    /* Açıkken içerik kadar yer kapla */
    padding-bottom: 10px;
    /* SPACING FIX: Increased from 20px */
    margin-bottom: 30px;
    border-bottom-color: rgba(212, 175, 55, 0.3);
    /* Açılırken hemen başla (0s gecikme) */
    transition:
        grid-template-rows 0.5s cubic-bezier(0.25, 1, 0.5, 1) 0s,
        padding-bottom 0.5s cubic-bezier(0.25, 1, 0.5, 1) 0s,
        margin-bottom 0.5s cubic-bezier(0.25, 1, 0.5, 1) 0s,
        border-bottom-color 0.5s ease 0s;
}

/* İçerik Alanı - Grid Stacking & Surfacing */
.filter-content {
    grid-row: 1 / span 1;
    /* Restore Grid Stacking */
    grid-column: 1 / -1;
    min-height: 0;

    opacity: 0;
    visibility: hidden;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 20px 0;
    width: 100%;

    /* NEW STRATEGY: Max-height flow control */
    max-height: 0;
    padding: 0;
    /* Collapse padding too */
    overflow: hidden;
    position: static;
    /* No absolute */

    /* 1. Base Inactive (Panel Closing): DELAYED Collapse */
    /* Kapanırken: Panel kapanana kadar bekle (0.5s) sonra küçül */
    transition:
        opacity 0.3s ease 0s,
        visibility 0.3s ease 0s,
        max-height 0s step-end 0.5s,
        padding 0s step-end 0.5s;
}

/* 2. Switching Override (Active Panel, Inactive Tab) */
.filter-expansion-panel.open .filter-content:not(.active) {
    /* SWITCHING: Bekleme yapma, hemen küçül (Smooth) */
    /* Böylece yeni sekme açılırken eski sekme hemen çekilir. */
    transition:
        opacity 0.4s ease 0s,
        visibility 0.4s ease 0s,
        max-height 0.5s ease 0s,
        padding 0.5s ease 0s;
}

/* Aktif Olduğunda Beliren İçerik (Sıvı/Su Efekti) */
.filter-content.active {
    opacity: 1;
    visibility: visible;

    max-height: 1000px;
    /* Allow expansion */
    position: static;
    z-index: 10;

    /* Açılırken: DELAY YOK (step-start) */
    transition:
        opacity 0.4s ease 0.1s,
        visibility 0.4s ease 0.1s,
        max-height 0.5s ease 0s,
        padding 0.5s ease 0s;
}

/* --- MEVCUT KODDAKİ BU BLOKLARI BULUN VE AŞAĞIDAKİLERLE DEĞİŞTİRİN --- */

/* Linkler - Liquid Gold ve Surfacing Efekti */
.filter-link {
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    padding: 5px 0;

    /* GÜNCELLEME: Gradyan çok daha geniş (300%). 
       Kenarlar geniş altın blokları, sadece orta kısım beyaz ışık. */
    background: linear-gradient(135deg,
            #b8860b 20%,
            #D4AF37 40%,
            #ffffff 50%,
            #D4AF37 60%,
            #b8860b 80%);
    background-size: 300% auto;
    /* Boyut %300 yapıldı ki başlangıçta beyazlık görünmesin */

    /* Başlangıç Pozisyonu: 0% -> En soldaki koyu altın rengi blok */
    background-position: 100% center;

    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    /* Webkit tarayıcılarda rengin net oturması için */
    -webkit-text-fill-color: transparent;
}

/* Linklerin Aktif Hali (Su Üstünde / Net) */
.filter-content.active .filter-link {
    /* GÜNCELLEME: 
       - Duration: 1.5s (Işığın geçiş hızı)
       - Delay: 1s (Talep ettiğiniz 1 saniye bekleme süresi) 
       - forwards: Animasyon bitince son karede (altın rengi) kal. */
    animation: goldSweepPass 1.5s ease-in-out 1s 1 forwards;
}

/* Sıvı Altın Tek Seferlik Geçiş Animasyonu - YENİDEN TANIMLANDI */
@keyframes goldSweepPass {
    100% {
        /* Animasyon başladığı an (1sn sonra) hala en solda (altın) */
        background-position: 0% center;
    }

    0% {
        /* Animasyon bittiğinde en sağa git (yine altın) */
        background-position: 100% center;
    }
}

/* NOT: Eski @keyframes goldSweep bloğunu silebilirsiniz, ismi değiştirdim. */

.sep {
    color: var(--gold);
    margin: 0 15px;
    font-weight: 300;
    opacity: 0.6;
}

/* Arama Çubuğu */
.search-wrapper {
    position: relative;
    width: 300px;
}

.search-input {
    width: 100%;
    padding: 12px 20px;
    padding-right: 45px;
    /* İkon için boşluk */
    background-color: var(--secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-radius: 0;
}

.search-input:focus {
    outline: none;
    border-color: var(--gold);
}

.search-btn {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 45px;
    background: transparent;
    border: none;
    color: var(--gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: 0.3s;
}

.search-btn:hover {
    color: #fff;
}

/* Mobil için filtre düzeni */
@media (max-width: 768px) {
    .filter-top-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-triggers {
        flex-direction: column;
    }

    .filter-btn,
    .search-wrapper {
        width: 100%;
    }

    /* Mobilde yan yana değil alt alta dökülsün */
    .filter-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .sep {
        display: none;
        /* Çizgileri gizle */
    }

    .filter-link {
        width: 100%;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
}

/* SAYFALAMA (PAGINATION) TASARIMI */
.pagination-wrapper .page-numbers {
    display: inline-block;
    padding: 10px 18px;
    margin: 0 5px;
    background: var(--secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
    font-family: 'Cinzel', serif;
    font-size: 1rem;
}

.pagination-wrapper .page-numbers.current,
.pagination-wrapper .page-numbers:hover {
    background: var(--gold);
    color: var(--primary);
    border-color: var(--gold);
}

.pagination-wrapper .page-numbers.dots {
    border: none;
    background: transparent;
    cursor: default;
}

/* MOBİL UYUMLULUK: Mobilde alt alta dönsün */
@media (max-width: 900px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    /* Mobilde tek sütun */
    .blog-card {
        flex-direction: column;
        min-height: auto;
    }

    /* Mobilde dikey kart */
    .blog-img-wrapper {
        width: 100%;
        height: 200px;
    }

    .blog-content {
        width: 100%;
    }

    .blog-meta-bottom {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 20px;
        justify-content: flex-end;
    }
}

/* --- 8. İLETİŞİM FORMLARI VE SAYFASI (BİRLEŞTİRİLMİŞ & DÜZELTİLMİŞ) --- */

/* Genel İletişim Bölümü (Ortak) */
section.contact-section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Kutular ve Düzen */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: stretch;
}

/* İletişim Sayfasında boşluk biraz daha geniş olsun */
.page-template-iletisim .contact-container {
    gap: 50px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Bilgi Kutucukları (İkonlar vb.) */
.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--gold);
    margin-right: 20px;
    margin-top: 5px;
}

.info-item h4 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 5px;
    margin-top: 0;
}

.info-item p {
    color: #94a3b8;
    margin: 0;
}

.info-item a {
    color: inherit;
    transition: 0.3s;
}

.info-item a:hover {
    color: var(--gold);
}

/* --- FORM STİLLERİ (Compact ve Geniş Ayrı Ayrı) --- */

/* 1. Compact Form (Anasayfa / Widget vb.) */
.contact-form {
    flex: 1;
    min-width: 300px;
    background: var(--secondary);
    padding: 20px 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form p {
    display: block !important;
    margin: 0 0 15px 0 !important;
    padding: 0 !important;
}

.contact-form br,
.wpcf7 br {
    display: none !important;
}

/* Etiketlerin (Labels) Altın Rengi Olması Garantilendi */
.contact-form label,
.contact-form-wrapper label,
.wpcf7-form label {
    display: block !important;
    width: 100%;
    margin-bottom: 10px !important;
    color: var(--gold) !important;
    font-size: 0.95rem;
    line-height: 1.2;
}

/* Compact Inputlar (Telefon Eklendi) */
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea,
.contact-form .wpcf7-form-control {
    display: block !important;
    width: 100%;
    padding: 10px 12px !important;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-family: 'Inter', sans-serif;
    margin-top: 5px !important;
    margin-bottom: 0 !important;
}

/* 2. Geniş Form (İletişim Sayfası Özel - .contact-form-wrapper) */
.contact-form-wrapper {
    flex: 1;
    min-width: 300px;
    background: var(--secondary);
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Geniş Form Inputlar (Telefon Eklendi) */
.contact-form-wrapper input[type="text"],
.contact-form-wrapper input[type="email"],
.contact-form-wrapper input[type="tel"],
.contact-form-wrapper textarea {
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: 0.3s;
    box-sizing: border-box;
}

/* Ortak Form Özellikleri (Odaklanma) */
.wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.wpcf7-form .form-group {
    margin-bottom: 20px;
}

/* ODAKLANMA (FOCUS) DÜZELTMESİ: Tüm input tipleri için altın çerçeve (Telefon Eklendi) */
.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form textarea:focus,
.contact-form-wrapper input[type="text"]:focus,
.contact-form-wrapper input[type="email"]:focus,
.contact-form-wrapper input[type="tel"]:focus,
.contact-form-wrapper textarea:focus,
.wpcf7-form-control:focus {
    border-color: var(--gold) !important;
    outline: none;
}

/* Submit Butonu (Ortak Stil) */
.wpcf7-submit,
.wpcf7-submit.submit-btn {
    display: block !important;
    background: var(--gold);
    border: 2px solid var(--gold);
    color: var(--primary);
    padding: 12px 40px;
    font-size: 1rem;
    font-family: 'Cinzel', serif;
    /* YENİ: Font Eklendi */
    font-weight: 700;
    /* YENİ: Kalınlık Eklendi */
    text-transform: uppercase;
    cursor: pointer;
    width: 100%;
    transition: 0.3s;
    margin-top: 10px !important;
}

.contact-form-wrapper .wpcf7-submit {
    padding: 15px 40px;
}

/* Geniş formda buton biraz daha büyük */

@media (hover: hover) {

    .wpcf7-submit:hover,
    .wpcf7-submit.submit-btn:hover {
        background: #fff;
        color: var(--primary);
        box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
        border-color: #fff;
        /* Border da beyaz olsun */
    }
}

.wpcf7-response-output {
    border-color: var(--gold) !important;
    color: #fff !important;
    font-size: 0.9rem;
    margin-top: 20px !important;
}

.map-container {
    width: 100%;
    height: 400px;
    margin-top: 50px;
    filter: grayscale(80%) invert(95%);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Harita boyutu düzeltildi */

/* --- 9. FOOTER & WHATSAPP --- */
footer {
    background: #020408;
    padding: 40px;
    text-align: center;
    color: #64748b;
    border-top: 1px solid #1e293b;
    margin-top: 0;
}

.whatsapp-container {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 9999;
}

.whatsapp-float {
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.4);
    transition: 0.3s;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-notification {
    position: absolute;
    bottom: 75px;
    right: 0;
    width: 220px;
    background-color: #fff;
    color: #1E293B;
    padding: 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.4;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border-left: 4px solid var(--gold);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.5s ease;
    pointer-events: none;
}

.whatsapp-notification.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* --- 10. MOBİL RESPONSIVE AYARLAR --- */
@media (max-width: 768px) {
    .page-template-iletisim .page-header h1 {
        font-size: 2.5rem;
    }

    header {
        padding: 15px 20px;
        background: rgba(11, 17, 32, 0.95);
        height: 85px;
    }

    header.scrolled {
        padding: 15px 20px !important;
    }

    .logo {
        font-size: 1.3rem;
        white-space: nowrap;
        order: 1;
        margin-left: 0;
    }

    .hamburger {
        display: block;
        order: 2;
        margin-left: auto;
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 85px;
        height: 100vh;
        width: 90%;
        background-color: rgba(11, 17, 32, 0.85);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 120px;
        align-items: center;
        transition: 0.4s ease-in-out;
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.5);
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 1000;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        font-size: 1.1rem;
        margin: 0;
        padding: 20px 0;
        width: 100%;
        text-align: center;
        position: relative;
        border: none;
    }

    .nav-links a::after {
        content: '';
        position: absolute;
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%);
        width: 60%;
        height: 1px;
        background-color: rgba(212, 175, 55, 0.4);
        transition: none;
    }

    .nav-links a:last-child::after {
        display: none;
    }

    .page-header {
        height: 350px !important;
        min-height: 350px !important;
        background-size: 2500px auto !important;
        background-position: center top !important;
    }

    .page-header h1 {
        font-size: 2rem !important;
        margin-bottom: 15px !important;
    }

    .header-quote {
        font-size: 1rem !important;
        padding: 0 10px;
    }

    body.home section {
        max-width: 100% !important;
        padding: 60px 20px;
    }

    /* Anasayfa Hero Mobil - COVER FIX */
    .hero-bg {
        background-attachment: scroll;
        background-size: cover !important;
        background-position: 17% top !important;
        top: 85px;
        height: 100vh;
        width: 100%;
        left: 0;
        background-repeat: no-repeat !important;
        z-index: 0;
    }

    .hero-content {
        padding-top: 80px;
    }

    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.3;
        margin-bottom: 40px;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .hero-btn-container {
        display: none;
    }

    .about-title {
        margin-bottom: 20px;
        font-size: 2rem;
    }

    .motto-text {
        padding: 20px;
        margin-top: 10px;
        font-size: 1rem !important;
    }

    .offer-grid {
        margin-top: 30px;
        gap: 20px;
    }

    .offer-item h3 {
        justify-content: center;
    }

    .offer-item:hover {
        transform: none;
        background: rgba(30, 41, 59, 0.5);
        border-color: var(--gold);
    }

    .cta-section {
        padding: 80px 20px;
        min-height: auto;
    }

    .cta-section>* {
        transform: none;
        transition: none;
    }

    .cta-section .btn-gold {
        transform: none !important;
    }

    .cta-section .btn-gold.neon-max {
        animation: intenseNeonPulse 3.5s infinite ease-in-out !important;
    }

    .logo-section {
        padding: 40px 20px;
    }

    .logo-grid {
        flex-wrap: nowrap;
        gap: 20px;
        justify-content: flex-start;
        width: max-content;
        animation: mobileLogoScroll 15s ease-in-out infinite alternate;
        opacity: 1;
    }

    @keyframes mobileLogoScroll {
        0% {
            transform: translateX(20px);
        }

        100% {
            transform: translateX(calc(-100% + 100vw - 40px));
        }
    }

    .logo-placeholder {
        width: 172px;
        height: 92px;
        font-size: 0.9rem;
        flex-shrink: 0;
    }

    .logo-placeholder.has-image {
        border: none;
        background: transparent;
        box-shadow: none;
    }

    .logo-placeholder img {
        opacity: 1;
    }

    .contact-container {
        flex-direction: column;
    }

    .contact-info {
        width: 100%;
        min-height: auto;
        padding-bottom: 30px !important;
    }

    .contact-form {
        width: 100%;
        min-height: auto;
        height: auto !important;
    }

    .whatsapp-container {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float {
        width: 45px;
        height: 45px;
        font-size: 24px;
    }

    .whatsapp-notification {
        width: 160px;
        font-size: 0.75rem;
        padding: 10px;
        bottom: 55px;
        right: -5px;
        line-height: 1.2;
    }

    .practice-grid {
        display: flex !important;
        flex-direction: column;
    }

    .practice-card {
        height: auto;
        transform: none !important;
        opacity: 1 !important;
    }

    .card-front {
        position: relative;
        transform: none;
        backface-visibility: visible;
    }

    .card-back {
        display: none !important;
    }

    .practice-card.mobile-highlight .card-front h3 {
        background: linear-gradient(to right, #D4AF37 20%, #fff 50%, #D4AF37 80%);
        background-size: 200% auto;
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: goldShineCycle 3s linear infinite !important;
    }

    .practice-card.mobile-highlight .card-front {
        border-color: var(--gold) !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

}

/* <-- Bu parantez kapanışı şart */


/* --- USER UPDATE: Reduce Blog Card Height --- */
.blog-content {
    padding: 15px 20px !important;
}

/* --- USER UPDATE: Desktop Square Image & Compact Card --- */
@media (min-width: 901px) {
    .blog-card {
        height: 200px !important;
        min-height: 200px !important;
        max-height: 200px !important;
        align-items: stretch;
        overflow: hidden;
    }

    .blog-img-wrapper {
        width: 200px !important;
        height: 100% !important;
        flex: 0 0 200px !important;
    }

    .blog-content {
        padding: 15px 25px !important;
        /* Yazar kısmı için alt boşluk rezervi */
        padding-bottom: 45px !important;
        /* Merkezi değil üstten başlasın */
        justify-content: flex-start !important;
        position: relative;
        overflow: hidden;
    }

    .blog-content h3 {
        /* JS ile kontrol edilecek, ancak CSS temeli şart */
        white-space: nowrap !important;
        overflow: hidden !important;
        /* JS sığdırana kadar taşmasın */
        text-overflow: clip !important;
        /* Üç nokta olmasın, sığdıracağız */
        width: 100%;
        display: block;

        font-size: 1.25rem;
        /* !important KALDIRILDI - JS Kontrol Edebilsin */
        /* Başlangıç (Max) Boyut */
        margin-bottom: 8px !important;
        margin-top: 5px !important;
        line-height: 1.2;
    }

    /* YENİ: Kategori Bilgisi Küçültme */
    .blog-category-info {
        font-size: 0.7rem !important;
        margin-bottom: 5px !important;
        letter-spacing: 0.5px !important;
    }

    .blog-content p {
        /* Satır sınırlaması KALDIRILDI */
        display: block !important;
        -webkit-line-clamp: unset !important;
        line-clamp: unset !important;
        -webkit-box-orient: unset !important;

        /* Alanı doldur */
        flex-grow: 1;
        overflow: hidden;
        /* Eğer çok artarsa taşanı gizle */
        margin-bottom: 0 !important;
        font-size: 0.9rem !important;
    }

    .blog-meta-bottom {
        position: absolute;
        bottom: 12px !important;
        right: 25px !important;
        font-size: 0.75rem !important;
        /* Meta yazısı da küçülsün */
    }
}

/* =========================================
   SINGLE ARTICLE PAGE & TYPOGRAPHY
   ========================================= */

/* --- 1. Header & Container --- */
.single-header {
    height: 400px !important;
    background-image: linear-gradient(to bottom, rgba(11, 17, 32, 0.85), var(--primary));
    background-size: cover;
    background-position: center;
    position: relative;
    /* Eğer öne çıkan görsel varsa style='background-image:...' ile ezilir */
    /* İçerik boşaltıldı, sadece görsel alanı */
}

/* Eski Header H1 ve Date kuralları kaldırılabilir veya ezilebilir */
.single-header h1 {
    display: none;
}

.single-date {
    display: none;
}

.single-article-container {
    background: #1e293b;
    padding: 60px 70px;
    /* Kenar boşlukları */
    border-radius: 12px;
    margin: -150px auto 50px auto;
    /* Daha yukarı çekildi */
    z-index: 10;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    max-width: 800px;
    /* DAHA DAR KUTU (Okuma Kolaylığı) */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

/* YENİ: İçerik Başlığı ve Meta */
.article-header-internal {
    margin-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 30px;
}

.internal-title {
    font-size: 2.5rem;
    line-height: 1.3;
    color: #fff;
    margin-bottom: 20px;
    font-family: 'Cinzel', serif;
    text-align: left;
    /* Başlık sola dayalı */
}

.internal-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    /* Sağa dayalı */
    font-size: 0.95rem;
    color: #94a3b8;
}

.internal-date {
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.internal-author {
    font-style: italic;
    color: var(--gold);
    /* Yazar adı artık sarı */
}


/* --- 2. Article Body Typography (Okuma Deneyimi) --- */
.article-body {
    color: #cbd5e1;
    font-size: 1.15rem;
    /* Montserrat biraz daha geniştir, puntoyu az kıstım */
    line-height: 1.8;
    /* YENİ FONT: Montserrat (Modern Premium) */
    font-family: 'Montserrat', sans-serif;

    text-align: justify;
    /* Kullanıcı İsteği: Çift tarafa yasla */
}

/* Boşluk Blokları Desteği (WordPress Spacer) */
.article-body .wp-block-spacer {
    display: block !important;
    clear: both !important;
    width: 100% !important;
    /* Height inline style olarak gelir, CSS ezmemeli */
}

/* Başlıklar */
.article-body h2,
.article-body h3,
.article-body h4,
.article-body h5,
.article-body h6 {
    text-align: left;
    text-indent: 35px;
    /* Başlıklar içeriden başlasın */
    color: var(--gold) !important;
    /* TÜM BAŞLIKLAR SARI */
}

/* WordPress Editöründeki "Ortala" seçeneğinin çalışması için */
.article-body .has-text-align-center {
    text-align: center !important;
    text-indent: 0 !important;
}

/* Başlıklar - Özel Ayarlar (Margin vb.) */
.article-body h2 {
    /* color: var(--gold); */
    /* Moved to combined rule */
    font-size: 1.8rem;
    margin-top: 50px;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.article-body h3 {
    /* color: #fff; */
    /* Moved to combined rule */
    font-size: 1.5rem;
    margin-top: 40px;
    margin-bottom: 20px;
}

.article-body h4,
.article-body h5,
.article-body h6 {
    /* color: #fff; */
    /* Moved to combined rule */
    font-size: 1.25rem;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Paragraf & Link */
.article-body p {
    margin-bottom: 25px;
    text-indent: 35px;
    /* Paragraf başı içeriden */
}

/* DROP CAP (Başlangıç Harfi) - Sadece ilk p'nin ilk harfi */
/* DROP CAP KALDIRILDI */

/* Görünürlük Garantisi */
.article-header-internal {
    position: relative;
    z-index: 20;
    /* Her şeyin üstünde olsun */
    opacity: 1 !important;
    visibility: visible !important;
}

.internal-title,
.internal-meta {
    opacity: 1 !important;
    visibility: visible !important;
}

.article-body a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.3s;
}

.article-body a:hover {
    color: #fff;
}

/* Listeler */
.article-body ul,
.article-body ol {
    margin-bottom: 30px;
    padding-left: 20px;
}

.article-body li {
    margin-bottom: 15px;
    padding-left: 10px;
    /* Listeler için text-indent yerine padding daha sağlıklıdır ama */
    /* Kullanıcı isteği "paragraf başı gibi" ise: */
    /* text-indent: 20px; BURADA DIKKAT: Bullet'ı kaydırabilir. */
    /* Güvenli yöntem padding-left arttırmak ya da text-indent */
}

.article-body ul li {
    list-style-type: disc;
}

.article-body ul li::marker {
    color: var(--gold);
}

.article-body ol li::marker {
    color: var(--gold);
    font-weight: bold;
    font-family: 'Cinzel', serif;
    /* Sayılar başlık fontunda olsun */
}

/* Alıntılar */
.article-body blockquote {
    border-left: 4px solid var(--gold);
    margin: 40px 0;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.03);
    font-style: italic;
    color: #e2e8f0;
    font-size: 1.1rem;
    border-radius: 0 8px 8px 0;
}

/* Görseller */
.article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.article-body figure {
    margin: 0 0 30px 0;
}

.article-body figcaption {
    text-align: center;
    font-size: 0.9rem;
    color: #94a3b8;
    margin-top: 10px;
    font-style: italic;
}

/* Kod Blokları & Pre */
.article-body pre {
    background: #0f172a;
    padding: 20px;
    border-radius: 8px;
    overflow-x: auto;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-family: monospace;
    font-size: 0.95rem;
}

/* --- 3. Comments & Footer --- */
/* --- 3. Comments & Footer (Yorumlar) --- */
.article-comments {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.comments-title,
.comment-reply-title {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 30px;
    display: block;
}

/* Yorum Listesi */
.comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comment-list li.comment {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.comment-body {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

/* Avatar */
.comment-body .avatar {
    border-radius: 50%;
    border: 2px solid var(--gold);
    width: 60px;
    height: 60px;
}

/* Yorum İçeriği */
.comment-meta {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-bottom: 10px;
    width: 100%;
}

.comment-meta .fn {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    font-style: normal;
    margin-right: 10px;
}

.comment-meta a {
    color: #64748b;
    text-decoration: none;
}

.comment-content p {
    font-size: 1rem;
    color: #cbd5e1;
    margin-bottom: 10px;
    text-indent: 0 !important;
    /* Yorumlarda girinti olmasın */
}

/* Cevapla Butonu */
.reply {
    width: 100%;
    text-align: right;
}

.comment-reply-link {
    display: inline-block;
    padding: 5px 15px;
    font-size: 0.8rem;
    color: var(--primary);
    background: var(--gold);
    border-radius: 4px;
    font-weight: 600;
    transition: 0.3s;
}

.comment-reply-link:hover {
    background: #fff;
    color: var(--primary);
}

/* --- Form (Yorum Bırak) --- */
#respond {
    background: rgba(15, 23, 42, 0.5);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 40px;
}

#commentform {
    display: flex;
    flex-direction: column;
}

/* Sıralama: 1. Ad, 2. Email, 3. Yorum, 4. Buton */
.comment-form-author {
    order: 1;
}

.comment-form-email {
    order: 2;
}

.comment-form-comment {
    order: 3;
}

.form-submit {
    order: 4;
}

.comment-notes {
    order: 5;
    font-size: 0.8rem !important;
    font-style: italic !important;
    color: #64748b;
    margin-top: 15px;
    margin-bottom: 0;
}

#reply-title {
    color: var(--gold);
    font-size: 1.5rem;
    font-family: 'Cinzel', serif;
    margin-bottom: 20px;
    display: block;
    width: 100%;
}

.comment-form-comment label,
.comment-form-author label,
.comment-form-email label,
.comment-form-url label {
    display: block;
    color: #cbd5e1;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.comment-form textarea,
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"] {
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
    /* Küçük harfle başlatıldı - okuma kolaylığı */
    transition: 0.3s;
}

/* Yorum Kutusu Boyutu */
.comment-form textarea {
    height: 120px !important;
    /* Daha küçük yükseklik */
    min-height: 100px;
    resize: vertical;
}

.comment-form textarea:focus,
.comment-form input:focus {
    border-color: var(--gold);
    outline: none;
    background: rgba(0, 0, 0, 0.4);
}

/* Gönder Butonu */
.form-submit .submit {
    background: var(--gold);
    color: var(--primary);
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Cinzel', serif;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-submit .submit:hover {
    background: #fff;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

/* --- 4. Responsive (Mobil) --- */
@media (max-width: 768px) {
    .single-header {
        height: 300px !important;
    }

    .single-header h1 {
        font-size: 1.8rem;
    }

    .single-article-container {
        padding: 40px 25px;
        /* Mobilde daha dar padding */
        margin-top: -60px;
        width: 92%;
        /* Kenarlardan biraz boşluk */
    }

    .article-body {
        font-size: 1.05rem;
    }

    .article-body h2 {
        font-size: 1.5rem;
    }
}

/* Bold Metinler - Başlık Fontu Olsun */
.article-body strong,
.article-body b {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    color: #fff;
    /* Biraz daha parlak olsun */
    letter-spacing: 0.5px;
}

/* Gereksiz Alanları Gizle (Website & Çerezler) */
.comment-form-url,
.comment-form-cookies-consent {
    display: none !important;
}

/* --- YASAL UYARI KUTUSU --- */
.legal-warning-box {
    margin: 30px 0 20px 0;
    /* Üst 30, Alt 20 (Çizgiye kadar olan mesafe) */
    padding: 25px;
    border: 1px solid rgba(199, 169, 108, 0.3);
    /* Hafif Gold Çerçeve */
    background-color: rgba(11, 17, 32, 0.5);
    /* Hafif Koyu Arkaplan */
    border-left: 4px solid var(--gold);
    /* Sol Taraf Kalın Çizgi */
    border-radius: 4px;
}

.legal-warning-box .warning-title {
    color: var(--gold);
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    margin-top: 0;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.legal-warning-box p {
    color: #cbd5e1;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
    text-indent: 0 !important;
    /* Paragraf girintisini sıfırla */
    font-style: italic;
    /* İtalik Yazı */
}

/* Yorum Alanını Yukarı Çek ve Çizgiyi Ortala */
.article-comments {
    margin-top: 0;
    /* Ekstra boşluk yok */
    padding-top: 20px;
    /* Çizgiden başlığa olan mesafe (Yukarıdaki 20px ile eşitlendi) */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    /* Çizgi burada */
}

/* --- DİNAMİK İKON KARTLARI (SOL TARAFTAKİ RESİM YERİNE) --- */
.dynamic-icon-card {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(15, 23, 42, 1) 0%, rgba(11, 17, 32, 1) 100%);
    position: relative;
    border-right: 1px solid var(--gold);
    /* İnce bir ayrım çizgisi */
    overflow: hidden;
}

/* Hafif Desen (Opsiyonel - Çok silik) */
.dynamic-icon-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at center, rgba(212, 175, 55, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.5;
}

.dynamic-icon-card i {
    font-size: 3.5rem;
    /* Büyük İkon */
    color: var(--gold);
    opacity: 0.8;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
    transition: all 0.4s ease;
}

/* Hover Efekti */
.blog-card:hover .dynamic-icon-card i {
    transform: scale(1.1);
    opacity: 1;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.4));
}

.blog-card:hover .dynamic-icon-card {
    background: linear-gradient(135deg, rgba(20, 30, 55, 1) 0%, rgba(15, 23, 42, 1) 100%);
}

/* --- SIKÇA SORULAN SORULAR BUTONU (HOME.PHP) --- */
.custom-sss-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    border: 1px solid var(--gold);
    border-radius: 4px;
    /* Keskin Köşeler */
    color: var(--gold);
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    transition: all 0.3s ease;
    background: transparent;
    position: relative;
    overflow: hidden;
}

@media (hover: hover) {
    .custom-sss-btn:hover {
        background: var(--gold);
        color: #0b1120;
        /* Koyu Lacivert */
        box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    }
}

.custom-sss-btn .icon-box {
    font-size: 1.2rem;
}

/* --- SSS SAYFASI (ACCORDION) STİLİ --- */
/* --- SSS SAYFASI (WORDPRESS AKORDIYON STİLİ) --- */
.wp-block-details {
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    background: rgba(15, 23, 42, 0.8);
    overflow: hidden;
    transition: all 0.3s ease;
}

.wp-block-details:hover,
.wp-block-details[open] {
    border-color: rgba(212, 175, 55, 0.5);
    /* Açıkken veya Hoverken Gold Çerçeve */
}

.wp-block-details summary {
    padding: 20px;
    list-style: none;
    /* Varsayılan oku kaldır */
    cursor: pointer;
    color: #fff;
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    outline: none;
}

/* Varsayılan oku Chrome/Safari için kaldır */
.wp-block-details summary::-webkit-details-marker {
    display: none;
}

/* Kendi Okumuzu Ekleyelim */
.wp-block-details summary::after {
    content: '\f078';
    /* FontAwesome Chevron Down */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--gold);
    transition: transform 0.3s ease;
}

.wp-block-details[open] summary {
    background: rgba(212, 175, 55, 0.05);
    /* Açıkken hafif zemin */
    color: var(--gold);
}

.wp-block-details[open] summary::after {
    transform: rotate(180deg);
}

/* İçerik Alanı */
/* İçerik Alanı */
.wp-block-details>*:not(summary) {
    padding: 20px;
    margin: 0;
    color: var(--text);
    /* Makale ana metni rengi (#F1F5F9) */
    font-family: 'Montserrat', sans-serif;
    /* Makale gövde fontu */
    font-size: 1.05rem;
    /* Makale boyutu */
    line-height: 1.8;
    /* Makale satır aralığı */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0, 0, 0, 0.2);
    animation: fadeInSlide 0.4s ease;
    text-align: left;
    /* Genelde sola dayalı */
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- FAQ Pagination Animations --- */
.sss-page-transition {
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease;
    width: 100%;
    /* Absolute position during animation to prevent layout shift jumping */
    top: 0;
    left: 0;
}

.slide-out-left {
    transform: translateX(-120%);
    opacity: 0;
    position: absolute !important;
    /* Çıkarken yer kaplamasın */
}

.slide-out-right {
    transform: translateX(120%);
    opacity: 0;
    position: absolute !important;
}

.slide-in-from-right {
    transform: translateX(120%);
    opacity: 0;
}

.slide-in-from-left {
    transform: translateX(-120%);
    opacity: 0;
}

.slide-reset {
    transform: translateX(0);
    opacity: 1;
}

/* Pagination Buttons */
.sss-pagination-controls {
    display: flex;
    justify-content: space-between;
    /* İki uca yasla */
    align-items: center;
    width: 100%;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    /* Üst çizgi */
}

.sss-nav-btn {
    padding: 12px 35px;
    border: 1px solid var(--gold);
    background: rgba(11, 17, 32, 0.5);
    /* Hafif arka plan */
    color: var(--gold);
    font-family: 'Cinzel', serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 4px;
    /* Hafif oval */
    letter-spacing: 1px;
}

.sss-nav-btn:hover:not(:disabled) {
    background: transparent;
    color: var(--gold);
    /* Rengi değiştirme */
    box-shadow: 0 0 10px var(--gold), inset 0 0 5px var(--gold);
    /* Neon Frame */
    border-color: var(--gold);
    transform: none;
}

.sss-nav-btn:disabled {
    opacity: 0;
    /* Pasifse direkt gizle (Kullanıcı kafası karışmasın) veya çok silik yap */
    pointer-events: none;
    /* Alternatif: opacity: 0.3; cursor: not-allowed; border-color: #334155; color: #475569; */
}

/* Sayfa Göstergesi (Ortada kalsın istiyorsak absolute yapabiliriz ama flex space-between'de ortada kalması için yapı değişikliği gerekir. 
   Mevcut yapıda: Prev - Span - Next. Space-between yapınca Span tam ortaya gelmez.
   Eğer Span'ın tam ortada olmasını istiyorsak:
*/
#pageIndicator {
    font-family: 'Cinzel', serif;
    color: #94a3b8;
    font-size: 1rem;
    letter-spacing: 2px;
}

/* --- Articles Page Custom FAQ Button --- */
.custom-sss-btn {
    display: inline-block;
    padding: 15px 50px;
    border: 1px solid var(--gold);
    font-size: 1.1rem;
}

.custom-sss-btn:hover {
    background: transparent;
    color: var(--gold);
    box-shadow: 0 0 15px var(--gold), inset 0 0 5px var(--gold);
    text-shadow: none;
    transform: none;
}

/* --- Yasal Uyarı Düzenlemesi --- */
.legal-warning-box p {
    text-align: justify;
    /* İki yana yaslama */
    text-justify: inter-word;
}

/* --- Makale İçi "Bize Ulaşın" Butonu (WP Block Button Override) --- */
.article-body .wp-block-button,
.article-body .wp-block-buttons {
    background: transparent !important;
    /* Arkadaki muhtemel tint'i kaldır */
    padding: 0 !important;
    box-shadow: none !important;
}

/* Mobil için Buton Düzenlemesi */
@media (max-width: 768px) {

    /* İletişim Butonu Yatay ve Küçük */
    .article-body .wp-block-button__link {
        width: auto !important;
        display: inline-block !important;
        padding: 10px 25px !important;
        font-size: 0.95rem !important;
        text-align: center;
        /* YENİ: Mobilde sabit sarılığı engelle */
        background: transparent !important;
        background-color: transparent !important;
        border: 1px solid var(--gold) !important;
        color: var(--gold) !important;
    }

    .article-body .wp-block-button {
        width: auto !important;
        /* Wrapper da küçülsün */
        margin: 0 !important;
    }

    .article-body .wp-block-buttons {
        display: flex !important;
        flex-direction: row !important;
        /* Yan yana zorla */
        flex-wrap: nowrap !important;
        /* Asla alt satıra inme */
        justify-content: center !important;
        gap: 15px;
        width: 100% !important;
    }

    /* FAQ Sayfası Pagination Mobili */
    .sss-pagination-controls {
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 15px !important;
    }

    /* Önceki / Sonraki Butonları */
    .sss-nav-btn {
        order: 1;
        width: 45% !important;
        padding: 10px 5px !important;
        /* Padding küçültüldü */
        font-size: 0.85rem !important;
        /* Flex Centering FIX */
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 8px;
        /* İkon ve yazı arası */
    }

    /* Sayfa Numarası */
    #pageIndicator {
        order: 2;
        width: 100%;
        text-align: center;
        margin-top: 5px;
        font-size: 0.9rem !important;
    }
}

/* --- FAQ Aralığı Düzeltmesi --- */
.sss-page-view>.wp-block-details:last-child {
    margin-bottom: 0 !important;
    /* Son bloğun alt boşluğunu sıfırla */
}

/* YENİ: Mobilde "Bize Ulaşın" butonu hala sarıysa zorla temizle - KALDIRILDI (Sticky Hover Çözüldü) */
@media (max-width: 768px) {
    /* Eski kod kaldırıldı */
}