/* Özel Stil Ayarları */
body {
    font-family: Arial, sans-serif;
    background-color: #eef0e4;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    background-color: #ffffff;
    padding: 15px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* Logo ve telefon numarası için stil */
.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-left img {
    height: 60px;
    width: auto;
}

.header-left .service-name {
    font-size: 18px;
    line-height: 1.3;
    color: #333;
    font-weight: bold;
    text-transform: uppercase;
}

/* Telefon numarası için stil */
.phone-number {
    background-color: #eef0e4;
    padding: 10px 20px;
    border-radius: 25px;
    text-size-adjust: 80%;
    color: #bd0000;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.phone-number:hover {
    background-color: #bd0000;
    color: #ffffff;
}

/* Navigasyon için stil (Sadece Bilgisayarda Görünecek) */
.desktop-nav ul {
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.desktop-nav ul li a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}

.desktop-nav ul li a:hover {
    color: #bd0000;
}

/* Mobil Geri Tuşu */
.mobile-back-button {
    display: none !important; /* Varsayılan olarak gizli */
    position: fixed; /* Ekranda sabit kal */
    bottom: 20px; /* Ekranın altından 20px yukarıda */
    right: 20px; /* Ekranın sağından 20px içeride */
    background-color: #bd0000;
    color: #ffffff;
    padding: 10px 15px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    z-index: 1000; /* Diğer içeriklerin üzerinde olsun */
    transition: background-color 0.3s ease;
}

.mobile-back-button:hover {
    background-color: #990000;
}

/* Mobil uyumluluk */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .header-left {
        flex-direction: row; /* Logo ve telefon numarası yan yana */
        align-items: center;
        gap: 10px;
    }

    .header-left img {
        height: 40px; /* Mobilde logo boyutunu küçült */
    }

    .header-left .service-name {
        display: none; /* Servis adını mobilde gizle */
    }

    .phone-number {
        padding: 6px 12px; /* Mobilde padding'i küçült */
        font-size: 14px; /* Mobilde yazı boyutunu küçült */
    }

    /* Navigasyon menüsünü mobilde gizle */
    .desktop-nav {
        display: none;
    }

    /* Servis adını mobilde logo ve telefon numarasının altında göster */
    .header-left::after {
        content: "KOMBİ SERVİSİ\A bakım ve onarım";
        white-space: pre-wrap;
        text-align: center;
        font-size: 14px;
        line-height: 1.3;
        color: #333;
        font-weight: bold;
        text-transform: uppercase;
        margin-top: 10px;
    }
    .mobile-back-button {
        display: block; /* Mobilde Geri tuşunu göster */
    }
}

/* Ana İçerik Stili */
.container {
    flex: 1; /* İçeriğin footer'ı itmesini sağlar */
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

h1 {
    color: #bd0000;
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.5rem;
}

p.lead {
    font-size: 1.2rem;
    color: #555;
    text-align: center;
    margin-bottom: 40px;
}

/* Model Listesi Stili */
.model-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.model-card {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    width: 200px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.model-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.model-card a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Arıza Kodları Listesi Stili */
.ariza-list {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.ariza-list ul {
    list-style-type: none;
    padding: 0;
}

.ariza-list ul li {
    padding: 10px;
    border-bottom: 1px solid #eee;
    font-size: 1rem;
    color: #333;
}

.ariza-list ul li:last-child {
    border-bottom: none;
}

.ariza-list ul li strong {
    color: #c50e20;
}

/* Footer için özel stiller */
.footer {
    background-color: #333;
    color: #fff;
    padding: 40px 0;
}

.footer h5 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer ul {
    padding-left: 0;
}

.footer ul li {
    margin-bottom: 0.5rem;
}

.footer ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer ul li a:hover {
    color: #bd0000; /* Hover rengi */
}

.footer iframe {
    border-radius: 10px; /* Harita köşelerini yuvarlak yap */
    margin-top: 10px;
}
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    font-size: 30px;
    transition: background-color 0.3s ease;
    z-index: 2
}

.whatsapp-button:hover {
    background-color: #1eb15a;
}
.call-button {
    position: fixed; /* Sabit konum */
    bottom: 20px;
    left: 20px; /* Buton sol alt köşede */
    width: 60px;
    height: 60px;
    background-color: #2196f3; /* Yeşil renk */
    color: white;
    border-radius: 50%; /* Yuvarlak buton */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    font-size: 30px;
    transition: background-color 0.3s ease;
    z-index: 2;
}

.call-button:hover {
    background-color: #1e87db;
}

.call-button img {
    width: 32px; /* İkon boyutunu biraz büyüttüm */
    height: 32px;
}
