/* ============================================
   ANKARA NAKLİYAT - PROFESYONEL TEMA CSS
   Modern, Temiz ve Kullanıcı Dostu Tasarım
   ============================================ */

/* ============================================
   1. GENEL YAPILANDIRMA
   ============================================ */

:root {
    /* Ana Renkler - Nakliyat Teması */
    --primary-color: #667eea;
    --primary-dark: #5568d3;
    --primary-light: #8b9ef5;
    --secondary-color: #1a202c;
    --secondary-dark: #0f1419;
    --accent-color: #f59e0b;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    --info-color: #3b82f6;
    
    /* Gri Tonları */
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Tipografi */
    --font-primary: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.6;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 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.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--gray-800);
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   2. HEADER & NAVIGATION
   ============================================ */

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all var(--transition-base);
}

.header-top {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-content {
    background: #ffffff;
    padding: 1rem 0;
}

.logo img {
    height: 50px;
    transition: transform var(--transition-base);
}

.logo:hover img {
    transform: scale(1.05);
}

/* Navigation Menu */
.webmenu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.webmenu li {
    position: relative;
}

.webmenu li > a {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color var(--transition-fast);
}

.webmenu li > a:hover {
    color: var(--primary-color);
}

/* Dropdown Menu */
.dropdown-box {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #ffffff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-base);
    padding: 0.5rem;
    margin-top: 0.5rem;
    border: 1px solid var(--gray-200);
}

.webmenu li:hover .dropdown-box {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-box ul {
    list-style: none;
}

.dropdown-box ul li a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--gray-700);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    font-size: 14px;
}

.dropdown-box ul li a:hover {
    background: var(--gray-50);
    color: var(--primary-color);
    padding-left: 1.25rem;
}

/* CTA Buttons in Header */
.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all var(--transition-base);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #ffffff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all var(--transition-base);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.35);
}

/* ============================================
   3. HERO SECTION
   ============================================ */

.elegant-hero-carousel {
    position: relative;
    height: 70vh;
    min-height: 500px;
    max-height: 700px;
    overflow: hidden;
}

.elegant-slide-bg {
    position: absolute;
    width: 100%;
    height: 100%;
}

.elegant-slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.elegant-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
}

.elegant-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.elegant-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    letter-spacing: -0.02em;
}

.elegant-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255,255,255,0.95);
    margin-bottom: 2rem;
    font-weight: 500;
}

.elegant-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: #ffffff;
    color: var(--gray-900);
    border-radius: var(--radius-full);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-base);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.elegant-btn:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(102, 126, 234, 0.4);
}

/* ============================================
   4. SECTIONS
   ============================================ */

section {
    padding: 4rem 0;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 3rem;
}

/* About Section */
.about-content {
    background: linear-gradient(135deg, var(--gray-50) 0%, #ffffff 100%);
    padding: 3rem 0;
    border-radius: var(--radius-xl);
}

.big-text {
    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: 900;
    color: var(--gray-100);
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: -0.05em;
    user-select: none;
    pointer-events: none;
}

/* Feature Cards */
.icon-box {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all var(--transition-base);
}

.icon-box:hover {
    transform: translateY(-5px) scale(1.05);
}

/* Services Section */
.services {
    padding: 4rem 0;
    margin-top: -3rem;
    position: relative;
    z-index: 1;
}

.services-list .swiper-slide {
    height: auto;
}

.hover-img-scale {
    display: block;
    overflow: hidden;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.hover-img-scale:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-2xl);
}

.hover-img-scale img {
    transition: transform var(--transition-slow);
}

.hover-img-scale:hover img {
    transform: scale(1.1);
}

/* ============================================
   5. CARDS & COMPONENTS
   ============================================ */

.card {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
    background: #ffffff;
}

.card:hover {
    border-color: var(--gray-300);
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.card-header {
    background: linear-gradient(135deg, var(--gray-50) 0%, #ffffff 100%);
    border-bottom: 1px solid var(--gray-200);
    padding: 1.25rem 1.5rem;
}

.card-body {
    padding: 1.5rem;
}

/* Testimonial Cards */
.testimonial-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    height: 100%;
    border: 2px solid transparent;
}

.testimonial-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

.testimonial-quote-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-message {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
}

.author-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.25rem;
}

.author-name {
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.author-location {
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* ============================================
   6. FORMS
   ============================================ */

.form-control,
.form-select {
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 0.875rem 1rem;
    font-size: 0.9375rem;
    transition: all var(--transition-fast);
    background: #ffffff;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    outline: none;
}

.form-label {
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* ============================================
   7. BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all var(--transition-base);
    border: none;
    cursor: pointer;
}

.btn-success {
    background: linear-gradient(135deg, var(--success-color) 0%, #059669 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.35);
}

.btn-warning {
    background: linear-gradient(135deg, var(--warning-color) 0%, #d97706 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
}

.btn-warning:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.35);
}

/* ============================================
   8. FOOTER
   ============================================ */

footer {
    color: rgba(255,255,255,0.8);
    padding: 3rem 0 2rem;
}

footer a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color var(--transition-fast);
}

footer a:hover {
    color: var(--primary-color);
}

.social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

/* ============================================
   9. BREADCRUMB
   ============================================ */

.breadcrumb {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 1rem 1.5rem;
}

.breadcrumb-item {
    font-size: 0.9375rem;
}

.breadcrumb-item a {
    color: var(--gray-600);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.breadcrumb-item a:hover {
    color: var(--primary-color);
}

.breadcrumb-item.active {
    color: var(--gray-900);
    font-weight: 600;
}

/* ============================================
   10. PAGINATION
   ============================================ */

.pagination {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.page-link {
    padding: 0.75rem 1.25rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    color: var(--gray-700);
    font-weight: 500;
    transition: all var(--transition-fast);
}

.page-link:hover {
    background: var(--gray-50);
    border-color: var(--gray-300);
    color: var(--gray-900);
}

.page-item.active .page-link {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
}

/* ============================================
   11. ACCORDION (FAQ)
   ============================================ */

.accordion-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-button {
    background: #ffffff;
    color: var(--gray-900);
    font-weight: 600;
    padding: 1.25rem 1.5rem;
    transition: all var(--transition-fast);
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #ffffff;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.accordion-body {
    padding: 1.5rem;
    background: var(--gray-50);
}

/* ============================================
   12. RESPONSIVE
   ============================================ */

@media (max-width: 991px) {
    .webmenu {
        flex-direction: column;
        gap: 0;
    }
    
    .elegant-hero-carousel {
        height: 60vh;
        min-height: 400px;
    }
    
    section {
        padding: 3rem 0;
    }
}

@media (max-width: 767px) {
    .elegant-hero-carousel {
        height: 50vh;
        min-height: 350px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
}

/* ============================================
   13. ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out;
}

.animate-slide-in-right {
    animation: slideInRight 0.6s ease-out;
}

/* ============================================
   14. UTILITIES
   ============================================ */

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.bg-gradient-secondary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
}

.shadow-soft {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.hover-lift {
    transition: transform var(--transition-base);
}

.hover-lift:hover {
    transform: translateY(-5px);
}

/* ============================================
   15. ÜRÜN SAYFALARI (PRODUCTS & PRODUCT)
   ============================================ */

/* Ürün Arama Formu */
.product-search-form {
    margin-bottom: 1.5rem;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 4px 4px 4px 16px;
    transition: border-color var(--transition-fast);
}

.search-input-wrapper:focus-within {
    border-color: var(--gray-400);
}

.search-icon {
    font-size: 1.25rem;
    color: var(--gray-400);
    flex-shrink: 0;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 10px 8px;
    font-size: 0.95rem;
    color: var(--gray-900);
    background: transparent;
}

.search-input::placeholder {
    color: var(--gray-400);
}

.search-clear {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    flex-shrink: 0;
}

.search-clear:hover {
    background: var(--gray-100);
    color: var(--gray-900);
}

.search-button {
    padding: 10px 24px;
    background: var(--gray-900);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: background var(--transition-fast);
    flex-shrink: 0;
}

.search-button:hover {
    background: var(--gray-700);
}

/* Ürün Kartları */
.product-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition-fast);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    border-color: var(--gray-400);
}

.product-card-image {
    position: relative;
    width: 100%;
    height: 260px;
    background: var(--gray-50);
    overflow: hidden;
}

.product-card-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity var(--transition-fast);
}

.product-card:hover .product-card-image img {
    opacity: 0.95;
}

.product-stock-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.product-stock-badge.in-stock {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.product-stock-badge.out-of-stock {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.product-brand-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 500;
    background: #fff;
    color: var(--gray-700);
    border: 1px solid var(--gray-200);
}

.product-card-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.product-card-title {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    min-height: 2.8em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-title a {
    color: var(--gray-900);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.product-card-title a:hover {
    color: var(--gray-700);
}

.product-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
}

.product-card-meta .meta-item {
    font-size: 0.8rem;
    color: var(--gray-600);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    background: var(--gray-50);
    border-radius: var(--radius-sm);
    border: 1px solid var(--gray-200);
}

.product-card-meta .meta-item i {
    font-size: 0.9rem;
}

.product-card-price {
    margin-top: auto;
    padding-top: 8px;
    border-top: 1px solid var(--gray-100);
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
}

.price-currency {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gray-600);
    margin-left: 4px;
}

.product-card-actions {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.btn-product-detail {
    flex: 1;
    padding: 10px 16px;
    background: var(--gray-900);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    transition: background var(--transition-fast);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn-product-detail:hover {
    background: var(--gray-700);
    color: #fff;
}

.btn-product-whatsapp {
    width: 44px;
    height: 44px;
    padding: 0;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1.4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background var(--transition-fast);
    flex-shrink: 0;
}

.btn-product-whatsapp:hover {
    background: #128C7E;
    color: #fff;
}

/* Kategori Sidebar */
.category-sidebar {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
}

.category-sidebar .category-title {
    font-size: 1rem;
    color: var(--gray-900);
    border-bottom: 1px solid var(--gray-200);
    padding-bottom: 12px;
    margin-bottom: 16px;
    font-weight: 600;
}

.category-sidebar .category-link {
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast);
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--gray-600);
    margin-bottom: 4px;
}

.category-sidebar .category-link:hover {
    background: var(--gray-50);
    color: var(--gray-900);
}

.category-sidebar .category-link.active {
    background: var(--gray-100);
    color: var(--gray-900);
    font-weight: 600;
    border-left: 3px solid var(--primary-color);
}

.category-sidebar .sub-category-link {
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast);
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--gray-400);
    margin-bottom: 2px;
    font-size: 0.9rem;
}

.category-sidebar .sub-category-link:hover {
    background: var(--gray-50);
    color: var(--gray-700);
}

.category-sidebar .sub-category-link.active {
    background: var(--gray-100);
    color: var(--gray-900);
    font-weight: 500;
    border-left: 2px solid var(--primary-color);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    border: 1px dashed var(--gray-300);
}

.empty-state-icon {
    font-size: 4rem;
    color: var(--gray-300);
    margin-bottom: 1.5rem;
}

.empty-state-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.empty-state-text {
    font-size: 1rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   16. ÜRÜN DETAY SAYFASI (PRODUCT)
   ============================================ */

/* Galeri */
.detail-gallery-wrapper {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.gallery-image-link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 550px;
    background: var(--gray-50);
    position: relative;
    overflow: hidden;
    cursor: zoom-in;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 2rem;
    transition: opacity var(--transition-fast);
}

.gallery-image-link:hover .gallery-image {
    opacity: 0.95;
}

.zoom-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.gallery-image-link:hover .zoom-icon {
    opacity: 1;
}

.gallery-thumbnails .thumbnail-item {
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    transition: border-color var(--transition-fast);
    aspect-ratio: 1;
}

.gallery-thumbnails .thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumbnails .thumbnail-item:hover,
.gallery-thumbnails .thumbnail-item.active {
    border-color: var(--gray-600);
}

/* Başlık ve Meta */
.product-header {
    border-bottom: 1px solid var(--gray-200);
    padding-bottom: 1.5rem;
}

.brand-badge {
    display: inline-flex;
    align-items: center;
    background: var(--gray-100);
    color: var(--gray-700);
    padding: 6px 16px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid var(--gray-200);
}

.product-main-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.3;
    margin-bottom: 1rem;
}

.product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.product-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-600);
    font-size: 0.875rem;
}

.product-meta .meta-item i {
    font-size: 1.1rem;
    color: var(--gray-400);
}

/* Fiyat Kutusu */
.price-box {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    margin-bottom: 2rem;
}

.price-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1;
}

.stock-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-weight: 500;
}

.stock-badge i {
    font-size: 1.5rem;
}

.stock-available {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.stock-available i {
    color: var(--success-color);
}

.stock-unavailable {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.stock-unavailable i {
    color: var(--danger-color);
}

.stock-status {
    font-size: 0.9rem;
    line-height: 1.2;
}

.stock-count {
    font-size: 0.8rem;
    opacity: 0.75;
}

/* WhatsApp Sipariş Butonu */
.btn-whatsapp-order {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #25D366;
    color: #fff;
    padding: 1.125rem 1.5rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all var(--transition-base);
}

.btn-whatsapp-order:hover {
    background: #128C7E;
    color: #fff;
}

.whatsapp-icon {
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.15);
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.whatsapp-content {
    flex: 1;
    text-align: left;
}

.whatsapp-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.whatsapp-subtitle {
    font-size: 0.875rem;
    opacity: 0.9;
    font-weight: 400;
}

.whatsapp-arrow {
    font-size: 1.25rem;
    transition: transform var(--transition-fast);
}

.btn-whatsapp-order:hover .whatsapp-arrow {
    transform: translateX(4px);
}

/* İçerik */
.product-description,
.product-detail {
    line-height: 1.7;
    color: var(--gray-700);
    font-size: 0.95rem;
}

.product-description img,
.product-detail img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-sm);
    margin: 1.25rem 0;
    border: 1px solid var(--gray-200);
}

.product-description p,
.product-detail p {
    margin-bottom: 0.875rem;
}

.product-description ul,
.product-detail ul {
    padding-left: 1.5rem;
    margin-bottom: 0.875rem;
}

.product-description li,
.product-detail li {
    margin-bottom: 0.5rem;
    padding-left: 0.25rem;
}

/* İlgili Ürünler */
.related-products-section {
    margin-top: 4rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--gray-200);
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.related-product-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-fast);
    height: 100%;
}

.related-product-card:hover {
    border-color: var(--gray-400);
    box-shadow: var(--shadow-md);
}

.related-product-image {
    position: relative;
    height: 220px;
    background: var(--gray-50);
    overflow: hidden;
}

.related-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity var(--transition-fast);
}

.related-product-card:hover .related-product-image img {
    opacity: 0.95;
}

.related-product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
}

.related-stock-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
}

.related-product-content {
    padding: 1.25rem;
}

.related-product-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.5em;
    line-height: 1.3;
}

.related-product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.related-product-price .currency {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-600);
}

.related-product-action {
    transition: all var(--transition-fast);
}

.related-product-action .view-btn {
    display: inline-flex;
    align-items: center;
    color: var(--gray-600);
    font-weight: 500;
    font-size: 0.9rem;
}

.related-product-card:hover .related-product-action .view-btn {
    color: var(--gray-900);
}

/* ============================================
   17. ARAMA SONUÇLARI SAYFASI
   ============================================ */

.search-hero {
    background: linear-gradient(135deg, var(--gray-50) 0%, #ffffff 100%);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    text-align: center;
}

.search-hero-content {
    margin-bottom: 2rem;
}

.search-hero-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.search-hero-subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.search-hero-subtitle i {
    font-size: 1.3rem;
    color: var(--success-color);
}

.search-hero-form {
    max-width: 800px;
    margin: 0 auto;
}

.search-hero-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 8px 8px 8px 20px;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.search-hero-input-wrapper:focus-within {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.search-hero-icon {
    font-size: 1.75rem;
    color: var(--gray-400);
    flex-shrink: 0;
}

.search-hero-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 14px 12px;
    font-size: 1.1rem;
    color: var(--gray-900);
    background: transparent;
}

.search-hero-input::placeholder {
    color: var(--gray-400);
}

.search-hero-clear {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    flex-shrink: 0;
    font-size: 1.2rem;
}

.search-hero-clear:hover {
    background: var(--gray-100);
    color: var(--gray-900);
}

.search-hero-button {
    padding: 14px 36px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.search-hero-button:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* ============================================
   18. RESPONSIVE - ÜRÜN SAYFALARI
   ============================================ */

@media (max-width: 991px) {
    .category-sidebar {
        position: relative !important;
        margin-bottom: 2rem;
    }
    
    .detail-side {
        position: relative !important;
    }
    
    .product-main-title {
        font-size: 1.5rem;
    }
    
    .price-value {
        font-size: 2rem;
    }
    
    .gallery-image-link {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .search-input-wrapper,
    .search-hero-input-wrapper {
        flex-wrap: wrap;
        padding: 8px;
    }
    
    .search-input,
    .search-hero-input {
        min-width: 0;
        flex: 1 1 100%;
        font-size: 1rem;
        padding: 12px;
    }
    
    .search-button,
    .search-hero-button {
        flex: 1;
        width: 100%;
        justify-content: center;
    }
    
    .search-hero {
        padding: 2rem 1.5rem;
    }
    
    .search-hero-title {
        font-size: 1.5rem;
    }
    
    .search-hero-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .product-card-image {
        height: 220px;
    }
    
    .product-card-title {
        font-size: 0.9rem;
    }
    
    .price-amount {
        font-size: 1.25rem;
    }
    
    .btn-product-detail {
        font-size: 0.85rem;
        padding: 8px 12px;
    }
    
    .btn-product-whatsapp {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .btn-whatsapp-order {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .whatsapp-icon {
        width: 48px;
        height: 48px;
        font-size: 2rem;
    }
    
    .whatsapp-title {
        font-size: 1rem;
    }
    
    .whatsapp-subtitle {
        font-size: 0.8rem;
    }
    
    .product-main-title {
        font-size: 1.25rem;
    }
    
    .price-value {
        font-size: 1.75rem;
    }
}

/* ============================================
   19. BLOG DETAY SAYFASI (POST.PHP)
   ============================================ */

/* Blog Article Container */
.blog-article {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.blog-header {
    padding: 2.5rem 3rem 2rem;
    background: linear-gradient(135deg, var(--gray-50) 0%, #ffffff 100%);
    border-bottom: 1px solid var(--gray-200);
}

.blog-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    color: var(--gray-600);
    font-size: 0.9375rem;
}

.blog-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-meta-item i {
    color: var(--gray-400);
    font-size: 1.125rem;
}

.blog-category-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: white;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
}

.blog-featured-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.blog-content-wrapper {
    padding: 3rem;
}

/* Post CTA Banner - Başlık Altında */
.post-cta-banner {
    padding: 3.5rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.post-cta-banner.nakliyat-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, #764ba2 100%);
}

.post-cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.post-cta-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    pointer-events: none;
}

.cta-icon-wrapper {
    position: relative;
    z-index: 1;
    margin-bottom: 1.5rem;
}

.cta-icon-wrapper i {
    font-size: 80px;
    color: white;
    opacity: 0.9;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.cta-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 1rem 1.75rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all var(--transition-base);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-btn i {
    font-size: 1.25rem;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.cta-btn-phone {
    background: white;
    color: var(--gray-900);
}

.cta-btn-phone:hover {
    background: var(--gray-100);
    color: var(--gray-900);
}

.cta-btn-whatsapp {
    background: #25D366;
    color: white;
}

.cta-btn-whatsapp:hover {
    background: #128C7E;
    color: white;
}

.cta-btn-form {
    background: var(--warning-color);
    color: var(--gray-900);
}

.cta-btn-form:hover {
    background: #d97706;
    color: var(--gray-900);
}

/* İçerik Tipografisi */
.post-content {
    font-size: 17px;
    line-height: 1.8;
    color: var(--gray-700);
    font-weight: 400;
}

.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6 {
    color: var(--gray-900);
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
}

.post-content h1 { font-size: 2.25rem; }
.post-content h2 { font-size: 1.875rem; }
.post-content h3 { font-size: 1.5rem; }
.post-content h4 { font-size: 1.25rem; }
.post-content h5 { font-size: 1.125rem; }
.post-content h6 { font-size: 1rem; }

.post-content p {
    margin-bottom: 1.25rem;
}

.post-content ul,
.post-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.75rem;
}

.post-content li {
    margin-bottom: 0.625rem;
    line-height: 1.7;
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    margin: 2rem 0;
    box-shadow: var(--shadow-md);
}

.post-content blockquote {
    border-left: 4px solid var(--primary-color);
    background: var(--gray-50);
    padding: 1.5rem 1.75rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--gray-600);
    border-radius: var(--radius-md);
}

.post-content a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color var(--transition-fast);
}

.post-content a:hover {
    border-bottom-color: var(--primary-color);
}

/* Galeri Bölümü */
.post-gallery {
    margin-top: 3rem;
}

.post-gallery h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.post-gallery h3 i {
    color: var(--primary-color);
    font-size: 1.75rem;
}

.post-gallery .gallery-item {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    text-decoration: none;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.post-gallery .gallery-item:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.post-gallery .gallery-thumb {
    position: relative;
    width: 100%;
    padding-top: 75%;
    background: var(--gray-200);
    overflow: hidden;
}

.post-gallery .gallery-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.post-gallery .gallery-item:hover .gallery-thumb img {
    transform: scale(1.1);
}

.post-gallery .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.4) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.post-gallery .gallery-overlay i {
    color: white;
    font-size: 2.5rem;
    transform: scale(0.8);
    transition: transform var(--transition-base);
}

.post-gallery .gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.post-gallery .gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* Etiketler */
.post-tags {
    background: var(--gray-50);
    padding: 1.75rem 2rem;
    border-radius: var(--radius-lg);
    margin-top: 3rem;
}

.post-tags .badge {
    padding: 0.625rem 1.125rem;
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.post-tags .badge:hover {
    background: var(--primary-color) !important;
    color: white !important;
    border-color: var(--primary-color) !important;
    transform: translateY(-2px);
}

/* Paylaşım Butonu */
.blog-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    color: var(--gray-600);
    font-weight: 500;
    transition: all var(--transition-fast);
}

.blog-share-btn:hover {
    background: #ffffff;
    border-color: var(--gray-400);
    color: var(--gray-900);
}

/* ============================================
   20. RESPONSIVE - BLOG DETAY
   ============================================ */

@media (max-width: 768px) {
    .blog-header {
        padding: 1.75rem 1.5rem 1.5rem;
    }
    
    .blog-title {
        font-size: 1.75rem;
    }
    
    .blog-featured-image {
        height: 300px;
    }
    
    .blog-content-wrapper {
        padding: 1.75rem;
    }
    
    .post-content {
        font-size: 16px;
    }
    
    .post-content h1 { font-size: 1.75rem; }
    .post-content h2 { font-size: 1.5rem; }
    .post-content h3 { font-size: 1.25rem; }
    .post-content h4 { font-size: 1.125rem; }
    .post-content h5 { font-size: 1rem; }
    .post-content h6 { font-size: 0.9375rem; }
    
    .post-tags {
        padding: 1.25rem 1.5rem;
    }
    
    .post-cta-banner {
        padding: 2.5rem 1.5rem;
    }
    
    .cta-icon-wrapper i {
        font-size: 60px;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .cta-btn {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .blog-header {
        padding: 1.5rem 1.25rem;
    }
    
    .blog-title {
        font-size: 1.5rem;
    }
    
    .blog-content-wrapper {
        padding: 1.5rem 1.25rem;
    }
    
    .post-cta-banner {
        padding: 2rem 1.25rem;
    }
    
    .cta-icon-wrapper i {
        font-size: 50px;
    }
    
    .cta-title {
        font-size: 1.25rem;
    }
    
    .cta-subtitle {
        font-size: 0.9375rem;
    }
}

/* ============================================
   21. GENEL SAYFA İYİLEŞTİRMELERİ
   ============================================ */

/* Hero Page Gradient Override */
.hero.page-hero .gradient {
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 100%) !important;
}

/* Kategori Tabları */
.category-tabs {
    background: var(--gray-100);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.category-tab-btn {
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all var(--transition-base);
    border: 2px solid transparent;
    background: white;
    color: var(--gray-600);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.category-tab-btn:hover {
    background: #fff;
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.category-tab-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.category-tab-btn .count {
    background: rgba(0,0,0,0.1);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
}

.category-tab-btn.active .count {
    background: rgba(255,255,255,0.2);
}

/* Form Select Özelleştirme */
.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='9' viewBox='0 0 14 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L7 7.5L13 1.5' stroke='%23667eea' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 48px;
    cursor: pointer;
}

.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

/* Referans Kartları */
.referance-item {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}

.referance-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.referance-item img {
    max-width: 100%;
    max-height: 120px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all var(--transition-base);
}

.referance-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Video Kartları */
.video-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
    height: 100%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.video-card:hover {
    border-color: #dc2626;
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.15);
    transform: translateY(-4px);
}

.video-card-thumbnail {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #000;
    overflow: hidden;
}

.video-card-thumbnail::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
    z-index: 2;
}

.video-card:hover .video-card-thumbnail::after {
    opacity: 1;
}

.video-card-thumbnail a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.video-card-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-card:hover .video-card-thumbnail img {
    transform: scale(1.08);
}

.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gray-800) 0%, var(--gray-900) 100%);
    color: var(--gray-400);
    font-size: 4rem;
}

.video-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 5rem;
    color: #fff;
    opacity: 0.85;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
    z-index: 3;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
}

.video-card:hover .video-play-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.15);
    color: #dc2626;
    filter: drop-shadow(0 6px 16px rgba(220, 38, 38, 0.6));
}

.video-card-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}

.video-card-title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-card-title a {
    color: var(--gray-900);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.video-card-title a:hover {
    color: var(--gray-700);
}

.video-card-description {
    margin: 0;
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.btn-video-watch {
    margin-top: auto;
    padding: 10px 20px;
    background: #dc2626;
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    transition: background var(--transition-fast);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    cursor: pointer;
}

.btn-video-watch:hover {
    background: #b91c1c;
    color: #fff;
}

/* Video Modal */
.video-modal {
    background: rgba(0, 0, 0, 0.4) !important;
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
}

.video-modal .modal-dialog {
    max-width: 1000px;
    width: 70vw;
}

.video-modal .modal-content {
    border: none;
    border-radius: 20px;
    overflow: visible;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.3);
    background: #000;
}

.video-modal .modal-body {
    background: #000;
    padding: 0;
    border-radius: 20px;
    overflow: hidden;
}

.video-modal .btn-close {
    position: absolute;
    top: -55px;
    right: -55px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    opacity: 1;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    z-index: 1060;
    box-shadow: var(--shadow-lg);
}

.video-modal .btn-close:hover {
    background: #dc2626;
    transform: rotate(90deg) scale(1.15);
}

/* Page Content (Sayfa İçeriği) */
.page-content {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.page-header-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.page-content-inner {
    padding: 3rem;
}

.page-body {
    font-size: 17px;
    line-height: 1.8;
    color: var(--gray-700);
    font-weight: 400;
}

.page-body h1,
.page-body h2,
.page-body h3,
.page-body h4,
.page-body h5,
.page-body h6 {
    color: var(--gray-900);
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
}

.page-body h1 { font-size: 2.25rem; }
.page-body h2 { font-size: 1.875rem; }
.page-body h3 { font-size: 1.5rem; }
.page-body h4 { font-size: 1.25rem; }
.page-body h5 { font-size: 1.125rem; }
.page-body h6 { font-size: 1rem; }

.page-body p {
    margin-bottom: 1.25rem;
}

.page-body ul,
.page-body ol {
    margin-bottom: 1.5rem;
    padding-left: 1.75rem;
}

.page-body li {
    margin-bottom: 0.625rem;
    line-height: 1.7;
}

.page-body img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    margin: 2rem 0;
    box-shadow: var(--shadow-md);
}

.page-body blockquote {
    border-left: 4px solid var(--primary-color);
    background: var(--gray-50);
    padding: 1.5rem 1.75rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--gray-600);
    border-radius: var(--radius-md);
}

.page-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.page-body table th,
.page-body table td {
    padding: 1rem;
    border: 1px solid var(--gray-200);
    text-align: left;
}

.page-body table th {
    background: var(--gray-50);
    font-weight: 600;
    color: var(--gray-900);
}

.page-body a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color var(--transition-fast);
}

.page-body a:hover {
    border-bottom-color: var(--primary-color);
}

/* Page Gallery */
.page-gallery {
    margin-top: 3rem;
}

.page-gallery h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.page-gallery h3 i {
    color: var(--primary-color);
    font-size: 1.75rem;
}

.page-gallery .gallery-item {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    text-decoration: none;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.page-gallery .gallery-item:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.page-gallery .gallery-thumb {
    position: relative;
    width: 100%;
    padding-top: 75%;
    background: var(--gray-200);
    overflow: hidden;
}

.page-gallery .gallery-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.page-gallery .gallery-item:hover .gallery-thumb img {
    transform: scale(1.1);
}

.page-gallery .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.4) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.page-gallery .gallery-overlay i {
    color: white;
    font-size: 2.5rem;
    transform: scale(0.8);
    transition: transform var(--transition-base);
}

.page-gallery .gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.page-gallery .gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* Page Meta */
.page-meta {
    background: var(--gray-50);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-lg);
    margin-top: 3rem;
}

.page-meta .text-gray-600 {
    color: var(--gray-600);
    font-size: 0.9375rem;
}

.page-meta i {
    color: var(--gray-400);
}

/* ============================================
   22. RESPONSIVE - GENEL SAYFALAR
   ============================================ */

@media (max-width: 992px) {
    .video-modal .modal-dialog {
        width: 85vw;
    }
    
    .video-modal .btn-close {
        top: -45px;
        right: 0;
    }
}

@media (max-width: 768px) {
    .page-header-image {
        height: 300px;
    }
    
    .page-content-inner {
        padding: 1.75rem;
    }
    
    .page-body {
        font-size: 16px;
    }
    
    .page-body h1 { font-size: 1.75rem; }
    .page-body h2 { font-size: 1.5rem; }
    .page-body h3 { font-size: 1.25rem; }
    .page-body h4 { font-size: 1.125rem; }
    .page-body h5 { font-size: 1rem; }
    .page-body h6 { font-size: 0.9375rem; }
    
    .page-meta {
        padding: 1.25rem 1.5rem;
    }
    
    .video-modal .modal-dialog {
        width: 92vw;
    }
    
    .video-modal .btn-close {
        width: 42px;
        height: 42px;
        top: -40px;
    }
    
    .video-card-title {
        font-size: 1rem;
    }
    
    .video-play-overlay {
        font-size: 4rem;
    }
}

@media (max-width: 576px) {
    .video-modal .modal-dialog {
        width: 95vw;
    }
    
    .video-modal .btn-close {
        width: 38px;
        height: 38px;
        top: -35px;
    }
}
