html,
body {
    overflow-x: hidden;
    /* yatay kaydırmayı kapatır */
    width: 100%;
}

/* Genel sıfırlamalar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* Body */
body {
    /* Hero gibi koyu başlangıç */
    color: #fff;
    scroll-behavior: smooth;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
    background-image: url('../images/site-arka-plan.jpg');
    /* resmin yolu */
    background-repeat: repeat;
    /* sürekli tekrar etsin */
    background-position: top left;
    /* başlangıç noktası */
    background-attachment: fixed;
    /* scroll yapsan da sabit kalır */
}

/* ==== Header (Desktop) ==== */
.main-header {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    background: #33A89F;
    display: flex;
    /* 🔸 LOGO + NAV yan yana */
    justify-content: space-between;
    /* LOGO sola - NAV sağa */
    align-items: center;
    /* dikey hizalama */
    padding: 0 30px;
    z-index: 1000;
}

/* Logo kapsayıcısı */
.logo {
    height: 90px;
    /* Header yüksekliği kadar */
    display: flex;
    align-items: center;
    /* Dikey ortala */
    justify-content: center;
    /* Yatay ortala */
}

/* Logo resmi */
.logo img {
    max-height: 100%;
    /* 90px yüksekliğe sığdır */
    width: auto;
    /* Oranı bozulmasın */
    display: block;
}

.desktop-nav {
    display: flex;
    /* 🔸 Linkleri yan yana dizer */
    gap: 20px;
    /* 🔸 Linkler arasında boşluk */
}

.desktop-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

.desktop-nav a:hover {
    color: #164A46;
}

/* ==== Hamburger ==== */
.hamburger {
    position: fixed;
    top: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: #33A89F;
    color: white;
    border-radius: 50%;
    display: none;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    cursor: grab;
    z-index: 9999;
    user-select: none;
    transition: all 0.3s ease;
}

.hamburger:active {
    cursor: grabbing;
}

/* ==== Mobil Nav ==== */
.mobile-nav {
    position: fixed;
    top: 80px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: rgba(0, 0, 0, 0.75);
    padding: 15px;
    border-radius: 10px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 9999;
}

.mobile-nav.show {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav .nav-item {
    position: relative;
    color: #fff;
    font-size: 1.4rem;
    text-decoration: none;
    transform: translateY(-15px);
    opacity: 0;
}

.mobile-nav.show .nav-item {
    animation: slideDown 0.4s forwards;
}

.mobile-nav.show .nav-item:nth-child(1) {
    animation-delay: 0.1s;
}

.mobile-nav.show .nav-item:nth-child(2) {
    animation-delay: 0.2s;
}

.mobile-nav.show .nav-item:nth-child(3) {
    animation-delay: 0.3s;
}

.mobile-nav.show .nav-item:nth-child(4) {
    animation-delay: 0.4s;
}

.mobile-nav.show .nav-item:nth-child(5) {
    animation-delay: 0.5s;
}

.mobile-nav.show .nav-item:nth-child(6) {
    animation-delay: 0.6s;
}

@keyframes slideDown {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.mobile-nav .nav-item span {
    position: absolute;
    right: 45px;
    top: 50%;
    transform: translateY(-50%);
    background: #33A89F;
    padding: 5px 10px;
    border-radius: 5px;
    opacity: 0;
    white-space: nowrap;
    transition: 0.3s;
}

.mobile-nav .nav-item:hover span {
    opacity: 1;
}

/* ==== Responsive ==== */
@media (max-width: 768px) {

    .main-header {
        position: absolute;
    }

    .desktop-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .logo {
        padding: 0 100%;
    }
}

/* Hero */
.hero {
    height: 100vh;
    padding-top: 70px;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
}

.hero .content h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    max-width: 1200px;
    text-shadow: 0 0 10px #9B59B6;
}

.hero .content p {
    font-size: 1.4rem;
    margin-bottom: 30px;
    max-width: 600px;
    text-shadow: 0 0 6px #7d5fb8;
}

.hero button {
    padding: 15px 40px;
    font-size: 1.2rem;
    background-color: #9B59B6;
    border: none;
    border-radius: 30px;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.hero button:hover {
    background-color: #7d5fb8;
}

/* Hemen ara bölümüne stil */
.hemen-ara {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 350px;
    background-color: #33A89F;
    color: #fff;
    text-align: center;
    padding: 20px;
}

/* Telefon numarası ve simge stil */
.hemen-ara-phone-number {
    font-size: 32px;
    font-weight: 600;
    margin: 0;
    padding: 0;
}

.hemen-ara-phone-number i {
    margin-right: 10px;
    font-size: 27px;
}

/* Açıklama stil */
.hemen-ara-description {
    max-width: 1100px;
    margin-top: 30px;
    margin-bottom: 30px;
    font-size: 16px;
    font-weight: 300;
}

/* İletişim butonu */
.hemen-ara-btn {
    padding: 13px 32px;
    background-color: #fff;
    color: #2c2c2c;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    border: 2px solid #fff;
    /* Beyaz kenar çizgisi */
    position: relative;
    overflow: hidden;
    /* Butonun içindeki içerik dışarı taşmasın */
    transition: color 0.4s ease;
}

/* Hover durumunda butonun ortasından başlayarak siyah arka plan */
.hemen-ara-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 100%;
    background-color: #33A89F;
    transition: width 0.4s ease, left 0.4s ease;
    z-index: 0;
}

/* Hover olunca butonun ortasından kenarlara doğru siyah yayılacak */
.hemen-ara-btn:hover::before {
    width: 100%;
    left: 0;
}

/* Buton hover durumunda yazı rengini beyaza döndür */
.hemen-ara-btn:hover {
    color: #fff;
}

/* Butonun üstündeki metni öne getirmek için */
.hemen-ara-btn span {
    position: relative;
    z-index: 1;
}

.whatsapp-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 22px;
    background: linear-gradient(135deg, #d4af37, #b88a2d);
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: background 0.3s ease;
    transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-btn:hover {
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, #f0d77d, #d4af37);
}

/* Genel Bölümler */
.section {
    margin: 0 auto;
    padding: 30px 140px;
    color: #fff;
}

@media (max-width: 768px) {
    .section {
        padding: 20px;
    }
}

.hizmetler {
    background-color: #1A1A2E;
    color: #E94560;
    text-align: center;
    padding: 30px 15px;
    max-width: 1200px;
}

.hizmetler h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    text-shadow: 0 0 10px #E94560;
}

.hizmetler h2::after {
    content: "";
    display: block;
    margin: 8px auto 0;
    width: 100px;
    height: 3px;
    background-color: #33A89F;
}

/* 🧭 3'lü grid yapısı */
.hizmetler-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    /* max 3 sütun */
    gap: 25px;
    /* kutular arası boşluk */
    justify-content: center;
    margin: 25px auto 0;
}

/* Hizmet kutusu */
.hizmet-kutu {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 0 15px #E9456020;
    transition: transform 0.4s ease;
}

/* Resim kutuyu doldursun */
.hizmet-resim img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
    /* kutucukları kare yapar */
    object-fit: cover;
    /* resmi kırpmadan düzgün oturtur */
    display: block;
    transition: transform 0.6s ease;
}

/* ✨ Hover efekti: Alttan yukarı ışık dalgası */
.hizmet-kutu::before {
    content: '';
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #E94560 40%, transparent 100%);
    opacity: 0.4;
    transition: bottom 0.6s ease;
}

.hizmet-kutu:hover::before {
    bottom: 0;
}

.detay-btn {
    background: #FF8906;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    opacity: 0;
    /* ilk başta görünmez */
    transform: translateY(30px);
    /* biraz aşağıda başlat */
    transition: all 0.3s ease;
    pointer-events: none;
    /* görünmezken tıklanamaz */
}

.detay-btn:hover {
    background: #33A89F;
}

.hizmet-kutu:hover .detay-btn {
    opacity: 1;
    /* hover olunca görünür */
    transform: translateY(0);
    /* yukarı doğru çıkar */
    pointer-events: auto;
    /* artık tıklanabilir */
}

.hizmet-kutu:hover .hizmet-aciklama p {
    transform: translateY(-30px);
}

.hizmet-kutu:hover .hizmet-aciklama h3 {
    transform: translateY(-30px);
}

/* Açıklama yazısı */
.hizmet-aciklama {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    text-align: center;
    color: #fff;
    text-shadow: 0 0 8px #000;
}

.hizmet-aciklama h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.hizmet-aciklama p {
    font-size: 0.95rem;
    opacity: 0.9;
    transition: all 0.3s ease;
}

/* Responsive Ayarlar */
@media (max-width: 992px) {
    .hizmetler-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        margin: 15px auto 0;
    }
}

@media (max-width: 500px) {
    .hizmetler-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .hizmet-aciklama h3 {
        font-size: 1.2rem;
    }

    .hizmet-aciklama p {
        font-size: 0.85rem;
    }
}

/* Bölüm genel ayarları */
.hizmet-sayfasi {
    border-top: 2px solid #33A89F;
    max-width: 1200px;
    margin: 0 auto;
    /* Ortala */
    background-color: #1A1A2E;
    padding: 20px;
    color: white;
    /* Yazı rengi beyaz */
}

/* H1 başlığı */
.hizmet-sayfasi h1 {
    letter-spacing: 0.8px;
    text-align: center;
    font-size: 2.8rem;
    position: relative;
    margin-bottom: 20px;
}

.hizmet-sayfasi h1::after {
    content: "";
    display: block;
    width: 120px;
    height: 3px;
    background-color: white;
    margin: 10px auto 0 auto;
    /* Ortala */
}

/* H2 ve H3 başlıklar */
.hizmet-sayfasi h2 {
    letter-spacing: 0.7px;
    text-align: left;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.hizmet-sayfasi h3 {
    letter-spacing: 0.6px;
    text-align: left;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 12px;
}

/* Paragraflar */
.hizmet-sayfasi p {
    text-align: left;
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 200;
    margin-bottom: 15px;
}

/* Görseller */
.hizmet-sayfasi img {
    max-width: 400px;
    height: auto;
    display: block;
    margin: 10px 0;
}

/* Responsive Tasarım */
@media (max-width: 992px) {

    .hizmet-sayfasi h1 {
        font-size: 2.4rem;
    }

    .hizmet-sayfasi h2 {
        font-size: 1.8rem;
    }

    .hizmet-sayfasi h3 {
        font-size: 1.3rem;
    }

    .hizmet-sayfasi p {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .hizmet-sayfasi img {
        max-width: 100%;
    }

    .hizmet-sayfasi h1 {
        font-size: 2rem;
    }

    .hizmet-sayfasi h2 {
        font-size: 1.5rem;
    }

    .hizmet-sayfasi h3 {
        font-size: 1.2rem;
    }

    .hizmet-sayfasi p {
        font-size: 0.9rem;
    }

    .hizmet-sayfasi {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .hizmet-sayfasi h1 {
        font-size: 1.8rem;
    }

    .hizmet-sayfasi h2 {
        font-size: 1.4rem;
    }

    .hizmet-sayfasi h3 {
        font-size: 1.2rem;
    }

    .hizmet-sayfasi p {
        font-size: 1rem;
        line-height: 1.5;
        letter-spacing: 0.9px;
    }
}

/* Bloglar */
.bloglar {
    margin: 0 auto;
    max-width: 1200px;
    padding: 25px 0;
    background: linear-gradient(135deg, #164A46 0%, #1FA38C 100%);
    color: #FFFFFE;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.bloglar .baslik-alani {
    text-align: center;
    margin-bottom: 30px;
}

.bloglar .baslik-alani h2 {
    font-size: 2rem;
    color: #FF8906;
    letter-spacing: 1px;
    position: relative;
}

.bloglar .baslik-alani h2::after {
    content: "";
    display: block;
    margin: 8px auto 0;
    width: 100px;
    height: 3px;
    background-color: #33A89F;
}

.bloglar .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    padding: 0 35px;
    margin: auto;
}

.ana-icerik {
    border: 1px solid #FF8906;
    position: relative;
    overflow: hidden;
    height: 75vh;
}

.ana-icerik img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    display: block;
}

.ana-icerik::after {
    content: "";
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(242, 95, 76, 0.6), transparent);
    transition: bottom 0.4s ease;
}

.ana-icerik:hover::after {
    bottom: 0;
}

.icerik-bilgi {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #FFFFFE;
    text-shadow: 0 0 10px #33A89F;
    background: rgba(15, 14, 23, 0.6);
    padding: 15px;
    max-width: 80%;
    backdrop-filter: blur(4px);
    border-left: 4px solid #FF8906;
}

.kucuk-icerikler {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 15px;
    height: 60%;
}

.kucuk-icerik {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background-color: #1E1E2F;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 266px;
}

.kucuk-icerik img {
    width: 100%;
    height: 65%;
    object-fit: cover;
    border-bottom: 1px solid #FF8906;
}

.kucuk-icerik::after {
    content: "";
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(255, 137, 6, 0.5), transparent);
    transition: bottom 0.4s ease;
}

.kucuk-icerik:hover::after {
    bottom: 0;
}

.kucuk-bilgi {
    padding: 8px 10px;
    color: inherit;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.kucuk-bilgi h4 {
    margin: 0 0 5px 0;
    font-size: 1rem;
    color: #FF8906;
}

.kucuk-bilgi small {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Mobile */
@media (max-width: 768px) {

    /* Ana container tek sütun olacak */
    .bloglar .container {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        padding: 0;
    }

    /* Ana içerik alanı */
    .ana-icerik {
        border: 1px solid #FF8906;
        position: relative;
        height: auto;
        width: 100%;
    }

    .ana-icerik img {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
        object-fit: cover;
        display: block;
        filter: brightness(80%);
    }

    .icerik-bilgi {
        position: absolute;
        bottom: 15px;
        left: 15px;
        background-color: rgba(15, 14, 23, 0.75);
        padding: 12px;
        border-left: 3px solid #FF8906;
        color: #FFFFFE;
        max-width: 85%;
        backdrop-filter: blur(4px);
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    }

    .icerik-bilgi h3 {
        margin: 0;
        font-size: 1.2rem;
    }

    .icerik-bilgi small {
        font-size: 0.8rem;
        opacity: 0.8;
    }

    /* Küçük içerikler listesi */
    .kucuk-icerikler {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-top: 10px;
    }

    .kucuk-icerik {
        display: flex;
        flex-direction: row;
        background-color: #1E1E2F;
        align-items: stretch;
        height: auto;
        overflow: hidden;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .kucuk-icerik:hover {
        transform: translateY(-3px);
        box-shadow: 0 0 1px #FF8906;
    }

    .kucuk-icerik img {
        width: 30%;
        height: auto;
        object-fit: cover;
        border-right: 2px solid #FF8906;
        display: block;
    }

    .kucuk-bilgi {
        padding: 10px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        flex: 1;
        color: #FFFFFE;
    }

    .kucuk-bilgi h4 {
        margin: 0;
        font-size: 1rem;
        color: #FF8906;
    }

    .kucuk-bilgi small {
        font-size: 0.8rem;
        opacity: 0.7;
    }
}

/* Hakkımızda */
.about-section {
    padding: 25px 15px;
    background: #fff;
    color: #333;
    display: flex;
    justify-content: center;
}

.about-container {
    max-width: 1200px;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    /* mobil uyum için */
}

.about-image img {
    width: 400px;
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #33A89F;
    margin-bottom: 10px;
}

.about-text h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-btn {
    display: inline-block;
    background: #33A89F;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    transition: background 0.3s;
}

.about-btn:hover {
    background: #d84c3c;
}

.danisan-yorumlari-cta {
    width: 100%;
    padding: 70px 20px;
    background: radial-gradient(circle at center,
            #2bbfc3 0%,
            #0e5f73 45%,
            #081c2b 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Hafif mistik ambiyans */
.danisan-yorumlari-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../../images/eye-pattern.webp") center/400px no-repeat;
    opacity: 0.06;
}

.danisan-yorumlari-icerik {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.danisan-yorumlari-icerik h2 {
    font-size: 36px;
    color: #e6f9fa;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.danisan-yorumlari-icerik p {
    font-size: 16px;
    color: #ccebed;
    margin-bottom: 35px;
    line-height: 1.6;
}

/* Buton */
.yorumlar-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 38px;
    font-size: 15px;
    font-weight: 600;
    color: #0e5f73;
    background: linear-gradient(135deg, #bff3f5, #6dd6db);
    border-radius: 40px;
    text-decoration: none;
    transition: all 0.35s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.yorumlar-btn:hover {
    background: linear-gradient(135deg, #6dd6db, #2bbfc3);
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

/* ================== YORUMLAR ================== */
.yorumlar {
    border-top: 2px solid #33A89F;
    background-color: #091F1D;
    color: #f3f3f3;
    padding: 25px 150px;
}

.yorumlar h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
    color: #33A89F;
    text-shadow: 0 0 5px #33A89F;
}

.yorumlar a{
    color: #33A89F;
    transition: all 0.3s ease;
}

.yorumlar a:hover{
    color: #ff4b4b;
}

.yorumlar h2::after {
    content: "";
    display: block;
    margin: 8px auto 0;
    width: 100px;
    height: 3px;
    background-color: #33A89F;
}

.yorum-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.yorum {
    padding: 30px;
}

.yorum-text {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.yorum-actions {
    display: flex;
    gap: 15px;
}

.yorum-actions button {
    background: none;
    border: none;
    color: #33A89F;
    font-size: 0.9rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.yorum-actions button i {
    margin-right: 5px;
}

.yorum-actions button:hover {
    color: #ffd285;
}

.like-btn.liked {
    color: #ff4b4b;
}

/* Cevaplar */
.cevaplar {
    margin-top: 15px;
    padding-left: 20px;
    /* girinti efekti */
    border-left: 2px solid #1FA38C;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cevap {
    padding: 15px;
}

.cevap p {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

/* Profil resmi ve isim bilgisi */
.yorum-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.profil-resmi {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #33A89F;
}

.yorum-bilgi {
    display: flex;
    flex-direction: column;
}

.yorum-bilgi strong {
    color: #fff;
    font-size: 1rem;
}

.yorum-bilgi span {
    color: #ccc;
    font-size: 0.85rem;
}

@media (max-width: 768px) {

    .yorumlar {
        padding: 25px 0;
    }

    .yorum-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .yorum {
        padding: 15px;
    }

    .yorum-text {
        font-size: 1rem;
    }
}

.about-yazi {
    min-width: 300px;
}

.about-yazi h2 {
    font-size: 2.5rem;
    color: #33A89F;
    margin-bottom: 10px;
}

.about-yazi h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 20px;
}

.about-yazi p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.hizmet-kosesi {
    border-top: 2px solid #33A89F;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fff;
    color: #164A46;
    padding: 20px 5%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hizmet-kosesi-icerik {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1200px;
    width: 100%;
}

/* Resim kutusu */
.hizmet-kosesi-resim {
    flex: 1;
    border: 2px solid #fff;
    border-radius: 25px;
    overflow: hidden;
}

.hizmet-kosesi-resim img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.hizmet-kosesi-resim:hover img {
    transform: scale(1.08);
    /* %8 yakınlaşma */
}

/* Yazı alanı */
.hizmet-kosesi-yazi {
    flex: 1;
}

.hizmet-kosesi-yazi h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.hizmet-kosesi-yazi p {
    color: #3c3c3c;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Buton */
.hizmet-kosesi-btn {
    display: inline-block;
    padding: 12px 25px;
    border: 2px solid #33A89F;
    border-radius: 25px;
    color: #164A46;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.hizmet-kosesi-btn:hover {
    background-color: #33A89F;
}

/* Sıralamayı tersine çevirme (sadece masaüstü) */
.hizmet-kosesi.ters .hizmet-kosesi-icerik {
    flex-direction: row-reverse;
}

/* Mobil uyum */
@media (max-width: 768px) {
    .hizmet-kosesi {
        padding: 20px 6%;
    }

    .hizmet-kosesi-icerik {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    /* Ters bölümde mobilde yönü tekrar düzleştir */
    .hizmet-kosesi.ters .hizmet-kosesi-icerik {
        flex-direction: column;
    }

    .hizmet-kosesi-resim,
    .hizmet-kosesi-yazi {
        width: 100%;
    }

    .hizmet-kosesi-yazi h2 {
        font-size: 1.6rem;
    }

    .hizmet-kosesi-yazi p {
        font-size: 0.95rem;
    }
}

/* Yıldızname ve Tarot Bölümü */
.astro-tarot-section {
    display: flex;
    width: 100%;
    max-width: 100%;
    height: 350px;
    margin: 0;
    /* Section aralarında boşluk için gerekirse ekle */
    padding: 0;
    gap: 0;
}

.astro-item {
    background: url('../images/yildizname-bakimi.webp') center/cover no-repeat;
}

.tarot-item {
    background: url('../images/tarot-fal-bakimi.webp') center/cover no-repeat;
}

.astro-item,
.tarot-item {
    flex: 1 1 50%;
    background-size: 150%;
    /* Scale efekti */
    transition: background-size 0.6s ease;
    /* Hover ile animasyon */
    padding: 30px 20px;
    box-shadow: 4px 8px 25px rgba(0, 0, 0, 1);
    /* Daha belirgin gölge */
    color: #fff;
}

.astro-item:hover,
.tarot-item:hover {
    background-size: 160%;
    /* Hover ile yakınlaştırma */
}

.astro-item h2,
.tarot-item h2 {
    text-align: center;
    font-size: 26px;
    margin-top: 80px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

.astro-item p,
.tarot-item p {
    text-align: center;
    font-size: 16px;
    opacity: 0.95;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

/* Mobil düzeni: alt alta geçiş */
@media (max-width: 780px) {
    .astro-tarot-section {
        flex-direction: column;
        height: auto;
    }

    .astro-item,
    .tarot-item {
        flex: 1 1 100%;
    }

    .astro-item h2,
    .tarot-item h2 {
        margin: 0 auto;
    }

    .astro-item {
        margin: 0;
    }
}

/* İletişim Bölümü */
.contact-section {
    background: linear-gradient(135deg, #33A89F 0%, #164A46 100%);
    color: #fff;
    padding: 50px 20px;
}

.contact-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 50px;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-text {
    flex: 1;
    min-width: 300px;
}

.contact-text h2 {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 15px;
}

.contact-text p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.contact-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.contact-btn {
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.3s, background 0.3s, box-shadow 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    /* ikon ile yazı arası */
    font-size: 1rem;
}

.contact-btn.whatsapp {
    background-color: #25D366;
    color: #fff;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.5);
}

.contact-btn.phone {
    background: linear-gradient(135deg, #d4af37, #b88a2d);
    color: #1a1a1a;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.5);
}

.contact-btn.email {
    background: linear-gradient(135deg, #6a0dad, #9b30ff);
    color: #fff;
    box-shadow: 0 5px 15px rgba(155, 48, 255, 0.5);
}

/* Hover efektleri */
.contact-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
}

/* Form */
.contact-form {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px 15px;
    border-radius: 8px;
    border: none;
    font-size: 1rem;
    outline: none;
    resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    box-shadow: 0 0 10px #ffd700;
}

.contact-form button {
    padding: 12px 25px;
    background: #ffd700;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s, background 0.3s;
}

.contact-form button:hover {
    transform: scale(1.05);
    background: #e6c200;
}

/* Mobil uyum */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        gap: 30px;
    }

    .contact-text,
    .contact-form {
        min-width: 100%;
    }
}

/* FOOTER GENEL */
.site-footer {
    background: linear-gradient(135deg, #0A211F 0%, #091F1D 100%);
    color: #ddd;
    padding: 60px 20px 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 200px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-col h3 {
    color: #ffd700;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.footer-col p,
.footer-col ul,
.footer-col li {
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #ffd700;
}

/* Sosyal ikonlar */
.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.social-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s;
}

.social-icon:hover {
    transform: scale(1.2);
}

/* Renkler */
.social-icon.whatsapp {
    background-color: #25D366;
}

.social-icon.instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-icon.facebook {
    background-color: #3b5998;
}

/* Footer alt yazı */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 75px;
    font-size: 14px;
    color: #333;
    border-top: 2px solid #33A89F;
    flex-wrap: wrap;
    margin-top: 10px;
    margin-bottom: -10px;
}

.footer-bottom a {
    color: #0066cc;
    text-decoration: none;
    margin: 0 5px;
}

.footer-bottom a:hover {
    color: aqua;
}

.footer-bottom-left,
.footer-bottom-right {
    margin: 5px 0;
}

/* Mobil uyum */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 25px;
    }

    .social-icons a {
        margin-right: 10px;
    }
}

/* Sabit sol alt WhatsApp */
.fixed-whatsapp {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: #25D366;
    color: white;
    font-size: 30px;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: transform 0.3s;
}

.fixed-whatsapp:hover {
    transform: scale(1.1);
}

/* Sabit sağ telefon */
.fixed-phone {
    margin-bottom: 65px;
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: #33A89F;
    color: #1a1a1a;
    font-size: 28px;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: transform 0.3s;
}

.fixed-phone:hover {
    transform: scale(1.1);
}

#scrollToTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    background: #33A89F;
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    font-size: 18px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    opacity: 0;
    pointer-events: none;
    transform: translateX(50px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Buton aktif olduğunda görünür ve animasyonlu olur */
#scrollToTopBtn.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* Hover efekti */
#scrollToTopBtn:hover {
    transform: scale(1.1);
}

a {
    text-decoration: none;
    color: #fff;
}

::selection {
    background-color: #ff7b00;
    color: #000;
}