/*
Theme Name: Ferdi Oto Kurtarma
Theme URI: https://ferdiotokurtarma.com
Author: UstaGibi
Version: 1.0
Description: Esenyurt ve Esenler odaklı, 7/24 responsive ve admin panelinden yönetilebilir oto çekici teması.
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #333;
    padding-bottom: 55px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.top-header {
    background: #111;
    padding: 15px 0;
}
.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo a {
    color: #fff;
    font-weight: 800;
    font-size: 22px;
    text-decoration: none;
}
.logo a span {
    color: #ffcc00;
}
.call-btn {
    background: #ffcc00;
    color: #000;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 700;
    text-decoration: none;
}

/* Hero Section */
.hero-section {
    position: relative;
    background-position: center center;
    background-size: cover; /* Resmi çerçeveye göre otomatik ölçekler */
    background-repeat: no-repeat;
    background-color: #222;
    padding: 120px 0 80px 0; /* İç boşluk dengelendi */
    text-align: center;
    color: #fff;
    width: 100%;
    min-height: 450px; /* Minimum yükseklik garantisi */
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.75);
}
.hero-content {
    position: relative;
    z-index: 2;
}
.badge {
    background: #e63946;
    color: #fff;
    padding: 5px 15px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 20px;
}
.hero-content h1 {
    font-size: 38px;
    margin: 15px 0;
    font-weight: 800;
}
.hero-content p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #ddd;
}
.hero-actions .btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 5px;
    font-weight: 700;
    text-decoration: none;
    margin: 5px;
}
.btn-primary { background: #ffcc00; color: #000; }
.btn-whatsapp { background: #25d366; color: #fff; }

/* Hizmetler Grid */
.services-section { padding: 60px 0; }
.section-title { text-align: center; font-size: 28px; margin-bottom: 40px; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}
.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.service-card i {
    font-size: 40px;
    color: #ffcc00;
    margin-bottom: 15px;
}

/* Bölgeler */
.regions-section { padding-bottom: 60px; }
.regions-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}
.regions-list span {
    background: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    border: 1px solid #ddd;
    font-weight: 600;
}

/* Mobil Sabit Alt Bar */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 55px;
    z-index: 9999;
}
.sticky-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    font-size: 16px;
}
.sticky-btn.call { background: #e63946; }
.sticky-btn.whatsapp { background: #25d366; }
.sticky-btn i { margin-right: 8px; }

@media (max-width: 768px) {
    .mobile-sticky-bar { display: flex; }
    .hero-content h1 { font-size: 26px; }
    .hero-content p { font-size: 15px; }
    .header-contact { display: none; }
}   


/* Gelişmiş Footer Stilleri */
.main-footer {
    background-color: #111111;
    color: #b0b0b0;
    padding-top: 60px;
    margin-top: 50px;
    border-top: 4px solid #ffcc00;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
}

.footer-title {
    color: #ffffff;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 15px;
}

.footer-subtitle {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

.footer-subtitle::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 35px;
    height: 2px;
    background-color: #ffcc00;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-call {
    display: inline-block;
    background: #ffcc00;
    color: #000000;
    font-weight: 700;
    padding: 10px 18px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 15px;
}

.footer-links, .footer-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a i {
    color: #ffcc00;
    margin-right: 6px;
    font-size: 12px;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-info-list li {
    font-size: 14px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.footer-info-list li i {
    color: #ffcc00;
    margin-right: 10px;
    width: 16px;
}

/* Telif & Alt Bar */
.footer-bottom {
    background-color: #0a0a0a;
    padding: 20px 0 80px 0; /* Mobil bar taşmasını engellemek için alt boşluk */
    border-top: 1px solid #222222;
    font-size: 13px;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.designer-credit a {
    color: #ffcc00;
    font-weight: 700;
    text-decoration: none;
}

@media (max-width: 768px) {
    .footer-bottom-flex {
        flex-direction: column;
        text-align: center;
    }
}