/* Genel Sıfırlamalar ve Temel Stiller */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Arial', sans-serif; /* Ya da 'Helvetica Neue', 'Roboto' gibi modern bir font */
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    padding-top: 120px; /* sticky-cta yüksekliği kadar boşluk */
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    overflow: hidden; /* float kullanan elementler için */
    padding: 0 20px;
}

/* Header Stilleri */
header {
    background: #0056b3; /* Kurumsal bir mavi tonu */
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

header .logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 65px;
}

header #logo {
    height: 200px; /* Logonuzun yüksekliğini ayarlayın */
    width: auto; /* Genişlik otomatik ayarlanır */
}

header h1 {
    font-size: 2.5em;
    margin-bottom: 5px;
}

header .tagline {
    font-size: 1.2em;
    font-style: italic;
    margin-bottom: 10px;
}

header .highlight-724 {
    background-color: #ffa500; /* Turuncu */
    color: #000;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.3em;
    display: inline-block; /* Sadece metin kadar yer kaplasın */
    margin-top: 10px;
}

/* Yapışkan Çağrı Butonları (Nav) */
.sticky-cta {
    background: #333;
    color: #fff;
    padding: 15px 0;
    text-align: center;
    position: fixed; /* Sayfada sabit kalır */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; /* Diğer elementlerin üzerinde kalması için */
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.sticky-cta .container {
    display: flex;
    justify-content: space-around; /* Butonları eşit aralıkla dağıt */
    align-items: center;
}

.cta-button {
    color: #fff;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1em;
    transition: background-color 0.3s ease;
    display: flex; /* İkon ve metni yan yana getirmek için */
    align-items: center; /* Dikeyde ortalamak için */
    gap: 8px; /* İkon ve metin arası boşluk */
}

.cta-button .icon {
    width: 24px; /* İkon boyutu */
    height: 24px;
}

.call-button {
    background-color: #28a745; /* Yeşil */
}
.call-button:hover {
    background-color: #218838;
}

.whatsapp-button {
    background-color: #128C7E; /* WhatsApp Yeşili */
}
.whatsapp-button:hover {
    background-color: #075E54;
}


/* Ana İçerik Bölümleri */
main section {
    padding: 40px 0;
    border-bottom: 1px solid #eee;
}
main section:last-child {
    border-bottom: none;
}

main h1, h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2em;
    color: #0056b3;
}

/* Hizmetler Bölümü */
#hizmetler ul {
    list-style: none; /* Madde işaretlerini kaldır */
    padding: 0;
}

#hizmetler li {
    background: #fff;
    padding: 15px;
    margin-bottom: 10px;
    border-left: 5px solid #0056b3;
    border-radius: 0 5px 5px 0;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
}
#hizmetler li:hover {
    border-left-color: #ffa500;
}


/* Neden Biz Bölümü */
.neden-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Duyarlı kart düzeni */
    gap: 20px; /* Kartlar arası boşluk */
}

.card {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: center;
    border-top: 5px solid #0056b3;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
}

.card h3 {
    color: #0056b3;
    margin-bottom: 10px;
    font-size: 1.4em;
}
.card h3 .highlight {
    color: #ffa500;
    font-weight: bold;
}

/* İletişim Bölümü */
#iletisim p {
    font-size: 1.1em;
    margin-bottom: 10px;
    text-align: center;
}
#iletisim a {
    color: #0056b3;
    text-decoration: none;
    font-weight: bold;
}
#iletisim a:hover {
    text-decoration: underline;
    color: #ffa500;
}
.highlight-724-footer {
    font-weight: bold;
    color: #d9534f; /* Kırmızımsı bir ton */
    font-size: 1.2em !important; /* Diğer p stillerini ezmek için */
    margin-top: 20px !important;
    padding: 10px;
    background-color: #fcf8e3;
    border: 1px solid #faebcc;
    border-radius: 5px;
}
.map-placeholder {
    margin-top: 30px;
    text-align: center;
}
.map-placeholder iframe {
    max-width: 100%;
    border-radius: 5px;
}

/* Footer Stilleri */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 25px 0;
    margin-top: 30px;
}
footer p {
    margin-bottom: 5px;
}

/* Mobil Cihazlar İçin Ekstra Ayarlamalar (Media Queries) */
@media (max-width: 768px) {
    header h1 {
        font-size: 2em;
    }
    header .tagline {
        font-size: 1em;
    }
    header .highlight-724 {
        font-size: 1.1em;
        padding: 6px 10px;
    }

    .sticky-cta .container {
        flex-direction: column; /* Butonları alt alta sırala */
        gap: 10px;
    }
    .sticky-cta .cta-button {
        width: 90%; /* Butonların genişliğini ayarla */
        justify-content: center; /* İçeriği ortala */
        font-size: 0.9em;
        padding: 10px 15px;
    }
    body {
        padding-top: 150px; /* Mobil için sticky-cta yüksekliği arttı */
    }

    main h2 {
        font-size: 1.8em;
    }
    .card h3 {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    header #logo, .logo-placeholder {
        height: 50px;
    }
    header h1 {
        font-size: 1.6em;
    }
    .container {
        padding: 0 10px;
    }
     body {
        padding-top: 140px; /* Mobil için sticky-cta yüksekliği biraz daha ayarlandı */
    }
}