/* css/index_sections_style.css */

/* GÜNCELLENDİ: Hero Section */
.hero-section {
    background: linear-gradient(rgba(13, 71, 161, 0.88), rgba(25, 118, 210, 0.8)), url('https://images.unsplash.com/photo-1617550523339-e79e5843234e?q=80&w=2070&auto=format&fit=crop') no-repeat center center/cover;
    background-attachment: fixed; /* Parallax Etkisi */
    color: var(--white-color);
    padding: 140px 0;
    text-align: center;
}

.hero-section h1 {
    font-size: 3.8rem;
    font-weight: 800;
    max-width: 850px;
    margin: 0 auto 20px auto;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero-section .alt-baslik {
    font-size: 1.4rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-section .telefon-numarasi a {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white-color);
    background-color: rgba(255, 255, 255, 0.1);
    padding: 12px 30px;
    border-radius: 50px;
    border: 2px solid var(--accent-color);
    display: inline-block;
    margin-bottom: 35px;
    transition: all 0.3s ease;
}
.hero-section .telefon-numarasi a:hover {
    background-color: var(--accent-color);
    transform: scale(1.05);
}

.hero-section .hero-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    align-items: center;
    flex-wrap: wrap;
}

.hero-buttons .cta-button, .hero-buttons .cta-button-whatsapp {
    padding: 18px 35px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons .cta-button-whatsapp {
    background-color: var(--whatsapp-color);
    border: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.hero-buttons .cta-button-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* GÜNCELLENDİ: Hizmet Kartları */
.hizmet-kartlari-section {
    background-color: var(--light-color);
}

.kartlar-konteyner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.hizmet-karti {
    background-color: var(--white-color);
    padding: 40px;
    text-align: center;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-bottom: 4px solid transparent;
}

.hizmet-karti:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-bottom-color: var(--accent-color);
}

.hizmet-karti .ikon-cerceve {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px auto;
    background: linear-gradient(45deg, var(--accent-color), #ffb74d);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.8rem;
    box-shadow: 0 5px 15px rgba(245, 124, 0, 0.4);
}

.hizmet-karti h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.hizmet-karti p {
    color: var(--grey-color);
    margin-bottom: 25px;
}

.hizmet-karti .kart-buton {
    color: var(--accent-color);
    font-weight: 700;
}

/* GÜNCELLENDİ: Neden Biz Section */
.neden-biz-section {
    padding-bottom: 100px;
}
.neden-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.neden-item {
    padding: 30px;
    text-align: center;
    background-color: var(--white-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}
.neden-item:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}
.neden-item .ikon {
    font-size: 3.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}
.neden-item:hover .ikon {
    color: var(--white-color);
    transform: scale(1.2);
}
.neden-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}
.neden-item:hover h3 {
    color: var(--white-color);
}
.neden-item p {
    transition: color 0.3s ease;
}
.neden-item:hover p {
    color: var(--light-color);
}


/* GÜNCELLENDİ: Müşteri Yorumları */
.musteri-yorumlari-section {
    background-color: var(--light-color);
    position: relative;
    overflow: hidden;
}
/* Arka plan ikonu */
.musteri-yorumlari-section::before {
    content: '\f10d'; /* Font Awesome quote-left */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: -20px;
    left: -30px;
    font-size: 15rem;
    color: rgba(0, 0, 0, 0.04);
    z-index: 1;
}

.yorumlar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.yorum-karti {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    box-shadow: var(--box-shadow);
    border-top: 4px solid var(--primary-color);
}

.yorum-icerik .fa-quote-left {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* css/index_sections_style.css (Mobil Başlık Boyutu Düzeltmesi Dahil) */

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(13, 71, 161, 0.88), rgba(25, 118, 210, 0.8)), url('https://images.unsplash.com/photo-1617550523339-e79e5843234e?q=80&w=2070&auto=format&fit=crop') no-repeat center center/cover;
    background-attachment: fixed; /* Parallax Etkisi */
    color: var(--white-color);
    padding: 140px 0;
    text-align: center;
}

.hero-section h1 {
    font-size: 3.8rem;
    font-weight: 800;
    max-width: 850px;
    margin: 0 auto 20px auto;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    line-height: 1.2; /* Satır yüksekliği eklendi */
}

.hero-section .alt-baslik {
    font-size: 1.4rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-section .telefon-numarasi a {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white-color);
    background-color: rgba(255, 255, 255, 0.1);
    padding: 12px 30px;
    border-radius: 50px;
    border: 2px solid var(--accent-color);
    display: inline-block;
    margin-bottom: 35px;
    transition: all 0.3s ease;
}
.hero-section .telefon-numarasi a:hover {
    background-color: var(--accent-color);
    transform: scale(1.05);
}

.hero-section .hero-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    align-items: center;
    flex-wrap: wrap;
}

.hero-buttons .cta-button, .hero-buttons .cta-button-whatsapp {
    padding: 18px 35px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons .cta-button-whatsapp {
    background-color: var(--whatsapp-color);
    border: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.hero-buttons .cta-button-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Hizmet Kartları */
.hizmet-kartlari-section {
    background-color: var(--light-color);
}
.kartlar-konteyner { /* ... (önceki kodla aynı) ... */ }
.hizmet-karti { /* ... (önceki kodla aynı) ... */ }
.hizmet-karti:hover { /* ... (önceki kodla aynı) ... */ }
.hizmet-karti .ikon-cerceve { /* ... (önceki kodla aynı) ... */ }
/* ... (diğer kart stilleri) ... */

/* Neden Biz Section */
.neden-biz-section { /* ... (önceki kodla aynı) ... */ }
.neden-grid { /* ... (önceki kodla aynı) ... */ }
.neden-item { /* ... (önceki kodla aynı) ... */ }
/* ... (diğer neden biz stilleri) ... */

/* Hizmet Bölgeleri */
.hizmet-bolgeleri-section { /* ... (önceki kodla aynı) ... */ }
.bolgeler-listesi { /* ... (önceki kodla aynı) ... */ }
.bolge-etiketi { /* ... (önceki kodla aynı) ... */ }


/* Müşteri Yorumları */
.musteri-yorumlari-section { /* ... (önceki kodla aynı) ... */ }
.musteri-yorumlari-section::before { /* ... (önceki kodla aynı) ... */ }
.yorumlar-grid { /* ... (önceki kodla aynı) ... */ }
.yorum-karti { /* ... (önceki kodla aynı) ... */ }

/* YENİ: MOBİL UYUM İÇİN EKLENEN KODLAR */

@media (max-width: 992px) {
    .hero-section h1 {
        font-size: 3rem; /* Tablet boyutları için biraz küçültüldü */
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0; /* Boşluklar azaltıldı */
        background-attachment: scroll; /* Mobil cihazlarda parallax performansı için kapatıldı */
    }

    .hero-section h1 {
        font-size: 2.4rem; /* Mobil cihazlar için ideal boyut */
    }

    .hero-section .alt-baslik {
        font-size: 1.2rem;
    }

    .hero-section .telefon-numarasi a {
        font-size: 1.8rem;
    }

    .hero-section .hero-buttons {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 2rem; /* En küçük ekranlar için daha da küçültüldü */
    }

    .hero-section .alt-baslik {
        font-size: 1.1rem;
    }

     .hero-section .telefon-numarasi a {
        font-size: 1.5rem;
        padding: 10px 25px;
    }

    .hero-buttons .cta-button, .hero-buttons .cta-button-whatsapp {
        width: 100%; /* Butonlar tam genişlik kaplasın */
        padding: 16px 20px;
        font-size: 1rem;
    }
}