/* Temel Ayarlar ve Renkler */
:root {
    --taksi-sari: #FFD700;
    --koyu-gri: #222831;
    --whatsapp-yesili: #25D366;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

/* Ana Karşılama Ekranı (Hero) */
.hero {
    /* Arka plan görseli ve üzerine atılan siyah, yarı saydam katman */
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), url('taxi_background.jpg');
    background-size: cover;       /* Görselin tüm alanı kaplamasını sağlar */
    background-position: center;  /* Görseli ortalar */
    background-repeat: no-repeat;
    background-attachment: fixed; /* Scrolling yaparken görsel sabit kalır (Parallax efekti) */
    
    color: white;
    text-align: center;
    padding: 120px 20px;
    height: 100vh;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero h1 {
    color: var(--taksi-sari);
    font-size: 3.5em;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #ddd;
    max-width: 600px;
}

/* Ana WhatsApp Butonu */
.wa-btn-main {
    background-color: var(--whatsapp-yesili);
    color: white;
    padding: 18px 40px;
    text-decoration: none;
    font-size: 1.4em;
    border-radius: 50px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.wa-btn-main:hover {
    background-color: #1ebe57;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* Sağ Alttaki Sabit (Floating) Canlı Destek Butonu */
.float-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--whatsapp-yesili);
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 2px 2px 15px rgba(0,0,0,0.3);
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 100;
}

.float-wa:hover {
    transform: scale(1.1);
}

/* WhatsApp İkonu Bildirim Noktası */
.float-wa::after {
    content: "1";
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: red;
    color: white;
    font-size: 14px;
    font-weight: bold;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}
/* Hizmet Avantajlarımız bölümüü */
.advantages {
    padding: 100px 20px;
    background-color: #fff;
    text-align: center;
}
.advantages-container {
    max-width: 1200px;
    margin: 0 auto;
}
.advantages h2 {
    font-size: 2.8em;
    color: var(--koyu-gri);
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit minmax(300px , 1fr));
    gap: 40px;
}
.adv-card {
    background: #fdfdfd;
    padding: 50px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 3px solid transparent;
}
.adv-card:hover {
    transform: translateY(-10px); /* Hafif yukarı kalkma */
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-bottom: 3px solid var(--taksi-sari); /* Sarı çizgi belirir */
}

/* İkon Stili */
.adv-icon {
    font-size: 4em;
    color: var(--taksi-sari); /* Taksi sarısı ikonlar */
    margin-bottom: 25px;
}

/* Kart Başlık ve Yazıları */
.adv-card h3 {
    font-size: 1.8em;
    color: var(--koyu-gri);
    margin-bottom: 15px;
}

.adv-card p {
    font-size: 1.1em;
    color: #666;
    line-height: 1.7;
    margin: 0;
}
/* Müşteri Yorumları Bölümü */
.testimonials {
    padding: 100px 20px;
    background-color: #f2f2f2; /* Önceki bölümden ayrılması için hafif gri arka plan */
    text-align: center;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials h2 {
    font-size: 2.8em;
    color: var(--koyu-gri);
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

/* Yorum Kartı Stili */
.testimo-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimo-card:hover {
    transform: translateY(-5px);
}

/* Yıldızlar */
.stars {
    color: var(--taksi-sari);
    font-size: 1.2em;
    margin-bottom: 20px;
}

/* Yorum Metni */
.testimo-card p {
    font-size: 1.1em;
    color: #555;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1; /* Kartların boylarını eşit tutmaya yardımcı olur */
}

/* Müşteri İsmi ve Ünvanı */
.testimo-card h4 {
    font-size: 1.3em;
    color: var(--koyu-gri);
    margin: 0 0 5px 0;
}

.testimo-card span {
    font-size: 0.9em;
    color: #888;
}
.footer {
    background-color: var(--koyu-gri);
    color: #f1f1f1;
    padding: 70px 20px 20px;
    font-size: 0.95em;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: var(--taksi-sari);
    font-size: 1.5em;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.footer-col p {
    line-height: 1.8;
    margin-bottom: 15px;
    color: #cccccc;
}

.footer-col p i {
    color: var(--taksi-sari);
    margin-right: 12px;
    font-size: 1.2em;
    width: 20px;
    text-align: center;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
    font-size: 0.9em;
}
