﻿<!DOCTYPE html>
<html lang="tr">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <title>404 - Sayfa Bulunamadı - Rotaş Oto Ticaret</title>
    <link rel="icon" href="/assets/favicon.svg" type="image/svg+xml">
    <link rel="icon" href="/assets/favicon-32x32.png" type="image/png" sizes="32x32">
    <link rel="icon" href="/assets/favicon-16x16.png" type="image/png" sizes="16x16">
    <link rel="shortcut icon" href="/assets/favicon.ico">
    <link rel="apple-touch-icon" href="/assets/apple-touch-icon.png" sizes="180x180">
    <link rel="stylesheet" href="/css/style.css">
    <link rel="preconnect" href="https://fonts.googleapis.com">
    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
    <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap" rel="stylesheet">
    <style>
        .error-hero {
            position: relative;
            min-height: 60vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #DC2626 0%, #991b1b 50%, #7f1d1d 100%);
            overflow: hidden;
            padding: 4rem 0;
        }
        
        .error-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
            animation: pulse 4s ease-in-out infinite;
        }
        
        @keyframes pulse {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 0.8; }
        }
        
        .error-number {
            font-size: 12rem;
            font-weight: 800;
            color: rgba(255, 255, 255, 0.95);
            text-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            margin: 0;
            line-height: 1;
            letter-spacing: -0.02em;
            animation: float 3s ease-in-out infinite;
            position: relative;
            z-index: 1;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }
        
        .error-subtitle {
            font-size: 1.75rem;
            color: rgba(255, 255, 255, 0.95);
            margin-top: 1rem;
            font-weight: 500;
            position: relative;
            z-index: 1;
        }
        
        .error-content {
            padding: 5rem 0;
            background: linear-gradient(to bottom, #fafafa 0%, #ffffff 100%);
        }
        
        .error-illustration {
            max-width: 400px;
            margin: 0 auto 3rem;
            position: relative;
        }
        
        .error-illustration svg {
            width: 100%;
            height: auto;
            filter: drop-shadow(0 20px 40px rgba(220, 38, 38, 0.15));
            animation: fadeInUp 0.8s ease-out;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .error-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--black);
            margin-bottom: 1.5rem;
            animation: fadeInUp 0.8s ease-out 0.2s both;
        }
        
        .error-description {
            font-size: 1.125rem;
            color: var(--gray);
            line-height: 1.8;
            max-width: 600px;
            margin: 0 auto 3rem;
            animation: fadeInUp 0.8s ease-out 0.4s both;
        }
        
        .error-actions {
            display: flex;
            gap: 1.25rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 4rem;
            animation: fadeInUp 0.8s ease-out 0.6s both;
        }
        
        .error-btn {
            padding: 1rem 2.5rem;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 12px;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            position: relative;
            overflow: hidden;
        }
        
        .error-btn-primary {
            background: var(--primary-red);
            color: white;
            box-shadow: 0 4px 14px rgba(220, 38, 38, 0.3);
        }
        
        .error-btn-primary:hover {
            background: var(--dark-red);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(220, 38, 38, 0.4);
        }
        
        .error-btn-secondary {
            background: white;
            color: var(--primary-red);
            border: 2px solid var(--primary-red);
        }
        
        .error-btn-secondary:hover {
            background: var(--primary-red);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(220, 38, 38, 0.3);
        }
        
        .popular-links {
            margin-top: 4rem;
            padding-top: 3rem;
            border-top: 1px solid #e5e7eb;
            animation: fadeInUp 0.8s ease-out 0.8s both;
        }
        
        .popular-links h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--black);
            margin-bottom: 1.5rem;
        }
        
        .popular-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 1rem;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .popular-link {
            padding: 1rem 1.5rem;
            background: white;
            border: 2px solid #e5e7eb;
            border-radius: 12px;
            color: var(--primary-red);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .popular-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.1), transparent);
            transition: left 0.5s;
        }
        
        .popular-link:hover {
            border-color: var(--primary-red);
            background: #fef2f2;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(220, 38, 38, 0.15);
        }
        
        .popular-link:hover::before {
            left: 100%;
        }
        
        @media (max-width: 768px) {
            .error-number {
                font-size: 8rem;
            }
            
            .error-subtitle {
                font-size: 1.5rem;
            }
            
            .error-title {
                font-size: 2rem;
            }
            
            .error-illustration {
                max-width: 300px;
            }
            
            .error-btn {
                padding: 0.875rem 2rem;
                font-size: 0.95rem;
            }
        }
    </style>
</head>
<body>
    <div id="loadingScreen" class="loading-screen" aria-live="polite" aria-busy="true">
        <div class="loading-content">
            <div class="loading-brand">
                <img src="/assets/rotasLogo.png" alt="Rotaş Oto Ticaret" class="loading-logo">
            </div>

            <div class="loading-wheel" aria-hidden="true">
                <svg viewBox="0 0 64 64" fill="none" xmlns="http://www.w3.org/2000/svg">
                    <circle cx="32" cy="32" r="28" stroke="currentColor" stroke-width="3" opacity="0.12"/>
                    <circle cx="32" cy="32" r="20" stroke="currentColor" stroke-width="2.5"/>
                    <circle cx="32" cy="32" r="6" fill="currentColor"/>
                    <path d="M32 12V20M32 44V52M12 32H20M44 32H52M18.3 18.3L23.5 23.5M40.5 40.5L45.7 45.7M45.7 18.3L40.5 23.5M23.5 40.5L18.3 45.7" stroke="currentColor" stroke-width="2" stroke-linecap="round"/>
                </svg>
            </div>

            <div class="loading-status">
                <p class="loading-text">Yükleniyor</p>
                <div class="loading-progress">
                    <div class="loading-progress-bar"></div>
                </div>
            </div>
        </div>
    </div>

    <nav class="navbar">
        <div class="container">
            <div class="nav-wrapper">
                <div class="logo">
                    <a href="/">
                        <img src="/assets/rotasLogo.png" alt="Rotaş Oto Ticaret" class="logo-image">
                    </a>
                </div>
                <div class="nav-right-section">
                    <ul class="nav-menu" id="navMenu">
                        <li>
                            <a href="/" 
                               target="_self">Ana Sayfa</a>
                            
                        </li>
                        <li class="has-dropdown">
                            <a href="/hakkimizda" 
                               target="_self">Hakkımızda</a>
                            <ul class="dropdown-menu">
                                <li>
                                    <a href="/atr" 
                                       target="_blank">ATR</a>
                                </li>
                                
                            </ul>
                        </li>
                        <li>
                            <a href="/urunler" 
                               target="_self">Ürünler</a>
                            
                        </li>
                        <li>
                            <a href="/markalar" 
                               target="_self">Markalar</a>
                            
                        </li>
                        <li>
                            <a href="/blog" 
                               target="_self">Blog</a>
                            
                        </li>
                        <li>
                            <a href="/iletisim" 
                               target="_self">İletişim</a>
                            
                        </li>
                        
                        
                        
                        
                        
                        
                        
                    </ul>
                    <a href="https://b2b.rotas.com.tr/web/" target="_blank" class="nav-button">B2B Portal</a>
                </div>
                <div class="hamburger" id="hamburger">
                    <span></span>
                    <span></span>
                    <span></span>
                </div>
            </div>
        </div>
    </nav>

    <section class="error-hero">
        <div class="container" style="text-align: center; position: relative; z-index: 1;">
            <h1 class="error-number">404</h1>
            <p class="error-subtitle">Sayfa Bulunamadı</p>
        </div>
    </section>

    <section class="error-content">
        <div class="container" style="text-align: center;">
            <div class="error-illustration">
                <svg viewBox="0 0 400 300" fill="none" xmlns="http://www.w3.org/2000/svg">
                    <!-- Background circle with gradient -->
                    <defs>
                        <linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="100%">
                            <stop offset="0%" style="stop-color:#DC2626;stop-opacity:0.1" />
                            <stop offset="100%" style="stop-color:#991b1b;stop-opacity:0.05" />
                        </linearGradient>
                    </defs>
                    <circle cx="200" cy="150" r="120" fill="url(#grad1)" opacity="0.5"/>
                    
                    <!-- Main circle -->
                    <circle cx="200" cy="150" r="100" stroke="#DC2626" stroke-width="3" stroke-dasharray="8 4" fill="none" opacity="0.3">
                        <animate attributeName="stroke-dashoffset" values="0;20" dur="3s" repeatCount="indefinite"/>
                    </circle>
                    
                    <!-- X mark -->
                    <g stroke="#DC2626" stroke-width="4" stroke-linecap="round" stroke-linejoin="round">
                        <line x1="150" y1="100" x2="250" y2="200">
                            <animate attributeName="opacity" values="0;1" dur="0.5s" fill="freeze"/>
                        </line>
                        <line x1="250" y1="100" x2="150" y2="200">
                            <animate attributeName="opacity" values="0;1" dur="0.5s" begin="0.2s" fill="freeze"/>
                        </line>
                    </g>
                    
                    <!-- Floating particles -->
                    <circle cx="100" cy="80" r="3" fill="#DC2626" opacity="0.4">
                        <animate attributeName="cy" values="80;60;80" dur="2s" repeatCount="indefinite"/>
                    </circle>
                    <circle cx="300" cy="220" r="2" fill="#DC2626" opacity="0.4">
                        <animate attributeName="cy" values="220;200;220" dur="2.5s" repeatCount="indefinite"/>
                    </circle>
                    <circle cx="320" cy="100" r="2.5" fill="#DC2626" opacity="0.4">
                        <animate attributeName="cy" values="100;120;100" dur="2.2s" repeatCount="indefinite"/>
                    </circle>
                </svg>
            </div>
            
            <h2 class="error-title">Aradığınız Sayfa Bulunamadı</h2>
            <p class="error-description">
                Üzgünüz, aradığınız sayfa mevcut değil veya taşınmış olabilir. 
                Lütfen URL'yi kontrol edin veya aşağıdaki linklerden devam edin.
            </p>
            
            <div class="error-actions">
                <a href="/" class="error-btn error-btn-primary">
                    <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
                        <path d="M10 3L3 10H7V17H13V10H17L10 3Z" fill="currentColor"/>
                    </svg>
                    Ana Sayfaya Dön
                </a>
                <a href="/iletisim" class="error-btn error-btn-secondary">
                    <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
                        <path d="M2.5 5L10 10L17.5 5M2.5 15H17.5V5H2.5V15Z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
                    </svg>
                    İletişime Geçin
                </a>
            </div>
            
            <div class="popular-links">
                <h3>Popüler Sayfalar</h3>
                <div class="popular-links-grid">
                    <a href="/hakkimizda" class="popular-link">Hakkımızda</a>
                    <a href="/urunler" class="popular-link">Ürünler</a>
                    <a href="/markalar" class="popular-link">Markalar</a>
                    <a href="/blog" class="popular-link">Blog</a>
                    <a href="/ekibimiz" class="popular-link">Ekibimiz</a>
                    <a href="/iletisim" class="popular-link">İletişim</a>
                </div>
            </div>
        </div>
    </section>

    <!-- Footer -->
    
    <footer class="footer">
        <div class="footer-main">
            <div class="container">
                <div class="footer-content">
                    <!-- Logo ve Şirket Bilgileri -->
                    <div class="footer-section footer-about">
                        <div class="footer-logo">
                            <img src="/assets/rotasLogo.png" alt="Rotaş Oto Ticaret" class="footer-logo-image">
                        </div>
                        <p class="footer-description">
                            Rotaş Oto Ticaret, 1927'den bu yana otomotiv yedek parça sektöründe 
                            binek ve ticari araçların yedek parça toptan satışı ve dağıtımı ile 
                            sektörünün öncü firmasıdır.
                        </p>
                    </div>
                    
                    <!-- Kurumsal -->
                    <div class="footer-section">
                        <h4>Kurumsal</h4>
                        <ul>
                            <li><a href="/hakkimizda">Hakkımızda</a></li>
                            <li><a href="/urunler">Ürünler</a></li>
                            <li><a href="/markalar">Markalar</a></li>
                            <li><a href="/iletisim">İletişim</a></li>
                        </ul>
                    </div>
                    
                    <!-- İletişim -->
                    <div class="footer-section footer-contact">
                        <h4>İletişim</h4>
                        <ul>
                            <li>
                                <i class="fas fa-phone"></i>
                                <a href="tel:+902124819280">+90 (212) 481 92 80</a>
                            </li>
                            <li>
                                <i class="fas fa-envelope"></i>
                                <a href="mailto:info@rotas.com.tr">info@rotas.com.tr</a>
                            </li>
                            <li>
                                <i class="fas fa-map-marker-alt"></i>
                                <span>Maslak Mah. Sanatkarlar Sk. No:2 D Blok No : 21 Sarıyer/İstanbul</span>
                            </li>
                        </ul>
                        <div class="footer-map">
                            <iframe
                                src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3004.5!2d29.0149406!3d41.1171924!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x14caba56408bf95f%3A0x4bfa3c3722978b26!2sRota%C5%9F%20Oto%20A.%C5%9E.!5e0!3m2!1str!2str!4v1737123456789!5m2!1str!2str"
                                width="100%"
                                height="150"
                                style="border:0; border-radius: 8px;"
                                allowfullscreen=""
                                loading="lazy"
                                referrerpolicy="no-referrer-when-downgrade"
                                title="Rotaş Oto Ticaret Konum">
                            </iframe>
                        </div>
                    </div>
                    
                    <!-- KVKK -->
                    <div class="footer-section footer-legal">
                        <h4>KVKK</h4>
                        <ul>
                            <li><a href="/kvkk">KVKK Aydınlatma Metni</a></li>
                            <li><a href="/gizlilik-politikasi">Gizlilik Politikası</a></li>
                            <li><a href="/cerez-politikasi">Çerez Politikası</a></li>
                            <li><a href="/kullanim-kosullari">Kullanım Koşulları</a></li>
                            <li><a href="#" data-open-cookie-settings>Çerez Ayarları</a></li>
                        </ul>
                    </div>
                </div>
            </div>
        </div>
        
        <div class="footer-bottom">
            <div class="container">
                <div class="footer-bottom-content">
                    <div class="footer-copyright">
                        <p>&copy; 2026 Rotaş Oto Ticaret. Tüm hakları saklıdır.</p>
                    </div>
                    <div class="footer-nav">
                        <a href="/">Ana Sayfa</a>
                        <span>|</span>
                        <a href="/hakkimizda">Kurumsal</a>
                        <span>|</span>
                        <a href="/urunler">Ürünler</a>
                    </div>
                    <div class="footer-social">
                        <a href="#" target="_blank" aria-label="Instagram" class="social-icon">
                            <i class="fab fa-instagram"></i>
                        </a>
                        <a href="#" target="_blank" aria-label="Facebook" class="social-icon">
                            <i class="fab fa-facebook-f"></i>
                        </a>
                        <a href="#" target="_blank" aria-label="LinkedIn" class="social-icon">
                            <i class="fab fa-linkedin-in"></i>
                        </a>
                        <a href="#" target="_blank" aria-label="YouTube" class="social-icon">
                            <i class="fab fa-youtube"></i>
                        </a>
                    </div>
                </div>
            </div>
        </div>
    </footer>

    
        <!-- Çerez Onay Banner -->
        <div id="cookieConsentBanner" class="cookie-consent-banner" hidden role="dialog" aria-labelledby="cookieConsentTitle" aria-describedby="cookieConsentDesc">
            <div class="cookie-consent-inner">
                <div class="cookie-consent-text">
                    <h3 id="cookieConsentTitle">Çerez Kullanımı</h3>
                    <p id="cookieConsentDesc">
                        Web sitemizde deneyiminizi iyileştirmek, site güvenliğini sağlamak ve tercihlerinizi hatırlamak için çerezler kullanıyoruz.
                        Zorunlu çerezler site işleyişi için gereklidir. Analitik ve işlevsel çerezler yalnızca onayınızla etkinleştirilir.
                        Detaylar için
                        <a href="/cerez-politikasi">Çerez Politikası</a> ve
                        <a href="/kvkk">KVKK Aydınlatma Metni</a> sayfalarımızı inceleyebilirsiniz.
                    </p>
                </div>
                <div class="cookie-consent-actions">
                    <button type="button" class="cookie-btn cookie-btn-ghost" id="cookieRejectBtn">Yalnızca Zorunlu</button>
                    <button type="button" class="cookie-btn cookie-btn-outline" id="cookieSettingsBtn">Ayarlar</button>
                    <button type="button" class="cookie-btn cookie-btn-primary" id="cookieAcceptAllBtn">Tümünü Kabul Et</button>
                </div>
            </div>
        </div>

        <!-- Çerez Tercih Paneli -->
        <div id="cookieSettingsModal" class="cookie-settings-modal" hidden>
            <div class="cookie-settings-backdrop" id="cookieSettingsBackdrop"></div>
            <div class="cookie-settings-panel" role="dialog" aria-modal="true" aria-labelledby="cookieSettingsTitle">
                <div class="cookie-settings-header">
                    <h3 id="cookieSettingsTitle">Çerez Tercihleri</h3>
                    <button type="button" class="cookie-settings-close" id="cookieSettingsClose" aria-label="Kapat">&times;</button>
                </div>
                <div class="cookie-settings-body">
                    <p class="cookie-settings-intro">
                        Tercihlerinizi kategorilere göre yönetebilirsiniz. Zorunlu çerezler her zaman aktiftir.
                    </p>

                    <div class="cookie-category">
                        <div class="cookie-category-head">
                            <div>
                                <strong>Zorunlu Çerezler</strong>
                                <span class="cookie-badge">Her zaman aktif</span>
                            </div>
                            <label class="cookie-switch">
                                <input type="checkbox" checked disabled>
                                <span class="cookie-slider"></span>
                            </label>
                        </div>
                        <p>Oturum, güvenlik ve site işlevselliği için gereklidir. Kapatılamaz.</p>
                    </div>

                    <div class="cookie-category">
                        <div class="cookie-category-head">
                            <div>
                                <strong>İşlevsel Çerezler</strong>
                            </div>
                            <label class="cookie-switch">
                                <input type="checkbox" id="cookieFunctional">
                                <span class="cookie-slider"></span>
                            </label>
                        </div>
                        <p>Harita gömümü, dil/tercih hatırlama gibi ek özellikler için kullanılır.</p>
                    </div>

                    <div class="cookie-category">
                        <div class="cookie-category-head">
                            <div>
                                <strong>Analitik Çerezler</strong>
                            </div>
                            <label class="cookie-switch">
                                <input type="checkbox" id="cookieAnalytics">
                                <span class="cookie-slider"></span>
                            </label>
                        </div>
                        <p>Ziyaret istatistikleri ve site performansını iyileştirmek için kullanılır.</p>
                    </div>

                    <div class="cookie-category">
                        <div class="cookie-category-head">
                            <div>
                                <strong>Pazarlama Çerezleri</strong>
                            </div>
                            <label class="cookie-switch">
                                <input type="checkbox" id="cookieMarketing">
                                <span class="cookie-slider"></span>
                            </label>
                        </div>
                        <p>Kampanya ve iletişim faaliyetlerini ölçmek için kullanılır (şu an sınırlı kullanım).</p>
                    </div>
                </div>
                <div class="cookie-settings-footer">
                    <button type="button" class="cookie-btn cookie-btn-ghost" id="cookieSaveRejectBtn">Yalnızca Zorunlu</button>
                    <button type="button" class="cookie-btn cookie-btn-primary" id="cookieSavePrefsBtn">Tercihleri Kaydet</button>
                </div>
            </div>
        </div>

        <script src="/js/cookie-consent.js"></script>
    
    

    <script src="/js/main.js"></script>
</body>
</html>
