:root {
    --primary: #FFC61A;
    --primary-dark: #E6B217;
    --secondary: #333;
    --light: #FFF;
    --dark: #000;
    --accent: #FF5722;
    --gradient: linear-gradient(135deg, #FFC61A 0%, #FF9800 100%);
    --menu-bg: rgba(0, 100, 200, 0.95);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: var(--gradient);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background-color: var(--light);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary);
    display: flex;
    align-items: center;
}

.logo i {
    color: var(--primary);
    margin-right: 10px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: var(--secondary);
    font-weight: 600;
    transition: color 0.3s;
    position: relative;
}

nav ul li a:hover {
    color: var(--primary);
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s;
}

nav ul li a:hover::after {
    width: 100%;
}

.contact-info {
    display: flex;
    align-items: center;
}

/* TELEFON BİLGİSİ - GÜNCELLENMİŞ */
.phone {
    display: flex;
    align-items: center;
    margin-right: 20px;
    font-weight: 600;
    color: var(--secondary);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 12px 18px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.phone::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.phone:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.phone:hover::before {
    left: 100%;
}

.phone i {
    color: var(--primary);
    margin-right: 10px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.phone:hover i {
    transform: scale(1.2) rotate(10deg);
    color: #4CAF50;
}

.lang-dropdown {
    position: relative;
    display: inline-block;
}

.lang-toggle {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 4px;
    background: #f5f5f5;
    transition: background 0.3s;
}

.lang-toggle:hover {
    background: #e9e9e9;
}

.lang-flag {
    width: 24px;
    height: 16px;
    margin-right: 8px;
    border-radius: 2px;
}

.lang-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--light);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 4px;
    padding: 10px 0;
    min-width: 120px;
    display: none;
    z-index: 100;
}

.lang-menu.active {
    display: block;
}

.lang-option {
    display: flex;
    align-items: center;
    padding: 8px 15px;
    cursor: pointer;
    transition: background 0.3s;
}

.lang-option:hover {
    background: #f5f5f5;
}

.lang-option .lang-flag {
    margin-right: 10px;
}

/* Mobile Menu - DÜZELTİLMİŞ KISIM */
.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--secondary);
    background: none;
    border: none;
    padding: 10px;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    max-width: 85%;
    height: 100%;
    background: var(--menu-bg);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    padding: 20px;
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    box-shadow: 5px 0 15px rgba(0,0,0,0.2);
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    display: none;
}

.mobile-menu-overlay.active {
    display: block;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.mobile-lang {
    display: flex;
    margin-bottom: 30px;
    justify-content: center;
}

.mobile-lang-option {
    display: flex;
    align-items: center;
    margin: 0 10px;
    padding: 10px 15px;
    background: rgba(255,255,255,0.2);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-lang-option.active, .mobile-lang-option:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.mobile-nav {
    flex-grow: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.mobile-nav ul li {
    margin-bottom: 10px;
    width: 100%;
}

.mobile-nav ul li a {
    color: var(--light);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    display: block;
    padding: 15px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 50px;
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.1);
    width: 100%;
    border: 1px solid transparent;
}

/* HOVER EFEKTLERİ - GELİŞTİRİLMİŞ */
.mobile-nav ul li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.mobile-nav ul li a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    border-radius: 8px;
}

.mobile-nav ul li a:hover {
    background: transparent;
    transform: translateX(10px) scale(1.02);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    border-color: rgba(255,255,255,0.3);
    color: var(--light);
}

.mobile-nav ul li a:hover::before {
    left: 100%;
}

.mobile-nav ul li a:hover::after {
    opacity: 0.8;
}

/* İkon efekti */
.mobile-nav ul li a i {
    margin-right: 12px;
    font-size: 1.1rem;
    opacity: 0.8;
    transition: all 0.3s ease;
    transform: translateX(0);
}

.mobile-nav ul li a:hover i {
    opacity: 1;
    transform: translateX(5px) scale(1.2);
    color: var(--light);
}

/* Menü öğelerine ikon eklemek için */
.mobile-nav ul li:nth-child(1) a i { color: #FFD700; } /* Ana Sayfa - Altın */
.mobile-nav ul li:nth-child(2) a i { color: #4FC3F7; } /* Hakkımızda - Mavi */
.mobile-nav ul li:nth-child(3) a i { color: #81C784; } /* Hizmetlerimiz - Yeşil */
.mobile-nav ul li:nth-child(4) a i { color: #FFB74D; } /* Fiyatlar - Turuncu */
.mobile-nav ul li:nth-child(5) a i { color: #BA68C8; } /* Rezervasyon - Mor */
.mobile-nav ul li:nth-child(6) a i { color: #FF8A65; } /* İletişim - Kırmızı */

.call-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--secondary);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    padding: 15px;
    border-radius: 10px;
    margin: 20px 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 0 var(--primary-dark);
    position: relative;
    overflow: hidden;
    min-height: 50px;
    width: 100%;
    border: 2px solid transparent;
}

.call-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s ease;
}

.call-button:hover {
    background: #ffd24d;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(255,198,26,0.4);
    border-color: var(--primary-dark);
}

.call-button:hover::before {
    left: 100%;
}

.call-button:active {
    transform: translateY(1px) scale(1);
    box-shadow: 0 2px 0 var(--primary-dark);
}

.call-button i {
    margin-right: 10px;
    animation: ring 2s infinite;
    transition: all 0.3s ease;
}

.call-button:hover i {
    animation: ringFast 0.5s infinite;
    transform: scale(1.2);
}

@keyframes ring {
    0%, 100% { transform: rotate(0); }
    10%, 30%, 50%, 70%, 90% { transform: rotate(-10deg); }
    20%, 40%, 60%, 80% { transform: rotate(10deg); }
}

@keyframes ringFast {
    0%, 100% { transform: rotate(-5deg) scale(1.2); }
    50% { transform: rotate(5deg) scale(1.2); }
}

.mobile-social {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.mobile-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    margin: 0 10px;
    color: var(--light);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mobile-social a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.mobile-social a:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.mobile-social a:hover::before {
    left: 100%;
}

/* Sosyal medya ikonlarına özel renkler */
.mobile-social a:nth-child(1):hover { background: #3b5998; } /* Facebook */
.mobile-social a:nth-child(2):hover { background: #1da1f2; } /* Twitter */
.mobile-social a:nth-child(3):hover { background: #e4405f; } /* Instagram */
.mobile-social a:nth-child(4):hover { background: #25d366; } /* WhatsApp */

.close-menu {
    background: none;
    border: none;
    color: var(--light);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
}

.close-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.close-menu:hover {
    transform: rotate(90deg) scale(1.1);
    background: rgba(255,255,255,0.1);
    box-shadow: 0 0 10px rgba(255,255,255,0.3);
}

.close-menu:hover::before {
    left: 100%;
}

/* Responsive */
@media (max-width: 768px) {
    nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    /* MOBİLDE TELEFON BİLGİSİ GÖSTERİMİ */
    .phone span {
        display: inline !important;
        font-size: 0.9rem;
    }
    
    .phone {
        margin-right: 5px;
        padding: 8px 12px;
    }
}

/* 576px ve altı için responsive ayarlar */
@media (max-width: 576px) {
    .mobile-menu {
        width: 280px;
        padding: 15px;
    }
    
    .mobile-nav ul li a {
        font-size: 1.1rem;
        padding: 12px 15px;
        min-height: 45px;
    }
    
    .call-button {
        font-size: 1.1rem;
        padding: 12px;
        min-height: 45px;
        margin: 15px 0;
    }
    
    .mobile-lang-option {
        padding: 8px 12px;
        margin: 0 5px;
    }
    
    .mobile-social a {
        width: 40px;
        height: 40px;
        margin: 0 8px;
    }
    
    .logo {
        font-size: 1.4rem;
    }
    
    .mobile-menu-header {
        margin-bottom: 20px;
        padding-bottom: 15px;
    }
}

/* 380px ve altı için responsive ayarlar */
@media (max-width: 380px) {
    .mobile-menu {
        width: 260px;
        max-width: 90%;
        padding: 12px;
    }
    
    .mobile-nav ul li a {
        font-size: 1rem;
        padding: 10px 12px;
        min-height: 40px;
    }
    
    .call-button {
        font-size: 1rem;
        padding: 10px;
        min-height: 40px;
        margin: 12px 0;
    }
    
    .mobile-lang {
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
    }
    
    .mobile-lang-option {
        flex: 1;
        min-width: 100px;
        justify-content: center;
        margin: 2px;
    }
    
    .mobile-social {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .mobile-social a {
        width: 36px;
        height: 36px;
        margin: 0 4px;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .mobile-menu-header {
        margin-bottom: 15px;
        padding-bottom: 12px;
    }
    
    .close-menu {
        width: 36px;
        height: 36px;
        font-size: 1.3rem;
    }
}

/* Marquee */
.marquee {
    background: var(--dark);
    color: var(--light);
    padding: 10px 0;
    overflow: hidden;
}

.marquee-content {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Slider */
.slider-container {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.slider {
    position: relative;
    height: 350px;
    overflow: hidden;
    margin: 1px 0;
    border-radius: 1px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.slides {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 0.5s ease;
}

.slide {
    width: 33.333%;
    height: 100%;
    position: relative;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: var(--light);
}

.slide h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.slide p {
    font-size: 1rem;
    margin-bottom: 15px;
}

.slide-1 { background: url('../images/taksi1.jpg?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&h=350&q=80') center/cover; }
.slide-2 { background: url('../images/taksi.jpg?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&h=350&q=80') center/cover; }
.slide-3 { background: url('../images/taksi2.jpg?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&h=350&q=80') center/cover; }

.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}

.slider-dot {
    width: 16px;
    height: 16px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    margin: 0 8px;
    cursor: pointer;
    transition: background 0.3s;
}

.slider-dot.active {
    background: var(--light);
}

.slider-buttons {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
}

/* SLİDER BUTONU - GÜNCELLENMİŞ */
.slider-btn {
    padding: 18px 35px !important;
    background: var(--primary);
    color: var(--secondary);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 0 var(--primary-dark);
    position: relative;
    overflow: hidden;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.slider-btn:hover {
    background: #ffd24d;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 20px rgba(255,198,26,0.4);
}

.slider-btn:active {
    transform: translateY(2px);
    box-shadow: 0 3px 0 var(--primary-dark);
}

.slider-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s ease;
}

.slider-btn:hover::before {
    left: 100%;
}

.slider-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255,255,255,0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.slider-btn:focus:not(:active)::after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(20, 20);
        opacity: 0;
    }
}

/* Car Section */
.car-section {
    position: relative;
    height: 400px;
    margin: 40px 0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    overflow: hidden;
}

.car-image {
    position: absolute;
    height: 400px;
    z-index: 2;
    animation: carEnter 2s forwards 0.5s, carFloat 3s ease-in-out infinite 2.5s;
    opacity: 0;
}

.headlights {
position: absolute;
    width: 368px;
    height: 140px;
    z-index: 3;
    opacity: 0;
    animation: headlightsBlink 4s infinite 3s;
    bottom: 24%;
    left: 60%;
    transform: translateX(-50%);
    object-fit: contain;
}




.headlightss {
    position: absolute;
    width: 365x;
    height: 70px;
    z-index: 3;
    opacity: 0;
    animation: headlightsBlink 4s infinite 3s;
    bottom: 23%;
    left: 75%;
    transform: translateX(-50%);
    object-fit: contain;
}

@keyframes carEnter {
    0% {
        transform: translateY(-100%) scale(0.1);
        opacity: 0;
    }
    70% {
        transform: translateY(0) scale(1.1);
        opacity: 1;
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

@keyframes carFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes headlightsBlink {
    0%, 100% { opacity: 0; }
    1%, 3% { opacity: 1; }
    4%, 6% { opacity: 0; }
    7%, 9% { opacity: 1; }
    10%, 50% { opacity: 0; }
    51%, 53% { opacity: 1; }
    54%, 56% { opacity: 0; }
    57%, 59% { opacity: 1; }
}

/* Content Sections */
.section {
    padding: 60px 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.section-title h2 {
    font-size: 2.2rem;
    color: var(--secondary);
    display: inline-block;
    padding: 0 20px;
    background: var(--light);
    position: relative;
    z-index: 1;
}

.section-title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary);
    z-index: 0;
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: var(--light);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

/* Feature Section Stilleri */
.feature-section {
    background: var(--light);
    padding: 80px 0;
    margin: 60px 0;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.feature-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.feature-text {
    flex: 1;
    min-width: 300px;
}

.feature-content {
    flex: 1;
    min-width: 300px;
}

.yellow {
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.feature-text h2 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.feature-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #555;
    line-height: 1.7;
}

.check-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.check-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--secondary);
}

.check-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.2rem;
}

.btn-yellow {
    display: inline-block;
    background: var(--primary);
    color: var(--secondary);
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 0 var(--primary-dark);
    border: none;
    cursor: pointer;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
}

.btn-yellow:hover {
    background: #ffd24d;
    transform: translateY(-3px);
    box-shadow: 0 6px 0 var(--primary-dark);
}

.btn-yellow:active {
    transform: translateY(1px);
    box-shadow: 0 2px 0 var(--primary-dark);
}

/* Scroll ile Tetiklenen Araba Animasyonu */
.car-right {
    position: absolute;
    right: -500px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    transition: right 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.car-right.active {
    right: 0;
}

.car-right img {
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
    position: relative;
    z-index: 2;
}

/* Zenon Far Efekti */
.car-headlights {
    position: absolute;
    top: 35%;
    left: 10%;
    z-index: 1;
    width: 80px;
    height: 30px;
}

.headlight {
    position: absolute;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: radial-gradient(circle, #ffffff 0%, #ffeb3b 30%, transparent 70%);
    filter: blur(2px);
    opacity: 0;
    animation: none;
}

.headlight.left {
    left: 5px;
    top: 2px;
}

.headlight.right {
    right: 5px;
    top: 2px;
}

.car-right.active .headlight {
    animation: xenonFlash 3s ease-in-out infinite;
}

@keyframes xenonFlash {
    0%, 100% { 
        opacity: 0.3;
        box-shadow: 0 0 5px #fff, 0 0 10px #ffeb3b, 0 0 15px #ff9800;
    }
    25% { 
        opacity: 0.8;
        box-shadow: 0 0 10px #fff, 0 0 20px #ffeb3b, 0 0 30px #ff9800, 0 0 40px #ff5722;
    }
    50% { 
        opacity: 0.4;
        box-shadow: 0 0 8px #fff, 0 0 15px #ffeb3b, 0 0 25px #ff9800;
    }
    75% { 
        opacity: 0.9;
        box-shadow: 0 0 12px #fff, 0 0 25px #ffeb3b, 0 0 35px #ff9800, 0 0 45px #ff5722;
    }
}

/* Far Işınları */
.headlight-beams {
    position: absolute;
    top: 42%;
    left: 10%;
    z-index: 0;
    width: 300px;
    height: 80px;
    pointer-events: none;
}

.beam {
    position: absolute;
    width: 0;
    height: 15px;
    background: linear-gradient(90deg, 
        rgba(255,255,255,0.9) 0%, 
        rgba(255,255,255,0.6) 30%, 
        rgba(255,255,255,0.3) 70%, 
        transparent 100%);
    border-radius: 10px;
    filter: blur(5px);
    opacity: 0;
    transform-origin: left center;
}

.beam.left {
    top: 5px;
    left: 30px;
    transform: rotate(-2deg);
}

.beam.right {
    top: 25px;
    left: 30px;
    transform: rotate(2deg);
}

.car-right.active .beam {
    animation: beamExtend 2s ease-out forwards;
}

@keyframes beamExtend {
    0% {
        width: 0;
        opacity: 0;
    }
    50% {
        width: 200px;
        opacity: 0.7;
    }
    100% {
        width: 300px;
        opacity: 0.4;
    }
}

/* Animation Block */
.animation-block {
    perspective: 1000px;
}

/* Decorative Elements */
.circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    z-index: 0;
}

.circle-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 5%;
}

.circle-2 {
    width: 150px;
    height: 150px;
    bottom: 15%;
    left: 3%;
}

.circle-3 {
    width: 100px;
    height: 100px;
    top: 40%;
    left: 10%;
}

/* Footer */
footer {
    background: var(--secondary);
    color: var(--light);
    padding: 40px 0 20px;
    text-align: center;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--light);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--primary);
}

.copyright {
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
}


@media (max-width: 1920px) {
.headlightss {
    position: absolute;
    width: 365x;
    height: 147px;
    z-index: 3;
    opacity: 0;
    animation: headlightsBlink 4s infinite 3s;
    bottom: 26%;
    left: 59%;
    transform: translateX(-50%);
    object-fit: contain;
}
}



/* Responsive */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
    }
    
    .slider-container {
        max-width: 100%;
    }
    
    .car-right img {
        max-width: 400px;
    }
    
    .headlight-beams {
        width: 250px;
    }
    
.headlightss {
    position: absolute;
    width: 365x;
    height: 133px;
    z-index: 3;
    opacity: 0;
    animation: headlightsBlink 4s infinite 3s;
    bottom: 25%;
    left: 64%;
    transform: translateX(-50%);
    object-fit: contain;
}


}

@media (max-width: 992px) {
    nav ul li {
        margin: 0 10px;
    }
    
    .phone span {
        display: inline !important;
    }
    
    .car-image {
        height: 250px;
    }
    
    .headlights {
        width: 204px;
        height: 124px;
        bottom: 11%;
        left: 65%;
    }
    
    .car-right {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        text-align: center;
        margin: 30px auto;
        width: 100%;
    }
    
    .car-right img {
        max-width: 350px;
    }
    
    .car-headlights {
        top: 32%;
        left: 15%;
        width: 60px;
    }
    
    .headlight-beams {
        width: 200px;
        top: 35%;
        left: 15%;
    }
    
    .feature-row {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .feature-text, .feature-content {
        min-width: 100%;
    }
    
    .feature-text h2 {
        text-align: center;
    }
    
    .feature-content p {
        text-align: center;
    }
    
    .check-list {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: left;
    }
    
    .check-list li {
        text-align: left;
        padding-left: 35px;
    }
    
    .feature-content {
        order: 3;
        margin-top: 20px;
    }


.headlightss {
    position: absolute;
    width: 365x;
    height: 90px;
    z-index: 3;
    opacity: 0;
    animation: headlightsBlink 4s infinite 3s;
    bottom: 16%;
    left: 61%;
    transform: translateX(-50%);
    object-fit: contain;
}


}

@media (max-width: 768px) {
    .header-top {
        padding: 10px 0;
    }
    
    nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .phone {
        margin-right: 10px;
    }
    
    .slider {
        height: 250px;
    }
    
    .slide h2 {
        font-size: 1.4rem;
    }
    
    .slider-buttons {
        bottom: 60px;
        flex-direction: column;
        gap: 10px;
    }
    
    .slider-btn {
        padding: 16px 28px !important;
        font-size: 1.1rem !important;
        min-height: 55px;
    }
    
    .car-section {
        height: 300px;
    }
    
    .car-image {
        height: 330px;
    }
    
    .headlights {
        width: 255px;
        height: 110px;
        bottom: 27%;
        left: 70%;
    }
    
    .feature-text h2 {
        font-size: 2rem;
    }
    
    .car-right img {
        max-width: 300px;
    }
    
    .car-headlights {
        top: 32%;
        left: 15%;
        width: 50px;
    }
    
    .headlight {
        width: 20px;
        height: 20px;
    }
    
    .headlight-beams {
        width: 180px;
        top: 35%;
        left: 15%;
    }

    .headlightss {
    position: absolute;
    width: 365x;
    height: 111px;
    z-index: 3;
    opacity: 0;
    animation: headlightsBlink 4s infinite 3s;
    bottom: 27%;
    left: 71%;
    transform: translateX(-50%);
    object-fit: contain;
}
}

@media (max-width: 576px) {
    .logo {
        font-size: 1.4rem;
    }
    
    .slider {
        height: 200px;
    }
    
    .slide h2 {
        font-size: 1.2rem;
    }
    
    .slide p {
        display: none;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .service-card {
        padding: 20px;
        min-height: 250px;
    }
    
    .car-section {
        height: 250px;
    }
    
    .car-image {
        height: 210px;
    }
    
    .headlights {
         width: 190px;
        height: 93px;
        bottom: 18%;
        left: 72%;
    }
    
    .feature-text h2 {
        font-size: 1.6rem;
        line-height: 1.3;
    }
    
    .feature-content p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .car-right img {
        max-width: 415px;
    }
    
    .car-headlights {
        top: 32%;
        left: 15%;
        width: 40px;
    }
    
    .headlight {
        width: 15px;
        height: 15px;
    }
    
    .headlight-beams {
        width: 150px;
        top: 35%;
        left: 15%;
    }
    
    .btn-yellow {
        padding: 12px 25px;
        font-size: 1rem;
        width: 100%;
        max-width: 100px;
        margin: 0 auto;
    }
    
    .check-list {
        margin-bottom: 20px;
    }
    
    .check-list li {
        font-size: 0.85rem;
        padding-left: 30px;
    }

    .headlightss {
    position: absolute;
    width: 365x;
    height: 71px;
    z-index: 3;
    opacity: 0;
    animation: headlightsBlink 4s infinite 3s;
    bottom: 23%;
    left: 75%;
    transform: translateX(-50%);
    object-fit: contain;
}
}


@media (max-width: 380px) {
    .feature-text h2 {
        font-size: 1.4rem;
    }
    
    .car-right img {
        max-width: 350px;
    }
    
    .headlight-beams {
        width: 120px;
    }
    
    .mobile-menu {
        width: 280px;
    }
    
    .slider-btn {
        padding: 14px 24px !important;
        font-size: 1rem !important;
        min-height: 50px;
    }


}


/* Mobil Header Düzenlemeleri */
@media (max-width: 768px) {
    .header-top {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 15px;
        padding: 10px 0;
    }
    
    .logo {
        font-size: 1.2rem;
        justify-self: start;
    }
    
    .contact-info {
        display: flex;
        align-items: center;
        justify-self: end;
        gap: 10px;
    }
    
    .phone {
        margin-right: 0;
        padding: 8px 12px;
        white-space: nowrap;
        font-size: 0.9rem;
        order: 1;
    }
    
    .phone span {
        display: inline !important;
        font-size: 0.85rem;
    }
    
    .lang-dropdown {
        order: 2;
    }
    
    .mobile-menu-btn {
        order: 3;
        justify-self: end;
    }
    
    /* Telefon numarasının tam ortada ve tek satırda görünmesi için */
    .phone {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 198, 26, 0.3);
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        font-weight: 700;
        color: var(--secondary);
    }
    
    .phone i {
        color: var(--primary);
        margin-right: 5px;
    }
}

/* Daha küçük ekranlar için ek ayarlamalar */
@media (max-width: 576px) {
    .header-top {
        grid-template-columns: 1fr auto auto;
        gap: 10px;
    }
    
    .logo {
        font-size: 1.1rem;
    }
    
    .logo span {
         display: inline !important;
          font-size: 11px;
    }
    
    .phone {
        padding: 6px 10px;
        font-size: 0.8rem;
    }
    
    .phone span {
        font-size: 0.8rem;
    }
    
    .lang-toggle {
        padding: 6px 8px;
    }
    
    .lang-toggle span {
        display: none; /* Küçük ekranlarda sadece bayrak göster */
    }
}

/* Çok küçük ekranlar için (380px altı) */
@media (max-width: 380px) {
    .header-top {
        grid-template-columns: auto 1fr auto;
        gap: 8px;
    }
    
    .logo {
        font-size: 1rem;
    }
    
    .logo i {
        margin-right: 5px;
        font-size: 1.2rem;
    }
    
    .phone {
        padding: 5px 8px;
        font-size: 0.75rem;
    }
    
    .phone span {
        font-size: 0.75rem;
    }
    
    .contact-info {
        gap: 5px;
    }
}

/* Telefon numarasının her zaman görünür olması için */
.phone span {
    display: inline !important;
}

/* Header'ın mobilde sabit kalması için */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--light);
}