/* themes/taxi/assets/css/desktop.css */
/* Masaüstü için stil - 1024px ve üzeri */

@media (min-width: 1024px) {

    /* ================= RESET & GLOBAL ================= */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    body {
        font-family: 'Inter', sans-serif;
        background: #fff;
        color: #1a1a2e;
        line-height: 1.6;
    }
    
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* ================= TOP BAR PREMIUM ================= */
    .topbar {
        background: linear-gradient(90deg, #ffd000 0%, #f59e0b 50%, #111827 50%, #020617 100%);
        padding: 12px 0;
        position: relative;
        z-index: 9999;
        overflow: hidden;
    }

    .topbar::before {
        content: '';
        position: absolute;
        right: 50%;
        top: 0;
        width: 120px;
        height: 100%;
        background: linear-gradient(135deg, transparent 0%, #111827 100%);
        z-index: 1;
    }

    .topbar .container {
        position: relative;
        z-index: 2;
    }

    .topbar-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
        z-index: 2;
        gap: 20px;
    }

    .topbar-left {
        display: flex;
        align-items: center;
        gap: 22px;
        flex-wrap: wrap;
    }

    .topbar-right {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .top-item {
        font-size: 14px;
        font-weight: 700;
        color: #111;
        display: flex;
        align-items: center;
        gap: 8px;
        letter-spacing: 0.2px;
    }

    .glow-item {
        background: #111827;
        color: #ffd000;
        padding: 10px 18px;
        border-radius: 50px;
        box-shadow: 0 0 18px rgba(255, 208, 0, 0.45);
    }

    .topbar-right a {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.08);
        color: #fff;
        transition: all 0.35s ease;
        font-size: 16px;
        text-decoration: none;
        backdrop-filter: blur(4px);
    }

    .topbar-right a:hover {
        transform: translateY(-4px) rotate(6deg);
        background: #ffd000;
        color: #111;
        box-shadow: 0 8px 20px rgba(255, 208, 0, 0.35);
    }

    .topbar-right i {
        line-height: 1;
    }

    /* Masaüstünde mobil top bar gizle */
    .mobile-top-bar {
        display: none !important;
    }

    /* ================= HEADER PREMIUM ================= */
    header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        z-index: 999;
    }

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

    .logo img {
        height: 50px;
    }

    .logo span {
        font-size: 28px;
        font-weight: 800;
        color: #ffd000;
    }

    .menu {
        display: flex;
        gap: 30px;
        align-items: center;
    }

    .menu a {
        text-decoration: none;
        color: #1a1a2e;
        font-weight: 500;
        transition: color 0.3s;
    }

    .menu a:hover {
        color: #ffd000;
    }

    .call-btn {
        background: #ffd000;
        color: #1a1a2e !important;
        padding: 10px 20px;
        border-radius: 30px;
        font-weight: 700;
    }

    .call-btn:hover {
        background: #e6b800;
        transform: translateY(-2px);
    }

    /* ================= HERO ================= */
    .hero {
        margin-top: 85px;
        height: 700px;
        position: relative;
        padding: 0 !important;
        margin: 0 !important;
        overflow: hidden;
    }
    
    .slider-container {
        position: relative;
        height: 100%;
        width: 100%;
    }
    
    .slider {
        height: 100%;
        width: 100%;
        position: relative;
    }
    
    .slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 0.5s ease;
    }
    
    .slide.active {
        opacity: 1;
    }
    
    .slide img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center center;
        display: block;
    }
    
    .slide-content {
        position: absolute;
        bottom: 15%;
        left: 10%;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(5px);
        padding: 30px;
        border-radius: 15px;
        color: white;
        max-width: 500px;
        z-index: 5;
    }
    
    .slide-content h2 {
        font-size: 42px;
        margin-bottom: 15px;
    }
    
    .slider-prev,
    .slider-next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0, 0, 0, 0.5);
        color: white;
        border: none;
        padding: 15px 20px;
        cursor: pointer;
        font-size: 24px;
        z-index: 10;
    }
    
    .slider-prev { left: 20px; }
    .slider-next { right: 20px; }

    /* ================= BUTTONS ================= */
    .btn {
        display: inline-block;
        padding: 12px 30px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s;
        border: none;
        cursor: pointer;
    }
    
    .btn-primary {
        background: #ffd000;
        color: #1a1a2e;
    }
    
    .btn-primary:hover {
        background: #e6b800;
        transform: translateY(-2px);
    }
    
    .btn-secondary {
        background: transparent;
        border: 2px solid #ffd000;
        color: #ffd000;
    }
    
    .btn-link {
        color: #ffd000;
        text-decoration: none;
        font-weight: 500;
    }

    /* ================= SECTIONS ================= */
    section {
        padding: 80px 0;
    }
    
    .section-header {
        text-align: center;
        margin-bottom: 50px;
    }
    
    .section-tag {
        color: #ffd000;
        font-weight: 600;
        letter-spacing: 2px;
    }
    
    .section-header h2 {
        font-size: 42px;
        margin: 15px 0;
    }

    /* ================= SERVICE GRID ================= */
    .services-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
    
    .service-card {
        background: #f8f9fa;
        border-radius: 15px;
        overflow: hidden;
        transition: transform 0.3s;
        text-align: center;
        padding: 30px 20px;
    }
    
    .service-card:hover {
        transform: translateY(-10px);
    }
    
    .service-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }
    
    .service-card h3 {
        font-size: 20px;
        margin: 15px 0 10px;
    }
    
    .service-card p {
        color: #666;
        font-size: 14px;
    }
    
    .service-card .btn-link {
        display: inline-block;
        margin-top: 15px;
    }

    /* ================= STATS ================= */
    .stats-section {
        background: #1a1a2e;
        color: white;
    }
    
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        text-align: center;
    }
    
    .stat-item h3 {
        font-size: 48px;
        color: #ffd000;
    }

    /* ================= BLOG GRID ================= */
    .blog-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .blog-card {
        background: white;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    }
    
    .blog-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }
    
    .blog-content {
        padding: 20px;
    }
    
    .blog-date {
        color: #ffd000;
        font-size: 12px;
    }

    /* ================= TESTIMONIALS ================= */
    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .testimonial-card {
        background: #f8f9fa;
        padding: 30px;
        border-radius: 15px;
        text-align: center;
    }
    
    .testimonial-card i {
        font-size: 30px;
        color: #ffd000;
        margin-bottom: 15px;
    }
    
    .stars {
        color: #ffd000;
        margin: 15px 0;
    }

    /* ================= CTA ================= */
    .cta-section {
        background: linear-gradient(135deg, #ffd000, #f59e0b);
        text-align: center;
        color: #1a1a2e;
    }
    
    .cta-section h2 {
        font-size: 48px;
        margin-bottom: 20px;
    }
    
    .btn-large {
        padding: 15px 40px;
        font-size: 18px;
        background: #1a1a2e;
        color: #ffd000;
        margin-top: 20px;
        display: inline-block;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 700;
    }

    /* ================= FOOTER ================= */
    .footer {
        background: #0f0f1a;
        color: #94a3b8;
        padding: 60px 0 30px;
    }
    
    .footer-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
        margin-bottom: 40px;
    }
    
    .footer-col h3 {
        color: #ffd000;
        margin-bottom: 20px;
    }
    
    .footer-col ul {
        list-style: none;
    }
    
    .footer-col a {
        color: #94a3b8;
        text-decoration: none;
    }
    
    .footer-col a:hover {
        color: #ffd000;
    }
    
    .social-links {
        display: flex;
        gap: 15px;
        margin-top: 20px;
    }
    
    .social-links a {
        background: rgba(255,255,255,0.1);
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
    }
    
    .social-links a:hover {
        background: #ffd000;
        color: #1a1a2e;
    }
    
    .footer-bottom {
        text-align: center;
        padding-top: 30px;
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    /* ================= MOBİL MENU GİZLE ================= */
    .mobile-menu,
    .mobile-sticky-bar,
    .mobile-top-bar,
    .mobile-menu-panel,
    .menu-overlay,
    .mobile-menu-icon {
        display: none !important;
    }
}