/*
═══════════════════════════════════════════════════════════════
KorsanTaksi - 7/24 Özel Taksi Hizmeti
═══════════════════════════════════════════════════════════════
Geliştirici: Kaan Yavuz
Email: info@kaan.gen.tr
Telefon: 0539 468 62 92
Copyright © 2025 Kaan Yavuz. Tüm hakları saklıdır.
═══════════════════════════════════════════════════════════════
*/

:root {
    --color-primary: #FFD700;
    --color-secondary: #1E1E1E;
    --color-dark: #0A0A0A;
    --color-white: #FFFFFF;
    --color-gray: #6C757D;
    --gradient-yellow: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    --gradient-dark: linear-gradient(135deg, #1E1E1E 0%, #0A0A0A 100%);
    --shadow: 0 5px 25px rgba(0,0,0,0.15);
    --shadow-lg: 0 15px 50px rgba(0,0,0,0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--color-secondary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gradient-text {
    background: var(--gradient-yellow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.taxi-animation {
    position: relative;
    margin-bottom: 2rem;
}

.taxi-animation i {
    font-size: 5rem;
    color: var(--color-primary);
    animation: taxi-drive 2s ease-in-out infinite;
}

@keyframes taxi-drive {
    0%, 100% { transform: translateX(-50px); }
    50% { transform: translateX(50px); }
}

.road {
    width: 200px;
    height: 4px;
    background: repeating-linear-gradient(
        to right,
        transparent 0px,
        transparent 10px,
        var(--color-primary) 10px,
        var(--color-primary) 20px
    );
    margin-top: 1rem;
}

.loading-text {
    color: white;
    font-size: 2rem;
    font-weight: 700;
}

/* Header */
.main-header {
    background: white;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.75rem;
    font-weight: 700;
}

.logo i {
    font-size: 2.5rem;
    color: var(--color-primary);
}

.logo strong {
    color: var(--color-primary);
}

.main-nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.main-nav a {
    text-decoration: none;
    color: var(--color-secondary);
    font-weight: 500;
    transition: 0.3s;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: 0.3s;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.btn-call {
    padding: 0.875rem 1.75rem;
    background: var(--gradient-yellow);
    color: var(--color-dark);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: 0.3s;
}

.btn-call:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,215,0,0.4);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    position: relative;
    background: var(--gradient-dark);
    padding: 6rem 0;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.animated-bg {
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><circle fill="%23FFD700" fill-opacity="0.03" cx="50" cy="50" r="40"/></svg>');
    animation: bgMove 30s linear infinite;
}

@keyframes bgMove {
    from { transform: translateX(0); }
    to { transform: translateX(100px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255,215,0,0.15);
    border: 1px solid var(--color-primary);
    border-radius: 30px;
    color: var(--color-primary);
    margin-bottom: 2rem;
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    line-height: 1;
    color: white;
    margin-bottom: 1.5rem;
}

.hero-description {
    color: rgba(255,255,255,0.8);
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.btn {
    padding: 1.125rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: 0.3s;
}

.btn-primary {
    background: var(--gradient-yellow);
    color: var(--color-dark);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255,215,0,0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--color-dark);
}

.hero-features {
    display: flex;
    gap: 2rem;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
}

.feature-badge i {
    color: var(--color-primary);
    font-size: 1.5rem;
}

/* Booking Widget */
.booking-widget {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.booking-widget h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.booking-widget h3 i {
    color: var(--color-primary);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
}

.form-group label i {
    color: var(--color-primary);
    margin-right: 0.25rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    transition: 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-primary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.price-estimate {
    background: rgba(255,215,0,0.1);
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1.5rem 0;
    border: 2px solid var(--color-primary);
}

.price-label {
    font-weight: 600;
}

.price-amount {
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-primary);
}

.btn-submit {
    width: 100%;
    padding: 1.125rem;
    background: var(--gradient-yellow);
    color: var(--color-dark);
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.125rem;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,215,0,0.4);
}

/* Stats Section */
.stats-section {
    padding: 4rem 0;
    background: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
}

.stat-card i {
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--color-dark);
}

.stat-label {
    color: var(--color-gray);
    margin-top: 0.5rem;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255,215,0,0.15);
    border: 1px solid var(--color-primary);
    border-radius: 30px;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-description {
    color: var(--color-gray);
    font-size: 1.125rem;
}

/* Services Section */
.services-section {
    padding: 5rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: 0.3s;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card.featured {
    background: var(--gradient-dark);
    color: white;
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 0.5rem 1rem;
    background: var(--gradient-yellow);
    color: var(--color-dark);
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,215,0,0.15);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--color-primary);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.5rem 0;
}

.service-features i {
    color: var(--color-primary);
    margin-right: 0.5rem;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: var(--gradient-yellow);
    color: var(--color-dark);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    margin-top: 1rem;
    transition: 0.3s;
}

.service-btn:hover {
    transform: translateX(5px);
}

/* Prices Section */
.prices-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.prices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.price-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    position: relative;
}

.price-card.featured {
    background: var(--gradient-dark);
    color: white;
    transform: scale(1.05);
}

.price-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(255,215,0,0.3);
}

.price-tag {
    margin-top: 1rem;
}

.price-value {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--color-primary);
}

.price-unit {
    font-size: 1.25rem;
    color: var(--color-gray);
}

.price-features {
    list-style: none;
}

.price-features li {
    padding: 0.75rem 0;
}

.price-features i {
    color: var(--color-primary);
    margin-right: 0.5rem;
}

/* Fleet Section */
.fleet-section {
    padding: 5rem 0;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.fleet-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: 0.3s;
}

.fleet-card:hover {
    transform: translateY(-10px);
}

.fleet-image {
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem;
    background: rgba(255,215,0,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fleet-image i {
    font-size: 3rem;
    color: var(--color-primary);
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
}

.contact-info {
    display: grid;
    gap: 1.5rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.contact-card i {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.contact-card a {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
}

.contact-form h3 {
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-family: inherit;
}

.contact-form button {
    width: 100%;
    padding: 1rem;
    background: var(--gradient-yellow);
    color: var(--color-dark);
    border: none;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
}

/* Footer */
.main-footer {
    background: var(--color-dark);
    color: white;
}

.footer-top {
    padding: 4rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo i {
    font-size: 2.5rem;
    color: var(--color-primary);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255,215,0,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    transition: 0.3s;
}

.footer-social a:hover {
    background: var(--color-primary);
    color: var(--color-dark);
}

.footer-col h3 {
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: 0.3s;
}

.footer-col a:hover {
    color: var(--color-primary);
}

.footer-contact li {
    color: rgba(255,255,255,0.7);
}

.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.developer {
    color: var(--color-primary);
    font-weight: 600;
}

/* Scroll to Top */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-yellow);
    color: var(--color-dark);
    border: none;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 999;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    z-index: 998;
    box-shadow: var(--shadow-lg);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid,
    .prices-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid,
    .fleet-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .services-grid,
    .prices-grid,
    .stats-grid,
    .fleet-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/*
═══════════════════════════════════════════════════════════════
© 2025 Kaan Yavuz. Tüm hakları saklıdır.
═══════════════════════════════════════════════════════════════
*/
