/*
 * ============================================================================
 * YSR GARAJ - LUXURY CAR CERAMIC COATING & BODY KIT CENTER
 * 2026 Vision Design System
 * ============================================================================
 * Gece Modu: Siyah & Kırmızı | Gündüz Modu: Beyaz & Kırmızı
 * Premium Automotive Aesthetics
 * ============================================================================
 */

/* ========================================================================
   CSS VARIABLES - TEMA SİSTEMİ
   ======================================================================== */
:root {
    /* Kırmızı Palet (Her iki temada aynı) */
    --primary-50: #fef2f2;
    --primary-100: #fee2e2;
    --primary-200: #fecaca;
    --primary-300: #fca5a5;
    --primary-400: #f87171;
    --primary-500: #ef4444; /* Ana Kırmızı */
    --primary-600: #dc2626; /* Koyu Kırmızı */
    --primary-700: #b91c1c; /* Blood Red */
    --primary-800: #991b1b;
    --primary-900: #7f1d1d;
    
    /* Gündüz Modu (Light Theme) - Varsayılan olarak gece modu olacak ama tanımlar */
    --bg-body-light: #ffffff;
    --bg-card-light: #ffffff;
    --bg-section-light: #f8f9fa;
    --text-main-light: #1f2937;
    --text-muted-light: #6b7280;
    --border-color-light: #e5e7eb;
    --nav-bg-light: rgba(255, 255, 255, 0.98);
    --shadow-card-light: 0 4px 20px rgba(0, 0, 0, 0.08);
    
    /* Gece Modu (Dark Theme) - Aktif */
    --bg-body: #000000;
    --bg-card: #0a0a0a;
    --bg-section: #050505;
    --text-main: #f9fafb;
    --text-muted: #9ca3af;
    --border-color: #1a1a1a;
    --nav-bg: rgba(10, 10, 10, 0.98);
    --shadow-card: 0 4px 30px rgba(239, 68, 68, 0.15);
    
    /* Gradient */
    --gradient-brand: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
    --gradient-dark: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    --gradient-glow: linear-gradient(135deg, rgba(239, 68, 68, 0.3) 0%, rgba(185, 28, 28, 0.1) 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 30px rgba(239, 68, 68, 0.3);
    
    /* Typography */
    --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Spacing */
    --nav-height: 85px;
}

/* Gündüz Modu Aktif */
[data-theme="light"] {
    --bg-body: #ffffff;
    --bg-card: #ffffff;
    --bg-section: #f8f9fa;
    --text-main: #1f2937;
    --text-muted: #6b7280;
    --border-color: #e5e7eb;
    --nav-bg: rgba(255, 255, 255, 0.98);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-glow: 0 0 30px rgba(239, 68, 68, 0.15);
}

/* ========================================================================
   RESET & BASE STYLES
   ======================================================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-main);
    background-color: var(--bg-body);
    transition: background-color var(--transition-base), color var(--transition-base);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-base);
}

a:hover {
    color: var(--primary-500);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
}

/* Selection */
::selection {
    background: var(--primary-500);
    color: white;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-body);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-600);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-700);
}

/* ========================================================================
   UTILITY CLASSES
   ======================================================================== */
.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center;
}

.gradient-text {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================================================
   BUTTONS
   ======================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-brand);
    color: white;
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(239, 68, 68, 0.6);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-600);
    color: var(--text-main);
}

.btn-outline:hover {
    background: var(--primary-600);
    color: white;
    transform: translateY(-3px);
}

.btn-success {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.btn-success:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 13px;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 15px;
}

.btn-block {
    width: 100%;
    display: flex;
}

.btn-text {
    font-weight: 600;
    color: var(--primary-500);
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap var(--transition-base);
}

.btn-text:hover {
    gap: 12px;
}

/* ========================================================================
   NAVBAR
   ======================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    background: var(--nav-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    transition: all var(--transition-base);
}

.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    height: 75px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.nav-logo {
    font-size: 28px;
    font-weight: 900;
    color: var(--primary-600);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.nav-logo span {
    color: var(--text-main);
}

.nav-logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-brand);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.nav-logo:hover::after {
    transform: scaleX(1);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-main);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-500);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

/* Theme Toggle Button */
.theme-toggle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all var(--transition-base);
}

.theme-toggle:hover {
    background: var(--primary-500);
    border-color: var(--primary-500);
    color: white;
    transform: rotate(180deg);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    font-size: 26px;
    color: var(--text-main);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: var(--bg-card);
    z-index: 1001;
    padding: 80px 30px 30px;
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: -10px 0 50px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    color: var(--text-main);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--transition-base);
}

.mobile-menu-close:hover {
    background: var(--primary-500);
    color: white;
    transform: rotate(90deg);
}

/* Mobile menu theme toggle */
.mobile-menu .mobile-theme-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background: var(--bg-section);
    border-radius: var(--radius-md);
    margin-bottom: 10px;
    color: var(--text-main);
    font-weight: 600;
}

.mobile-menu .mobile-theme-toggle button {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--bg-body);
    border: 2px solid var(--border-color);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all var(--transition-base);
}

.mobile-menu .mobile-theme-toggle button:hover {
    background: var(--primary-500);
    border-color: var(--primary-500);
    color: white;
    transform: rotate(180deg);
}

.mobile-menu a {
    font-size: 18px;
    color: var(--text-main);
    font-weight: 600;
    padding: 15px 20px;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.mobile-menu a:hover {
    background: var(--primary-500);
    color: white;
    transform: translateX(5px);
}

/* ========================================================================
   HERO SECTION
   ======================================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: var(--nav-height);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1617788138017-80ad40651399?q=80&w=1920&auto=format&fit=crop') no-repeat center/cover;
    filter: grayscale(20%);
    transform: scale(1.1);
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 50%, rgba(0,0,0,0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 100%;
    width: 100%;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-tag {
    color: var(--primary-500);
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-block;
    padding: 8px 20px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid var(--primary-500);
    border-radius: var(--radius-full);
}

.hero-title {
    font-size: clamp(42px, 7vw, 82px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 28px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
}

.hero-desc {
    font-size: 19px;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
    margin-bottom: 45px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 50px;
    margin-top: 60px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary-500);
    line-height: 1;
    text-shadow: 0 0 20px rgba(239, 68, 68, 0.5);
}

.stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.wheel {
    width: 3px;
    height: 8px;
    background: var(--primary-500);
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(10px);
        opacity: 0.5;
    }
}

/* ========================================================================
   SECTIONS
   ======================================================================== */
.section {
    padding: 100px 0;
    background-color: var(--bg-body);
    position: relative;
}

.section-alt {
    background-color: var(--bg-section);
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    color: var(--primary-500);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    color: var(--text-main);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-desc {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ========================================================================
   SERVICES GRID
   ======================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 45px 35px;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-glow);
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: -1;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-brand);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-glow);
    border-color: var(--primary-500);
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-icon-wrapper {
    margin-bottom: 28px;
}

.service-icon {
    font-size: 48px;
    color: var(--primary-500);
    display: inline-block;
    transition: all var(--transition-base);
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(5deg);
    text-shadow: 0 0 30px var(--primary-500);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 18px;
    color: var(--text-main);
    font-weight: 800;
}

.service-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 24px;
}

/* ========================================================================
   WORKS / PORTFOLIO
   ======================================================================== */
.works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 35px;
}

.work-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-card);
    transition: all var(--transition-base);
}

.work-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
}

.card-slider-wrapper {
    position: relative;
    width: 100%;
    padding-top: 60%;
    overflow: hidden;
    background: #000;
}

.card-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.card-slide {
    min-width: 100%;
    height: 100%;
}

.card-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.work-card:hover .card-slide img {
    transform: scale(1.05);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(10px);
    color: white;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 2px solid rgba(255,255,255,0.2);
    z-index: 2;
    transition: all var(--transition-base);
    opacity: 0;
}

.work-card:hover .slider-btn {
    opacity: 1;
}

.slider-btn:hover {
    background: var(--primary-600);
    border-color: var(--primary-600);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 15px;
}

.slider-next {
    right: 15px;
}

.slider-counter {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(10px);
    color: white;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.2);
}

.work-info {
    padding: 28px;
}

.work-info h3 {
    font-size: 22px;
    color: var(--text-main);
    margin-bottom: 10px;
    font-weight: 800;
}

.work-info p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.work-info p i {
    color: var(--primary-500);
}

.work-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(239, 68, 68, 0.1);
    color: var(--primary-500);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    border: 1px solid var(--primary-500);
}

/* ========================================================================
   REVIEWS / YORUMLAR
   ======================================================================== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.review-card {
    background: var(--bg-card);
    padding: 35px 30px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: all var(--transition-base);
    position: relative;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 120px;
    color: var(--primary-500);
    opacity: 0.1;
    font-family: Georgia, serif;
    line-height: 1;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
    border-color: var(--primary-500);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.stars {
    color: #f59e0b;
    font-size: 16px;
    display: flex;
    gap: 3px;
}

.review-date {
    font-size: 13px;
    color: var(--text-muted);
}

.review-text {
    font-style: italic;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 24px;
    font-size: 15px;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
}

.reviewer-info strong {
    display: block;
    color: var(--text-main);
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 4px;
}

.reviewer-info span {
    font-size: 13px;
    color: var(--text-muted);
}

/* ========================================================================
   DISTRICTS / BÖLGELER
   ======================================================================== */
.districts-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.district-tag {
    padding: 12px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    transition: all var(--transition-base);
}

.district-tag:hover {
    background: var(--gradient-brand);
    color: white;
    border-color: var(--primary-600);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.4);
}

/* ========================================================================
   INSTAGRAM GRID
   ======================================================================== */
.insta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.insta-item {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: var(--radius-md);
    cursor: pointer;
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.insta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.insta-item:hover .insta-overlay {
    opacity: 1;
}

.insta-item:hover img {
    transform: scale(1.15);
}

/* ========================================================================
   PAGE HERO (Hakkımızda, İletişim)
   ======================================================================== */
.page-hero {
    padding: 160px 0 80px;
    background: var(--bg-section);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-title {
    font-size: clamp(40px, 6vw, 62px);
    font-weight: 900;
    color: var(--text-main) !important;
    margin-bottom: 20px;
    text-shadow: none !important;
}

.page-subtitle {
    font-size: 19px;
    color: var(--text-muted) !important;
    max-width: 600px;
    margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--primary-500) !important;
    font-weight: 600;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    color: var(--text-muted) !important;
}

/* ========================================================================
   HAKKIMIZDA
   ======================================================================== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2, .about-text h3 {
    color: var(--text-main);
    margin-bottom: 20px;
    font-weight: 800;
}

.about-text h2 {
    font-size: 36px;
}

.about-text h3 {
    font-size: 26px;
    margin-top: 40px;
}

.about-text p {
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 16px;
}

.about-img {
    position: relative;
}

.about-img img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-glow);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    background: var(--bg-card);
    padding: 20px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid var(--border-color);
    transition: all var(--transition-base);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
    border-color: var(--primary-500);
}

.feature-item i {
    font-size: 32px;
    color: var(--primary-500);
}

.feature-item strong {
    display: block;
    font-size: 20px;
    color: var(--text-main);
    font-weight: 800;
}

.feature-item span {
    font-size: 13px;
    color: var(--text-muted);
}

/* Team Values */
.team-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.value-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all var(--transition-base);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
    border-color: var(--primary-500);
}

.value-card i {
    font-size: 50px;
    color: var(--primary-500);
    margin-bottom: 24px;
}

.value-card h3 {
    font-size: 22px;
    color: var(--text-main);
    margin-bottom: 14px;
    font-weight: 800;
}

.value-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 15px;
}

/* ========================================================================
   İLETİŞİM
   ======================================================================== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
}

.contact-form-wrapper h2 {
    font-size: 32px;
    color: var(--text-main);
    margin-bottom: 16px;
    font-weight: 800;
}

.contact-form-wrapper p {
    color: var(--text-muted);
    margin-bottom: 35px;
    line-height: 1.7;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-weight: 600;
    color: var(--text-main);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: var(--primary-500);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 16px 20px;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-main);
    font-size: 15px;
    transition: all var(--transition-base);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary-500);
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    background: var(--bg-card);
    padding: 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: all var(--transition-base);
}

.contact-info-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-glow);
    border-color: var(--primary-500);
}

.contact-info-card h3 {
    font-size: 20px;
    color: var(--text-main);
    margin-bottom: 16px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info-card h3 i {
    color: var(--primary-500);
}

.contact-info-card p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 15px;
}

.contact-info-card a {
    color: var(--primary-500);
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--bg-section);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--text-main);
    transition: all var(--transition-base);
    border: 2px solid var(--border-color);
}

.social-links a:hover {
    background: var(--gradient-brand);
    color: white;
    border-color: var(--primary-600);
    transform: translateY(-5px) rotate(360deg);
}

/* Map Section */
.map-section {
    padding: 0 0 100px;
}

.map-section .section-title {
    text-align: center;
    margin-bottom: 40px;
}

.map-embed iframe {
    width: 100%;
    height: 500px;
    border: none;
    filter: grayscale(30%);
    border-radius: var(--radius-xl);
}

/* ========================================================================
   HİZMET DETAY SAYFASI
   ======================================================================== */
.service-page-hero {
    padding: 160px 0 80px;
    background: var(--bg-section);
    text-align: center;
    position: relative;
    min-height: 400px;
}

.service-page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05) 0%, transparent 100%);
    z-index: 0;
}

.service-page-hero .container {
    position: relative;
    z-index: 1;
}

.service-page-hero .hero-title {
    color: var(--text-main) !important;
    text-shadow: none !important;
}

.service-page-hero .hero-desc {
    color: var(--text-muted) !important;
}

.service-page-hero .section-subtitle {
    color: var(--primary-500) !important;
}

.service-hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 35px;
    flex-wrap: wrap;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

/* Article Content */
.article-content {
    color: var(--text-main);
    line-height: 1.9;
    font-size: 17px;
}

.article-content h2,
.article-content h3 {
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--text-main);
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 12px;
}

.article-content h2 {
    font-size: 32px;
}

.article-content h3 {
    font-size: 26px;
}

.article-content h2 i,
.article-content h3 i {
    color: var(--primary-500);
}

.article-content p {
    margin-bottom: 20px;
    color: var(--text-muted);
}

.article-content strong {
    color: var(--text-main);
    font-weight: 700;
}

.article-intro {
    background: var(--bg-card);
    padding: 30px;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary-500);
    margin-bottom: 40px;
}

.article-intro .lead {
    font-size: 18px;
    line-height: 1.9;
}

.article-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    margin: 30px 0;
    box-shadow: var(--shadow-glow);
    object-fit: cover;
    display: block;
}

.content-section {
    margin: 40px 0;
}

.feature-list {
    list-style: none;
    margin: 30px 0;
}

.feature-list li {
    padding: 14px 0 14px 40px;
    position: relative;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-muted);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li i {
    position: absolute;
    left: 0;
    top: 16px;
    color: var(--primary-500);
    font-size: 18px;
}

.benefits-section {
    background: var(--bg-section);
    padding: 40px;
    border-radius: var(--radius-xl);
    margin: 50px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.benefit-card {
    background: var(--bg-card);
    padding: 28px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all var(--transition-base);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
    border-color: var(--primary-500);
}

.benefit-card i {
    font-size: 40px;
    color: var(--primary-500);
    margin-bottom: 16px;
}

.benefit-card h4 {
    font-size: 18px;
    color: var(--text-main);
    margin-bottom: 10px;
    font-weight: 700;
}

.benefit-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

.related-services {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 25px;
}

.related-service-tag {
    padding: 12px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.related-service-tag:hover {
    background: var(--primary-500);
    color: white;
    border-color: var(--primary-500);
    transform: translateY(-3px);
}

.final-section {
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--radius-xl);
    border: 2px solid var(--primary-500);
    margin-top: 50px;
}

.cta-text {
    font-size: 17px;
    color: var(--text-main);
    line-height: 1.9;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.cta-text i {
    color: var(--primary-500);
    font-size: 22px;
    margin-top: 2px;
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}

.sidebar-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 30px 25px;
    border-radius: var(--radius-lg);
    margin-bottom: 28px;
    transition: all var(--transition-base);
}

.sidebar-box:hover {
    box-shadow: var(--shadow-glow);
    border-color: var(--primary-500);
}

.sidebar-box h3 {
    font-size: 20px;
    color: var(--text-main);
    margin-bottom: 20px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-box h3 i {
    color: var(--primary-500);
}

.sidebar-box p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 15px;
}

.sidebar-box .btn {
    margin-bottom: 10px;
}

.cta-box {
    background: var(--gradient-glow);
    border-color: var(--primary-500);
}

.location-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.location-link {
    padding: 12px 16px;
    color: var(--text-muted);
    font-size: 14px;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-link:hover,
.location-link.active {
    background: var(--primary-500);
    color: white;
    transform: translateX(5px);
}

.location-link i {
    font-size: 10px;
    transition: transform var(--transition-base);
}

.location-link:hover i {
    transform: translateX(5px);
}

.sidebar-services {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-service-link {
    padding: 14px 18px;
    background: var(--bg-section);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-main);
    font-weight: 600;
    font-size: 14px;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    gap: 12px;
}

.sidebar-service-link:hover {
    background: var(--primary-500);
    color: white;
    border-color: var(--primary-500);
    transform: translateX(8px);
}

.sidebar-service-link i {
    color: var(--primary-500);
    font-size: 18px;
}

.sidebar-service-link:hover i {
    color: white;
}

/* SSS */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item.active {
    border-color: var(--primary-500);
}

.faq-question {
    width: 100%;
    padding: 16px 20px;
    background: var(--bg-section);
    color: var(--text-main);
    font-weight: 600;
    font-size: 15px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all var(--transition-base);
}

.faq-question:hover {
    background: var(--primary-500);
    color: white;
}

.faq-item.active .faq-question {
    background: var(--primary-500);
    color: white;
}

.faq-question i {
    transition: transform var(--transition-base);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 20px;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 14px;
}

/* ========================================================================
   FOOTER
   ======================================================================== */
.footer {
    background: #000000;
    color: #9ca3af;
    padding: 80px 0 30px;
    border-top: 4px solid var(--primary-600);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    position: relative;
    z-index: 1;
}

.footer-col h4 {
    color: white;
    margin-bottom: 24px;
    font-size: 20px;
    font-weight: 800;
}

.footer-logo {
    font-size: 28px;
    color: var(--primary-500);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-logo span {
    color: white;
}

.footer-desc {
    font-size: 15px;
    line-height: 1.8;
    margin: 20px 0 28px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    transition: all var(--transition-base);
}

.footer-links a:hover {
    color: var(--primary-500);
    transform: translateX(5px);
}

.footer-links a i {
    font-size: 12px;
    color: var(--primary-500);
}

.footer-contact li {
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
}

.footer-contact li i {
    color: var(--primary-500);
    font-size: 18px;
    margin-top: 2px;
}

.footer-contact a {
    color: #9ca3af;
}

.footer-contact a:hover {
    color: var(--primary-500);
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #1a1a1a;
    text-align: center;
    font-size: 14px;
}

.footer-bottom a {
    color: var(--primary-500);
    font-weight: 600;
}

/* ========================================================================
   FLOATING ELEMENTS
   ======================================================================== */
/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6);
    z-index: 999;
    transition: all var(--transition-base);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.8);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6), 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6), 0 0 0 15px rgba(37, 211, 102, 0);
    }
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    font-size: 20px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gradient-brand);
    color: white;
    border-color: var(--primary-600);
    transform: translateY(-5px);
}

/* ========================================================================
   RESPONSIVE
   ======================================================================== */
@media (max-width: 1200px) {
    .content-wrapper {
        grid-template-columns: 1.5fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .theme-toggle {
        display: none; /* Mobile'da theme toggle navbar'dan kaldır */
    }
    
    /* Mobile menüde theme toggle göster */
    .mobile-menu::before {
        content: '';
        display: block;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .works-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        position: static;
        margin-top: 40px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: clamp(32px, 6vw, 48px) !important;
    }
    
    .section {
        padding: 70px 0;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 70px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .hero {
        min-height: 85vh;
        padding-top: calc(var(--nav-height) + 20px);
    }
    
    .hero-content {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: clamp(28px, 7vw, 42px) !important;
        line-height: 1.2 !important;
        margin-bottom: 20px !important;
    }
    
    .hero-desc {
        font-size: 16px !important;
        margin-bottom: 30px !important;
    }
    
    .hero-tag {
        font-size: 12px;
        padding: 6px 16px;
        margin-bottom: 16px;
    }
    
    .hero-btns {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }
    
    .hero-btns .btn {
        width: 100%;
    }
    
    .btn-lg {
        width: 100%;
        padding: 16px 32px;
        font-size: 14px;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: 20px;
        margin-top: 40px;
        justify-content: center;
    }
    
    .stat-item {
        flex: 1;
        min-width: 80px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 11px;
    }
    
    .services-grid,
    .works-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 13px;
    }
    
    .page-title {
        font-size: 36px;
    }
    
    .page-hero {
        padding: 140px 0 60px;
    }
    
    .service-page-hero {
        padding: 140px 0 60px;
        min-height: 350px;
    }
    
    .service-page-hero .hero-title {
        font-size: clamp(26px, 6vw, 38px) !important;
    }
    
    .service-page-hero .hero-desc {
        font-size: 15px !important;
    }
    
    .breadcrumb {
        font-size: 12px;
        gap: 6px;
    }
    
    .service-hero-btns {
        flex-direction: column;
        width: 100%;
    }
    
    .service-hero-btns .btn {
        width: 100%;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .article-content {
        font-size: 16px;
    }
    
    .article-content h2 {
        font-size: 26px;
    }
    
    .article-content h3 {
        font-size: 22px;
    }
    
    .sidebar-box {
        padding: 24px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .whatsapp-float,
    .back-to-top {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
    
    .back-to-top {
        bottom: 80px;
    }
    
    .mobile-menu {
        width: 85%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: clamp(24px, 8vw, 32px) !important;
        line-height: 1.15 !important;
    }
    
    .hero-desc {
        font-size: 14px !important;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .page-title {
        font-size: 28px;
    }
    
    .service-page-hero .hero-title {
        font-size: clamp(22px, 7vw, 32px) !important;
    }
    
    .service-card,
    .work-card,
    .review-card,
    .sidebar-box {
        padding: 24px 18px;
    }
    
    .districts-grid {
        gap: 8px;
    }
    
    .district-tag {
        padding: 10px 18px;
        font-size: 13px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 13px;
    }
    
    .btn-lg {
        padding: 14px 28px;
        font-size: 14px;
    }
    
    .nav-logo {
        font-size: 22px;
    }
    
    .mobile-menu {
        width: 90%;
    }
    
    .hero-stats {
        gap: 15px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .stat-label {
        font-size: 10px;
    }
}

/* ========================================================================
   ANIMATIONS & TRANSITIONS
   ======================================================================== */
@media (prefers-reduced-motion: no-preference) {
    .service-card,
    .work-card,
    .review-card,
    .district-tag,
    .benefit-card,
    .value-card {
        animation: fadeInUp 0.6s ease-out;
    }
}

/* Dark/Light Theme Transition */
body,
.navbar,
.service-card,
.work-card,
.review-card,
.sidebar-box,
.footer {
    transition: background-color var(--transition-base), 
                color var(--transition-base),
                border-color var(--transition-base);
}

/* Print Styles */
@media print {
    .navbar,
    .whatsapp-float,
    .back-to-top,
    .mobile-menu,
    .theme-toggle {
        display: none !important;
    }
    
    .section {
        padding: 30px 0;
    }
    
    body {
        background: white;
        color: black;
    }
}

/* ========================================================================
   AOS LIBRARY OVERRIDES
   ======================================================================== */
[data-aos] {
    pointer-events: auto;
}

[data-aos][data-aos][data-aos-duration="400"],
body[data-aos-duration="400"] [data-aos] {
    transition-duration: 400ms;
}

[data-aos][data-aos][data-aos-delay="100"],
body[data-aos-delay="100"] [data-aos] {
    transition-delay: 100ms;
}

[data-aos][data-aos][data-aos-delay="200"],
body[data-aos-delay="200"] [data-aos] {
    transition-delay: 200ms;
}

/* ========================================================================
   ACCESSIBILITY
   ======================================================================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Focus Styles */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid var(--primary-500);
    outline-offset: 2px;
}

/* ========================================================================
   END OF STYLES
   ======================================================================== */
/* ========================================================================
   EK DÜZELTMELER - Görsel ve Responsive İyileştirmeleri
   ======================================================================== */

/* Tüm görsellerin düzgün görünmesi için */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ========================================================================
   CARD SLIDER MOBİL TAM GÖRÜNÜM DÜZELTMESİ
   ======================================================================== */

/* Desktop - Normal */
.card-slider-wrapper {
    position: relative;
    width: 100%;
    padding-top: 60%;
    overflow: hidden;
    background: #000;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.card-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.card-slide {
    min-width: 100%;
    height: 100%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform var(--transition-slow);
}

/* Hover efekti sadece desktop'ta */
@media (hover: hover) {
    .work-card:hover .card-slide img {
        transform: scale(1.05);
    }
}

/* Tablet */
@media (max-width: 992px) {
    .card-slider-wrapper {
        padding-top: 65%;
    }
}

/* Mobile - KRİTİK ALAN */
@media (max-width: 768px) {
    .works-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .work-card {
        border-radius: var(--radius-lg);
        overflow: hidden;
    }
    
    .card-slider-wrapper {
        padding-top: 100%; /* Kare şeklinde - Tam görünsün */
        border-radius: 0; /* Rounded kaldır */
    }
    
    .card-slide {
        width: 100%;
        height: 100%;
    }
    
    .card-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* Cover kullan - tam doldur */
        object-position: center center; /* Ortala */
    }
    
    /* Slider butonları mobilde her zaman görünsün */
    .slider-btn {
        opacity: 1 !important;
        width: 38px;
        height: 38px;
        background: rgba(0,0,0,0.8);
        backdrop-filter: blur(15px);
    }
    
    .slider-prev {
        left: 12px;
    }
    
    .slider-next {
        right: 12px;
    }
    
    .slider-counter {
        bottom: 12px;
        right: 12px;
        font-size: 12px;
        padding: 6px 12px;
        background: rgba(0,0,0,0.8);
        backdrop-filter: blur(15px);
    }
    
    /* Work info padding artır */
    .work-info {
        padding: 24px 20px;
    }
    
    .work-info h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .work-info p {
        font-size: 14px;
        line-height: 1.6;
    }
}

/* Çok küçük ekranlar */
@media (max-width: 480px) {
    .card-slider-wrapper {
        padding-top: 110%; /* Daha yüksek - Dikey fotoğraflar için */
    }
    
    .slider-btn {
        width: 34px;
        height: 34px;
    }
    
    .slider-prev {
        left: 10px;
    }
    
    .slider-next {
        right: 10px;
    }
    
    .work-info {
        padding: 20px 18px;
    }
    
    .work-info h3 {
        font-size: 18px;
    }
    
    .work-info p {
        font-size: 13px;
    }
}

/* Landscape mode için */
@media (max-width: 768px) and (orientation: landscape) {
    .card-slider-wrapper {
        padding-top: 70%; /* Landscape'te daha geniş */
    }
}

/* Instagram grid'de görseller tam görsün */
.insta-item {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: var(--radius-md);
    cursor: pointer;
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform var(--transition-slow);
}

/* About page image tam görsün */
.about-img img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-glow);
    object-fit: cover;
}

/* Mobile menüde tema toggle göster */
@media (max-width: 992px) {
    /* Desktop'taki theme toggle'ı gizle */
    .nav-links .theme-toggle {
        display: none !important;
    }
    
    /* Mobile menu aktif olunca body scroll'u kapat */
    body.menu-open {
        overflow: hidden;
    }
}

/* Hizmet sayfası hero mobile'da daha iyi görünsün */
@media (max-width: 768px) {
    .service-page-hero {
        padding: 120px 0 50px;
        min-height: auto;
    }
    
    .service-page-hero .breadcrumb {
        font-size: 11px;
        gap: 5px;
        margin-bottom: 20px;
    }
    
    .service-page-hero .section-subtitle {
        font-size: 12px;
        margin-bottom: 12px;
    }
    
    .service-page-hero .hero-title {
        font-size: clamp(24px, 6vw, 34px) !important;
        line-height: 1.2 !important;
        margin-bottom: 16px !important;
    }
    
    .service-page-hero .hero-desc {
        font-size: 14px !important;
        line-height: 1.6 !important;
        margin-bottom: 24px !important;
    }
    
    .service-hero-btns {
        gap: 12px;
        margin-top: 24px;
    }
    
    .service-hero-btns .btn-lg {
        padding: 14px 24px;
        font-size: 13px;
    }
}

/* Ekstra küçük cihazlar için */
@media (max-width: 480px) {
    .service-page-hero {
        padding: 110px 0 40px;
    }
    
    .service-page-hero .hero-title {
        font-size: clamp(20px, 7vw, 28px) !important;
    }
    
    .service-page-hero .hero-desc {
        font-size: 13px !important;
    }
}

/* Gece modu text contrast artırma */
[data-theme="dark"] .page-title,
[data-theme="dark"] .hero-title,
[data-theme="dark"] .section-title {
    color: #ffffff !important;
}

[data-theme="dark"] .page-subtitle,
[data-theme="dark"] .hero-desc,
[data-theme="dark"] .section-desc {
    color: #d1d5db !important;
}

[data-theme="dark"] .service-page-hero .hero-title {
    color: #ffffff !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .service-page-hero .hero-desc {
    color: #d1d5db !important;
}

/* Gündüz modu text contrast */
[data-theme="light"] .page-title,
[data-theme="light"] .hero-title,
[data-theme="light"] .section-title {
    color: #111827 !important;
}

[data-theme="light"] .page-subtitle,
[data-theme="light"] .hero-desc,
[data-theme="light"] .section-desc {
    color: #4b5563 !important;
}

[data-theme="light"] .service-page-hero {
    background: #f9fafb;
}

[data-theme="light"] .service-page-hero .hero-title {
    color: #111827 !important;
    text-shadow: none;
}

[data-theme="light"] .service-page-hero .hero-desc {
    color: #4b5563 !important;
}

[data-theme="light"] .breadcrumb {
    color: #6b7280 !important;
}

[data-theme="light"] .breadcrumb span {
    color: #9ca3af !important;
}

/* Ana sayfa hero her zaman beyaz text */
.hero .hero-title,
.hero .hero-desc,
.hero .hero-tag,
.hero .stat-label {
    color: white !important;
}

/* Card hover efektleri mobile'da devre dışı */
@media (hover: none) {
    .service-card:hover,
    .work-card:hover,
    .review-card:hover,
    .district-tag:hover {
        transform: none;
    }
}

/* Scroll performansı için will-change */
.hero-bg {
    will-change: transform;
}

.card-slider {
    will-change: transform;
}

/* Lazy loading için placeholder */
img[loading="lazy"] {
    background: linear-gradient(90deg, var(--bg-section) 0%, var(--bg-card) 50%, var(--bg-section) 100%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Print için optimizasyon */
@media print {
    .navbar,
    .mobile-menu,
    .whatsapp-float,
    .back-to-top,
    .theme-toggle,
    .hero-bg,
    .hero-overlay {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .hero {
        background: white !important;
        min-height: auto !important;
        padding: 20px 0 !important;
    }
    
    .section {
        padding: 20px 0 !important;
        page-break-inside: avoid;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-outline {
        border-width: 3px;
    }
    
    .service-card,
    .work-card {
        border-width: 2px;
    }
}

/* 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;
    }
    
    .hero-bg {
        transform: none !important;
    }
}
/* ========================================================================
   HİZMET SAYFASI RESPONSİVE DÜZELTMELERİ
   ======================================================================== */

/* Desktop - Normal görünüm */
.content-wrapper {
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

/* Tablet - Sidebar daha dar */
@media (max-width: 1200px) {
    .content-wrapper {
        grid-template-columns: 1.8fr 1fr;
        gap: 35px;
    }
    
    .article-content {
        font-size: 16px;
    }
    
    .article-content h2 {
        font-size: 28px;
    }
    
    .article-content h3 {
        font-size: 23px;
    }
}

/* Tablet - Küçük ekranlar */
@media (max-width: 992px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .sidebar {
        position: static;
        margin-top: 50px;
    }
    
    /* Sidebar'ı grid yaparak yan yana göster */
    .sidebar {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 24px;
    }
    
    .sidebar-box {
        margin-bottom: 0;
    }
}

/* Mobile - Tek kolon */
@media (max-width: 768px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 30px;
    }
    
    .sidebar {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-top: 40px;
    }
    
    .sidebar-box {
        padding: 24px 20px;
        margin-bottom: 0;
    }
    
    /* Article içerik düzenleme */
    .article-content {
        font-size: 15px;
        line-height: 1.8;
    }
    
    .article-content h2 {
        font-size: 24px;
        margin-top: 30px;
        margin-bottom: 16px;
    }
    
    .article-content h3 {
        font-size: 20px;
        margin-top: 25px;
        margin-bottom: 14px;
    }
    
    .article-intro {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .article-intro .lead {
        font-size: 16px;
        line-height: 1.7;
    }
    
    .article-img {
        margin: 20px 0;
        border-radius: var(--radius-lg);
    }
    
    .content-section {
        margin: 30px 0;
    }
    
    .benefits-section {
        padding: 30px 20px;
        margin: 40px 0;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .benefit-card {
        padding: 20px 18px;
    }
    
    .benefit-card i {
        font-size: 32px;
        margin-bottom: 12px;
    }
    
    .benefit-card h4 {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .benefit-card p {
        font-size: 13px;
        line-height: 1.6;
    }
    
    .feature-list {
        margin: 20px 0;
    }
    
    .feature-list li {
        padding: 12px 0 12px 35px;
        font-size: 14px;
    }
    
    .feature-list li i {
        top: 14px;
        font-size: 16px;
    }
    
    .related-services {
        gap: 10px;
        margin-top: 20px;
    }
    
    .related-service-tag {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .final-section {
        padding: 25px 20px;
        margin-top: 40px;
    }
    
    .cta-text {
        font-size: 15px;
        flex-direction: column;
        gap: 10px;
    }
    
    .cta-text i {
        font-size: 20px;
        margin-top: 0;
    }
    
    /* Sidebar düzenlemeleri */
    .cta-box {
        order: -1; /* En üste çıkar */
    }
    
    .sidebar-box h3 {
        font-size: 18px;
        margin-bottom: 16px;
    }
    
    .location-list {
        max-height: 300px;
        overflow-y: auto;
    }
    
    .location-link {
        padding: 10px 14px;
        font-size: 13px;
    }
    
    .faq-question {
        padding: 14px 16px;
        font-size: 14px;
    }
    
    .faq-answer p {
        font-size: 13px;
        line-height: 1.7;
    }
    
    .sidebar-service-link {
        padding: 12px 16px;
        font-size: 13px;
    }
}

/* Çok küçük ekranlar */
@media (max-width: 480px) {
    .article-content {
        font-size: 14px;
    }
    
    .article-content h2 {
        font-size: 20px;
        gap: 8px;
    }
    
    .article-content h3 {
        font-size: 18px;
        gap: 8px;
    }
    
    .article-intro {
        padding: 16px;
    }
    
    .article-intro .lead {
        font-size: 15px;
    }
    
    .benefits-section {
        padding: 20px 16px;
    }
    
    .benefit-card {
        padding: 16px 14px;
    }
    
    .benefit-card i {
        font-size: 28px;
    }
    
    .benefit-card h4 {
        font-size: 15px;
    }
    
    .benefit-card p {
        font-size: 12px;
    }
    
    .feature-list li {
        padding: 10px 0 10px 30px;
        font-size: 13px;
    }
    
    .related-service-tag {
        padding: 8px 14px;
        font-size: 12px;
    }
    
    .final-section {
        padding: 20px 16px;
    }
    
    .cta-text {
        font-size: 14px;
    }
    
    .sidebar-box {
        padding: 20px 16px;
    }
    
    .sidebar-box h3 {
        font-size: 17px;
        gap: 8px;
    }
    
    .location-link {
        padding: 9px 12px;
        font-size: 12px;
    }
}

/* ========================================================================
   MOBİL TEMA SEÇİCİ DÜZELTMESİ
   ======================================================================== */

/* Mobile theme toggle düzgün görünsün */
.mobile-theme-toggle {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background: var(--bg-section);
    border-radius: var(--radius-md);
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
}

.mobile-theme-toggle span {
    color: var(--text-main);
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-theme-toggle span i {
    color: var(--primary-500);
    font-size: 18px;
}

.theme-toggle-mobile-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--bg-body);
    border: 2px solid var(--border-color);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all var(--transition-base);
    cursor: pointer;
}

.theme-toggle-mobile-btn:hover {
    background: var(--primary-500);
    border-color: var(--primary-500);
    color: white;
    transform: rotate(180deg);
}

.theme-toggle-mobile-btn:active {
    transform: rotate(180deg) scale(0.95);
}

/* ========================================================================
   EKSTRA GÖRSEL DÜZELTMELERİ
   ======================================================================== */

/* Article görselleri responsive */
.article-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 800px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .article-img {
        max-height: 300px;
    }
}

@media (max-width: 480px) {
    .article-img {
        max-height: 250px;
    }
}

/* Overflow kontrolü */
.article-content,
.sidebar-box {
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
}

/* Uzun kelimeleri kes */
.location-link,
.sidebar-service-link,
.related-service-tag {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 768px) {
    .location-link,
    .sidebar-service-link,
    .related-service-tag {
        white-space: normal;
    }
}
/* ========================================================================
   FİNAL SECTION (CTA) YENİDEN TASARIM - MOBİL ÖNCE
   ======================================================================== */

.final-section {
    background: var(--gradient-glow);
    padding: 40px 30px;
    border-radius: var(--radius-xl);
    border: 2px solid var(--primary-500);
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}

.final-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 3s infinite;
}

@keyframes pulse-glow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.final-section-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.final-section-header h3 {
    font-size: 24px;
    color: var(--text-main);
    margin-bottom: 12px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.final-section-header h3 i {
    color: var(--primary-500);
    font-size: 28px;
}

.final-section-header p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

.final-cta-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.cta-feature-box {
    background: var(--bg-card);
    padding: 20px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: all var(--transition-base);
}

.cta-feature-box:hover {
    transform: translateX(5px);
    border-color: var(--primary-500);
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.2);
}

.cta-feature-box i {
    font-size: 28px;
    color: var(--primary-500);
    flex-shrink: 0;
    margin-top: 2px;
}

.cta-feature-box .content h4 {
    font-size: 16px;
    color: var(--text-main);
    margin-bottom: 6px;
    font-weight: 700;
}

.cta-feature-box .content p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.final-action-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.final-action-buttons .btn {
    width: 100%;
    justify-content: center;
    font-size: 15px;
    padding: 16px 24px;
}

.final-vision-text {
    text-align: center;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid var(--border-color);
    position: relative;
    z-index: 1;
}

.final-vision-text p {
    font-size: 16px;
    color: var(--text-main);
    font-weight: 600;
    margin: 0;
    line-height: 1.7;
}

.final-vision-text p strong {
    color: var(--primary-500);
    font-weight: 800;
}

/* Tablet ve Desktop */
@media (min-width: 768px) {
    .final-section {
        padding: 50px 40px;
    }
    
    .final-section-header h3 {
        font-size: 28px;
    }
    
    .final-section-header p {
        font-size: 16px;
    }
    
    .final-cta-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .final-action-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 16px;
    }
    
    .final-action-buttons .btn {
        width: auto;
        min-width: 200px;
    }
    
    .final-vision-text p {
        font-size: 18px;
    }
}

@media (min-width: 992px) {
    .final-cta-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Eski CTA text stilini kaldır */
.cta-text {
    display: none;
}
/* ========================================================================
   SCROLL INDICATOR Z-INDEX DÜZELTMESİ
   ======================================================================== */

/* Hero stats'ı scroll indicator'ın üstüne çıkar */
.hero-stats {
    position: relative;
    z-index: 10; /* Scroll indicator'dan (z-index: 3) daha yüksek */
}

/* Scroll indicator'ı biraz daha aşağı indir */
.scroll-indicator {
    position: absolute;
    bottom: 20px; /* 40px'ten 20px'e düşürdük */
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

/* Alternatif: Desktop'ta gizle, sadece mobile'da göster */
@media (min-width: 992px) {
    .scroll-indicator {
        display: none; /* Desktop'ta scroll indicator'ı gizle */
    }
}

/* Veya daha da aşağı inmesini istiyorsan: */
@media (min-width: 768px) {
    .scroll-indicator {
        bottom: 10px; /* Desktop'ta çok aşağıda */
    }
}

/* Hero stats'lara biraz daha üstten margin ekle */
.hero-stats {
    display: flex;
    gap: 50px;
    margin-top: 60px;
    margin-bottom: 40px; /* Scroll indicator için boşluk bırak */
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
}
/* ========================================================================
   ÜRÜN KATALOG SİSTEMİ - YSR GARAJ TEMASI İLE UYUMLU
   Gece Modu: Siyah & Kırmızı | Gündüz Modu: Beyaz & Kırmızı
   Tam Responsive & Premium Automotive Aesthetics
   ======================================================================== */

/* ========================================================================
   ÜRÜN DETAY SAYFASI
   ======================================================================== */

/* Ürün Detay Wrapper */
.product-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Ürün Galeri */
.product-gallery {
    position: sticky;
    top: 100px;
}

.product-main-image {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--bg-section);
    border: 2px solid var(--border-color);
    margin-bottom: 20px;
    box-shadow: var(--shadow-glow);
    transition: all var(--transition-base);
}

.product-main-image:hover {
    border-color: var(--primary-500);
    transform: scale(1.02);
}

.product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform var(--transition-slow);
}

.product-main-image:hover img {
    transform: scale(1.05);
}

/* Thumbnail Grid */
.product-thumbnails {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 12px;
}

.thumbnail-img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 2px solid var(--border-color);
    cursor: pointer;
    transition: all var(--transition-base);
    background: var(--bg-section);
}

.thumbnail-img:hover,
.thumbnail-img.active {
    border-color: var(--primary-500);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.4);
}

/* Ürün Bilgileri */
.product-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.product-info h1 {
    font-size: 36px;
    font-weight: 900;
    color: var(--text-main);
    line-height: 1.2;
    margin: 0;
}

.product-code {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 16px;
    background: var(--bg-section);
    border-radius: var(--radius-full);
    display: inline-block;
    width: fit-content;
    border: 1px solid var(--border-color);
}

/* Ürün Badges */
.product-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}

.product-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-full);
    border: 2px solid;
}

.badge-featured {
    background: rgba(239, 68, 68, 0.1);
    color: var(--primary-500);
    border-color: var(--primary-500);
}

.badge-sale {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    border-color: #f59e0b;
}

.badge-stock {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border-color: #10b981;
}

.badge-out-stock {
    background: rgba(239, 68, 68, 0.1);
    color: var(--primary-500);
    border-color: var(--primary-500);
}

/* Ürün Kısa Açıklama */
.product-short-desc {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-muted);
    margin: 0;
}

/* Ürün Fiyat Bölümü */
.product-price-section {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    padding: 24px;
    background: var(--bg-section);
    border-radius: var(--radius-lg);
    border: 2px solid var(--border-color);
}

.product-price {
    font-size: 40px;
    font-weight: 900;
    color: var(--primary-500);
    line-height: 1;
}

.product-old-price {
    font-size: 24px;
    color: var(--text-muted);
    text-decoration: line-through;
    font-weight: 600;
}

.price-discount {
    padding: 6px 12px;
    background: var(--primary-500);
    color: white;
    font-size: 14px;
    font-weight: 700;
    border-radius: var(--radius-full);
}

/* Ürün Aksiyonları */
.product-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-actions .btn {
    width: 100%;
}

/* Ürün Açıklaması */
.product-description {
    padding: 30px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.product-description h3 {
    font-size: 20px;
    color: var(--text-main);
    margin-bottom: 16px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-description h3 i {
    color: var(--primary-500);
    font-size: 24px;
}

.product-description p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-muted);
    margin: 0;
}

/* Satın Al Linki */
.product-purchase-link {
    padding: 24px;
    background: var(--gradient-glow);
    border-radius: var(--radius-lg);
    border: 2px solid var(--primary-500);
    text-align: center;
}

.product-purchase-link .btn {
    width: 100%;
}

/* ========================================================================
   ÜRÜNLER LİSTESİ SAYFASI
   ======================================================================== */

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-glow);
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: 0;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-glow);
    border-color: var(--primary-500);
}

/* Ürün Resim Wrapper */
.product-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: var(--bg-section);
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform var(--transition-slow);
}

.product-card:hover .product-image-wrapper img {
    transform: scale(1.1);
}

/* Ürün Badges - Card İçinde */
.product-image-wrapper .product-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
}

/* Ürün İçerik */
.product-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 1;
    flex: 1;
}

.product-content .product-code {
    font-size: 12px;
    padding: 6px 12px;
    margin: 0;
}

.product-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-main);
    margin: 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-content .product-short-desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Ürün Fiyat - Card İçinde */
.product-content .product-price-section {
    padding: 0;
    background: transparent;
    border: none;
    margin-top: auto;
}

.product-prices {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.product-content .product-price {
    font-size: 28px;
}

.product-content .product-old-price {
    font-size: 18px;
}

.product-content .price-discount {
    font-size: 12px;
    padding: 4px 10px;
}

/* Ürün Aksiyonları - Card İçinde */
.product-content .product-actions {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-top: 16px;
}

.product-content .product-actions .btn {
    flex: 1;
    padding: 12px 20px;
    font-size: 13px;
}

.product-content .product-actions .btn-success {
    flex: 0 0 auto;
    width: 48px;
    padding: 12px;
}

/* İlgili Ürünler Bölümü */
.related-products-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 2px solid var(--border-color);
}

.related-products-section .section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 36px;
}

/* ========================================================================
   TABLET RESPONSIVE (768px - 992px)
   ======================================================================== */
@media (max-width: 992px) {
    .product-detail-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .product-gallery {
        position: static;
    }
    
    .product-info h1 {
        font-size: 32px;
    }
    
    .product-price {
        font-size: 36px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 24px;
    }
}

/* ========================================================================
   MOBILE RESPONSIVE (320px - 768px)
   ======================================================================== */
@media (max-width: 768px) {
    .product-detail-wrapper {
        gap: 30px;
    }
    
    .product-gallery {
        margin: 0 -24px;
        padding: 0 24px;
    }
    
    .product-main-image {
        border-radius: var(--radius-lg);
        margin-bottom: 16px;
    }
    
    .product-thumbnails {
        grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
        gap: 10px;
    }
    
    .product-info {
        gap: 20px;
    }
    
    .product-info h1 {
        font-size: 26px;
    }
    
    .product-code {
        font-size: 12px;
        padding: 6px 14px;
    }
    
    .product-badges {
        gap: 8px;
    }
    
    .product-badge {
        font-size: 11px;
        padding: 6px 12px;
    }
    
    .product-short-desc {
        font-size: 15px;
        line-height: 1.7;
    }
    
    .product-price-section {
        padding: 20px;
        gap: 12px;
    }
    
    .product-price {
        font-size: 32px;
    }
    
    .product-old-price {
        font-size: 20px;
    }
    
    .price-discount {
        font-size: 12px;
        padding: 5px 10px;
    }
    
    .product-actions {
        gap: 10px;
    }
    
    .product-actions .btn-lg {
        padding: 14px 24px;
        font-size: 13px;
    }
    
    .product-description {
        padding: 20px;
    }
    
    .product-description h3 {
        font-size: 18px;
        gap: 8px;
    }
    
    .product-description h3 i {
        font-size: 20px;
    }
    
    .product-description p {
        font-size: 14px;
        line-height: 1.7;
    }
    
    .product-purchase-link {
        padding: 20px;
    }
    
    /* Ürünler Grid - Mobile */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-card {
        border-radius: var(--radius-lg);
    }
    
    .product-image-wrapper {
        aspect-ratio: 4/3;
    }
    
    .product-image-wrapper .product-badges {
        top: 10px;
        left: 10px;
        gap: 6px;
    }
    
    .product-content {
        padding: 20px;
        gap: 10px;
    }
    
    .product-title {
        font-size: 18px;
    }
    
    .product-content .product-short-desc {
        font-size: 13px;
        -webkit-line-clamp: 2;
    }
    
    .product-content .product-price {
        font-size: 24px;
    }
    
    .product-content .product-old-price {
        font-size: 16px;
    }
    
    .product-content .price-discount {
        font-size: 11px;
        padding: 3px 8px;
    }
    
    .product-content .product-actions {
        flex-direction: column;
        gap: 8px;
        margin-top: 12px;
    }
    
    .product-content .product-actions .btn {
        width: 100%;
        padding: 12px 16px;
        font-size: 13px;
    }
    
    .product-content .product-actions .btn-success {
        width: 100%;
    }
    
    .related-products-section {
        margin-top: 50px;
        padding-top: 40px;
    }
    
    .related-products-section .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
}

/* ========================================================================
   EXTRA SMALL MOBILE (320px - 480px)
   ======================================================================== */
@media (max-width: 480px) {
    .product-info h1 {
        font-size: 22px;
    }
    
    .product-code {
        font-size: 11px;
        padding: 5px 12px;
    }
    
    .product-badge {
        font-size: 10px;
        padding: 5px 10px;
    }
    
    .product-short-desc {
        font-size: 14px;
    }
    
    .product-price-section {
        padding: 16px;
    }
    
    .product-price {
        font-size: 28px;
    }
    
    .product-old-price {
        font-size: 18px;
    }
    
    .product-actions .btn-lg {
        padding: 12px 20px;
        font-size: 12px;
    }
    
    .product-description {
        padding: 16px;
    }
    
    .product-description h3 {
        font-size: 16px;
    }
    
    .product-description p {
        font-size: 13px;
    }
    
    .product-purchase-link {
        padding: 16px;
    }
    
    .product-thumbnails {
        grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
        gap: 8px;
    }
    
    .thumbnail-img {
        border-radius: var(--radius-sm);
    }
    
    .product-content {
        padding: 16px;
    }
    
    .product-title {
        font-size: 16px;
    }
    
    .product-content .product-price {
        font-size: 22px;
    }
    
    .related-products-section {
        margin-top: 40px;
        padding-top: 30px;
    }
    
    .related-products-section .section-title {
        font-size: 24px;
        margin-bottom: 24px;
    }
}

/* ========================================================================
   HOVER EFFECTS - SADECE DESKTOP
   ======================================================================== */
@media (hover: hover) and (pointer: fine) {
    .thumbnail-img:hover {
        transform: translateY(-5px) scale(1.05);
    }
    
    .product-card:hover .product-title {
        color: var(--primary-500);
    }
}

/* ========================================================================
   PRINT STYLES
   ======================================================================== */
@media print {
    .product-actions,
    .product-purchase-link,
    .related-products-section {
        display: none;
    }
    
    .product-detail-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-price-section {
        border: 1px solid #000;
    }
}

/* ========================================================================
   DARK/LIGHT THEME TRANSITIONS
   ======================================================================== */
.product-card,
.product-main-image,
.product-price-section,
.product-description,
.product-purchase-link,
.product-code,
.thumbnail-img {
    transition: background-color var(--transition-base),
                border-color var(--transition-base),
                color var(--transition-base);
}

/* ========================================================================
   ACCESSIBILITY IMPROVEMENTS
   ======================================================================== */
.product-card:focus-within {
    outline: 3px solid var(--primary-500);
    outline-offset: 2px;
}

.thumbnail-img:focus {
    outline: 3px solid var(--primary-500);
    outline-offset: 2px;
}

/* ========================================================================
   LOADING STATE (Opsiyonel)
   ======================================================================== */
.product-image-wrapper.loading,
.product-main-image.loading {
    background: linear-gradient(90deg, 
        var(--bg-section) 0%, 
        var(--bg-card) 50%, 
        var(--bg-section) 100%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* ========================================================================
   ÜRÜN KARTLARI İÇİN EK OPTİMİZASYONLAR
   ======================================================================== */
.product-card {
    will-change: transform;
}

.product-image-wrapper img {
    will-change: transform;
}

/* Lazy Loading için placeholder */
.product-image-wrapper img[loading="lazy"],
.product-main-image img[loading="lazy"] {
    background: var(--bg-section);
}

/* ========================================================================
   END OF PRODUCT CATALOG STYLES
   ======================================================================== */