/* style.css - Önder Taksi Akşehir Minimalist CSS Biçimi */

/* 1. GENEL AYARLAR VE SIFIRLAMA */
:root {
    --primary-color: #FFC300; /* Canlı Sarı/Turuncu - Dikkat çekici */
    --secondary-color: #007bff; /* Mavi - Buton ve linkler için */
    --text-color: #333;
    --white-color: #fff;
    --dark-bg: #2c3e50; /* Koyu arka plan (opsiyonel) */
    --max-width: 900px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f4f4f4; /* Hafif gri arka plan */
}

/* Tüm içerik merkezi hizalama için */
.container {
    max-width: var(--max-width);
    margin: auto;
    overflow: hidden;
    padding: 0 15px;
}

.center-content {
    text-align: center;
}

h1, h2, h3 {
    margin-bottom: 15px;
}

/* 2. ÜST BİLGİ (HEADER) VE TELEFON VURGUSU */
#main-header {
    background: var(--dark-bg);
    color: var(--white-color);
    padding: 10px 0;
    position: sticky; /* Mobil cihazlarda sabit kalması için */
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

#main-header h1 {
    font-size: 1.2em; /* Mobil için küçültme */
    margin: 0;
}

/* ASIL TELEFON NUMARASI VURGUSU - TIKLANABİLİR VE BÜYÜK */
.header-phone {
    font-size: 1.5em; /* Mobil için büyük ve dikkat çekici */
    font-weight: bold;
    color: var(--primary-color); /* Sarı/Turuncu renk */
    text-decoration: none;
    padding: 5px 10px;
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    transition: background 0.3s;
}

.header-phone:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
}

/* 3. KAHRAMAN ALANI (HERO SECTION) */
#hero-section {
    background: var(--white-color);
    padding: 40px 0;
    border-bottom: 5px solid var(--primary-color);
}

#hero-section h1 {
    font-size: 2em; /* Mobil için okunaklı boyut */
    color: #cc0000; /* Acil durum rengi */
    margin-bottom: 20px;
    line-height: 1.2;
}

.h2-support {
    font-size: 1.3em;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 25px;
}

/* 4. CTA BUTONLARI GENEL STİLİ */
.cta-button {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white-color);
    text-decoration: none;
    padding: 15px 30px;
    font-size: 1.5em;
    font-weight: bold;
    border-radius: 8px;
    transition: background 0.3s, transform 0.2s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
}

/* ANA CTA BUTONU - DAHA VURGULU */
#main-cta-button {
    background: #00a859; /* Daha dikkat çekici yeşil ton */
    font-size: 1.8em;
    animation: pulse 1.5s infinite; /* Butonun titremesi */
}

.cta-button:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    transform: scale(1.05);
}

/* 5. GÜVEN UNSURLARI (TRUST POINTS) */
.trust-points ul {
    list-style: none;
    padding: 15px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.trust-points li {
    background: #e9ecef;
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: 500;
    font-size: 0.9em;
}

/* 6. DİĞER BÖLÜMLER (AVANTAJLAR, YORUMLAR) */
section {
    padding: 30px 0;
    text-align: center;
}



.advantage-list {
    display: flex;
    flex-direction: column; /* Mobil için dikey sıralama */
    gap: 20px;
    margin-top: 20px;
}

.advantage-item {
    background: var(--white-color);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.review blockquote {
    font-style: italic;
    margin: 15px 0;
    padding: 10px;
    border-left: 5px solid var(--primary-color);
    font-size: 1.1em;
}

/* 7. ALT BİLGİ (FOOTER) */
#main-footer {
    background: var(--text-color);
    color: var(--white-color);
    padding: 15px 0;
    font-size: 0.9em;
}

#main-footer a {
    color: var(--primary-color);
    text-decoration: none;
}

/* 8. ANİMASYON (CTA BUTONU İÇİN) */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03);
    }
    100% {
        transform: scale(1);
    }
}

/* 9. MEDYA SORGULARI (TABLET VE MASAÜSTÜ İÇİN İYİLEŞTİRMELER) */
@media (min-width: 768px) {
    #main-header h1 {
        font-size: 1.5em;
    }

    .header-phone {
        font-size: 1.8em;
    }

    #hero-section h1 {
        font-size: 2.8em;
    }

    .advantage-list {
        flex-direction: row; /* Masaüstünde yan yana sıralama */
        justify-content: space-between;
    }
    
    .advantage-item {
        width: 48%; /* İkişerli hizalama */
    }
}