/* Genel düzen ayarları */
body {
    max-width: 1090px;
    margin: 0 auto;
    font-family: "Trebuchet MS", Arial, sans-serif;
    background: #f4f4f4;
    color: #222;
}

section {
    padding: 60px 30px;
}

h1, h2, h3 {
    font-weight: 700;
    margin-bottom: 20px;
}

p, li {
    line-height: 1.6;
}

/* Blok 1 — İstanbul esintili sıcak tonlar */
#teklif {
    background: linear-gradient(135deg, #c96d2c, #d8893d);
    color: #fff;
    min-height: 470px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

#teklif .btn {
    display: inline-block;
    background: #ffffff;
    color: #c96d2c;
    padding: 14px 28px;
    margin-top: 25px;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

#teklif .btn:hover {
    background: #ffe6d3;
}

/* Blok 2 — Form tasarımı */
#form {
    background: #1e3d58;
    color: #fff;
}

#form form {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

#form input[type="email"] {
    flex: 1;
    padding: 12px;
    border-radius: 5px;
    border: none;
    font-size: 16px;
}

#form button {
    padding: 12px 24px;
    background: #ffb347;
    border: none;
    color: #222;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

#form button:hover {
    background: #ffd28c;
}

/* Blok 3 — Ürünler ve makale */
#urunler {
    background: #ece8df;
    color: #222;
}

#urunler ul li {
    margin-bottom: 10px;
}

#urunler article {
    background: #ffffff;
    border-left: 5px solid #d8893d;
    padding: 20px;
    margin-top: 30px;
    border-radius: 6px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.08);
}

/* Blok 4 — Uzmanlar */
#uzmanlar {
    background: #2f4b66;
    color: #fff;
}

#uzmanlar ul li {
    margin-bottom: 10px;
}

/* Blok 4.1 — Eğitim ve medya */
#egitim {
    background: #d4b483;
    color: #222;
}

/* Blok 5 — Yorumlar */
#yorumlar {
    background: #3e3e3e;
    color: #fff;
}

#yorumlar ul li {
    margin-bottom: 12px;
}

/* Blok 6 — Harita */
#iletisim {
    background: #ffffff;
    color: #222;
}

#iletisim iframe {
    border: none;
    border-radius: 6px;
    margin: 20px 0;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #222;
    color: #eee;
}

/* Mobil uyum */
@media (max-width: 768px) {
    body {
        padding: 0 15px;
    }

    #form form {
        flex-direction: column;
    }

    #teklif {
        padding: 40px 20px;
        min-height: 420px;
    }

    section {
        padding: 45px 20px;
    }
}
