/*
Theme Name: Cartalog
Description: Araç parçaları danışmanlık ve destek sitesi için özel WordPress teması. Modern responsive tasarım, mobil uyumlu, form validasyonu ve parça arama özellikleri içerir.
Version: 2.4.0
Author: Cartalog Team
Author URI: https://cartalog.com
Text Domain: cartalog
Domain Path: /languages
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Tags: automotive, parts, responsive, mobile-first, business, consultation
*/

/* Reset ve Genel Stiller - Performans Optimizasyonu */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    height: 100%;
    /* Performans için GPU acceleration */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    min-height: 100vh;
    /* Performans optimizasyonu */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000px;
    perspective: 1000px;
}

/* Container ve Layout - Geliştirilmiş Responsive */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    position: relative;
    /* Smooth container transitions */
    transition: padding 0.3s ease;
}

/* Geliştirilmiş responsive breakpoints */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .container {
        padding: 0 25px;
    }
}

@media (min-width: 1200px) {
    .container {
        padding: 0 30px;
    }
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #3498db;
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    z-index: 10000;
    border-radius: 4px;
    font-weight: bold;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 6px;
}

/* Header Stiller - Geliştirilmiş Performans ve Tasarım */
.site-header {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%) !important;
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
    position: relative;
    z-index: 100;
    will-change: transform;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    /* remove blur for clarity */
    /* backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); */
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    /* Smooth transitions */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo {
    font-size: 2rem; /* Reduced logo text size */
    font-weight: bold;
    text-decoration: none;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 101;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1;
    /* Performans optimizasyonu */
    will-change: transform;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.logo img {
    height: 100px; /* Increased logo image height */
    width: auto;
    max-width: 250px;
    object-fit: contain;
    transition: all 0.3s ease;
    /* Beyaz logo için filtre (eğer logo renkli ise bu satırı kaldırın) */
    filter: brightness(0) invert(1);
}

/* 
   Logo Filtre Alternatifleri - Gerektiğinde kullanın:
   
   1. Renkli logo kullanmak için (orijinal renklerini korur):
   .site-header .logo img { filter: none; }
   
   2. Logo'yu beyaz yapmak için (mevcut ayar):
   .site-header .logo img { filter: brightness(0) invert(1); }
   
   3. Logo'yu siyah yapmak için:
   .site-header .logo img { filter: brightness(0); }
   
   4. Logo'yu hafif transparan yapmak için:
   .site-header .logo img { opacity: 0.9; }
   
   5. Logo'yu sepia tonlarında yapmak için:
   .site-header .logo img { filter: sepia(1); }
*/

.site-header .logo:hover {
    transform: scale(1.05);
    text-decoration: none;
}

.site-header .logo:hover img {
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255,255,255,0.5));
}

/* Mobile Navigation Toggle - Removed */
/* Mobil navigasyon butonu kaldırıldı */

/* Navigation Styles */
.main-navigation {
    position: relative;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    justify-content: flex-start;
}

.main-navigation a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.main-navigation a:hover,
.main-navigation a:focus {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.main-navigation ul li.dropdown {
    margin-left: auto;
}

/* Mobile Navigation - Removed */
/* Mobil navigasyon tamamen kaldırıldı */

.logo img {
    max-height: 60px;
    width: auto;
}

/* ==========================================================================
   ANA SAYFA GENEL DÜZENLEMELERİ
   ========================================================================== */

/* Genel Layout */
body {
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* Section Spacing */
section {
    position: relative;
    z-index: 2;
}

/* ==========================================================================
   MAIN SEARCH SECTION STYLES
   ========================================================================== */

.search-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.search-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="dots" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse"><circle cx="5" cy="5" r="1.5" fill="%232c3e50"/><circle cx="15" cy="5" r="1.5" fill="%232c3e50"/><circle cx="25" cy="5" r="1.5" fill="%232c3e50"/><circle cx="35" cy="5" r="1.5" fill="%232c3e50"/><circle cx="45" cy="5" r="1.5" fill="%232c3e50"/><circle cx="55" cy="5" r="1.5" fill="%232c3e50"/><circle cx="65" cy="5" r="1.5" fill="%232c3e50"/><circle cx="75" cy="5" r="1.5" fill="%232c3e50"/><circle cx="85" cy="5" r="1.5" fill="%232c3e50"/><circle cx="95" cy="5" r="1.5" fill="%232c3e50"/></pattern></defs><rect width="100%" height="100%" fill="%23f8f9fa"/><rect width="100%" height="100%" fill="url(%23dots)" opacity="0.05"/></svg>') center/cover no-repeat;
    z-index: 1;
}

.search-section .container {
    position: relative;
    z-index: 2;
}

/* Gelişmiş Performans Optimizasyonları */
.hero-banner,
.search-section,
.vehicle-categories {
    will-change: transform;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Gelişmiş Arama Butonları - Modern Tasarım */
.search-buttons-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
    margin-top: 15px;
    animation: slideInUp 0.6s ease 0.3s both;
}

.search-button {
    position: relative;
    padding: 14px 20px;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    outline: none;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    /* Performans optimizasyonu */
    will-change: transform, box-shadow;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.search-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.search-button:hover::before {
    left: 100%;
}

.search-button span {
    position: relative;
    z-index: 2;
}

.search-button i {
    position: relative;
    z-index: 2;
    font-size: 16px;
}

/* Geliştirilmiş Buton Hover Efektleri */
.search-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.search-button:active {
    transform: translateY(-1px) scale(0.98);
    transition: all 0.1s ease;
}

/* Geliştirilmiş Renk Şeması */
.search-button.primary {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
}

.search-button.primary:hover {
    background: linear-gradient(135deg, #2980b9 0%, #1f5f99 100%);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
}

.search-button.secondary {
    background: linear-gradient(135deg, #27ae60 0%, #219a52 100%);
    color: white;
}

.search-button.secondary:hover {
    background: linear-gradient(135deg, #219a52 0%, #1e8449 100%);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.4);
}

.search-button.tertiary {
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    color: white;
}

.search-button.tertiary:hover {
    background: linear-gradient(135deg, #d35400 0%, #ba4a00 100%);
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.4);
}

.search-button.marketplace {
    background: linear-gradient(135deg, #8e44ad 0%, #7d3c98 100%);
    color: white;
}

.search-button.marketplace:hover {
    background: linear-gradient(135deg, #7d3c98 0%, #6c3483 100%);
    box-shadow: 0 8px 25px rgba(142, 68, 173, 0.4);
}

/* Gelişmiş Mobil Optimizasyonları */
@media (max-width: 768px) {
    .search-buttons-container {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .search-button {
        padding: 16px 24px;
        font-size: 15px;
        width: 100%;
        justify-content: center;
    }
    
    .search-button:hover {
        transform: scale(1.02);
    }
}

@media (max-width: 480px) {
    .search-button {
        padding: 18px 20px;
        font-size: 14px;
        border-radius: 10px;
    }
    
    .search-button span {
        font-size: 13px;
    }
    
    .search-button i {
        font-size: 14px;
    }
}

/* Gelişmiş Input Stilleri */
.search-input {
    width: 100%;
    padding: 18px 24px;
    font-size: 16px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    background: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    /* Performans optimizasyonu */
    will-change: border-color, box-shadow;
}

.search-input:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1), 0 8px 25px rgba(0,0,0,0.1);
    transform: translateY(-1px);
}

.search-input::placeholder {
    color: #6c757d;
    transition: opacity 0.3s ease;
}

.search-input:focus::placeholder {
    opacity: 0.7;
}

/* Gelişmiş Animasyonlar */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(52, 152, 219, 0.4);
    }
    50% {
        box-shadow: 0 0 30px rgba(52, 152, 219, 0.8);
    }
}

/* Gelişmiş Hero Banner */
.hero-banner {
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.banner-content {
    animation: fadeInScale 0.8s ease 0.2s both;
}

.banner-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #2c3e50, #3498db);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.banner-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    margin-bottom: 2rem;
    color: #5a6c7d;
    line-height: 1.6;
    max-width: 600px;
}

/* ==============================================
   VEHICLE CATEGORIES & BRAND SLIDER SECTION
   ============================================== */

.vehicle-categories {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.vehicle-categories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(52, 152, 219, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(46, 204, 113, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.vehicle-categories .container {
    position: relative;
    z-index: 2;
}

.vehicle-categories .section-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease;
}

.vehicle-categories .section-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #2c3e50, #3498db);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vehicle-categories .section-header p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Vehicle Categories Mobile Responsive */
@media (max-width: 768px) {
    .vehicle-categories {
        padding: 60px 0;
    }
    
    .vehicle-categories .section-header {
        margin-bottom: 40px;
    }
    
    .vehicle-categories .section-header h2 {
        font-size: 2rem;
    }
    
    .vehicle-categories .section-header p {
        font-size: 1rem;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .vehicle-categories {
        padding: 40px 0;
    }
    
    .vehicle-categories .section-header {
        margin-bottom: 30px;
    }
    
    .vehicle-categories .section-header h2 {
        font-size: 1.8rem;
    }
}

/* Brand Slider Container */
.brand-slider-container {
    overflow: hidden;
    width: 100%;
    padding: 40px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    margin: 60px 0;
    border-radius: 20px;
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.1);
}

.brand-slider {
    animation: brandScroll 30s linear infinite;
    display: flex;
    align-items: center;
    gap: 40px;
    /* Performans optimizasyonu */
    will-change: transform;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    width: max-content;
}

.brand-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.brand-slide:hover {
    transform: scale(1.02);
}

.brand-logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
}

.brand-logo-container::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1) 0%, rgba(41, 128, 185, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.brand-slide:hover .brand-logo-container {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
    border-color: #3498db;
}

.brand-slide:hover .brand-logo-container::after {
    opacity: 1;
}

.brand-slide:active .brand-logo-container {
    transform: translateY(-3px) scale(1.02);
}

.brand-logo {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    /* Performans optimizasyonu */
    will-change: transform;
    border-radius: 8px;
}

.brand-name {
    font-size: 12px;
    font-weight: 600;
    color: #495057;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.brand-slide:hover .brand-name {
    color: #3498db;
}

/* Brand Slide Tooltip */
.brand-slide::before {
    content: 'İletişime Geç';
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%) translateY(-5px);
    background: rgba(52, 152, 219, 0.95);
    color: white;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 100;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.brand-slide::after {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid rgba(52, 152, 219, 0.95);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 100;
}

.brand-slide:hover::before {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.brand-slide:hover::after {
    opacity: 1;
}

/* Brand Slider Animation */
@keyframes brandScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Gelişmiş Loading Spinner */
.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(52, 152, 219, 0.2);
    border-top: 3px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Gelişmiş Tooltip */
.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 1000;
}

.tooltip:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-5px);
}

/* Gelişmiş Focus Stilleri - Accessibility */
.search-button:focus-visible,
.search-input:focus-visible,
button:focus-visible,
a:focus-visible {
    outline: 2px solid #3498db;
    outline-offset: 2px;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

/* Prefers Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .brand-slider {
        animation: none;
    }
}

/* Dark mode enhancements */
/* Dark mode removed per request to fix theme colors */
/* Search button colors restored to original */
.search-button.primary {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
}

.search-button.secondary {
    background: linear-gradient(135deg, #27ae60 0%, #219a52 100%);
    color: white;
}

.search-button.tertiary {
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    color: white;
}

.search-button.marketplace {
    background: linear-gradient(135deg, #8e44ad 0%, #7d3c98 100%);
    color: white;
}

/* Print optimizations */
@media print {
    .search-button,
    .brand-slider-container {
        display: none !important;
    }
    
    .search-section {
        background: white !important;
        page-break-inside: avoid;
    }
}

/* Ultra-wide and Large Desktop Optimizations */
@media (min-width: 1400px) {
    .search-buttons-container {
        max-width: 900px;
        margin: 0 auto;
        margin-top: 25px;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
    
    .search-button {
        padding: 18px 24px;
        font-size: 16px;
    }
}

/* Enhanced hover effects for desktop */
@media (hover: hover) and (pointer: fine) {
    .search-button:hover {
        transform: translateY(-4px) scale(1.03);
        box-shadow: 0 12px 35px rgba(0,0,0,0.2);
    }
    
    .brand-logo:hover {
        transform: scale(1.15) translateY(-8px);
    }
    
    .example-tag:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }
}

/* Network-aware optimizations */
@media (prefers-reduced-data: reduce) {
    .bg-slide {
        background-image: none !important;
        background-color: #f8f9fa;
    }
    
    .brand-logo img {
        display: none;
    }
    
    .brand-logo::after {
        content: attr(alt);
        display: block;
        padding: 15px;
        background: #e9ecef;
        border-radius: 8px;
        text-align: center;
        font-weight: 600;
    }
}

/* Enhanced loading spinner for better UX */
.search-button.loading {
    position: relative;
    color: transparent;
}

.search-button.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Improved notification system */
.notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    pointer-events: none;
}

.notification {
    background: rgba(0,0,0,0.9);
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 10px;
    backdrop-filter: blur(10px);
    animation: slideInRight 0.3s ease;
    pointer-events: auto;
    max-width: 350px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Optimize for older browsers */
@supports not (backdrop-filter: blur(10px)) {
    .notification {
        background: rgba(0,0,0,0.95);
    }
}

/* Final performance boost */
* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

button, input, select, textarea {
    font-family: inherit;
}

/* Accessibility improvements */
@media (forced-colors: active) {
    .search-button {
        border: 2px solid ButtonText;
    }
    
    .search-input {
        border: 2px solid FieldText;
    }
}

/* ==============================================
   FOOTER STYLES - UNIFIED & OPTIMIZED
   ============================================== */

.site-footer {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: #fff;
    padding: 40px 0 0 0;
    font-size: 1rem;
    min-height: 220px;
    position: relative;
    overflow: visible; /* Changed from hidden to visible - floating widgets için */
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
}

.footer-content {
    display: flex;
    gap: 30px;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-bottom: 8px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 8px 20px;
}

.footer-section {
    flex: 1 1 0;
    min-width: 250px;
    margin-bottom: 18px;
    background: rgba(255,255,255,0.07);
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(44,62,80,0.04);
    border: 1px solid rgba(255,255,255,0.13);
    transition: all 0.3s ease;
    padding: 18px 20px 12px 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.footer-section:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.footer-section h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 1;
}

.footer-section h3 i {
    font-size: 1.1em;
    margin-right: 6px;
}

.footer-links {
    display: block;
    opacity: 1;
    color: #fff;
    padding-top: 5px;
}

.footer-section a, 
.footer-section p {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 4px 0;
    margin: 0 0 7px 0;
    line-height: 1.5;
}

.footer-section a:hover {
    color: #ffd700;
}

.footer-copyright {
    background: rgba(0,0,0,0.08);
    padding: 14px 0 10px 0;
    text-align: center;
    font-size: 0.98rem;
    color: #e9ecef;
    margin-top: 8px;
}

/* Scroll to Top Button */
#scrollToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease, opacity 0.3s ease;
    z-index: 9998;
    font-size: 20px;
    opacity: 0;
}

#scrollToTop:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #5a67d8 0%, #667eea 100%);
}

#scrollToTop:active {
    transform: translateY(-1px);
    box-shadow: 0 2px 10px rgba(102, 126, 234, 0.5);
}

#scrollToTop:focus {
    outline: 3px solid rgba(102, 126, 234, 0.5);
    outline-offset: 2px;
}

/* Chat widget positioning adjustments */
body:has(#cartalog-chat-widget:not(.cartalog-chat-bottom-left)) #scrollToTop {
    right: 100px;
}

body:has(#cartalog-chat-widget.cartalog-chat-bottom-left) #scrollToTop {
    right: 30px;
}

/* Toast Notification Styles */
.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #28a745;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    z-index: 10001;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.3s ease;
    max-width: 350px;
    word-wrap: break-word;
}

.toast-error { background: #dc3545; }
.toast-warning { background: #ffc107; color: #212529; }
.toast-info { background: #17a2b8; }

/* Admin Panel Nav Tabs - Unified Styles */
.nav-tab-wrapper {
    margin-bottom: 30px;
    border-bottom: 1px solid #c3c4c7;
}

.nav-tab {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid #c3c4c7;
    border-bottom: none;
    color: #646970;
    font-weight: 600;
    margin-right: 5px;
    padding: 12px 20px;
    font-size: 14px;
    border-radius: 8px 8px 0 0;
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-tab:hover {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    color: #333;
}

.nav-tab-active, 
.nav-tab-active:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    border-color: #667eea !important;
    margin-bottom: -1px;
}

.tab-content {
    display: none;
    background: white;
    padding: 30px;
    border: 1px solid #c3c4c7;
    border-top: none;
    border-radius: 0 0 12px 12px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.tab-content.active-tab {
    display: block;
}

.tab-content h2 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    margin: -30px -30px 25px -30px;
    padding: 20px 30px;
    font-size: 1.3rem;
    border-radius: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Responsive footer styles */
@media (max-width: 900px) {
    .footer-content {
        flex-direction: column;
        gap: 15px;
        padding: 0 10px 8px 10px;
        align-items: stretch;
    }
    
    .footer-section {
        min-width: unset;
        width: 100%;
        margin-bottom: 10px;
        padding: 15px 12px 10px 12px;
        border-radius: 12px;
    }
}

@media (max-width: 600px) {
    .footer-content {
        gap: 22px;
        padding: 0 0 5px 0;
        width: 100vw;
        max-width: 100vw;
        margin: 0;
        align-items: center;
    }
    
    .footer-section {
        width: 90vw;
        margin: 0 auto;
        border-radius: 16px;
        box-shadow: 0 2px 12px rgba(44,62,80,0.10);
        background: rgba(44,62,80,0.28);
        padding: 16px 12px 12px 12px;
    }
    
    .footer-copyright {
        font-size: 0.80em;
        padding: 8px 0 4px 0;
    }
    
    #scrollToTop {
        width: 45px;
        height: 45px;
        bottom: 20px;
        font-size: 18px;
    }
    
    body:has(#cartalog-chat-widget:not(.cartalog-chat-bottom-left)) #scrollToTop {
        right: 80px;
    }
    
    body:has(#cartalog-chat-widget.cartalog-chat-bottom-left) #scrollToTop {
        right: 20px;
    }
}

/* CV / PROFESYONEL BİYOGRAFİ SAYFASI
   ============================================== */

/* CV Detay Kartları */
.cv-details {
    padding: 40px 0;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.detail-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2ecc71, #f39c12);
    transition: all 0.3s ease;
}

.detail-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.detail-card:hover::before {
    height: 6px;
}

/* Kart Başlıkları */
.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3498db, #2ecc71);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
    position: relative;
    overflow: hidden;
}

.card-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.detail-card:hover .card-icon::before {
    left: 100%;
}

.card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Uzmanlık Alanları */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.expertise-item {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(46, 204, 113, 0.1));
    padding: 15px 20px;
    border-radius: 15px;
    border: 1px solid rgba(52, 152, 219, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: slideInUp 0.6s ease both;
}

.expertise-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(52, 152, 219, 0.1), transparent);
    transition: left 0.5s ease;
}

.expertise-item:hover {
    transform: translateY(-3px);
    border-color: rgba(52, 152, 219, 0.5);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.2);
}

.expertise-item:hover::before {
    left: 100%;
}

.expertise-text {
    font-weight: 600;
    color: #34495e;
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
}

/* Eğitim Kartı */
.education-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, rgba(241, 196, 15, 0.1), rgba(230, 126, 34, 0.1));
    padding: 25px;
    border-radius: 18px;
    border: 1px solid rgba(241, 196, 15, 0.2);
    transition: all 0.3s ease;
}

.education-item:hover {
    transform: translateX(5px);
    border-color: rgba(241, 196, 15, 0.5);
    box-shadow: 0 8px 20px rgba(241, 196, 15, 0.2);
}

.education-degree h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 8px 0;
}

.education-degree p {
    font-size: 1rem;
    color: #7f8c8d;
    margin: 0;
    font-weight: 500;
}

.education-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    box-shadow: 0 6px 15px rgba(243, 156, 18, 0.3);
}

/* İletişim Kartı */
.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.1), rgba(142, 68, 173, 0.1));
    border-radius: 15px;
    border: 1px solid rgba(155, 89, 182, 0.2);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(155, 89, 182, 0.1), transparent);
    transition: left 0.5s ease;
}

.contact-item:hover {
    transform: translateX(8px);
    border-color: rgba(155, 89, 182, 0.5);
    box-shadow: 0 8px 20px rgba(155, 89, 182, 0.2);
    text-decoration: none;
    color: inherit;
}

.contact-item:hover::before {
    left: 100%;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    box-shadow: 0 6px 15px rgba(155, 89, 182, 0.3);
    flex-shrink: 0;
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-label {
    font-size: 0.85rem;
    color: #7f8c8d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    font-size: 1rem;
    color: #2c3e50;
    font-weight: 600;
}

/* Call to Action */
.cv-cta {
    padding: 40px 0;
}

.cta-card {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    border-radius: 30px;
    padding: 50px;
    text-align: center;
    color: white;
    box-shadow: 0 20px 60px rgba(44, 62, 80, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(52, 152, 219, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(46, 204, 113, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
}

.cta-content h3 {
    font-size: 2rem;
    font-weight: 800;
    margin: 0 0 15px 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-content p {
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 18px 35px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    box-shadow: 0 8px 25px rgba(52,152,219,0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2980b9, #1f5f99);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(52,152,219,0.6);
}

.btn-secondary {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
    box-shadow: 0 8px 25px rgba(46,204,113,0.4);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #27ae60, #1e8449);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(46,204,113,0.6);
}

/* ==============================================
   CV/BIOGRAPHY PAGE STYLES - MODERN DESIGN
   ============================================== */

.bio-page {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
    position: relative;
}

.bio-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(52, 152, 219, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(46, 204, 113, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

/* Bio Hero Section */
.bio-hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #2c3e50;
    position: relative;
    overflow: hidden;
}

.bio-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(52, 152, 219, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(46, 204, 113, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(155, 89, 182, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.bio-hero-content {
    display: grid;
    grid-template-columns: 280px 1fr 320px;
    gap: 40px;
    align-items: start;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

/* Bio Info */
.bio-info {
    padding-left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 280px;
}

/* Bio Stats - Moved to right column */
.bio-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 0;
    align-self: center;
}

/* Profile Photo */
.profile-photo-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-photo-container::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: linear-gradient(45deg, #3498db, #2ecc71);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.8;
}

.profile-photo {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid #ffffff;
    box-shadow: 
        0 15px 35px rgba(0,0,0,0.1),
        0 5px 15px rgba(0,0,0,0.07);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.profile-photo:hover {
    transform: scale(1.02);
    box-shadow: 
        0 20px 45px rgba(0,0,0,0.15),
        0 8px 20px rgba(0,0,0,0.1);
}

/* Bio Info - Updated */
.bio-info {
    padding-left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 280px;
}

.bio-name {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 12px;
    color: #2c3e50;
    line-height: 1.2;
    font-family: 'Segoe UI', system-ui, sans-serif;
}

.bio-title {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 600;
    color: #3498db;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.bio-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    border-radius: 2px;
}

.bio-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 35px;
    font-weight: 400;
    max-width: 90%;
}

/* Bio Stats */
.bio-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 0;
    align-self: center;
}

.stat-item {
    text-align: left;
    padding: 15px 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 
        0 4px 15px rgba(0,0,0,0.08),
        0 1px 6px rgba(0,0,0,0.05);
    border: 1px solid rgba(52, 152, 219, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    transition: left 0.4s ease;
}

.stat-item:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(0,0,0,0.12),
        0 3px 10px rgba(0,0,0,0.08);
    border-color: rgba(52, 152, 219, 0.2);
}

.stat-item:hover::before {
    left: 0;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #3498db;
    margin-bottom: 2px;
    font-family: 'Segoe UI', system-ui, sans-serif;
    line-height: 1;
    flex-shrink: 0;
    min-width: 60px;
}

.stat-label {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
    flex: 1;
}

/* Bio Details Section */
.bio-details {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.bio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.bio-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.bio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2ecc71, #f39c12);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.bio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.bio-card:hover::before {
    transform: scaleX(1);
}

.bio-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.bio-card h3 i {
    font-size: 1.5rem;
    background: linear-gradient(135deg, #3498db, #2ecc71);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Specialties */
.specialties-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.specialty-tag {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.specialty-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.specialty-tag:hover {
    background: linear-gradient(135deg, #2980b9, #1f5f99);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
}

/* CV Page Mobile Responsive Design */
@media (max-width: 1024px) {
    .bio-hero-content {
        grid-template-columns: 240px 1fr 280px;
        gap: 30px;
    }
    
    .profile-photo {
        width: 240px;
        height: 240px;
    }
    
    .bio-info {
        padding-left: 0;
        min-height: auto;
    }
    
    .bio-stats {
        gap: 12px;
    }
    
    .stat-item {
        padding: 12px 15px;
    }
    
    .stat-number {
        font-size: 1.6rem;
        min-width: 50px;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .bio-hero {
        padding: 60px 0 50px;
    }
    
    .bio-hero-content {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }
    
    .profile-photo-container {
        justify-self: center;
    }
    
    .profile-photo {
        width: 220px;
        height: 220px;
    }
    
    .bio-info {
        padding-left: 0;
        order: 2;
    }
    
    .bio-stats {
        order: 3;
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 280px;
        margin: 30px auto 0;
    }
    
    .stat-item {
        text-align: center;
        flex-direction: column;
        gap: 8px;
        padding: 15px;
    }
    
    .stat-number {
        font-size: 1.8rem;
        min-width: auto;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
      .bio-name {
        font-size: 2.2rem;
    }
    
    .bio-title {
        font-size: 1.2rem;
    }
    
    .bio-description {
        max-width: 100%;
        font-size: 1rem;
    }
    
    .bio-details {
        padding: 80px 0;
    }
    
    .bio-grid {
        grid-template-columns: 1fr;
        gap: 30px;    }
    
    .bio-card {
        padding: 30px;
        border-radius: 15px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .bio-hero {
        padding: 50px 0 40px;
    }

    .profile-photo {
        width: 180px;
        height: 180px;
    }

    .profile-photo-container::before {
        top: -10px;
        left: -10px;
        right: -10px;
        bottom: -10px;
    }

    .bio-name {
        font-size: 1.8rem;
    }

    .bio-title {
        font-size: 1rem;
    }

    .bio-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .stat-item {
        padding: 15px 10px;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    /* Medya sorgusu içinde olması gereken diğer mobil stiller */
    .bio-details {
        padding: 60px 0;
    }

    .bio-card {
        padding: 25px;
        margin: 0 10px;
    }

    .bio-card h3 {
        font-size: 1.2rem;
    }

    .specialties-list {
        gap: 8px;
    }

    .specialty-tag {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .contact-item {
        padding: 12px 15px;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .bio-cta {
        padding: 60px 0;
    }

    .cta-content h3 {
        font-size: 1.8rem;
    }

    .cta-content p {
        font-size: 1rem;
        padding: 0 20px;
    }

    .btn {
        padding: 15px 25px;
        font-size: 1rem;
    }
}

/* Animation optimizations for mobile */
@media (max-width: 768px) {
    .profile-photo-container::before {
        animation-duration: 12s;
    }
    
    .bio-name {
        animation: none;
    }
    
    .bio-page::before {
        display: none;
    }
    
    .bio-hero::before {
        animation: none;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .profile-photo-container::before,
    .bio-name,
    .bio-hero::before,
    .stat-item::before,
    .specialty-tag::before,
    .btn::before {
        animation: none !important;
    }
    
    .profile-photo:hover,
    .stat-item:hover,
    .bio-card:hover,
    .specialty-tag:hover,
    .btn:hover {
        transform: none !important;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .bio-hero {
        background: #000;
        color: #fff;
    }
    
    .bio-card {
        background: #fff;
        border: 2px solid #000;
    }
    
    .bio-name,
    .bio-title {
        background: none;
        -webkit-text-fill-color: unset;
        color: #fff;
    }
    
    .specialty-tag {
        background: #000;
        color: #fff;
        border: 1px solid #fff;
    }
    
    .btn {
        background: #000 !important;
        color: #fff !important;
        border: 2px solid #fff;
    }
}

/* Print styles */
@media print {
    .bio-page::before,
    .bio-hero::before,
    .profile-photo-container::before,
    .bio-cta {
        display: none !important;
    }
    
    .bio-hero {
        background: #fff !important;
        color: #000 !important;
        padding: 40px 0;
    }
    
    .bio-name,
    .bio-title {
        background: none !important;
        -webkit-text-fill-color: unset !important;
        color: #000 !important;
    }
    
    .bio-card {
        box-shadow: none !important;
        border: 1px solid #ccc !important;
        page-break-inside: avoid;
    }
    
    .specialty-tag {
        background: #f8f9fa !important;
        color: #000 !important;
        border: 1px solid #ccc;
    }
}

/* Footer Copyright - Modern Minimal Design */
.footer-copyright {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 30px 0;
    text-align: center;
    background: rgba(0,0,0,0.2);
    position: relative;
}

.footer-copyright::before {
    display: none; /* Gereksiz dekoratif element kaldırıldı */
}

.copyright-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.copyright-content p {
    margin: 8px 0;
    color: #bdc3c7;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    transition: color 0.2s ease;
}

.copyright-content p:first-child {
    font-weight: 500;
    color: #ecf0f1;
    font-size: 14px;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
    text-transform: none;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
}

.copyright-content p:last-child {
    font-style: normal;
    color: #95a5a6;
    font-size: 13px;
    font-weight: 400;
    opacity: 0.8;
}

.copyright-content p:hover {
    color: #3498db;
    transform: none;
}

/* Modern minimal approach - single line on large screens */
@media (min-width: 768px) {
    .copyright-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .copyright-content p {
        margin: 0;
        flex: 0 0 auto;
    }
    
    .copyright-content p:last-child {
        margin-left: auto;
    }
}

@media (max-width: 767px) {
    .footer-copyright {
        padding: 25px 0;
    }
    
    .copyright-content p {
        font-size: 13px;
    }
    
    .copyright-content p:first-child {
        font-size: 13px;
    }
    
    .copyright-content p:last-child {
        font-size: 12px;
    }
}

/* ================================================
   MODERN CSS OPTIMIZATIONS & PERFORMANCE FIXES
   ================================================ */

/* Reduced Motion Support - Accessibility */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .cta-button, .search-button, .btn {
        border: 2px solid currentColor;
    }
    
    .banner-features .feature-item {
        border: 1px solid rgba(255,255,255,0.5);
    }
}

/* Dark Mode Support Removed */

/* Focus Visible Support for Better Accessibility */
.cta-button:focus-visible,
.search-button:focus-visible,
.btn:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* Container Query Support (Future-proofing) */
@supports (container-type: inline-size) {
    .search-container {
        container-type: inline-size;
    }
    
    @container (max-width: 600px) {
        .search-buttons-container {
            flex-direction: column;
            gap: 10px;
        }
    }
}

/* Modern Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}

/* Selection Styling */
::selection {
    background: rgba(102, 126, 234, 0.3);
    color: inherit;
}

::-moz-selection {
    background: rgba(102, 126, 234, 0.3);
    color: inherit;
}

/* Performance Optimizations */
.hero-banner,
.search-section,
.vehicle-categories {
    contain: layout style paint;
}

.brand-slide,
.bg-slide {
    will-change: opacity, transform;
}

/* Loading State Improvements */
.loading {
    position: relative;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Error State Styling */
.error-state {
    color: #dc3545;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    padding: 10px 15px;
    border-radius: 6px;
    margin: 10px 0;
}

.success-state {
    color: #155724;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    padding: 10px 15px;
    border-radius: 6px;
    margin: 10px 0;
}

/* Enhanced Responsive Typography */
@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
}

@media (min-width: 1200px) {
    html {
        font-size: 18px;
    }
}

/* Layout Shift Prevention */
.logo img {
    width: auto;
    height: 50px;
    aspect-ratio: auto;
}

.brand-logo {
    width: 120px;
    height: 60px;
    object-fit: contain;
}

/* Modern Grid Layouts for Future Use */
.future-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* Utility Classes */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Enhanced Touch Support */
@media (hover: none) and (pointer: coarse) {
    .cta-button,
    .search-button,
    .btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    .banner-dot {
        min-width: 44px;
        min-height: 44px;
    }
}

/* Print Optimizations */
@media print {
    * {
        background: white !important;
        color: black !important;
        box-shadow: none !important;
    }
    
    .no-print {
        display: none !important;
    }
    
    a[href]:after {
        content: " (" attr(href) ")";
    }
    
    @page {
        margin: 2cm;
    }
}

/* CSS Grid Support Enhancement */
@supports (display: grid) {
    .enhanced-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }
}

/* CSS Flexbox Gap Support */
@supports (gap: 1rem) {
    .flex-gap {
        gap: 1rem;
    }
}

/* Backdrop Filter Support */
@supports (backdrop-filter: blur(10px)) {
    .blur-bg {
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
}

/* CSS Custom Properties for Better Theme Management */
:root {
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    
    --border-radius: 8px;
    --box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
    
    --font-family-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-family-mono: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
}

/* Modern CSS Reset Additions */
* {
    box-sizing: border-box;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

input, button, textarea, select {
    font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
}

/* Bağış Bölümü Stilleri */
.donation-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
    margin-top: 50px;
    margin-bottom: 50px;
    overflow: hidden;
}

.donation-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.4;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23667eea' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.donation-container {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    max-width: 900px;
    margin: 0 auto;
}

.donation-container:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.donation-header {
    margin-bottom: 30px;
}

.donation-title {
    color: #667eea;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.donation-title i {
    margin-right: 10px;
    color: #764ba2;
}

.donation-description {
    font-size: 1.1rem;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.donation-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.bank-info-container {
    background-color: #f7fafc;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.bank-info-title {
    color: #4a5568;
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.bank-info-title i {
    color: #667eea;
    margin-right: 10px;
}

.iban-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.iban-item {
    flex: 1 0 100%;
    padding: 15px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.iban-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.iban-title {
    color: #4a5568;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.iban-number {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f1f5f9;
    padding: 10px 15px;
    border-radius: 6px;
    font-family: monospace;
    font-size: 1.1rem;
}

.iban-number code {
    color: #334155;
    font-weight: 600;
}

.copy-iban {
    background: #3498db;
    color: #fff;
    border: none;
    padding: 6px 8px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.3s;
}

.copy-iban:hover {
    background: #2573a6;
}

.donation-action .donation-button.modern {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    margin-top: 16px;
}

.donation-action .donation-button.modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* ==============================================
   DROPDOWN MENU STYLES - UNIFIED & OPTIMIZED
   ============================================== */

.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    position: relative;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.dropdown-toggle:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.18s ease, visibility 0.18s ease;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s ease;
}

.dropdown-menu a:hover {
    background: rgba(255,255,255,0.15);
}

/* Reset main-navigation default link styles for dropdown items */
.main-navigation .dropdown-menu a {
    background: none !important;
    border: none !important;
    backdrop-filter: none !important;
    margin: 0 !important;
    border-radius: 0 !important;
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .main-navigation {
        position: fixed;
        top: 4rem; /* place nav below header height */
        left: 0;
        right: 0;
        bottom: 0; /* fill to bottom */
        background: #fff;
        display: none;
        flex-direction: column;
        padding-top: 0; /* no extra top padding */
        overflow-y: auto;
        z-index: 99; /* ensure header (z-index:100) stays on top */
        height: calc(100vh - 4rem); /* full height minus header */
    }
    .main-navigation.mobile-open {
        display: flex;
    }
    .main-navigation ul {
        flex-direction: column;
        margin: 0;
        padding: 0;
        width: 100%;
    }
    .main-navigation ul li {
        width: 100%;
        list-style: none;
    }
    .main-navigation a {
        display: block;
        color: #333;
        padding: 15px 20px;
        background: none;
        border-bottom: 1px solid #eee;
        text-decoration: none;
        font-weight: 500;
    }
    .main-navigation a:hover {
        background: #f5f5f5;
    }
    /* Dropdown inside mobile nav */
    .main-navigation ul li.dropdown .dropdown-menu {
        display: none;
        flex-direction: column;
        background: #fff;
        margin: 0;
    }
    .main-navigation ul li.dropdown.open .dropdown-menu {
        display: flex;
    }
    .main-navigation ul li.dropdown .dropdown-menu a {
        padding: 15px 40px;
        border-bottom: 1px solid #eee;
    }
    
    /* Caret rotation on dropdown open */
    .main-navigation ul li.dropdown .dropdown-toggle i.fa-caret-down {
        transition: transform 0.3s ease;
        float: right;
    }
    
    .main-navigation ul li.dropdown.open .dropdown-toggle i.fa-caret-down {
        transform: rotate(180deg);
    }
}

@media (max-width: 768px) {
    .main-navigation.mobile-open ul {
        flex: 1;
        overflow-y: auto;
    }
}

/* Dropdown transition fixes - unified */
.main-navigation .dropdown-menu {
    transform: translateY(10px);
}

.main-navigation ul li.dropdown:hover > .dropdown-menu {
    transform: translateY(0);
}

.main-navigation ul li.dropdown {
    position: relative;
}

@media (max-width: 768px) {
    /* Show sliding brand logos on mobile */
    .brand-slider-container {
        display: block !important;
        padding: 20px 0;
    }
    .brand-slider {
        display: flex !important;
        flex-wrap: nowrap;
        animation: brandScroll 30s linear infinite;
        gap: 20px;
        width: max-content;
    }
    .brand-slide {
        flex: 0 0 auto;
    }
    
    /* Mobilde tooltip gizle */
    .brand-slide::before,
    .brand-slide::after {
        display: none !important;
    }
    
    /* Mobil touch feedback */
    .brand-slide:active .brand-logo-container {
        transform: scale(0.95);
        box-shadow: 0 2px 10px rgba(52, 152, 219, 0.3);
    }
    
    /* Mobilde logo boyutları */
    .brand-logo-container {
        padding: 15px;
    }
    
    .brand-name {
        font-size: 11px;
    }
}

/* Override logo size to be larger and prominent */
.site-header .logo img {
    max-height: 120px !important;
    height: auto !important;
    width: auto !important;
    object-fit: contain;
}

/* Remove textual logo */
.logo-text {
    display: none !important;
}

/* ==============================================
   FIX FOR EXTERNAL WHATSAPP & FLOATING WIDGETS
   Harici WhatsApp ve floating butonlar için düzeltme
   ============================================== */

/* Genel fixed widget düzeltmesi - Tüm harici eklentiler için */
body > div[style*="position: fixed"],
body > a[style*="position: fixed"],
body > div[class*="whatsapp"],
body > div[class*="wa-"],
body > div[class*="floating"],
body > div[class*="sticky"],
body > a[href*="wa.me"],
body > a[href*="whatsapp"] {
    position: fixed !important;
    z-index: 9997 !important;
}

/* WhatsApp widget özel düzeltmesi */
.whatsapp-button,
.wa-button,
.wa-chat-button,
#whatsapp-button,
#wa-button,
[class*="WhatsApp"],
[id*="whatsapp"],
[id*="WhatsApp"] {
    position: fixed !important;
    z-index: 9997 !important;
}

/* Footer içindeki floating elementleri dışarı çıkar */
.site-footer div[style*="position: fixed"],
.site-footer a[style*="position: fixed"] {
    position: fixed !important;
    bottom: 20px !important;
    left: 20px !important;
    z-index: 9997 !important;
}

/* Chat widget scroll to top'un altında kalmasın */
body:has(#cartalog-chat-widget) div[class*="whatsapp"],
body:has(#cartalog-chat-widget) a[href*="wa.me"] {
    left: 20px !important;
    right: auto !important;
}

/* Responsive düzeltme */
@media (max-width: 768px) {
    body > div[style*="position: fixed"],
    body > a[style*="position: fixed"] {
        bottom: 15px !important;
        left: 15px !important;
    }
}
