/* --- TEMA AYARLARI (SİYAH & SARI) --- */
:root {
    --taxi-yellow: #FFC107; /* Parlak Taksi Sarısı */
    --taxi-yellow-dark: #FFB300;
    --black-bg: #111111;    /* Tam Siyah */
    --dark-gray: #1a1a1a;   /* Koyu Gri (Bölümler için) */
    --light-gray: #333333;  /* Kartlar için */
    --text-white: #f5f5f5;
    --text-gray: #cccccc;
    --whatsapp: #25D366;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--black-bg);
    color: var(--text-white);
    line-height: 1.7;
    padding-bottom: 70px; /* Mobil buton boşluğu */
}

h1, h2, h3, h4, h5 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--taxi-yellow);
}

a { text-decoration: none; transition: 0.3s; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 80px 0; border-bottom: 1px solid #222; }
.text-center { text-align: center; }

/* Sarı Vurgulu Metinler */
.highlight { color: var(--taxi-yellow); font-weight: bold; }

/* --- HEADER --- */
header {
    background: var(--black-bg);
    border-bottom: 2px solid var(--taxi-yellow);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-row { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.8rem; font-weight: 700; color: #fff; }
.logo span { color: var(--taxi-yellow); background: #333; padding: 0 10px; border-radius: 4px; }
.header-phone {
    color: var(--taxi-yellow);
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--taxi-yellow);
    padding: 8px 15px;
    border-radius: 5px;
}
.header-phone:hover { background: var(--taxi-yellow); color: #000; }

/* --- HERO (GİRİŞ) --- */
.hero {
    background: radial-gradient(circle at center, #222 0%, #000 100%);
    padding: 100px 0;
    text-align: center;
}
.hero-badge {
    background: var(--taxi-yellow);
    color: #000;
    display: inline-block;
    padding: 5px 15px;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 3px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}
.hero h1 { font-size: 3rem; margin-bottom: 20px; line-height: 1.2; color: #fff; }
.hero h1 span { color: var(--taxi-yellow); font-size: 3.5rem; display: block; }
.hero p { font-size: 1.3rem; color: var(--text-gray); max-width: 800px; margin: 0 auto 40px auto; }

.cta-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.btn {
    padding: 18px 40px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}
.btn-yellow { background: var(--taxi-yellow); color: #000; border: none; }
.btn-yellow:hover { background: #fff; transform: translateY(-3px); }
.btn-outline { background: transparent; border: 2px solid var(--taxi-yellow); color: var(--taxi-yellow); }
.btn-outline:hover { background: var(--taxi-yellow); color: #000; }

/* --- FİYAT VURGUSU --- */
.price-strip { background: var(--taxi-yellow); color: #000; padding: 40px 0; text-align: center; }
.price-big { font-size: 4rem; font-weight: 700; font-family: 'Oswald', sans-serif; line-height: 1; }
.price-desc { font-size: 1.2rem; font-weight: 700; text-transform: uppercase; }
.price-detail { font-size: 1rem; margin-top: 10px; opacity: 0.8; }

/* --- HİZMETLER --- */
.services { background: var(--dark-gray); }
.section-title { margin-bottom: 50px; text-align: center; }
.section-title h2 { font-size: 2.5rem; color: var(--taxi-yellow); margin-bottom: 10px; }
.section-title p { color: var(--text-gray); }

.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.service-card {
    background: var(--light-gray);
    padding: 40px 30px;
    border-left: 5px solid var(--taxi-yellow);
    transition: 0.3s;
}
.service-card:hover { background: #444; }
.service-card i { font-size: 2.5rem; color: var(--taxi-yellow); margin-bottom: 20px; }
.service-card h3 { font-size: 1.5rem; color: #fff; margin-bottom: 15px; }
.service-card p { color: var(--text-gray); font-size: 0.95rem; }

/* --- DETAYLI TABLO VE AÇIKLAMALAR --- */
.details-section { background: var(--black-bg); }
.detail-box {
    border: 1px solid #333;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 5px;
}
.detail-box h3 { margin-bottom: 20px; font-size: 1.5rem; border-bottom: 2px solid var(--taxi-yellow); display: inline-block; padding-bottom: 5px; }
.info-list li { margin-bottom: 15px; display: flex; align-items: flex-start; gap: 10px; color: var(--text-gray); }
.info-list i { color: var(--taxi-yellow); margin-top: 5px; }

/* --- FİYAT TABLOSU --- */
.pricing-table { width: 100%; border-collapse: collapse; margin-top: 20px; }
.pricing-table th { background: var(--taxi-yellow); color: #000; padding: 15px; text-align: left; font-family: 'Oswald', sans-serif; font-size: 1.1rem; }
.pricing-table td { border-bottom: 1px solid #333; padding: 15px; color: #ccc; }
.pricing-table tr:hover td { background: #222; color: #fff; }

/* --- SIKÇA SORULAN SORULAR (FAQ) --- */
.faq-section { background: var(--dark-gray); }
.faq-item { margin-bottom: 25px; }
.faq-item h4 { color: var(--taxi-yellow); font-size: 1.2rem; margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.faq-item p { color: var(--text-gray); margin-left: 20px; font-size: 0.95rem; border-left: 2px solid #444; padding-left: 15px; }

/* --- MOBİL SABİT BAR --- */
.mobile-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 65px;
    display: flex;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.5);
}
.sticky-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    text-transform: uppercase;
    color: #000;
    font-weight: 700;
    gap: 10px;
}
.sticky-call { background: var(--taxi-yellow); }
.sticky-wa { background: var(--whatsapp); color: #fff; }

/* --- FOOTER --- */
footer { background: #000; padding: 50px 0 80px 0; border-top: 1px solid #222; text-align: center; color: #777; }
.footer-links { margin: 20px 0; }
.footer-links a { color: #aaa; margin: 0 10px; font-size: 0.9rem; }
.footer-links a:hover { color: var(--taxi-yellow); }

/* Responsive */
@media(max-width: 768px) {
    .hero h1 { font-size: 2.2rem; }
    .hero h1 span { font-size: 2.5rem; }
    .header-row { flex-direction: column; gap: 15px; }
    .section-padding { padding: 50px 0; }
}
