/* DEMİR LASTİK - MOBİL YOL YARDIM 
    Custom Stylesheet - 2026
*/

/* 1. GENEL AYARLAR */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fff;
    overflow-x: hidden;
}

/* 2. NAVİGASYON */
nav {
    background: #fff;
    border-bottom: 3px solid #ffcc00;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 8%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: #111;
}

.logo span { color: #ffcc00; }

.phone-block-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.emergency-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #ff0000;
}

.phone-link-nav {
    text-decoration: none;
    color: #000;
    font-weight: 800;
    font-size: 1.6rem;
}

/* 3. HERO BÖLÜMÜ */
.hero-split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 8%;
    background: #fff;
    min-height: 65vh;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-text { flex: 1; max-width: 650px; }

.hero-text h1 {
    font-size: 3.2rem;
    line-height: 1.1;
    color: #111;
    margin-bottom: 15px;
}

.highlight {
    background-color: #111;
    color: #ffcc00;
    padding: 5px 15px;
    border-radius: 8px;
    display: inline-block;
}

.hero-text p {
    font-size: 1.15rem;
    color: #555;
    margin: 20px 0;
}

/* 4. BUTONLAR VE DEV NUMARA */
.hero-action-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

.hero-phone-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    background: #111;
    color: #fff;
    padding: 20px 40px;
    border-radius: 10px;
    font-weight: 900;
    font-size: 2.4rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    transition: 0.3s;
}

.hero-whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    background: #25d366;
    color: #fff;
    padding: 15px 35px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.3rem;
}

.hero-phone-link:hover, .hero-whatsapp-link:hover { transform: translateY(-3px); }

.hero-phone-link .icon { font-size: 2rem; color: #ffcc00; }

.icon-location { width: 1.8rem; height: 1.8rem; color: #fff; }

.hero-image img { width: 100%; max-width: 600px; border-radius: 20px; }

/* 5. HİZMET BÖLGELERİ */
.service-areas {
    padding: 25px 8%;
    background-color: #fff;
    text-align: center;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.area-title {
    font-size: 1.1rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 10px;
}

.area-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: #222;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.area-note { font-size: 0.85rem; color: #aaa; font-style: italic; }

/* 6. MOZAİK GALERİ */
.mosaic-gallery { padding: 30px 8%; background-color: #f9f9f9; }

.mosaic-container {
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 8px solid #fff;
}

.mosaic-img { width: 100%; display: block; }

/* 7. ÖZELLİKLER (NEDEN BİZ?) - DÜZENLENMİŞ MARGIN VE PADDING */
.features { 
    padding: 50px 8%; /* Üst ve alt dış boşluk azaltıldı */
}

.section-title { text-align: center; }

.line { width: 45px; height: 4px; background: #ffcc00; margin: 8px auto; }

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px; /* Kartlar arası boşluk daraltıldı */
    margin-top: 35px; /* Başlık ile kartlar arası mesafe azaltıldı */
}

.feature-card {
    background: #fff;
    padding: 25px 20px; /* Kart içi boşluk azaltıldı */
    border-radius: 12px;
    text-align: center;
    border: 1px solid #eee;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.icon { font-size: 2.2rem; margin-bottom: 15px; display: block; }

.feature-card h3 { margin-bottom: 8px; font-size: 1.3rem; }

/* 8. HİZMETLER LİSTESİ */
.services { background: #111; color: white; padding: 50px 8%; text-align: center; }

.service-list {
    list-style: none;
    margin-top: 25px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.service-list li { background: #222; padding: 8px 20px; border-radius: 50px; border: 1px solid #333; font-size: 0.95rem; }

/* 9. FOOTER */
footer { text-align: center; padding: 25px; color: #999; font-size: 0.8rem; border-top: 1px solid #eee; }

/* 10. MOBİL UYUMLULUK */
@media (max-width: 992px) {
    .hero-split { flex-direction: column; text-align: center; padding: 30px 5%; }
    .hero-text h1 { font-size: 2rem; }
    .hero-action-group { align-items: center; width: 100%; }
    .hero-phone-link { font-size: 1.5rem; width: 100%; justify-content: center; }
    .hero-whatsapp-link { width: 100%; justify-content: center; }
    .area-text { font-size: 1rem; padding: 0 10px; }
    .features { padding: 40px 5%; }
}
