@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Inter:wght@300;400;500;600&display=swap');


/* ==========================================
   GENEL YAPI VE STICKY FOOTER DÜZELTMESİ
========================================== */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    /* Sayfa yüksekliği en az ekranın %100'ü kadar olsun */
    margin: 0;
}

/* header.php'de açtığımız ana içerik kapsayıcısı */
.site-main {
    flex-grow: 1;
    /* İçerik kısa olsa bile aradaki tüm boşluğu esneyerek doldur ve Footer'ı en alta it */
}

:root {
    /* Ana Renkler */
    --primary-color: #0f172a;
    --accent-color: #1abc9c;
    --accent-light: rgba(26, 188, 156, 0.1);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Tema Değişkenleri (Light Mode - Varsayılan) */
    --bg-body: #ffffff;
    --bg-card: #ffffff;
    --bg-secondary: #f8fafc;
    --text-main: #334155;
    --text-heading: #0f172a;
    --text-muted: #64748b;
    --border-color: rgba(0, 0, 0, 0.05);
    --nav-bg: rgba(255, 255, 255, 0.85);
    --nav-text: #2f2f30;
    --footer-bg: #0a0f1c;
    --footer-text: #e2e8f0;
    --footer-muted: #94a3b8;
    --card-shadow: 0 10px 30px -10px rgba(47, 47, 48, 0.08);

    /* Legacy Variable Mappings (Theme Aware) */
    --color-primary: #008080;
    --color-dark: #2F2F30;
    --color-accent: #1ABC9C;
    --color-gray: #7F8C8D;
    --color-light: var(--bg-secondary);
    --color-white: var(--bg-card);
    --shadow-soft: 0 10px 30px -10px rgba(47, 47, 48, 0.08);
    --shadow-hover: 0 20px 40px -10px rgba(0, 128, 128, 0.15);
    --border-thin: 1px solid var(--border-color);

    --c-primary: #008080;
    --c-dark: #2f2f30;
    --c-accent: #1abc9c;
    --c-gray-light: var(--bg-secondary);
    --c-gray: var(--text-muted);
    --c-border: var(--border-color);
    --shadow-form: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Nav & Swiper Theme */
    --nav-accent: #1abc9c;
    --nav-accent-dark: #008080;
    --nav-accent-light: rgba(26, 188, 156, 0.1);
    --swiper-theme-color: #1abc9c;
}

/* Dark Mode Teması */
.dark-theme {
    --bg-body: #0a0f1c;
    --bg-card: #151d2f;
    --bg-secondary: #0f172a;
    --text-main: #cbd5e1;
    --text-heading: #ffffff;
    --text-muted: #94a3b8;
    --border-color: rgba(255, 255, 255, 0.1);
    --nav-bg: rgba(10, 15, 28, 0.85);
    --nav-text: #f8fafc;
    --card-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);

    --shadow-form: 0 20px 40px -10px rgba(0, 0, 0, 0.3);

    /* Nav & Swiper Theme Overrides */
    --nav-accent-light: rgba(26, 188, 156, 0.15);

    /* Additional Legacy Overrides for Titles */
    --color-primary: #1abc9c;
    /* Dark mode'da teal başlıklar daha iyi okunur */
    --c-primary: #1abc9c;
    --color-dark: #f8fafc;
}

/* GLOBAL DARK THEME READABILITY FIX */
.dark-theme h1,
.dark-theme h2,
.dark-theme h3,
.dark-theme h4,
.dark-theme h5,
.dark-theme h6,
.dark-theme .service-card-home h3,
.dark-theme .article-title,
.dark-theme .article-title a {
    color: var(--text-heading) !important;
}

.dark-theme .section-header h2 {
    color: var(--text-heading) !important;
}

.dark-theme .article-excerpt,
.dark-theme .service-card-home p,
.dark-theme .footer-about-text,
.dark-theme .info-text p {
    color: var(--text-muted) !important;
}

/* OKUMA MODU OPTİMİZASYONU (Legal Articles) */
.dark-theme .prose {
    font-size: 1.15rem;
    line-height: 1.8;
    letter-spacing: 0.01em;
}

.dark-theme .article-hero-overlay {
    background: linear-gradient(to bottom, rgba(10, 15, 28, 0.3) 0%, rgba(10, 15, 28, 0.9) 100%);
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    background-color: var(--bg-body);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-heading);
    transition: color 0.3s ease;
}

/* --- HEADER & NAVİGASYON --- */
/* Renk Paleti (Önceki konseptle uyumlu) */
/* Legacy Nav Accent Moved to Global Root */

/* 1. GLASSMORPHISM HEADER (Sabit ve Şeffaf) */
.glass-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: var(--nav-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    /* Safari Desteği */
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 20px -5px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

/* --- THEME TOGGLE BUTTON --- */
.theme-toggle {
    background: var(--nav-accent-light);
    border: none;
    color: var(--nav-text);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    margin-left: 1.5rem;
    position: relative;
    border: 1px solid var(--border-color);
}

.theme-toggle:hover {
    background: var(--nav-accent);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 188, 156, 0.2);
}

.dark-theme-icon {
    display: none;
}

.dark-theme .light-theme-icon {
    display: none;
}

.dark-theme .dark-theme-icon {
    display: block;
}

@media (max-width: 991px) {
    .theme-toggle {
        margin-left: auto;
        margin-right: 1.5rem;
        width: 42px;
        height: 42px;
    }
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Dinamik Logo */
.nav-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 51;
    /* Mobil menü açıldığında logonun üstte kalması için */
}

.nav-brand img {
    max-height: 65px;
    width: auto;
    transition: transform 0.3s ease;
}

.nav-brand:hover img {
    transform: scale(1.05);
}

.nav-brand span {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--nav-text);
    letter-spacing: -0.5px;
}

.nav-brand span strong {
    color: var(--nav-accent-dark);
}

/* 2. MASAÜSTÜ MENÜ VE MİKRO ETKİLEŞİMLER */
.nav-desktop {
    display: none;
}

@media (min-width: 992px) {
    .nav-desktop {
        display: flex;
        align-items: center;
        gap: 2.5rem;
    }
}

.nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--nav-text);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--nav-accent-dark);
}

/* Animated Underline (Merkezden dışa doğru genişleyen çizgi) */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--nav-accent);
    border-radius: 2px;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1), left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover::after {
    width: 100%;
    left: 0;
}

/* CTA Butonu */
.nav-cta {
    background-color: var(--nav-accent);
    color: #ffffff !important;
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 188, 156, 0.3);
    border: 2px solid transparent;
}

.nav-cta:hover {
    background-color: var(--nav-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 128, 128, 0.4);
}

/* 3. MOBİL MENÜ (Off-Canvas Animasyonlu) */
.mobile-toggle {
    display: block;
    background: transparent;
    border: none;
    color: var(--nav-text);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 52;
    /* En üstte */
    padding: 0.5rem;
    transition: color 0.3s ease;
}

@media (min-width: 992px) {
    .mobile-toggle {
        display: none;
    }
}

/* Arka Plan Karartması (Overlay) */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(10, 15, 28, 0.6);
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 48;
}

.mobile-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* Sağdan Kayan Menü Paneli */
.mobile-nav-panel {
    position: fixed;
    top: 0;
    right: -100%;
    /* Ekran dışında başlar */
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    background-color: var(--bg-card);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    z-index: 50;
    padding: 6rem 2rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    /* Yumuşak giriş */
    overflow-y: auto;
}

.mobile-nav-panel.active {
    right: 0;
    /* Ekrana girer */
}

.mobile-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-link {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--nav-text);
    text-decoration: none;
    display: block;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.mobile-link:hover {
    color: var(--nav-accent);
    border-color: var(--nav-accent);
}

/* Mobil Dropdown Menü Stilleri */
.mobile-menu-item-parent {
    position: relative;
}

.mobile-dropdown-toggle {
    background: none;
    border: none;
    padding: 0;
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--nav-text);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.mobile-dropdown-toggle:active {
    color: var(--nav-accent);
}

.mobile-dropdown-toggle i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.mobile-dropdown-toggle i.rotated {
    transform: rotate(180deg);
}

.mobile-submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(26, 188, 156, 0.05);
    border-left: 3px solid var(--nav-accent);
    margin-left: 1rem;
    padding-left: 1.5rem;
    margin-top: 0.5rem;
}

.mobile-submenu.active {
    max-height: 1000px;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.mobile-submenu-link {
    display: block;
    padding: 0.75rem 0;
    color: var(--nav-text);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border-left: 2px solid transparent;
    padding-left: 0.5rem;
}

.mobile-submenu-link:hover {
    color: var(--nav-accent);
    border-left-color: var(--nav-accent);
    padding-left: 1rem;
}

.mobile-cta {
    margin-top: 2rem;
    text-align: center;
    display: block;
}

/* --- FOOTER TASARIMI --- */
.site-footer {
    background-color: #0a0f1c;
    /* Daha derin, premium bir koyu lacivert */
    color: #e2e8f0;
    padding: 6rem 2rem 2rem 2rem;
    margin-top: 0;
    /* Boşlukları iç padding ile yönetiyoruz */
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bg-overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    max-width: 1582px;
    height: 841px;
    background-image: url('../images/objects/footer-network-hq.webp');
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: contain;
    /* Orijinal boyutta sığdır */
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
    filter: hue-rotate(180deg) brightness(1.2);
    transform-origin: bottom right;
    animation: footerCornerPulse 20s infinite ease-in-out;
}

@keyframes footerCornerPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.15;
    }

    50% {
        transform: scale(1.08);
        opacity: 0.25;
    }
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.footer-col h4 {
    color: #ffffff;
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-col p {
    font-size: 0.95rem;
    color: #cbd5e1;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
}

.footer-contact-info i {
    color: var(--accent-color);
    width: 25px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    color: #94a3b8;
    position: relative;
    z-index: 2;
}


/* İndex.php */
/* * YENİ RENK PALETİ
     * Ana Renk: Koyu Teal (#008080) & Antrasit Gri (#2F2F30)
     * Yardımcı: Fildişi (#F8F9FA) & Temiz Beyaz (#FFFFFF)
     * Vurgu: Canlı Turkuaz (#1ABC9C) & Sıcak Gri (#7F8C8D)
     */
/* Legacy Mappings Moved to Global Root */

/* Bol Beyaz Alan (Whitespace) Yönetimi */
.section-py {
    padding: 9rem 2rem;
}

@media (max-width: 768px) {
    .section-py {
        padding: 6rem 1.5rem;
    }
}

.max-w-1200 {
    max-width: 1200px;
    margin: 0 auto;
}

/* Modern Rozetler (Pills) */
.badge-modern {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(26, 188, 156, 0.1);
    color: var(--color-primary);
    border: 1px solid rgba(26, 188, 156, 0.2);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.title-modern {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    color: var(--color-dark);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

/* ==========================================
   HOME HERO SWİPER SLIDER STİLLERİ
========================================== */
@media (max-width: 768px) {
    .home-hero {
        /* Mobil tarayıcı çubuğu sıçramalarını önlemek için dinamik yükseklik */
        height: 80vh;
        min-height: 540px;
        max-height: 700px;
    }


    /* Arka plan karartmasını mobil cihazlarda (metin okunabilirliği için) artırıyoruz */
    .home-hero .hero-overlay {
        background: linear-gradient(to bottom,
                rgba(10, 15, 28, 0.85) 0%,
                rgba(0, 128, 128, 0.75) 100%);
    }

    .home-hero .hero-content {
        position: relative;
        z-index: 2;
        color: #ffffff;
        max-width: 1200px;
        width: 100%;
        margin: 0 auto;
        padding: 0 2rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        /* Dikeyde ortalar */
        align-items: center;
        /* Yatayda blokları ortalar */
        text-align: center;
        /* Metinleri kendi içinde ortalar */
        height: 100%;
    }

    /* Rozet (Badge) mobil boyutu */
    .hero-badge {
        padding: 0.35rem 1rem;
        font-size: 0.7rem;
        margin-bottom: 1rem;
    }

    .home-hero .hero-title {
        font-family: 'Playfair Display', serif;
        font-size: clamp(2.4rem, 5.5vw, 4.2rem);
        font-weight: 800;
        line-height: 1.15;
        letter-spacing: -1px;
        color: #ffffff;
        margin-bottom: 1.5rem;
        max-width: 850px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Açıklama metni: Okunabilirlik için satır aralığı ve boyut ayarı */
    .home-hero .hero-text {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
        max-width: 100%;
        color: rgba(255, 255, 255, 0.9);
    }

    /* Butonlar: Mobil için daha belirgin ve kolay tıklanabilir */
    .hero-actions {
        justify-content: center;
        gap: 0.8rem;
    }

    .btn-primary-solid {
        padding: 0.85rem 1.8rem;
        font-size: 0.9rem;
        width: auto;
        /* İstenirse %100 yapılabilir */
    }

    /* Ok butonlarını gizle (Mobil deneyimde kaydırma -swipe- esastır) */
    .home-hero .swiper-button-next,
    .home-hero .swiper-button-prev {
        display: none !important;
    }

    /* Sayfalama (Noktalar) pozisyonu */
    .home-hero .swiper-pagination {
        bottom: 20px !important;
    }
}

/* Dolu CTA Buton */
.btn-primary-solid {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2.4rem;
    background: #1ABC9C;
    color: #ffffff !important;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.3px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 28px rgba(26, 188, 156, 0.38);
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-primary-solid:hover {
    background: #008080;
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(0, 128, 128, 0.42);
    color: #ffffff !important;
}

/* Swiper Ok Butonları */
.home-hero .swiper-button-next,
.home-hero .swiper-button-prev {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.home-hero .swiper-button-next:after,
.home-hero .swiper-button-prev:after {
    font-size: 1rem;
    font-weight: 900;
}

.home-hero .swiper-button-next:hover,
.home-hero .swiper-button-prev:hover {
    background: #1ABC9C;
    border-color: #1ABC9C;
    transform: scale(1.08);
}

/* Swiper Pagination Noktaları */
.home-hero .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.35s ease;
}

.home-hero .swiper-pagination-bullet-active {
    background: #1ABC9C;
    transform: scale(1.4);
}

/* Slide geçişinde fade-up animasyonu */
@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .home-hero {
        height: 85vh;
        min-height: 500px;
    }

    .home-hero .hero-content {
        text-align: center;
        padding: 0 1.5rem;
    }

    .home-hero .hero-title {
        max-width: 100%;
    }

    .home-hero .hero-text {
        font-size: clamp(1rem, 2vw, 1.2rem);
        color: rgba(255, 255, 255, 0.82);
        line-height: 1.75;
        margin-bottom: 2.5rem;
        font-weight: 300;
        max-width: 650px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .home-hero .swiper-button-next,
    .home-hero .swiper-button-prev {
        display: none;
    }
}

/* ==========================================
   HOME SECTIONS (İç Bölümler)
========================================== */
.home-section {
    padding: 6rem 0;
}

.home-section.bg-light {
    background-color: var(--bg-secondary);
}

.container-standard {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--text-heading);
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

.heading-divider {
    width: 50px;
    height: 3px;
    background: #1ABC9C;
    border-radius: 3px;
    margin: 0.8rem auto 1.2rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Hizmetler Grid */
.services-grid-home {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

.service-card-home {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    background: var(--bg-card);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(127, 140, 141, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    color: inherit;
}

.service-card-home:hover {
    transform: translateY(-8px);
    border-color: #1ABC9C;
    box-shadow: 0 20px 40px rgba(0, 128, 128, 0.12);
}

.service-card-home .service-icon {
    width: 58px;
    height: 58px;
    background: rgba(26, 188, 156, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #008080;
    margin-bottom: 1.5rem;
    transition: all 0.35s ease;
}

.service-card-home:hover .service-icon {
    background: #1ABC9C;
    color: #ffffff;
}

.service-card-home h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 0.8rem;
}

.service-card-home p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.65;
    flex-grow: 1;
}

.service-link-text {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1.5rem;
    color: #008080;
    font-weight: 600;
    font-size: 0.9rem;
    transition: gap 0.3s ease;
}

.service-card-home:hover .service-link-text {
    gap: 0.8rem;
}

/* Genel Aksiyon Butonları */
.center-action {
    text-align: center;
    margin-top: 3rem;
}

.btn-primary-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2.2rem;
    border: 2px solid #008080;
    border-radius: 50px;
    color: #008080;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary-outline:hover {
    background: #008080;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 128, 128, 0.25);
}

.mt-4 {
    margin-top: 2rem;
}

.mt-5 {
    margin-top: 3rem;
}

/* 1. HERO SECTION (Antrasit ve Teal Geçişli) */
.hero-modern {
    position: relative;
    min-height: 95vh;
    display: flex;
    align-items: center;
    background: linear-gradient(to right, rgba(47, 47, 48, 0.95), rgba(0, 128, 128, 0.85)), url('assets/images/hero-bg.jpg') center/cover no-repeat fixed;
    color: var(--color-white);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-title-main {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title-main span {
    color: var(--color-accent);
    /* Turkuaz Vurgu */
}

.hero-text {
    font-size: 1.25rem;
    color: var(--color-light);
    margin-bottom: 3rem;
    line-height: 1.8;
    font-weight: 300;
}

/* Turkuaz Renkli Modern Buton */
.btn-accent {
    background: var(--color-accent);
    color: var(--color-white);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(26, 188, 156, 0.3);
    border: 1px solid transparent;
}

.btn-accent:hover {
    transform: translateY(-3px);
    background: var(--color-primary);
    box-shadow: 0 15px 30px rgba(0, 128, 128, 0.4);
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.1);
}

/* İnce Çizgili İkincil Buton */
.btn-outline {
    background: transparent;
    color: var(--color-white);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
    background: var(--color-white);
    color: var(--color-primary);
}

/* 2. HAKKIMIZDA (İnce çizgiler ve ferah alan) */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-img-wrapper {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.about-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.7s ease;
}

.about-img-wrapper:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--color-white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-hover);
    text-align: center;
    border: var(--border-thin);
    border-left: 5px solid var(--color-accent);
}

.experience-badge h3 {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin: 0;
    line-height: 1;
}

.experience-badge p {
    color: var(--color-gray);
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .experience-badge {
        right: 20px;
        bottom: 20px;
    }
}

/* 3. NEDEN BİZ (Sade Kartlar) */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.feature-card {
    background: var(--color-white);
    padding: 3rem 2.5rem;
    border-radius: 1rem;
    transition: all 0.4s ease;
    border: var(--border-thin);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--color-accent);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--color-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    border: var(--border-thin);
}

.feature-card:hover .feature-icon {
    background: var(--color-accent);
    color: var(--color-white);
    border-color: var(--color-accent);
}

/* 5. EKİBİMİZ - GÜNCEL */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.team-card {
    border-radius: 1rem;
    overflow: hidden;
    background: var(--color-white);
    border: var(--border-thin);
    transition: all 0.4s ease;
    display: flex;
    /* İçeriğin dikeyde hizalanması için */
    flex-direction: column;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--color-accent);
}

.team-img-box {
    position: relative;
    overflow: hidden;
    /* aspect-ratio: 3/4;  <-- Bu kalsın, ancak height ile çakışmaması için height'ı auto yapıyoruz */
    aspect-ratio: 1 / 1;
    /* Kare isterseniz 1/1, dikey isterseniz 3/4 yapın */
    width: 100%;
}

.team-img-box img {
    /* Genişlik ve yüksekliği %100 yaparak kutuyu tam doldurmasını sağlıyoruz */
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Fotoğrafın oranını bozmadan alanı doldurur */
    object-position: top center;
    /* Avukat fotoğraflarında yüzü odaklamak için 'top' daha iyidir */
    transition: transform 0.5s ease;
    filter: grayscale(20%);
}

.team-card:hover .team-img-box img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.team-info {
    padding: 2rem;
    text-align: center;
    background: var(--color-white);
    flex-grow: 1;
    /* Alt kısımların eşit boyda kalmasını sağlar */
}

/* 6. BLOG & CTA */
.blog-img-box {
    height: 260px;
    overflow: hidden;
    border-radius: 1rem 1rem 0 0;
}

.blog-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card-mod {
    background: var(--color-white);
    border-radius: 1rem;
    border: var(--border-thin);
    transition: all 0.4s ease;
}

.blog-card-mod:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.blog-card-mod:hover .blog-img-box img {
    transform: scale(1.05);
}

.cta-section {
    background: var(--color-primary);
    border-radius: 1rem;
    padding: 6rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 5rem 0;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: var(--color-accent);
    filter: blur(100px);
    opacity: 0.3;
    border-radius: 50%;
}

.cta-section::before {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: var(--color-dark);
    filter: blur(80px);
    opacity: 0.5;
    border-radius: 50%;
}

/* ==========================================
   DİL SEÇİCİ (LANGUAGE SWITCHER) STİLLERİ
========================================== */
.lang-switcher-wrapper {
    position: relative;
    display: inline-block;
}

/* Ana Tetikleyici Buton */
.lang-switcher-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-white);
    border: 1px solid rgba(127, 140, 141, 0.3);
    /* İnce sınır çizgisi */
    padding: 0.55rem 1.2rem;
    border-radius: 50px;
    color: var(--color-dark);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.lang-switcher-btn:hover,
.lang-switcher-btn.is-active {
    background-color: var(--color-light);
    border-color: var(--color-accent);
    /* Turkuaz Vurgu */
    box-shadow: var(--shadow-soft);
    outline: none;
}

.lang-switcher-btn .fi {
    font-size: 1.2rem;
    margin-right: 0.5rem;
    border-radius: 2px;
}

.lang-switcher-btn .lang-code {
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lang-switcher-chevron {
    margin-left: 0.5rem;
    font-size: 0.75rem;
    color: var(--color-gray);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Menü açıldığında oku yukarı döndür ve rengini turkuaz yap */
.lang-switcher-btn.is-active .lang-switcher-chevron {
    transform: rotate(180deg);
    color: var(--color-accent);
}

/* Açılır Menü (Dropdown) Kapsayıcısı */
.lang-dropdown {
    position: absolute;
    right: 0;
    top: 130%;
    /* Butonun biraz altında başlar */
    width: 170px;
    background-color: var(--bg-card);
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    padding: 0.5rem 0;
    z-index: 100;

    /* Modern Animasyon Başlangıç Değerleri (Görünmez, hafif aşağıda ve küçük) */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Javascript tetiklendiğinde eklenecek "Açık" durumu */
.lang-dropdown.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Açılır Menü İçindeki Linkler */
.lang-dropdown-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.2rem;
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.lang-dropdown-item:hover {
    background-color: var(--bg-secondary);
    color: var(--accent-color);
    /* Üzerine gelince Turkuaz */
}

.lang-dropdown-item .fi {
    font-size: 1.1rem;
    margin-right: 0.8rem;
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Seçili dilde beliren "Tık" ikonu */
.lang-dropdown-item .check-icon {
    margin-left: auto;
    color: var(--color-accent);
    /* Turkuaz onay işareti */
    font-size: 0.85rem;
}

/* ==========================================
       İLETİŞİM SAYFASI ÖZEL (SAF CSS) STİLLERİ
    ========================================== */
/* Legacy Mappings Moved to Global Root */

.contact-section {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-header h1 {
    font-size: 2.8rem;
    color: var(--c-dark);
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.contact-header p {
    color: var(--c-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* CSS Grid ile İki Sütunlu Tasarım */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    background: var(--bg-card);
    border-radius: 24px;
    box-shadow: var(--shadow-form);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* SOL SÜTUN: Form Alanı */
.contact-form-wrapper {
    padding: 4rem;
    background: var(--bg-card);
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--c-light);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

/* Premium Input Tasarımı */
.form-control {
    width: 100%;
    padding: 1rem 1.2rem;
    font-size: 1rem;
    color: var(--c-dark);
    background-color: var(--c-gray-light);
    border: 1px solid var(--c-border);
    border-radius: 12px;
    font-family: inherit;
    transition: var(--transition);
    box-sizing: border-box;
}

/* Hover ve Focus (Odaklanma) Mikro Etkileşimleri */
.form-control:hover {
    border-color: #cbd5e1;
}

.form-control:focus {
    outline: none;
    background-color: #ffffff;
    border-color: var(--c-accent);
    box-shadow: 0 0 0 4px rgba(26, 188, 156, 0.15);
    /* Turkuaz parlama efekti */
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

/* Modern Buton */
.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1.2rem;
    background-color: var(--c-accent);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 20px -5px rgba(26, 188, 156, 0.4);
}

.btn-submit:hover {
    background-color: var(--c-primary);
    transform: translateY(-2px);
    box-shadow: 0 15px 25px -5px rgba(0, 128, 128, 0.4);
}

/* Uyarı Mesajları */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.alert-success {
    background-color: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.alert-error {
    background-color: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* SAĞ SÜTUN: Bilgiler ve Harita */
.contact-info-wrapper {
    background-color: var(--c-gray-light);
    display: flex;
    flex-direction: column;
    border-left: 1px solid var(--c-border);
}

.info-content {
    padding: 4rem;
}

.info-content h3 {
    font-size: 1.8rem;
    color: var(--c-dark);
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: var(--bg-card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-accent);
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

.info-text h4 {
    margin: 0 0 0.5rem 0;
    color: var(--c-dark);
    font-size: 1.1rem;
}

.info-text p,
.info-text a {
    margin: 0;
    color: var(--c-gray);
    line-height: 1.6;
    text-decoration: none;
    transition: var(--transition);
}

.info-text a:hover {
    color: var(--c-accent);
}

/* Google Maps iFrame */
.map-container {
    flex-grow: 1;
    min-height: 300px;
    width: 100%;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    filter: grayscale(20%);
    transition: var(--transition);
}

.map-container iframe:hover {
    filter: grayscale(0%);
}

@media (max-width: 768px) {

    .contact-form-wrapper,
    .info-content {
        padding: 2.5rem 1.5rem;
    }
}

/* Yüzen Buton Temel İskeleti */
.fab-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #ffffff !important;
    text-decoration: none;
    padding: 15px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    overflow: hidden;
    max-width: 60px;
    /* Başlangıçta sadece ikon görünür */
    white-space: nowrap;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fabPulse 2.5s infinite;
}

/* Hover (Üzerine Gelme) Durumu */
.fab-whatsapp:hover {
    max-width: 250px;
    /* Metnin sığacağı kadar genişler */
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
    transform: translateY(-5px);
    animation: none;
}

.fab-whatsapp i {
    font-size: 30px;
    line-height: 1;
    flex-shrink: 0;
}

/* Metin Ayarları */
.fab-text {
    font-weight: 600;
    font-size: 16px;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.fab-whatsapp:hover .fab-text {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.1s;
}

/* Pulse (Nefes Alma) Animasyonu */
@keyframes fabPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Mobil Optimizasyon */
@media (max-width: 768px) {
    .fab-whatsapp {
        bottom: 20px;
        right: 20px;
        padding: 12px;
        max-width: 54px;
    }

    .fab-whatsapp i {
        font-size: 28px;
    }

    .fab-whatsapp:hover {
        max-width: 54px;
        transform: translateY(-2px);
    }

    .fab-text {
        display: none;
    }
}



/* Legacy Mappings Moved to Global Root */

/* Hero (Başlık) Alanı */
.detail-hero {
    background: linear-gradient(135deg, var(--c-dark) 0%, var(--c-primary) 100%);
    padding: 6rem 2rem;
    text-align: center;
    color: #ffffff;
}

.detail-hero-icon {
    font-size: 3.5rem;
    color: var(--c-accent);
    margin-bottom: 1.5rem;
}

.detail-hero h1 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

/* Ana Kapsayıcı ve İki Sütunlu Grid */
.detail-container {
    max-width: 1200px;
    margin: -3rem auto 5rem auto;
    /* Hero'nun üzerine hafifçe biner */
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    position: relative;
    z-index: 10;
}

/* Sol Sütun: Okuma Alanı (Article) */
.detail-content-wrapper {
    background: #ffffff;
    border-radius: 16px;
    padding: 4rem;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--c-border);
}

/* Modern Tipografi (Medium.com Stili) */
.prose {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--c-dark);
}

.prose h2,
.prose h3 {
    color: var(--c-primary);
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.prose p {
    margin-bottom: 1.5rem;
}

.prose ul,
.prose ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    color: var(--c-gray);
}

.prose li {
    margin-bottom: 0.5rem;
}

/* Sağ Sütun: Sticky Sidebar (Yan Panel) */
.detail-sidebar {
    position: sticky;
    top: 100px;
    /* Ekran kaydırıldığında yukarıdan bırakılacak boşluk */
    align-self: start;
    /* Sticky için şarttır */
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Sidebar Araçları (Widget) */
.sidebar-widget {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--c-border);
}

.sidebar-widget-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--c-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--c-gray-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* İlgili Hizmetler Listesi */
.related-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.related-list li {
    margin-bottom: 1rem;
}

.related-list li:last-child {
    margin-bottom: 0;
}

.related-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--c-gray);
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem;
    border-radius: 8px;
}

.related-link:hover {
    background: var(--c-gray-light);
    color: var(--c-accent);
    transform: translateX(5px);
}

/* İletişim CTA Kutusu */
.cta-widget {
    background: linear-gradient(135deg, var(--c-primary), var(--c-dark));
    color: #fff;
    text-align: center;
}

.cta-widget h3 {
    color: #fff;
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.cta-widget p {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.btn-widget {
    display: block;
    /* inline-block yerine block kullanmalısın */
    width: fit-content;
    /* İçeriği kadar yer kaplar */
    margin: 0 auto;
    /* Üst-alt 0, sağ-sol otomatik (ortalar) */
    padding: 1rem 2rem;
    /* Yanlara biraz daha boşluk eklemek şık durur */
    background: var(--c-accent);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(26, 188, 156, 0.3);
    text-align: center;
}

.btn-widget:hover {
    background: #fff;
    color: var(--c-primary);
    transform: translateY(-2px);
}

/* Responsive Tasarım */
@media (max-width: 992px) {
    .detail-container {
        grid-template-columns: 1fr;
        margin-top: -2rem;
    }

    .detail-content-wrapper {
        padding: 2.5rem 1.5rem;
    }

    .detail-sidebar {
        position: static;
    }

    /* Mobilde sticky'i kapat */
}

/* ==========================================
   TİNYMCE İÇERİĞİ İÇİN MOBİL KORUMA KALKANI
========================================== */

/* 1. Görsellerin ve Videoların Ekrandan Taşmasını Kesin Olarak Engelle */
.prose img,
.prose iframe,
.prose video {
    max-width: 100% !important;
    height: auto !important;
    display: block;
    border-radius: 8px;
    /* Resimlere şık bir ovallik katar */
    margin: 1.5rem 0;
}

/* 2. Uzun Linklerin ve Kelimelerin Ekranı Yırtmasını Engelle */
.prose {
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
}

/* 3. Tabloların Mobilde Sağa-Sola Kaydırılabilir (Scrollable) Olmasını Sağla */
.prose table {
    display: block;
    width: 100% !important;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-collapse: collapse;
}

/* 4. Küçük Telefonlar (Mobil) İçin Ekstra Boşluk Daraltması */
@media (max-width: 768px) {
    .detail-hero {
        padding: 4rem 1rem;
        /* Mobilde üst boşluğu biraz azalt */
    }

    .detail-hero h1 {
        font-size: 2rem;
        /* Başlığı mobilde çok devasa olmaktan kurtar */
    }

    .detail-container {
        padding: 0 1rem;
        /* Konteynerin sağ-sol boşluğunu daralt */
        margin-top: -2rem;
        gap: 2rem;
    }

    .detail-content-wrapper {
        padding: 1.5rem;
        /* Makale içi beyaz kutunun boşluğunu daralt */
    }
}

/* ==========================================
   EKİBİMİZ (TEAM) SAYFASI STİLLERİ
========================================== */

/* --- Sayfa Üst Başlık (Hero) Alanı --- */
.team-page-header {
    text-align: center;
    padding: 6rem 2rem 3rem;
    background-color: var(--c-gray-light, #F8F9FA);
    border-bottom: 1px solid var(--c-border, #E2E8F0);
}

.team-page-header h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--c-dark, #2F2F30);
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.team-page-header p {
    color: var(--c-gray, #7F8C8D);
    font-size: 1.15rem;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

.team-grid-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

/* --- 1. Kompakt ve Ortalı Izgara (Grid) --- */
.team-grid {
    display: grid;
    /* Kartların maksimum 260px genişliğinde, zarif kalmasını sağlar */
    grid-template-columns: repeat(auto-fit, minmax(220px, 260px));
    gap: 2.5rem;
    justify-content: center;
    /* Kartları sayfanın ortasına hizala */
}

/* --- 2. Zarif Ekip Kartı İskeleti --- */
.team-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--c-border, #E2E8F0);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
    transition: var(--transition, all 0.4s cubic-bezier(0.4, 0, 0.2, 1));
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(0, 128, 128, 0.15);
    /* Teal Gölge */
    border-color: var(--c-accent, #1ABC9C);
}

/* --- 3. Fotoğraf Alanı ve Siyah-Beyaz Efekti --- */
.team-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    /* Dikey portre formatı */
    overflow: hidden;
    background-color: var(--c-gray-light, #F8F9FA);
}

.team-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    /* Başlangıçta Siyah Beyaz */
    transition: transform 0.6s ease, filter 0.6s ease;
}

.team-card:hover .team-img-wrapper img {
    transform: scale(1.05);
    /* Yakınlaşır */
    filter: grayscale(0%);
    /* Renklenir */
}

/* --- 4. Hover Durumunda Alttan Çıkan Sosyal İkonlar --- */
.team-social-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    /* Genişliği garantilemek için eklendi */
    width: 100%;
    /* Padding'i 1.5rem 0 yaparak yanlardaki olası kaymayı sıfırlıyoruz */
    padding: 1.5rem 0;
    background: linear-gradient(to top, rgba(10, 15, 28, 0.8), transparent);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    /* TranslateX ekleyerek yatayda kayma olup olmadığını kontrol edin, 0 olmalı */
    transform: translateY(20px);
    transition: var(--transition, all 0.4s cubic-bezier(0.4, 0, 0.2, 1));
    /* Kutunun içe doğru hesaplanmasını sağlar */
    box-sizing: border-box;
}

.team-card:hover .team-social-overlay {
    opacity: 1;
}

.social-icon-btn {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: var(--transition, all 0.4s cubic-bezier(0.4, 0, 0.2, 1));
}

.social-icon-btn:hover {
    background: var(--c-accent, #1ABC9C);
    transform: translateY(-3px);
}

/* --- 5. Kimlik Bilgileri (Kompakt Kutuya Göre Optimize Edildi) --- */
.team-info {
    padding: 1.5rem;
    /* İç boşluğu kartla uyumlu hale getirdik */
    text-align: center;
    border-top: 3px solid var(--c-primary, #008080);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.team-name {
    font-size: 1.2rem;
    /* Başlık boyutu kibarlaştırıldı */
    color: var(--c-dark, #2F2F30);
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.team-title {
    color: var(--c-accent, #1ABC9C);
    font-weight: 600;
    font-size: 0.85rem;
    /* Unvan boyutu kibarlaştırıldı */
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.team-desc {
    color: var(--c-gray, #7F8C8D);
    font-size: 0.9rem;
    /* Metin boyutu kibarlaştırıldı */
    line-height: 1.5;
    margin-top: auto;
}

/* ==========================================
   PREMIUM MİNİMALİST HUKUKİ YAYINLAR STİLLERİ - MODERNİZE EDİLMİŞ
========================================== */

.premium-page-wrapper {
    background: var(--bg-body);
    color: var(--text-main);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    min-height: 100vh;
    padding-bottom: 6rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.dark-theme .premium-page-wrapper {
    background: var(--bg-body) !important;
    color: var(--text-main) !important;
}

/* Modern Hero Section */
.services-modern-page {
    position: relative;
    overflow: hidden;
}

.services-premium-hero {
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: white;
    padding: 8rem 2rem 6rem;
    text-align: center;
    overflow: hidden;
}

.services-premium-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.03"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.02"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.04"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
}

.hero-bg-overlay-services {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(26, 188, 156, 0.1) 0%, rgba(15, 23, 42, 0.8) 100%);
    backdrop-filter: blur(1px);
}

.container-standard {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;

}

.hero-content-inner {
    animation: fadeInUp 1s ease-out;
}

.page-badge-modern {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: rgba(26, 188, 156, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(26, 188, 156, 0.3);
    border-radius: 50px;
    color: #1abc9c;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px rgba(26, 188, 156, 0.1);
}

.hero-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -2px;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    font-weight: 400;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.header-divider-modern {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #1abc9c, #16a085);
    margin: 0 auto;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(26, 188, 156, 0.3);
}

/* Blog Container */
.premium-blog-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem 4rem;
}

.premium-alert {
    text-align: center;
    padding: 3rem 2rem;
    margin-bottom: 4rem;
    border-radius: 16px;
    font-size: 1.125rem;
    font-weight: 500;
}

.premium-alert.error {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    color: #dc2626;
    border: 1px solid rgba(220, 38, 38, 0.2);
}

.premium-alert.info {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    color: #0369a1;
    border: 1px solid rgba(3, 105, 161, 0.2);
}

/* Modern Grid Layout */
.premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

/* Article Cards */
.premium-article {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    position: relative;
}

.premium-article:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(26, 188, 156, 0.2);
}

.premium-article::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1abc9c, #16a085);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.premium-article:hover::before {
    transform: scaleX(1);
}

/* Image Section */
.article-image-link {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--bg-secondary);
}

.article-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.article-image-link:hover .article-image {
    transform: scale(1.08);
}

/* Category Badge */
.article-category {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: #1abc9c;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(26, 188, 156, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

/* Content Section */
.article-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: var(--bg-card);
}

.article-meta {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.meta-dot {
    color: var(--text-muted);
    font-size: 1.2rem;
}

.article-title {
    font-size: 1.375rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--text-heading);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.article-title a {
    color: inherit;
    text-decoration: none;
}

.article-title a:hover {
    color: #1abc9c;
}

.article-excerpt {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.article-read-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #1abc9c;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.article-read-link:hover {
    color: #16a085;
    transform: translateX(4px);
}

.article-read-link .arrow {
    transition: transform 0.3s ease;
}

.article-read-link:hover .arrow {
    transform: translateX(4px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-premium-hero {
        padding: 6rem 1rem 4rem;
    }

    .hero-title {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .premium-blog-container {
        padding: 4rem 1rem 2rem;
    }

    .premium-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .premium-article {
        border-radius: 16px;
    }

    .article-content {
        padding: 1.5rem;
    }

    .article-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .page-badge-modern {
        padding: 0.5rem 1.5rem;
        font-size: 0.8rem;
    }

    .hero-title {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .premium-grid {
        gap: 1.5rem;
    }

    .article-category {
        top: 1rem;
        left: 1rem;
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
    }

    .article-title {
        margin-bottom: 1rem;
    }
}

.article-title a {
    color: var(--text-heading);
    text-decoration: none;
    background-image: linear-gradient(transparent calc(100% - 2px), var(--accent-color) 2px);
    background-repeat: no-repeat;
    background-size: 0% 100%;
    transition: background-size 0.4s ease;
}

.article-title a:hover {
    background-size: 100% 100%;
}

.article-excerpt {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* Buton Yerine Zarif Metin Linki */
.article-read-link {
    display: inline-flex;
    align-items: center;
    color: var(--c-primary, #008080);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
    margin-top: auto;
}

.article-read-link .arrow {
    margin-left: 8px;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.article-read-link:hover {
    color: var(--accent-color);
}

.article-read-link:hover .arrow {
    transform: translateX(5px);
}

/* Uyarılar */
.premium-alert {
    padding: 2rem;
    text-align: center;
    border-radius: 8px;
    font-size: 1.1rem;
}

.premium-alert.error {
    background: rgba(220, 38, 38, 0.1);
    color: #dc2626;
    border: 1px solid rgba(220, 38, 38, 0.2);
}

.premium-alert.info {
    background: var(--bg-secondary);
    color: var(--text-muted);
    border: 1px solid var(--border-color);
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .premium-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .premium-hero {
        padding: 4rem 1.5rem 2rem;
    }
}

/* ==========================================
   DARK MODE: BLOG SAYFA OVERRIDELARı
========================================== */
.dark-theme .premium-article {
    background: var(--bg-card) !important;
    border-color: var(--border-color) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4) !important;
}

.dark-theme .article-content {
    background: var(--bg-card) !important;
}

.dark-theme .article-image-link {
    background: var(--bg-secondary) !important;
}

.dark-theme .article-title,
.dark-theme .article-title a {
    color: var(--text-heading) !important;
}

.dark-theme .article-excerpt {
    color: var(--text-muted) !important;
}

.dark-theme .article-meta,
.dark-theme .meta-dot {
    color: var(--text-muted) !important;
}

.dark-theme .premium-alert.info {
    background: var(--bg-secondary) !important;
    color: var(--text-muted) !important;
    border-color: var(--border-color) !important;
}

.dark-theme .premium-blog-container {
    background: transparent;
}

/* ==========================================
   MAKALE DETAY (BLOG-DETAIL) STİLLERİ
========================================== */

.article-detail-main {
    background-color: var(--bg-body);
    padding-bottom: 6rem;
}

/* --- Dev Kapak Görseli (Hero) --- */
.article-hero {
    position: relative;
    width: 100%;
    height: 60vh;
    /* Ekranın %60'ını kaplar */
    min-height: 400px;
    max-height: 600px;
    display: flex;
    align-items: flex-end;
    /* İçeriği aşağı yaslar */
    justify-content: center;
    overflow: hidden;
}

.article-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.article-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Görselin altından siyah bir degrade (gradient) verir, beyaz yazılar okunur */
    background: linear-gradient(to bottom, rgba(17, 24, 39, 0.1) 0%, rgba(17, 24, 39, 0.9) 100%);
    z-index: 2;
}

.article-hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    width: 100%;
    padding: 0 2rem 4rem;
    text-align: center;
    color: #ffffff;
}

.article-hero-category {
    display: inline-block;
    background: var(--c-accent, #1ABC9C);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.article-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.article-hero-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 1.05rem;
    color: #cbd5e1;
}

/* --- Makale Okuma Alanı (Odak Modu) --- */
.premium-detail-container {
    max-width: 800px;
    /* Okuma kolaylığı için bilerek dar tutuldu */
    margin: 0 auto;
    padding: 4rem 2rem 0;
}

/* İçerik Tipografisi (Prose) */
.article-body {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-main);
}

.article-body p {
    margin-bottom: 1.8rem;
}

.article-body h2 {
    font-size: 2rem;
    font-weight: 800;
    margin: 3rem 0 1.5rem;
    color: #111827;
}

.article-body h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
    color: #111827;
}

.article-body ul,
.article-body ol {
    margin-bottom: 1.8rem;
    padding-left: 1.5rem;
}

.article-body li {
    margin-bottom: 0.5rem;
}

.article-body strong {
    font-weight: 700;
    color: #000;
}

.article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 2rem 0;
}

/* --- Etiketler ve Navigasyon --- */
.article-footer-tags {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.detail-tag-pill {
    display: inline-block;
    background: #f3f4f6;
    color: #4b5563;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    transition: background 0.3s;
}

.detail-tag-pill:hover {
    background: #e5e7eb;
}

.article-navigation {
    margin-top: 3rem;
    text-align: center;
}

.btn-back-blog {
    display: inline-flex;
    align-items: center;
    color: var(--c-primary, #008080);
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: color 0.3s;
}

.btn-back-blog .arrow {
    margin-right: 8px;
    transition: transform 0.3s ease;
}

.btn-back-blog:hover {
    color: var(--c-dark, #111827);
}

.btn-back-blog:hover .arrow {
    transform: translateX(-5px);
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .article-hero {
        height: 50vh;
        min-height: 350px;
    }

    .article-hero-title {
        font-size: 2rem;
    }

    .article-body {
        font-size: 1.05rem;
    }

    .premium-detail-container {
        padding: 3rem 1.5rem 0;
    }
}

/* ==========================================
   ANA SAYFA (INDEX) STİLLERİ
========================================== */

.home-main {
    background-color: var(--bg-body);
}

.home-section {
    padding: 6rem 0;
    background-color: var(--bg-body);
}

.container-standard {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.home-section {
    padding: 6rem 0;
}

.team-section {
    background-color: #eef6ff;
}

.insights-section {
    background-color: #f7f8fb;
}

.dark-theme .team-section {
    background-color: #111b2f73 !important;
}

.dark-theme .insights-section {
    background-color: #111b2f !important;
}

.bg-light {
    background-color: #F8FAFC;
}

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 2rem;
}

.mt-5 {
    margin-top: 3rem;
}

/* --- 1. HERO (KARŞILAMA) ALANI --- */
.home-hero {
    position: relative;
    width: 100%;
    height: 90vh;
    /* Neredeyse tam ekran */
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.9) 0%, rgba(0, 128, 128, 0.7) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    text-align: center;
    color: #ffffff;
    padding: 0 2rem;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #1ABC9C;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-text {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: #E2E8F0;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    justify-content: center;
    /* Yatayda ortalar */
    align-items: center;
    width: 100%;
    padding: 0 15px;
    /* Mobilde kenarlara yapışmasın diye */
    box-sizing: border-box;
}

/* Hero Butonları */
.btn-primary-solid {
    background: var(--c-accent, #1ABC9C);
    color: #ffffff;
    padding: 12px 30px;
    /* Padding'i küçülttük (1rem 2.5rem mobilde çok büyüktür) */
    font-size: 1rem;
    /* Yazı boyutunu hafif küçülttük */
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--c-accent, #1ABC9C);

    display: inline-block;
    /* Butonun paddinglerini doğru algılaması için */
    text-align: center;
    max-width: 100%;
    /* Ekrandan dışarı taşmasını engeller */
    white-space: nowrap;
    /* Yazının alt satıra geçmesini önler */
}

.btn-primary-solid:hover {
    background: var(--c-primary, #008080);
    border-color: var(--c-primary, #008080);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 128, 128, 0.3);
}

.btn-outline-light {
    background: transparent;
    color: #ffffff;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
    background: #ffffff;
    color: var(--c-dark, #111827);
    border-color: #ffffff;
}

/* --- ORTAK BAŞLIK YAPISI --- */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-heading);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

.team-section .section-header h2,
.insights-section .section-header h2,
.dark-theme .team-section .section-header h2,
.dark-theme .insights-section .section-header h2 {
    color: var(--text-heading) !important;
}

.heading-divider {
    width: 50px;
    height: 4px;
    background: var(--c-accent, #1ABC9C);
    margin: 0 auto 1.5rem;
    border-radius: 2px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}


/* İçi Boş Ortalanmış Buton */
.center-action {
    display: flex;
    justify-content: center;
}

.btn-primary-outline {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 2px solid var(--c-primary, #008080);
    color: var(--c-primary, #008080);
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary-outline:hover {
    background: var(--c-primary, #008080);
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(0, 128, 128, 0.2);
}

/* --- 2. UZMANLIK ALANLARIMIZ (Grid & Cards) --- */
.services-grid-home {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
    width: 100%;
    box-sizing: border-box;
}

.service-card-home {
    display: flex !important;
    flex-direction: column !important;
    background: var(--bg-card) !important;
    padding: 3.5rem 2.5rem !important;
    border-radius: 24px !important;
    border: 1px solid var(--border-color) !important;
    text-decoration: none !important;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    position: relative !important;
    overflow: hidden !important;
    height: 100% !important;
    box-sizing: border-box !important;
    float: none !important;
}

/* Dark Mode: Kart arkaplan ve başlık rengi düzeltmesi */
.dark-theme .service-card-home {
    background: var(--bg-card) !important;
    border-color: var(--border-color) !important;
}

.dark-theme .service-card-home h3 {
    color: var(--text-heading) !important;
}

.dark-theme .service-card-home p {
    color: var(--text-muted) !important;
}

/* bg-light section: dark modda doğru arka plan */
.dark-theme .bg-light,
.dark-theme section.bg-light {
    background-color: var(--bg-secondary) !important;
}

@media (max-width: 1100px) {
    .services-grid-home {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .services-grid-home {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
}

.service-card-home:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.1);
    border-color: var(--c-accent, #1ABC9C);
}

/* Kartın içine hafif bir dekoratif daire ekleyelim */
.service-card-home::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(26, 188, 156, 0.05) 0%, transparent 100%);
    border-radius: 50%;
    transition: all 0.5s ease;
}

.service-card-home:hover::before {
    transform: scale(2);
    background: linear-gradient(135deg, rgba(26, 188, 156, 0.1) 0%, transparent 100%);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(26, 188, 156, 0.08);
    color: var(--c-accent, #1ABC9C);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 2;
}

.service-card-home:hover .service-icon {
    background: var(--c-accent, #1ABC9C);
    color: #ffffff;
    transform: rotateY(180deg) scale(1.1);
}

.service-card-home h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    color: var(--text-heading);
    transition: color 0.3s ease;
    position: relative;
    z-index: 2;
}

.service-card-home:hover h3 {
    color: var(--nav-accent);
}

.service-card-home p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

.service-link-text {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--c-accent, #1ABC9C);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.service-card-home:hover .service-link-text {
    gap: 1.2rem;
    color: var(--c-primary, #008080);
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-primary-solid,
    .btn-outline-light {
        width: 100%;
    }

    .home-section {
        padding: 4rem 0;
    }

    .services-grid-home {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    .service-card-home {
        padding: 2.5rem 2rem !important;
    }
}

.services-page-header {
    text-align: center;
    padding: 5rem 2rem;
    background: var(--bg-secondary);
}

.services-page-header h1 {
    font-size: 2.5rem;
    color: var(--text-heading);
    margin-bottom: 1rem;
}

.services-grid-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.service-icon-wrapper {
    font-size: 2.5rem;
    color: #008080;
    margin-bottom: 1.5rem;
}

.service-card-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #0f172a;
}

.service-card-desc {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-card-link {
    font-weight: 700;
    color: #008080;
    text-decoration: none;
}

/* ==========================================
   SERVICE DETAIL MODERN STYLES
========================================== */
.service-detail-modern {
    background-color: var(--bg-body);
    overflow-x: hidden;
}

/* 1. Hero Section - Premium Design */
.detail-hero-section {
    position: relative;
    padding: 10rem 0 8rem;
    background: var(--c-dark, #2F2F30);
    color: #ffffff;
    text-align: center;
    overflow: hidden;
}

.hero-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(47, 47, 48, 0.95) 0%, rgba(0, 128, 128, 0.8) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-badge-modern {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(26, 188, 156, 0.2);
    border: 1px solid rgba(26, 188, 156, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--c-accent, #1ABC9C);
    margin-bottom: 2rem;
}

.hero-icon-box {
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.hero-title-modern {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
    color: #fff;
}

.hero-desc-modern {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
}

.hero-divider-modern {
    width: 60px;
    height: 4px;
    background: var(--c-accent, #1ABC9C);
    margin: 0 auto;
    border-radius: 2px;
}

/* 2. Layout Structure */
.detail-outer-container {
    margin-top: -4rem;
    padding-bottom: 8rem;
    position: relative;
    z-index: 10;
}

.detail-layout-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    align-items: start;
}

/* 3. Content Area */
.content-card-premium {
    background: #ffffff;
    padding: 5rem;
    border-radius: 30px;
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.03);
    margin-bottom: 3rem;
}

.rich-text-modern {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--c-dark, #2F2F30);
}

.rich-text-modern h2,
.rich-text-modern h3 {
    color: var(--c-primary, #008080);
    font-family: var(--font-heading);
    margin: 3rem 0 1.5rem;
    font-weight: 800;
}

.rich-text-modern p {
    margin-bottom: 1.8rem;
}

/* 4. Content CTA */
.content-cta-modern {
    background: linear-gradient(135deg, var(--c-primary, #008080) 0%, #064e4e 100%);
    border-radius: 30px;
    padding: 4rem;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.content-cta-modern::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: rgba(26, 188, 156, 0.1);
    border-radius: 50%;
    filter: blur(60px);
}

.cta-inner h3 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1rem;
}

.cta-inner p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.btn-accent-modern {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--c-accent, #1ABC9C);
    color: #fff;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(26, 188, 156, 0.4);
}

.btn-accent-modern:hover {
    background: #ffffff;
    color: var(--c-primary, #008080);
    transform: translateX(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* 5. Sidebar Panels */
.service-side-panel {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.panel-box-modern {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.panel-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.panel-header i {
    font-size: 1.5rem;
    color: var(--c-accent, #1ABC9C);
}

.panel-header h3 {
    font-size: 1.3rem;
    margin: 0;
    font-weight: 800;
    color: var(--text-heading);
}

.contact-panel {
    background: var(--bg-card);
}

.panel-phone-link {
    display: flex;
    align-items: center;
    justify-content: center;
    /* Center phone icon and text */
    gap: 1.2rem;
    margin: 2rem 0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.p-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-secondary);
    color: var(--c-primary, #008080);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.p-text {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-heading);
}

/* Dark Mode: Panel overrides */
.dark-theme .panel-box-modern,
.dark-theme .contact-panel {
    background: var(--bg-card) !important;
    border-color: var(--border-color) !important;
}

.dark-theme .panel-header h3,
.dark-theme .p-text {
    color: var(--text-heading) !important;
}

.dark-theme .p-icon {
    background: var(--bg-secondary) !important;
}

.panel-phone-link:hover .p-icon {
    background: var(--c-primary, #008080);
    color: #fff;
    transform: scale(1.1) rotate(-10deg);
}

.btn-primary-block {
    display: inline-block;
    /* Changed from block to inline-block for width:auto behavior */
    width: auto;
    min-width: 200px;
    /* Ensure a decent size */
    text-align: center;
    padding: 1.2rem 2rem;
    margin: 1.5rem auto 0 auto;
    /* Center with margin */
    background: var(--c-dark, #2F2F30);
    color: #fff;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.btn-primary-block:hover {
    background: var(--c-primary, #008080);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 128, 128, 0.2);
}

.panel-list-modern {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.panel-list-modern li {
    margin-bottom: 0.8rem;
}

.panel-list-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 1.5rem;
    background: #f8fafc;
    color: var(--c-dark, #2F2F30);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.panel-list-link:hover {
    background: var(--c-primary, #008080);
    color: #fff;
    padding-left: 2rem;
}

.view-all-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--c-accent, #1ABC9C);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.view-all-link:hover {
    gap: 1rem;
    color: var(--c-primary, #008080);
}

.sticky-top {
    position: sticky;
    top: 120px;
}

/* Animations */
.fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 6. Responsive Adjustments */
@media (max-width: 1200px) {
    .detail-layout-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .detail-outer-container {
        margin-top: -6rem;
    }

    .service-side-panel {
        order: 2;
    }

    .service-article-content {
        order: 1;
    }

    .sticky-top {
        position: static;
    }
}

@media (max-width: 768px) {
    .content-card-premium {
        padding: 2.5rem 1.5rem;
        border-radius: 20px;
    }

    .content-cta-modern {
        padding: 2.5rem 1.5rem;
        border-radius: 20px;
    }

    .detail-hero-section {
        padding: 8rem 0 6rem;
    }

    .hero-title-modern {
        font-size: 2.2rem;
    }
}

/* ==========================================
   SERVICES PAGE MODERN STYLES
========================================== */
.services-modern-page {
    background-color: #ffffff;
}

/* 1. Hero Section */
.services-premium-hero {
    position: relative;
    padding: 10rem 0 8rem;
    background: var(--c-dark, #2F2F30);
    text-align: center;
    color: #ffffff;
    overflow: hidden;
}

.hero-bg-overlay-services {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(47, 47, 48, 0.95) 0%, rgba(26, 188, 156, 0.8) 100%);
    z-index: 1;
}

.hero-content-inner {
    position: relative;
    z-index: 2;
}

.page-badge-modern {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(26, 188, 156, 0.2);
    border: 1px solid rgba(26, 188, 156, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--c-accent, #1ABC9C);
    margin-bottom: 2rem;
}

.services-premium-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.services-premium-hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.82);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
}

.header-divider-modern {
    width: 60px;
    height: 4px;
    background: var(--c-accent, #1ABC9C);
    margin: 0 auto;
    border-radius: 2px;
}

/* 2. Grid Section */
.services-list-section {
    padding: 8rem 0;
    background-color: var(--bg-body);
}

.services-dynamic-grid-premium {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)) !important;
    gap: 3rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
    float: none !important;
}

.service-premium-card {
    position: relative !important;
    background: var(--bg-card) !important;
    border-radius: 30px !important;
    padding: 4rem 3rem !important;
    box-shadow: var(--card-shadow) !important;
    border: 1px solid var(--border-color) !important;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    overflow: hidden !important;
    height: 100% !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
    float: none !important;
}

.card-inner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to bottom, var(--c-primary, #008080), #064e4e);
    transition: all 0.5s ease;
    z-index: 1;
    opacity: 0;
}

.service-premium-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.15);
}

.service-premium-card:hover .card-inner-overlay {
    height: 100%;
    opacity: 1;
}

.card-content-box {
    position: relative;
    z-index: 2;
}

.card-icon-modern {
    width: 70px;
    height: 70px;
    background: var(--bg-secondary);
    color: var(--c-primary, #008080);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    border-radius: 18px;
    margin-bottom: 2rem;
    transition: all 0.5s ease;
}

.service-premium-card:hover .card-icon-modern {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    transform: rotateY(180deg);
}

.card-title-modern {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    color: var(--text-heading);
    transition: all 0.3s ease;
}

.service-premium-card:hover .card-title-modern {
    color: #ffffff;
}

.card-desc-modern {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    transition: all 0.3s ease;
}

.service-premium-card:hover .card-desc-modern {
    color: rgba(255, 255, 255, 0.8);
}

.card-link-modern {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    font-weight: 700;
    color: var(--c-accent, #1ABC9C);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.service-premium-card:hover .card-link-modern {
    color: #ffffff;
    gap: 1.5rem;
}

/* 3. CTA Section */
.services-cta-section {
    padding-bottom: 8rem;
    background-color: var(--bg-body);
}

.cta-card-modern {
    background: var(--bg-card);
    border-radius: 30px;
    padding: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
}

.cta-content p {
    font-size: 1.15rem;
    color: #64748b;
    margin: 0;
}

.btn-primary-solid-modern {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--c-primary, #008080);
    color: #fff;
    padding: 1.2rem 2.8rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 128, 128, 0.2);
    border: none;
    cursor: pointer;
}

.btn-primary-solid-modern:hover {
    background: var(--c-dark, #2F2F30);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* 4. Utilities */
.premium-alert-box {
    padding: 2rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #FEF2F2;
    color: #991B1B;
    border: 1px solid rgba(153, 27, 27, 0.1);
}

.premium-empty-state {
    text-align: center;
    padding: 6rem 0;
}

.empty-icon-box {
    font-size: 4rem;
    color: #e2e8f0;
    margin-bottom: 2rem;
}

.premium-empty-state h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.premium-empty-state p {
    color: #64748b;
}

/* Responsive */
@media (max-width: 1200px) {
    .services-dynamic-grid-premium {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 992px) {
    .cta-card-modern {
        flex-direction: column;
        text-align: center;
        gap: 2.5rem;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .services-premium-hero {
        padding: 8rem 0 6rem;
    }

    .services-list-section {
        padding: 5rem 0;
    }

    .service-premium-card {
        padding: 3rem 2rem;
    }

    .services-dynamic-grid-premium {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
}

.heroSwiper {
    width: 100%;
    height: 100vh;
    /* Tam ekran yüksekliği */
}

.heroSwiper .swiper-slide {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.heroSwiper .hero-content {
    z-index: 10;
    text-align: center;
}

/* Swiper Okları ve Sayfalama Özelleştirme */
/* Legacy Swiper Accent Moved to Global Root */

.swiper-button-next,
.swiper-button-prev {
    color: #fff;
    background: rgba(0, 0, 0, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

/* Home hero slider responsive cleanup */
.home-hero.heroSwiper {
    width: 100%;
    height: 100svh;
    min-height: 560px;
    max-height: 920px;
}

/* ==========================================
   BLOG DETAIL - MODERN UI/UX IMPROVEMENTS
========================================== */

/* Breadcrumb Navigation */
.breadcrumb-nav {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 60px;
    z-index: 40;
}

.breadcrumb-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.8rem 2rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex-wrap: wrap;
}

.breadcrumb-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
}

.breadcrumb-link:hover {
    color: #1abc9c;
    background: rgba(26, 188, 156, 0.08);
}

.breadcrumb-divider {
    color: #cbd5e1;
    margin: 0 0.25rem;
    font-size: 0.9rem;
}

.breadcrumb-current {
    color: var(--text-heading);
    font-weight: 600;
    padding: 0.4rem 0.8rem;
    background: var(--accent-light);
    border-radius: 6px;
}

/* Modern Hero Section */
.article-hero-modern {
    position: relative;
    width: 100%;
    height: 50vh;
    min-height: 350px;
    max-height: 550px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a, #1abc9c);
}

.article-hero-modern .article-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.85;
    animation: zoomIn 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.article-hero-modern .article-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(15, 23, 42, 0.1) 0%,
            rgba(15, 23, 42, 0.4) 50%,
            rgba(15, 23, 42, 0.9) 100%);
    z-index: 2;
}

.article-hero-modern .article-hero-content {
    position: relative;
    z-index: 3;
    max-width: 1000px;
    width: 100%;
    padding: 0 2rem 3rem;
    text-align: center;
    color: #ffffff;
    animation: slideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.article-hero-modern .article-hero-category {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #1abc9c, #16a085);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(26, 188, 156, 0.3);
    animation: slideDown 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.article-hero-modern .article-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.1s both;
}

.article-hero-modern .article-hero-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 1rem;
    color: #cbd5e1;
    animation: slideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

.article-hero-modern .meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.article-hero-modern .meta-separator {
    opacity: 0.5;
}

/* Article Wrapper */
.article-wrapper {
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Error Box Modernization */
.article-error-state {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem !important;
}

.error-box {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: 20px;
    padding: 3rem 2rem;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.1);
}

.error-icon {
    font-size: 3rem;
    color: #dc2626;
    margin-bottom: 1rem;
    animation: bounce 1s ease-in-out infinite;
}

.error-box h2 {
    color: #991B1B;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.error-box p {
    color: #7f1d1d;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.btn-back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #1abc9c, #16a085);
    color: #ffffff;
    padding: 0.9rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 12px 30px rgba(0, 112, 28, 0.103);
}

.btn-back-to-blog:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 112, 28, 0.384);
}

/* Article Footer - Modernized */
.article-footer {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid var(--border-color);
}

.article-tags-section,
.article-share-section {
    margin-bottom: 2.5rem;
}

.article-tags-section:last-of-type,
.article-share-section:last-of-type {
    margin-bottom: 0;
}

.tags-title,
.share-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-heading);
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 1.2rem;
}

.tags-title i,
.share-title i {
    color: #1abc9c;
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.detail-tag-pill {
    display: inline-block;
    background: linear-gradient(135deg, rgba(26, 188, 156, 0.1), rgba(26, 188, 156, 0.05));
    color: #1abc9c;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.6rem 1.3rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 1px solid rgba(26, 188, 156, 0.2);
}

.detail-tag-pill:hover {
    background: linear-gradient(135deg, #1abc9c, #16a085);
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(26, 188, 156, 0.2);
}

/* Social Share Buttons */
.share-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.share-facebook {
    background: linear-gradient(135deg, #1877f2, #0a66c2);
}

.share-facebook:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 24px rgba(24, 119, 242, 0.3);
}

.share-twitter {
    background: linear-gradient(135deg, #000000, #333333);
}

.share-twitter:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.share-whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.share-whatsapp:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.share-email {
    background: linear-gradient(135deg, #0f172a, #1abc9c);
}

.share-email:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 24px rgba(26, 188, 156, 0.3);
}

/* Article Navigation */
.article-navigation {
    margin-top: 3.5rem;
    padding-top: 2rem;
    text-align: center;
    border-top: 1px solid #e5e7eb;
}

.btn-back-blog {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #0f172a, #1abc9c);
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 20px rgba(26, 188, 156, 0.2);
}

.btn-back-blog:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(26, 188, 156, 0.3);
}

.btn-back-blog .arrow {
    transition: transform 0.3s ease;
}

.btn-back-blog:hover .arrow {
    transform: translateX(-5px);
}

/* Animations */
@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(1.1);
    }

    to {
        opacity: 0.85;
        transform: scale(1);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Improved Prose Typography */
.article-body {
    font-size: 1.125rem;
    line-height: 1.85;
    color: var(--text-main);
}

.article-body p {
    margin-bottom: 1.8rem;
}

.article-body h2 {
    font-size: 1.95rem;
    font-weight: 800;
    margin: 3rem 0 1.5rem;
    color: #0f172a;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #1abc9c;
}

.article-body h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 2.5rem 0 1rem;
    color: #0f172a;
}

.article-body h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 1.5rem 0 0.8rem;
    color: #1abc9c;
}

.article-body ul,
.article-body ol {
    margin-bottom: 1.8rem;
    padding-left: 2rem;
}

.article-body li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.article-body strong {
    font-weight: 700;
    color: #0f172a;
    background: rgba(26, 188, 156, 0.1);
    padding: 0.1rem 0.4rem;
    border-radius: 4px;
}

.article-body blockquote {
    border-left: 4px solid #1abc9c;
    padding: 1.5rem;
    margin: 2rem 0;
    background: linear-gradient(135deg, rgba(26, 188, 156, 0.05), rgba(26, 188, 156, 0.02));
    border-radius: 8px;
    font-style: italic;
    color: #475569;
}

.article-body a {
    color: #1abc9c;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.article-body a:hover {
    border-bottom-color: #1abc9c;
    padding-bottom: 2px;
}

.article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 2.5rem 0;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.article-body img:hover {
    transform: scale(1.02);
}

.article-body code {
    background: #f3f4f6;
    color: #dc2626;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
}

.article-body pre {
    background: #1f2937;
    color: #f3f4f6;
    padding: 1.5rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 2rem 0;
    line-height: 1.5;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .breadcrumb-container {
        padding: 0.8rem 1.5rem;
    }

    .breadcrumb-link,
    .breadcrumb-current {
        padding: 0.3rem 0.5rem;
        font-size: 0.85rem;
    }

    .article-hero-modern {
        height: 45vh;
        min-height: 300px;
    }

    .article-hero-modern .article-hero-title {
        font-size: clamp(1.5rem, 4vw, 2.5rem);
    }

    .article-hero-modern .article-hero-content {
        padding: 0 1.5rem 2rem;
    }

    .article-hero-modern .meta-item {
        font-size: 0.9rem;
    }

    .premium-detail-container {
        padding: 3rem 1.5rem 0 !important;
    }

    .article-body {
        font-size: 1rem;
    }

    .article-body h2 {
        font-size: 1.6rem;
        margin: 2rem 0 1rem;
    }

    .article-body h3 {
        font-size: 1.25rem;
        margin: 1.5rem 0 0.8rem;
    }

    .share-buttons {
        gap: 0.8rem;
    }

    .share-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@supports not (height: 100svh) {
    .home-hero.heroSwiper {
        height: 100vh;
    }
}

.home-hero.heroSwiper .swiper-slide {
    min-height: inherit;
}

.home-hero.heroSwiper .hero-content {
    width: min(100%, 900px);
    margin-inline: auto;
    padding: clamp(5.5rem, 10vh, 8rem) clamp(1rem, 4vw, 2rem) 5rem;
    box-sizing: border-box;
}

.home-hero.heroSwiper .hero-title {
    font-size: clamp(2rem, 6vw, 5rem);
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 1.2rem;
    letter-spacing: -1px;
}

.home-hero.heroSwiper .hero-text {
    font-size: clamp(1rem, 2.8vw, 1.3rem);
    line-height: 1.55;
    margin-bottom: 2rem;
}

.home-hero.heroSwiper .hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.home-hero.heroSwiper .btn-primary-solid {
    max-width: 100%;
    white-space: normal;
}

@media (max-width: 992px) {
    .home-hero.heroSwiper {
        height: 82svh;
        min-height: 520px;
    }

    .home-hero.heroSwiper .hero-content {
        padding: clamp(5.25rem, 11vh, 7rem) 1.25rem 4rem;
    }

    .home-hero.heroSwiper .swiper-button-next,
    .home-hero.heroSwiper .swiper-button-prev {
        display: none !important;
    }
}

@media (max-width: 576px) {
    .home-hero.heroSwiper {
        min-height: 500px;
    }

    .home-hero.heroSwiper .hero-content {
        padding: 6.5rem 1rem 3.5rem;
    }

    .home-hero.heroSwiper .hero-badge {
        font-size: 0.68rem;
        letter-spacing: 1px;
        margin-bottom: 0.85rem;
    }

    .home-hero.heroSwiper .hero-title {
        font-size: clamp(1.65rem, 8vw, 2.25rem);
        margin-bottom: 0.9rem;
    }

    .home-hero.heroSwiper .hero-text {
        font-size: 0.96rem;
        line-height: 1.5;
        margin-bottom: 1.4rem;
    }

    .home-hero.heroSwiper .btn-primary-solid {
        width: auto;
        max-width: 100%;
        padding: 0.72rem 1.1rem;
        font-size: 0.88rem;
    }

    .home-hero.heroSwiper .swiper-pagination {
        bottom: 14px !important;
    }
}

/* Kurumsal Sayfası Modül Stilleri */
.about-hero {
    background: linear-gradient(135deg, rgba(47, 47, 48, 0.9), rgba(0, 128, 128, 0.8)), url('assets/img/law-library.jpg') center/cover;
    padding: 8rem 2rem 6rem;
    text-align: center;
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(26, 188, 156, 0.1), transparent 50%);
    pointer-events: none;
}

.about-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 5rem);
    color: var(--color-white);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out;
}

.about-hero p {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
    animation: fadeInUp 1s ease-out 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-main-content {
    padding: 8rem 0;
    background: var(--bg-body);
}

.about-grid-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    animation: fadeInUp 1s ease-out 0.5s both;
}

@media (max-width: 992px) {
    .about-grid-wrapper {
        grid-template-columns: 1fr;
        gap: 5rem;
    }

    .about-image-col {
        order: -1;
    }
}

.about-text-content {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--color-dark);
}

.about-text-content p {
    margin-bottom: 1.8rem;
}

.about-text-content h2,
.about-text-content h3 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.about-image-col {
    position: relative;
}

.about-img-box {
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-img-box:hover {
    transform: scale(1.02);
}

.about-img-box img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-img-box:hover img {
    transform: scale(1.05);
}

.exp-badge {
    position: absolute;
    bottom: -40px;
    left: -40px;
    background: var(--color-white);
    padding: 2.5rem 3rem;
    border-radius: 1.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-left: 6px solid var(--color-accent);
    text-align: center;
    z-index: 2;
    animation: bounceIn 1s ease-out 1s both;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }

    70% {
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.exp-badge h4 {
    font-size: 4rem;
    color: var(--color-primary);
    margin: 0;
    line-height: 1;
    font-family: var(--font-heading);
}

.exp-badge span {
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--color-gray);
    letter-spacing: 1.5px;
}

@media (max-width: 768px) {
    .exp-badge {
        left: 0;
        bottom: -25px;
        padding: 2rem;
    }
}

/* Değerlerimiz (Misyon/Vizyon) */
.values-section {
    background: var(--bg-body);
    padding: 6rem 0;
    position: relative;
}

.values-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.value-card {
    background: var(--color-white);
    padding: 4rem 3rem;
    border-radius: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(127, 140, 141, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-primary));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--color-accent);
}

.value-icon {
    font-size: 3rem;
    color: var(--color-accent);
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
}

.value-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.value-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-dark);
    margin: 0;
}

/* Masaüstü Dropdown Stilleri - Modern */
.nav-item-dropdown {
    position: relative;
}

.custom-dropdown {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 0;
    min-width: 260px;
    background: var(--bg-card);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), 0 0 1px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 0.75rem 0;
    margin: 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px) scale(0.9);
    transform-origin: top center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 100;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.custom-dropdown::before {
    content: '';
    position: absolute;
    top: -7px;
    left: 20px;
    width: 14px;
    height: 14px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-bottom: none;
    border-right: none;
    transform: rotate(45deg);
    z-index: -1;
}

.nav-item-dropdown:hover .custom-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.custom-dropdown li {
    position: relative;
    overflow: hidden;
}

.custom-dropdown li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: linear-gradient(180deg, #1ABC9C, #008080);
    transform: scaleY(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.custom-dropdown li:hover::before {
    transform: scaleY(1);
}

.custom-dropdown li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 1.5rem;
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.custom-dropdown li a::after {
    content: '→';
    position: absolute;
    right: 1rem;
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.25s ease;
    color: var(--color-accent);
    font-weight: 700;
}

.custom-dropdown li:hover a {
    background: linear-gradient(90deg, rgba(26, 188, 156, 0.12) 0%, transparent 100%);
    color: var(--color-primary);
    padding-left: 2rem;
}

.custom-dropdown li:hover a::after {
    opacity: 1;
    transform: translateX(0);
}

.custom-dropdown li a:active {
    background-color: rgba(26, 188, 156, 0.2);
}

/* Kurumsal Accordion Tasarımı */
.faq-hero {
    padding: 6rem 0 3rem;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0c0f21 50%, var(--accent-color) 100%);
    color: #ffffff;
    position: relative;
}

.faq-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
}

.faq-hero h1 {
    font-family: var(--font-heading);
    color: #ffffff;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    z-index: 1;
    position: relative;
    letter-spacing: 1px;
}

.faq-hero p {
    color: rgba(255, 255, 255, 0.85);
    z-index: 1;
    position: relative;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    font-style: italic;
}

.faq-hero::before {
    content: '';
    position: absolute;
    bottom: 1rem;
    left: 50%;
    width: 120px;
    height: 4px;
    background: var(--accent-color);
    transform: translateX(-50%);
    border-radius: 2px;
}

.faq-hero p {
    color: rgba(255, 255, 255, 0.9);
    z-index: 1;
    position: relative;
    font-size: 1.1rem;
}

.faq-category-title {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 1.9rem;
    margin: 0 0 1.5rem;
    position: relative;
    display: inline-block;
}

.faq-category-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -0.25rem;
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    transform: translateX(-50%);
    border-radius: 2px;
}

.faq-category[data-category] {
    /* category wrapper background */
    padding: 2.5rem 2rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.accordion-item {
    background: #ffffff;
    border: none;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s;
}

.accordion-item:hover {
    box-shadow: 0 12px 45px rgba(0, 0, 0, 0.15);
}

.accordion-header {
    background: #f9fafb;
}

.accordion-content {
    background: #ffffff;
}


.accordion-header {
    width: 100%;
    text-align: left;
    padding: 1.6rem 1.8rem;
    background: #ffffff;
    border: none;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s, background 0.3s;
}

.accordion-header:hover {
    color: var(--accent-color);
    background: rgba(26, 188, 156, 0.05);
}

.accordion-item.active .accordion-header {
    background: var(--accent-light);
}

.accordion-header i {
    color: var(--color-accent);
    transition: transform 0.4s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    background-color: #ffffff;
}

.accordion-content p {
    margin: 0;
    padding: 0 1.8rem 1.8rem 1.8rem;
    color: var(--text-color);
    line-height: 1.75;
    font-size: 1rem;
}


/* Aktif (Açık) Durum Sınıfları */
.accordion-item.active .accordion-header i {
    transform: rotate(180deg) scale(1.1);
    color: var(--primary-color);
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    /* İçeriğin sığacağı kadar geniş bir değer */
}

/* --------------------------------------------------
   FAQ Geliştirmeleri: Arama, görünürlük ve animasyon
-------------------------------------------------- */
.faq-search {
    margin: 3rem 0;
    text-align: center;
}

/* CTA box at bottom */
.faq-cta {
    margin: 4rem 0 2rem;
    padding: 2.5rem 2rem;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.9) 0%, rgba(21, 30, 56, 0.9) 100%);
    color: #fff;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.faq-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.faq-cta h4 {
    font-family: var(--font-heading);
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.faq-cta p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}

.faq-cta .btn-accent {
    background-color: var(--accent-color);
    color: #0f172a !important;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    border-radius: 50px;
    transition: background 0.3s, transform 0.3s;
    box-shadow: 0 6px 20px rgba(26, 188, 156, 0.3);
}

.faq-cta .btn-accent:hover {
    background-color: #16a085;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 188, 156, 0.4);
}

.faq-search input {
    width: 100%;
    max-width: 600px;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 60px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    font-size: 1.05rem;
    color: #fff;
    transition: background 0.3s, transform 0.3s;
}

.faq-search input::placeholder {
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

.faq-search input:focus {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.02);
    outline: none;
}


.faq-category {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.faq-category.visible {
    opacity: 1;
    transform: translateY(0);
}

/* mobilde arama kutusu biraz daha dar */
@media (max-width: 600px) {
    .faq-search input {
        padding: 0.6rem 1rem;
    }
}

/* ==========================================
   SCROLL TO TOP (Yukarı Çık) BUTONU
========================================== */
.scroll-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--color-primary);
    /* Sitenizin Teal/Lacivert rengi */
    color: #ffffff;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);

    /* Animasyon Başlangıç Durumu (Görünmez ve hafif aşağıda) */
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Scroll edildiğinde JS tarafından eklenecek "görünür" sınıfı */
.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background-color: var(--color-accent);
    /* Sitenizin Turkuaz/Altın rengi */
    transform: translateY(-5px) scale(1.05);
    /* Havaya kalkma ve büyüme efekti */
    box-shadow: 0 8px 25px rgba(26, 188, 156, 0.4);
}

/* Mobil cihazlarda WhatsApp butonu ile çakışmaması için yerleşimi ayarlayalım */
@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 90px;
        /* WhatsApp butonunun üstünde durması için */
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* ==========================================
   YÜKLEME EKRANI (PRELOADER)
   #1abc9c Estetik Tasarım
========================================== */

/* Preloader Arka Plan */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f172a 0%, #1a1a2e 50%, #16213e 100%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

/* Preloader gizlendiğinde */
.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Logo container */
.preloader-logo {
    margin-bottom: 2rem;
    animation: pulse 2s ease-in-out infinite;
}

.preloader-logo img {
    max-width: 180px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(26, 188, 156, 0.5));
}

/* Yükleme spinner */
.loader {
    position: relative;
    width: 70px;
    height: 70px;
}

.loader::before,
.loader::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

/* Dış halka */
.loader::before {
    width: 70px;
    height: 70px;
    border: 3px solid transparent;
    border-top-color: #1abc9c;
    border-right-color: #1abc9c;
    animation: spin 1.2s linear infinite;
}

/* İç halka */
.loader::after {
    width: 50px;
    height: 50px;
    border: 3px solid transparent;
    border-top-color: #16a085;
    animation: spin 0.8s linear infinite reverse;
}

/* Yükleme metni */
.loading-text {
    margin-top: 1.5rem;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
}

/* Nokta animasyonu */
.loading-text::after {
    content: '';
    animation: dots 1.5s steps(4, end) infinite;
}

/* Dönme animasyonu */
@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Nabız atışı animasyonu */
@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

/* Nokta animasyonu */
@keyframes dots {

    0%,
    20% {
        content: '';
    }

    40% {
        content: '.';
    }

    60% {
        content: '..';
    }

    80%,
    100% {
        content: '...';
    }
}

/* Progress bar container */
.progress-container {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin-top: 1.5rem;
    overflow: hidden;
}

/* Progress bar */
.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #1abc9c, #16a085);
    border-radius: 2px;
    animation: progress 2s ease-in-out infinite;
}

@keyframes progress {
    0% {
        width: 0%;
        margin-left: 0;
    }

    50% {
        width: 70%;
        margin-left: 0;
    }

    100% {
        width: 0%;
        margin-left: 100%;
    }
}

/* Mobil uyumluluk */
@media (max-width: 768px) {
    .loader {
        width: 50px;
        height: 50px;
    }

    .loader::before {
        width: 50px;
        height: 50px;
    }

    .loader::after {
        width: 35px;
        height: 35px;
    }

    .preloader-logo img {
        max-width: 140px;
    }

    .loading-text {
        font-size: 0.875rem;
        letter-spacing: 2px;
    }
}

/* ==========================================
   TOAST BİLDİRİM STİLLERİ (AJAX FORMLAR İÇİN)
========================================== */
.toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
    pointer-events: none;
}

.toast {
    background-color: var(--bg-card);
    color: var(--text-main);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 18px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 320px;
    max-width: 450px;
    transform: translateX(120%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
    border-left: 5px solid transparent;
    pointer-events: auto;
}

.dark-theme .toast {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

/* Dark Theme Dropdown Enhancements */
.dark-theme .lang-dropdown {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.dark-theme .lang-dropdown-item {
    color: var(--text-main);
}

.dark-theme .lang-dropdown-item:hover {
    background-color: rgba(26, 188, 156, 0.15);
    color: var(--accent-color);
}

.dark-theme .custom-dropdown {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3), 0 0 1px rgba(0, 0, 0, 0.1);
}

.dark-theme .custom-dropdown::before {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: none;
    border-right: none;
}

.dark-theme .custom-dropdown li a {
    color: var(--text-main);
}

.dark-theme .custom-dropdown li:hover a {
    background: linear-gradient(90deg, rgba(26, 188, 156, 0.2) 0%, transparent 100%);
    color: var(--accent-color);
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast.hiding {
    transform: translateX(120%);
    opacity: 0;
}

.toast.success {
    border-left-color: #2ecc71;
}

.toast.error {
    border-left-color: #e74c3c;
}

.toast.info {
    border-left-color: #3498db;
}

.toast-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.toast.success .toast-icon { color: #2ecc71; }
.toast.error .toast-icon { color: #e74c3c; }
.toast.info .toast-icon { color: #3498db; }

.toast-content {
    flex-grow: 1;
}

.toast-title {
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--text-heading);
    margin-bottom: 5px;
    font-size: 1.05rem;
}

.toast-message {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.toast-close {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 5px;
    font-size: 1.2rem;
    transition: color 0.2s;
}

.toast-close:hover {
    color: var(--text-heading);
}

@media (max-width: 768px) {
    .toast-container {
        bottom: 20px;
        right: 20px;
        left: 20px;
    }
    .toast {
        min-width: 0;
        width: 100%;
        transform: translateY(120%);
        border-left: none;
        border-top: 5px solid transparent;
    }
    .toast.success { border-top-color: #2ecc71; }
    .toast.error { border-top-color: #e74c3c; }
    .toast.info { border-top-color: #3498db; }
    .toast.show {
        transform: translateY(0);
    }
    .toast.hiding {
        transform: translateY(120%);
    }
}