/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* TAK Brand Colors - Logo Based Theme #3df9fb */
:root {
    --tak-primary: #3df9fb;      /* TAK logo turkuaz */
    --tak-primary-dark: #00d4dd; /* koyu turkuaz */
    --tak-primary-light: #8ffcff; /* açık turkuaz */
    --tak-secondary: #6c5ce7;    /* mor vurgu */
    --tak-accent: #fd79a8;       /* pembe vurgu */
    --tak-success: #00b894;      /* yeşil */
    --tak-warning: #fdcb6e;      /* sarı */
    --tak-gray: #636e72;         /* nötr gri */
    --tak-light: #f8f9ff;        /* açık arka plan */
    --tak-dark: #2d3436;         /* koyu metin */
    --tak-gradient-1: linear-gradient(135deg, #3df9fb 0%, #6c5ce7 100%);
    --tak-gradient-2: linear-gradient(135deg, #ffffff 0%, #f8f9ff 50%, #e8f4ff 100%);
    --tak-gradient-3: linear-gradient(135deg, #3df9fb 0%, #00d4dd 50%, #6c5ce7 100%);
    --tak-shadow: 0 8px 32px rgba(61, 249, 251, 0.15);
    --tak-shadow-hover: 0 12px 48px rgba(61, 249, 251, 0.25);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--tak-dark);
    background: var(--tak-gradient-2);
    min-height: 100vh;
    --color-primary: var(--tak-primary);
    --color-accent: var(--tak-accent);
    animation: backgroundShift 20s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% { background: var(--tak-gradient-2); }
    50% { background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 50%, #e0f0ff 100%); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header { background:#ffffff; box-shadow:0 2px 10px rgba(0,0,0,0.06); }

/* Topbar */
/* Topbar removed */

/* Mainbar */
.mainbar { background: #ffffff; }
.mainbar-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 16px; padding: 12px 0; }

/* Mobile-First Header Design (Sahibinden Style) */
.mobile-header {
    position: relative;
}

/* Mobile Header */
.mobile-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    position: relative;
}

/* Hamburger Menu - Anasayfa İçin Minimal */
.mobile-hamburger {
    width: 40px;
    height: 40px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    color: #374151;
    font-size: 18px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    visibility: visible;
    opacity: 1;
    z-index: 9999;
    position: relative;
}

.mobile-hamburger:hover,
.mobile-hamburger:active {
    background: #f1f5f9;
    border-color: #cbd5e1;
    transform: scale(0.95);
}

/* Ekstra küçük ekranlar için tutarlı boyut */
@media (max-width: 375px) {
    .mobile-hamburger {
        width: 40px;
        height: 40px;
    }
}

/* Hamburger Çizgileri - Anasayfa İçin Koyu */
.mobile-hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: #374151;
    border-radius: 1px;
    transition: all 0.3s ease;
    opacity: 1;
    visibility: visible;
}

/* Bu CSS'lere artık gerek yok - icon tamamen kaybolacak */

/* Active state - Hamburger icon tamamen kaybolsun */
.mobile-hamburger.active {
    opacity: 0 !important;
    visibility: hidden !important;
    transform: scale(0.8) !important;
    pointer-events: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.mobile-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.mobile-logo .logo-img {
    height: 45px;
    width: auto;
}

.mobile-cta {
    background: var(--tak-gradient-1);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    box-shadow: var(--tak-shadow);
    transition: all 0.3s ease;
}

.mobile-cta:hover {
    transform: translateY(-1px);
    box-shadow: var(--tak-shadow-hover);
}

/* Desktop Header (Hidden on Mobile) */
.desktop-header-content {
    display: none;
}

/* Desktop Layout */
@media (min-width: 769px) {
    .mobile-header-content {
        display: none;
    }
    
    .desktop-header-content {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        grid-template-areas: 'left logo right' 'search search search';
        align-items: center;
        gap: 16px;
        padding: 16px 0;
    }
    
    .desktop-header-content .actions-left {
        grid-area: left;
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }
    
    .desktop-header-content .logo {
        grid-area: logo;
        text-align: center;
    }
    
    .desktop-header-content .actions-right {
        grid-area: right;
        display: flex;
        justify-content: flex-end;
        gap: 12px;
        align-items: center;
    }
    
    .desktop-header-content .search-wide {
        grid-area: search;
    }
}

/* Mobile Navigation Overlay (Sahibinden Style) */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.mobile-nav-sidebar {
    position: absolute;
    top: 0;
    left: 0;
    width: clamp(280px, 85vw, 350px);
    max-width: clamp(320px, 90vw, 380px);
    height: 100dvh;
    background: white;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: visible;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.mobile-nav-overlay.active .mobile-nav-sidebar {
    transform: translateX(0);
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: clamp(12px, 3vw, 16px) clamp(16px, 4vw, 20px);
    background: linear-gradient(135deg, #3df9fb, #2a5298);
    color: white;
    min-height: clamp(50px, 12vh, 60px);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: clamp(8px, 2vw, 12px);
}

.nav-logo-img {
    height: clamp(24px, 6vh, 32px);
    width: auto;
    max-width: clamp(60px, 15vw, 80px);
    filter: brightness(0) invert(1);
}

.nav-brand {
    font-size: clamp(16px, 4vw, 18px);
    font-weight: 700;
    color: white;
}

.nav-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: clamp(32px, 8vw, 40px);
    height: clamp(32px, 8vw, 40px);
    border-radius: clamp(4px, 1vw, 8px);
    cursor: pointer;
    font-size: clamp(18px, 4.5vw, 22px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.nav-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.mobile-nav-content {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    padding-bottom: clamp(20px, 5vh, 40px);
    max-height: calc(100dvh - 120px);
    /* Smooth scrolling for mobile */
    -webkit-overflow-scrolling: touch;
    /* Hide scrollbar but keep functionality */
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.mobile-nav-content::-webkit-scrollbar {
    display: none;
}

.nav-search {
    padding: clamp(16px, 4vw, 20px);
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.search-input-wrapper {
    display: flex;
    background: white;
    border: 1px solid #ddd;
    border-radius: clamp(6px, 1.5vw, 8px);
    overflow: hidden;
    min-height: clamp(40px, 10vh, 48px);
}

.nav-search-input {
    flex: 1;
    padding: clamp(10px, 2.5vw, 12px) clamp(12px, 3vw, 15px);
    border: none;
    font-size: clamp(14px, 3.5vw, 16px);
    outline: none;
    min-width: 0; /* Allow shrinking */
}

.nav-search-btn {
    background: linear-gradient(135deg, #3df9fb, #2a5298);
    color: white;
    border: none;
    padding: clamp(10px, 2.5vw, 12px) clamp(16px, 4vw, 20px);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: clamp(14px, 3.5vw, 16px);
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-search-btn:hover {
    background: var(--tak-primary-dark);
}

.nav-section {
    border-bottom: clamp(6px, 1.5vw, 8px) solid #f8f9fa;
}

.nav-social {
    border-bottom: none !important;
    padding: clamp(16px, 4vw, 20px) clamp(16px, 4vw, 20px) clamp(32px, 8vw, 40px);
    margin-top: auto;
    margin-bottom: env(safe-area-inset-bottom, 20px);
}

.nav-social-grid {
    display: flex;
    justify-content: center;
    gap: clamp(12px, 3vw, 16px);
    flex-wrap: wrap;
    padding: 10px 0;
}

.nav-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(44px, 11vw, 52px);
    height: clamp(44px, 11vw, 52px);
    background: rgba(61, 249, 251, 0.1);
    border: 2px solid rgba(61, 249, 251, 0.3);
    border-radius: clamp(8px, 2vw, 12px);
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-social-btn:hover {
    background: #3df9fb;
    border-color: #3df9fb;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(61, 249, 251, 0.4);
}

.nav-social-btn svg {
    width: 24px;
    height: 24px;
    fill: #3df9fb;
    transition: all 0.3s ease;
}

.nav-social-btn:hover svg {
    fill: #fff;
}

.nav-social-btn.instagram:hover {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #e1306c;
    box-shadow: 0 8px 25px rgba(225, 48, 108, 0.4);
}

.nav-social-btn.twitter:hover {
    background: #000;
    border-color: #000;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.nav-social-btn.youtube:hover {
    background: #ff0000;
    border-color: #ff0000;
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
}

.nav-section-title {
    font-size: clamp(11px, 2.75vw, 13px);
    font-weight: 700;
    color: #666;
    padding: clamp(12px, 3vw, 16px) clamp(16px, 4vw, 20px) clamp(8px, 2vw, 10px);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: clamp(0.3px, 0.1vw, 0.5px);
}

.nav-item {
    display: flex;
    align-items: center;
    gap: clamp(12px, 3vw, 16px);
    padding: clamp(12px, 3vw, 16px) clamp(16px, 4vw, 20px);
    color: #333;
    text-decoration: none;
    font-size: clamp(14px, 3.5vw, 16px);
    font-weight: 500;
    transition: all 0.2s ease;
    min-height: 44px; /* Touch target */
    border-radius: clamp(6px, 1.5vw, 8px);
    margin: 0 clamp(8px, 2vw, 10px);
    border-bottom: 1px solid #f0f0f0;
}

.nav-item:hover {
    background: #f8f9fa;
    color: var(--tak-primary);
}

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

.nav-item i {
    width: clamp(18px, 4.5vw, 22px);
    text-align: center;
    color: #3df9fb;
    font-size: clamp(16px, 4vw, 18px);
    flex-shrink: 0;
}

.nav-item span {
    flex: 1;
}

.pill-btn { 
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    color: var(--tak-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center; 
    border: 2px solid rgba(61, 249, 251, 0.4); 
    padding: 8px 14px; 
    border-radius: 20px; 
    cursor: pointer; 
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: var(--tak-shadow);
}
.pill-btn:hover{ 
    background: var(--tak-gradient-1);
    color: #ffffff;
    transform: translateY(-2px) scale(1.05);
    box-shadow: var(--tak-shadow-hover);
    border-color: transparent;
}

.pill-btn.location-selected {
    background: var(--tak-success);
    border-color: var(--tak-success);
    color: white;
}

.pill-btn.location-selected:hover {
    background: #1e7e34;
    border-color: #1e7e34;
}

.location-icon {
    font-size: 12px;
}

.search-wide .search-box{ 
    display: flex; 
    align-items: center; 
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(61, 249, 251, 0.3); 
    border-radius: 25px; 
    padding: 8px 16px; 
    box-shadow: var(--tak-shadow);
    transition: all 0.3s ease;
    max-width: 600px;
    margin: 0 auto;
}

.search-wide .search-box:focus-within {
    border-color: var(--tak-primary);
    box-shadow: var(--tak-shadow-hover);
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.95);
}
.search-wide .search-input{ flex:1; border:none; outline:none; font-size:15px; padding:8px 10px; }
.search-wide .search-btn{ 
    background: var(--tak-primary); 
    color: #fff; 
    border: none; 
    padding: 12px 24px; 
    border-radius: 25px; 
    font-weight: 700; 
    cursor: pointer;
    transition: all 0.3s ease;
}
.search-wide .search-btn:hover{ 
    background: var(--tak-primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(23, 162, 184, 0.4);
}

.logo { text-align: center; }
.logo-img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(61, 249, 251, 0.3));
    transition: all 0.3s ease;
    /* Logo animasyonu kaldırıldı - performans için */
}

.logo-img:hover {
    filter: drop-shadow(0 0 20px rgba(61, 249, 251, 0.8));
    transform: scale(1.05);
}

/* Logo animasyonu kaldırıldı - performans için */

.search-container { position: relative; }
.search-box { display: flex; align-items: center; background: #ffffff; border-radius: 28px; padding: 10px 14px; border: 1px solid #e5e7eb; }
.search-icon { color: #6b7280; margin-right: 8px; }
.search-input { flex: 1; border: none; outline: none; font-size: 14px; }
.search-btn { background: #2563eb; color: #fff; border: none; padding: 10px 16px; border-radius: 20px; cursor: pointer; font-weight: 600; }
.search-btn:hover { background: #1d4ed8; }

.user-actions { display: flex; align-items: center; justify-content: flex-end; gap: 12px; }
.location-selector, .auth-section { background: #f8fafc; color: #0f172a; border: 1px solid #e5e7eb; padding: 10px 12px; border-radius: 10px; cursor: pointer; }
.location-selector:hover, .auth-section:hover { background: #f1f5f9; }
.cta-button { 
    background: var(--tak-gradient-3);
    color: white; 
    padding: 10px 18px; 
    border-radius: 20px; 
    text-decoration: none; 
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    box-shadow: var(--tak-shadow);
    position: relative;
    overflow: hidden;
}
.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}
.cta-button:hover::before {
    left: 100%;
}
.cta-button:hover { 
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--tak-shadow-hover);
}

/* Subbar */
/* Subbar removed */

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    flex-shrink: 0;
    text-align: center;
    flex: 1;
}

.logo-img {
    height: 60px;
    width: auto;
}

.search-container {
    flex: 0 0 400px;
    position: relative;
}

.search-box {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 25px;
    padding: 8px 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 8px 12px;
    font-size: 14px;
    background: transparent;
}

.search-btn {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.search-btn:hover {
    background: #c0392b;
}

.user-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-box {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 25px;
    padding: 8px 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.search-icon {
    color: #666;
    margin-right: 10px;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 14px;
    padding: 8px 0;
}

.search-btn {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s ease;
}

.search-btn:hover {
    background: #c0392b;
}

.user-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.location-selector,
.auth-section {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #0f172a;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    cursor: pointer;
    padding: 10px 12px;
    border-radius: 10px;
    transition: background 0.2s ease;
}

.location-selector:hover,
.auth-section:hover {
    background: #f1f5f9;
}

.location-text,
.auth-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.location-label,
.auth-label {
    font-size: 12px;
    font-weight: 500;
}

.location-value,
.auth-sub {
    font-size: 11px;
    opacity: 0.9;
}

/* Autocomplete Dropdown */
.autocomplete-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    z-index: 1000;
    margin-top: 5px;
    max-height: 200px;
    overflow-y: auto;
}

.autocomplete-item {
    padding: 12px 15px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.3s ease;
}

.autocomplete-item:hover {
    background: #f8f9fa;
}

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

/* Main Content */
.main-content {
    min-height: calc(100vh - 200px);
}

/* Advertisement Sections - Hidden by default */
.ad-section {
    display: none; /* Gizli başlar, admin panelden aktif yapılınca görünür */
    background: transparent;
    padding: 15px 0;
    margin: 20px 0;
    transition: all 0.3s ease;
}

.ad-section.active {
    display: block;
}

.ad-banner {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    box-shadow: var(--tak-shadow);
    border: 1px solid rgba(61, 249, 251, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ad-banner:hover {
    box-shadow: var(--tak-shadow-hover);
    transform: translateY(-3px) scale(1.02);
}

.ad-banner img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 12px;
}

.ad-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--tak-primary);
    font-weight: 500;
    font-size: 14px;
    opacity: 0.7;
}

.ad-placeholder::before {
    content: '🎯';
    font-size: 24px;
    margin-bottom: 4px;
}

/* Photo Slideshow - 1200x400 Aspect Ratio (3:1) Korunarak Responsive */
.main-slider {
    position: relative;
    width: 95%;
    max-width: 1200px; /* Maksimum genişlik */
    margin: 20px auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--tak-shadow);
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%); /* Açık mavi gradient - tasarım ile uyumlu */
    
    /* Fallback height eski tarayıcılar için - 1920x600 exact */
    height: calc(95vw * 600 / 1920); /* EXACT 1920x600 ratio */
    min-height: 120px; /* Minimum mobile height */
    max-height: 400px; /* Maximum desktop height */
    
    /* Modern tarayıcılar için aspect ratio - 1920x600 exact */
    aspect-ratio: 1920 / 600; /* EXACT 1920x600 ratio */
}

/* Mobile için özel 1920x600 optimize - SCROLL ÖNLEYİCİ */
@media (max-width: 767px) {
    .main-slider {
        /* TAM EKRAN - Scroll önleme */
        width: 100% !important; /* Tam genişlik, padding yok */
        height: auto !important;
        aspect-ratio: 16 / 9 !important; /* Modern mobil aspect ratio */
        min-height: 160px !important;
        max-height: none !important;
        margin: 0 !important; /* Margin yok - tam genişlik */
        border-radius: 0 !important; /* Köşeler düz - tam ekran */
        overflow: hidden !important;
        box-shadow: none !important; /* Performans için */
    }
    
    .slide {
        background-size: cover !important; /* Tam doldur */
        background-position: center !important;
    }
}

/* Tablet ve Desktop için margin/border ayarları */
@media (min-width: 768px) {
    .main-slider {
        margin: 25px auto;
        border-radius: 25px;
        width: 100%;
        /* Desktop'ta da senin tasarımın aynen */
        height: 1020px;
        min-width: 1020px;
    }
    
    .slide {
        background-size: cover !important; /* TASARIMIN TAM GÖRÜNÜMÜ */
    }
}

@media (min-width: 1024px) {
    .main-slider {
        margin: 30px auto;
        width: 85%;
    }
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide {
    position: relative !important;
    min-width: 100% !important;
    width: 100% !important;
    height: 100% !important;
    background-size: cover !important; /* TASARIMIN TAM GÖRÜNÜMÜ - cover ile tam doldur */
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-color: transparent !important;
    flex-shrink: 0 !important;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

/* Slide wrapper için transform transition */
.slide-wrapper {
    display: flex !important;
    width: 100% !important;
    height: 100% !important;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(61, 249, 251, 0.1) 0%, 
        rgba(108, 92, 231, 0.1) 50%, 
        rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    pointer-events: none;
    padding: 15px; /* Mobile için küçük padding */
}

/* Tablet ve Desktop için padding artır */
@media (min-width: 768px) {
    .slider-overlay {
        padding: 20px;
    }
}

@media (min-width: 1024px) {
    .slider-overlay {
        padding: 25px;
    }
}

/* SLIDER CONTROLS - DISABLED FOR DESKTOP */
@media (max-width: 767px) {
    .slider-controls {
        position: absolute;
        top: 50%;
        left: -15px;
        right: -15px;
        transform: translateY(-50%);
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0;
        pointer-events: none;
    }
}

/* NAV BTN - MOBILE ONLY */
@media (max-width: 767px) {
    .nav-btn {
        background: rgba(255, 255, 255, 0.25); /* Çok daha şeffaf */
        backdrop-filter: blur(8px);
        border: none;
        color: var(--tak-primary);
        width: 35px; /* Mobile için küçük */
        height: 35px;
        border-radius: 10px;
        cursor: pointer;
        font-size: 14px;
        font-weight: 700;
        transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        pointer-events: all;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1); /* Çok hafif gölge */
        opacity: 0.6; /* Çok az gözüksün */
        margin: 0 8px; /* Kenarlardan az içeri */
    }
}

/* NAV BTN HOVER - MOBILE ONLY */
@media (max-width: 767px) {
    .nav-btn:hover {
        background: rgba(61, 249, 251, 0.8);
        color: white;
        transform: translateY(-1px) scale(1.02);
        box-shadow: 0 3px 12px rgba(61, 249, 251, 0.3);
        opacity: 0.9; /* Hover'da biraz daha görünür ama çok değil */
    }

    .nav-btn:active {
        transform: translateY(0) scale(0.98);
    }
}

/* Slide Content Overlay Styles */
.slide-content-overlay {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    z-index: 10;
    max-width: 50%;
}

.slide-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
}

.slide-subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0 0 1rem 0;
    opacity: 0.9;
}

.slide-description {
    font-size: 1rem;
    margin: 0 0 1.5rem 0;
    opacity: 0.8;
    line-height: 1.4;
}

.slide-button {
    display: inline-block;
    background: var(--tak-primary);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(61, 249, 251, 0.3);
}

.slide-button:hover {
    background: #00d4d6;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(61, 249, 251, 0.5);
}

/* Mobile için responsive content */
@media (max-width: 767px) {
    .slide-content-overlay {
        max-width: 70%;
        left: 15px;
    }
    
    .slide-title {
        font-size: 1.5rem;
    }
    
    .slide-subtitle {
        font-size: 1rem;
    }
    
    .slide-description {
        font-size: 0.9rem;
    }
    
    .slide-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Desktop nav buttons now handled by desktop-pro.css */

.slide-indicators {
    position: absolute;
    bottom: 7px; /* En alta koy */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 6px; /* Daha küçük gap */
    padding: 0; /* Padding kaldır */
    pointer-events: all;
}

/* Desktop için indicators büyült */
@media (min-width: 768px) {
    .slide-indicators {
        gap: 8px; /* Biraz daha büyük gap */
        bottom: 20px; /* Desktop'ta biraz daha yukarı */
    }
}

@media (min-width: 1024px) {
    .slide-indicators {
        gap: 10px; /* Desktop'ta orta gap */
        bottom: 25px; /* Desktop'ta daha yukarı */
    }
}

.indicator {
    width: 5px; /* Daha küçük */
    height: 5px; /* Daha küçük */
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5); /* Biraz daha görünür */
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.indicator.active {
    background: var(--tak-primary);
    border-color: white;
    transform: scale(1.2); /* Daha küçük scale */
    box-shadow: 0 0 8px rgba(61, 249, 251, 0.5); /* Daha küçük glow */
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.1); /* Daha küçük hover effect */
}

/* Support Section - Güvenli Ödeme Destek Hattı */
.support-section {
    padding: 15px 0;
    margin: 15px 0;
}

.support-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 20px 30px;
    background: var(--tak-gradient-1);
    border-radius: 20px;
    text-decoration: none;
    color: white;
    font-weight: 800;
    box-shadow: var(--tak-shadow);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.support-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.03) 2px,
            rgba(255, 255, 255, 0.03) 4px
        );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.support-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: transform 0.6s ease;
    opacity: 0;
}

.support-button:hover::before {
    opacity: 1;
}

.support-button:hover::after {
    transform: rotate(45deg) translate(50%, 50%);
    opacity: 1;
}

.support-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 48px rgba(61, 249, 251, 0.5),
                0 0 0 1px rgba(255, 255, 255, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #2a5298 0%, #3df9fb 50%, #00d4ff 100%);
}

.support-button:active {
    transform: translateY(-1px) scale(1.01);
}

.support-text-center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.support-line-1 {
    display: block;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.support-line-2 {
    display: block;
    font-size: 16px;
    font-weight: 900;
    line-height: 1.2;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.95;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Featured Section */
.featured-section {
    padding: clamp(40px, 10vw, 60px) 0;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: clamp(20px, 5vw, 30px);
    margin: clamp(20px, 5vw, 40px) 0;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: clamp(20px, 5vw, 40px);
    gap: clamp(12px, 3vw, 20px);
    flex-wrap: wrap;
}

.section-header-left {
    flex: 1;
}

.section-header-right {
    align-self: flex-start;
    margin-top: 8px;
}

.section-title {
    font-size: clamp(24px, 8vw, 36px);
    font-weight: 800;
    background: linear-gradient(135deg, #3df9fb, #2a5298);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
    margin: 0 0 clamp(12px, 3vw, 25px) 0;
    animation: titleGlow 3s ease-in-out infinite alternate;
    line-height: 1.2;
}

@keyframes titleGlow {
    0% { filter: drop-shadow(0 0 5px rgba(61, 249, 251, 0.3)); }
    100% { filter: drop-shadow(0 0 15px rgba(61, 249, 251, 0.6)); }
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 180px;
    height: 6px;
    background: linear-gradient(90deg, 
        var(--tak-primary) 0%, 
        rgba(61, 249, 251, 0.8) 30%, 
        rgba(61, 249, 251, 0.4) 70%, 
        transparent 100%);
    border-radius: 3px 0 0 3px;
    box-shadow: 0 2px 12px rgba(61, 249, 251, 0.3);
    animation: underlineGlow 2s ease-in-out infinite alternate;
    clip-path: polygon(0 0, 85% 0, 100% 50%, 85% 100%, 0 100%);
}

@keyframes underlineGlow {
    0% { box-shadow: 0 0 10px rgba(61, 249, 251, 0.4); }
    100% { box-shadow: 0 0 20px rgba(61, 249, 251, 0.8); }
}

.view-all-btn {
    background: var(--tak-primary);
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--tak-primary);
    font-size: 14px;
    align-self: flex-start;
}

.view-all-btn:hover {
    background: transparent;
    color: var(--tak-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(23, 162, 184, 0.3);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 100%;
    padding: 0 16px;
}

/* Section Subtitle */
.section-subtitle {
    color: var(--text-secondary);
    font-size: clamp(14px, 3.5vw, 18px);
    margin: var(--spacing-xs) 0 0 0;
    font-weight: 500;
    opacity: 0.8;
    line-height: 1.4;
}

/* Loading Spinner */
.loading-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 60px 20px;
    color: var(--tak-gray);
    font-size: 16px;
    font-weight: 500;
}

.spinner-icon {
    width: 40px;
    height: 40px;
    border: 4px solid var(--tak-primary-light);
    border-top: 4px solid var(--tak-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Footer */
.footer { background: #0f172a; color: #e5e7eb; padding: 48px 0 24px; margin-top: 60px; }

.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; margin-bottom: 30px; }

.footer-section h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 14px;
    color: #cbd5e1;
    letter-spacing: .3px;
    text-transform: uppercase;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a { color: #94a3b8; text-decoration: none; transition: color 0.2s ease; }
.footer-section ul li a:hover { color: #ffffff; }

.footer-bottom { text-align: center; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.08); color: #94a3b8; }

/* Car Listing Card Styles */
.car-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

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

.car-card.featured::before {
    content: '★';
    position: absolute;
    top: 10px;
    right: 10px;
    background: #3498db;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    z-index: 10;
}

.car-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.car-info {
    padding: 20px;
}

.car-location {
    color: #666;
    font-size: 12px;
    margin-bottom: 8px;
}

.car-year {
    color: #e74c3c;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
}

.car-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
}

.car-price {
    font-size: 20px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 10px;
}

.car-date {
    color: #666;
    font-size: 12px;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.modal-content {
    background: white;
    border-radius: 12px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    animation: modalSlideIn 0.3s ease;
}

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

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #ecf0f1;
}

.modal-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
}

/* Header profil dropdown */
.dropdown-menu{position:absolute;top:48px;right:0;background:#fff;border:1px solid #e5e7eb;border-radius:10px;box-shadow:0 10px 30px rgba(0,0,0,0.08);min-width:180px;z-index:10001;overflow:hidden}
.dropdown-item{display:flex;align-items:center;gap:8px;padding:10px 12px;font-size:14px;color:#0f172a;cursor:pointer}
.dropdown-item:hover{background:#f8fafc}

/* SATILDI etiketi */
.badge-sold{position:absolute;top:10px;left:10px;background:#ef4444;color:#fff;padding:6px 10px;border-radius:6px;font-weight:700;font-size:12px;box-shadow:0 2px 6px rgba(0,0,0,0.15)}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #7f8c8d;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.modal-close:hover {
    background: #ecf0f1;
    color: #2c3e50;
}

.modal-body {
    padding: 25px;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #2c3e50;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #3498db;
}

.btn-primary {
    width: 100%;
    padding: 12px 20px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #2980b9;
}

.auth-links {
    margin-top: 20px;
    text-align: center;
}

.auth-links a {
    color: #3498db;
    text-decoration: none;
    margin: 0 10px;
    font-size: 14px;
}

.auth-links a:hover {
    text-decoration: underline;
}

/* User Menu Styles */
.user-menu {
    max-width: 300px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ecf0f1;
    margin-bottom: 20px;
}

.user-avatar {
    width: 50px;
    height: 50px;
    background: #3498db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.user-details h4 {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.user-details p {
    font-size: 14px;
    color: #7f8c8d;
}

.user-menu-items {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.menu-item:hover {
    background: #f8f9fa;
}

.menu-item.logout {
    color: #e74c3c;
    border-top: 1px solid #ecf0f1;
    margin-top: 10px;
    padding-top: 15px;
}

.menu-item.logout:hover {
    background: #fdf2f2;
}

/* Location Modal Styles */
.location-search {
    margin-bottom: 20px;
}

.location-search-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
}

.location-list {
    max-height: 300px;
    overflow-y: auto;
}

.location-item {
    padding: 12px 15px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.3s ease;
}

.location-item:hover {
    background: #f8f9fa;
}

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

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    z-index: 10001;
    animation: notificationSlideIn 0.3s ease;
    max-width: 350px;
}

@keyframes notificationSlideIn {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.notification-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}

.notification-content span {
    flex: 1;
    margin-right: 15px;
}

.notification-close {
    background: none;
    border: none;
    font-size: 18px;
    color: #7f8c8d;
    cursor: pointer;
    padding: 0;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.notification-close:hover {
    background: #ecf0f1;
    color: #2c3e50;
}

.notification-success {
    border-left: 4px solid #27ae60;
}

.notification-error {
    border-left: 4px solid #e74c3c;
}

.notification-warning {
    border-left: 4px solid #f39c12;
}

.notification-info {
    border-left: 4px solid #3498db;
}

/* Utility Classes */
.hidden {
    display: none !important;
}

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

.mb-20 {
    margin-bottom: 20px;
}

.mt-20 {
    margin-top: 20px;
} 