* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0a0e1a, #1a0f2e, #0f1629);
    color: #e6e6e6;
    line-height: 1.6;
}

/* NAVBAR */
#navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 15, 35, 0.95);
    backdrop-filter: blur(12px);
    padding: 15px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.8rem;
    font-weight: 700;
    color: #00e5ff;
}

.taxi-icon {
    font-size: 2rem;
}

.nav-links a {
    color: #cfd8dc;
    margin: 0 15px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #00e5ff;
}

/* HERO */
#hero {
    padding: 100px 20px 80px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.hero-content {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.left {
    flex: 1;
    min-width: 300px;
}

.left h2 {
    font-size: 3.2rem;
    color: #00e5ff;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.5rem;
    color: #7c4dff;
    margin-bottom: 20px;
}

.hero-buttons {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 32px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1.05rem;
}

.btn.primary {
    background: linear-gradient(135deg, #00e5ff, #7c4dff);
    color: white;
    box-shadow: 0 0 25px rgba(0, 229, 255, 0.6);
}

.btn.primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 35px rgba(0, 229, 255, 0.8);
}

.btn.whatsapp {
    background: #25D366;
    color: white;
}

.right {
    flex: 1;
    min-width: 300px;
}

.hero-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.7);
}

/* SECTIONS */
section {
    padding: 80px 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #00e5ff;
    margin-bottom: 50px;
}

/* About Features */
.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.feature {
    text-align: center;
    background: rgba(255,255,255,0.05);
    padding: 25px 15px;
    border-radius: 15px;
    border: 1px solid rgba(0,229,255,0.2);
}

.feature .icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}

/* Araç Bölümü */
.vehicle-wrapper {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.vehicle-image img {
    width: 100%;
    max-width: 480px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

.vehicle-info {
    max-width: 420px;
    background: rgba(255,255,255,0.06);
    padding: 35px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.vehicle-info ul {
    list-style: none;
    margin: 20px 0;
}

.vehicle-info li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Hizmet Kartları */
.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.card {
    background: rgba(255,255,255,0.05);
    border-radius: 18px;
    overflow: hidden;
    transition: 0.4s;
    text-align: center;
    padding-bottom: 20px;
}

.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.card h3 {
    margin: 15px 0 10px;
    color: #00e5ff;
}

/* İletişim */
.contact-info {
    text-align: center;
}

.phone {
    font-size: 2.2rem;
    margin: 20px 0;
    color: #00e5ff;
}

.big {
    font-size: 1.3rem;
    padding: 18px 40px;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px;
    background: rgba(0,0,0,0.4);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .left h2 {
        font-size: 2.6rem;
    }
    
    .vehicle-wrapper {
        flex-direction: column;
    }
}