/* styles.css – Akali Oyun Geliştirme Sitesi – Modern & Profesyonel Tasarım (Онлайн-бухгалтерия tarzı temizlik ve güven hissi) */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background: #f8f9fc;
    margin: 0 auto;
    max-width: 1090px;
    padding: 0 20px;
}

/* Ortala ve maksimum genişlik */
.container {
    width: 100%;
    max-width: 1090px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Blokların kontrastlı renk ayrımı */
.section {
    padding: 80px 0;
}

/* Tek-çift bloklarda renk değişimi */
.section:nth-child(odd) {
    background: #ffffff;
}

.section:nth-child(even) {
    background: #f0f4f8;
}

/* İlk blok – Hero (Offer) */
#hero {
    min-height: 470px;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%); /* Derin mavi ton */
    color: #ffffff;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 100px 0;
}

#hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
}

#hero p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 40px;
    opacity: 0.95;
}

/* Ana butonlar – Hero butonu dahil */
.btn {
    display: inline-block;
    background: #f59e0b; /* Canlı turuncu – dikkat çeker */
    color: #ffffff;
    font-weight: 600;
    font-size: 18px;
    padding: 14px 36px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn:hover {
    background: #d97706;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

/* Başlıklar */
h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #1e3a8a;
}

/* Hizmet fiyat listesi */
.price-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
}

.price-list li {
    background: #ffffff;
    padding: 20px 30px;
    margin-bottom: 16px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.price-list li strong {
    color: #1e40af;
}

/* Makale – Öne çıkarılmış stil */
.article {
    background: #ffffff;
    border: 2px solid #1e40af;
    border-radius: 16px;
    padding: 60px 40px;
    margin: 40px auto;
    max-width: 900px;
    box-shadow: 0 10px  30px rgba(30, 64, 175, 0.1);
}

.article h2 {
    color: #1e40af;
    margin-bottom: 30px;
}

.article ol {
    padding-left: 24px;
    margin: 30px 0;
}

.article ol li {
    margin-bottom: 18px;
    font-size: 17px;
}

.article p {
    font-size: 17px;
}

/* Form */
.form-section {
    background: #1e3a8a;
    color: #ffffff;
    text-align: center;
}

.form-section h2 {
    color: #ffffff;
}

.form-section form {
    max-width: 500px;
    margin: 0 auto;
}

.form-section input[type="email"] {
    width: 100%;
    padding: 16px 20px;
    font-size: 18px;
    border: none;
    border-radius: 8px;
    margin-bottom: 20px;
}

.form-section button {
    width: 100%;
    padding: 16px;
    font-size: 18px;
    background: #f59e0b;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.form-section button:hover {
    background: #d97706;
}

/* Yorumlar */
.reviews {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.review {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    font-style: italic;
    position: relative;
}

.review::before {
    content: '“';
    font-size: 80px;
    color: #1e40af;
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 20px;
}

/* Ekip */
.team {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.team div {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    font-size: 18px;
}

.team strong {
    color: #1e40af;
    display: block;
    margin-bottom: 8px;
}

/* Harita */
#iletisim iframe {
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* Footer */
.footer {
    background: #1e293bを超;
    color: #cbd5e1;
    text-align: center;
    padding: 40px 0;
    font-size: 14px;
}

/* Mobil uyum */
@media (max-width: 768px) {
    #hero h1 {
        font-size: 36px;
    }

    #hero p {
        font-size: 18px;
    }

    h2 {
        font-size: 30px;
    }

    .section {
        padding: 60px 0;
    }

    .price-list li {
        flex-direction: column;
        text-align: center;
    }

    .article {
        padding: 40px 20px;
    }

    .reviews,
    .team {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    body {
        padding: 0 15px;
    }

    #hero {
        padding: 80px 0;
    }

    #hero h1 {
        font-size: 32px;
    }
}
