



/* 1. CSS VARIABLES (2026 Renk Paleti & Akıllı Ölçüler) */
        :root {
            --primary: #0f172a;
            --accent: #2563eb;
            --cta-green: #22c55e;
            --cta-orange: #f97316;
            --text-dark: #1e293b;
            --text-light: #64748b;
            --bg-light: #f8fafc;
            --glass: rgba(255, 255, 255, 0.8);
            --radius: 16px;
            --shadow: 0 10px 30px -10px rgba(0,0,0,0.1);
            --container: 1140px;
        }


        /* 2. MODERN RESET */
        * { margin: 0; padding: 0; box-sizing: border-box; outline: none; }
        body { font-family: 'Inter', system-ui, -apple-system, sans-serif; background: #fff; color: var(--text-dark); line-height: 1.6; overflow-x: hidden; }
        a { text-decoration: none; transition: 0.3s ease; }
        ul { list-style: none; }

        .wrapper { max-width: var(--container); margin: 0 auto; width: 100%; padding: 0 20px; }

        /* 3. STICKY HEADER & NAV */
        .main-header { position: sticky; top: 0; background: var(--glass); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(0,0,0,0.05); z-index: 1000; padding: 15px 0; }
        .nav-inner { display: flex; justify-content: space-between; align-items: center; }
        .logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.4rem; color: var(--primary); }
        .logo i { color: var(--accent); font-size: 1.8rem; }
        .logo span { color: var(--cta-orange); }

        .nav-links { display: flex; gap: 30px; align-items: center; }
        .nav-links a { font-weight: 600; color: var(--text-dark); font-size: 0.95rem; }
        .nav-links a:hover { color: var(--accent); }
        .header-cta { background: var(--primary); color: #fff !important; padding: 10px 20px; border-radius: 8px; font-size: 0.9rem; }

        /* MOBİL MENÜ TETİKLEYİCİ */
        .menu-btn { display: none; font-size: 1.5rem; cursor: pointer; }
        #menu-toggle { display: none; }

        /* 4. HERO SECTION */
        .hero { padding: 80px 0; background: radial-gradient(circle at top right, #f1f5f9, #fff); text-align: center; border-radius: 0 0 60px 60px; }
        .hero-tag { display: inline-block; background: #e0e7ff; color: var(--accent); padding: 6px 16px; border-radius: 50px; font-weight: 700; font-size: 0.8rem; margin-bottom: 20px; }
        .hero h1 { font-size: clamp(2.2rem, 5vw, 4rem); line-height: 1.1; margin-bottom: 25px; letter-spacing: -2px; }
        .hero h1 em { font-style: normal; color: var(--accent); }
        .hero p { max-width: 700px; margin: 0 auto 40px; font-size: 1.2rem; color: var(--text-light); }

        .hero-btns { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
        .btn { padding: 18px 35px; border-radius: 12px; font-weight: 700; display: flex; align-items: center; gap: 10px; font-size: 1.1rem; }
        .btn-wa { background: var(--cta-green); color: #fff; }
        .btn-call { background: var(--accent); color: #fff; }
        .btn:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }

        /* HİZMET ALANLARI (YENİ EKLEME) */
        .service-areas { padding: 60px 0; text-align: center; }
        .area-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 25px; }
        .tag { background: var(--bg-light); color: var(--text-dark); padding: 8px 18px; border-radius: 50px; font-size: 0.9rem; font-weight: 600; border: 1px solid #e2e8f0; transition: 0.3s; }
        .tag:hover { background: var(--accent); color: #fff; border-color: var(--accent); transform: scale(1.05); }
        .tag i { color: var(--cta-orange); margin-right: 5px; }
        .tag:hover i { color: #fff; }

        /* 5. GÖRSEL GALERİ */
        .gallery-section { padding: 80px 0; }
        .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
        .card { background: #fff; border-radius: var(--radius); border: 1px solid #f1f5f9; overflow: hidden; transition: 0.4s; }
        .card:hover { border-color: var(--accent); }
        .card-img { height: 250px; background: #e2e8f0; position: relative; overflow: hidden; }
        .card-img img { width: 100%; height: 100%; object-fit: cover; }
        .card-body { padding: 25px; }
        .card-body h3 { margin-bottom: 10px; font-size: 1.3rem; }
        .card-body p { font-size: 0.9rem; color: var(--text-light); }
        .badge-kilit { position: absolute; top: 15px; right: 15px; background: var(--cta-orange); color: #fff; padding: 4px 12px; border-radius: 6px; font-size: 11px; font-weight: 800; }

        /* BREADCRUMB */
        .breadcrumb { display: flex; align-items: center; gap: 12px; list-style: none; padding: 20px 0; }
        .breadcrumb a { color: var(--text-light); font-size: 0.9rem; font-weight: 500; }
        .breadcrumb a:hover { color: var(--accent); }
        .breadcrumb i { font-size: 0.7rem; color: #cbd5e1; }
        .breadcrumb span { color: var(--primary); font-size: 0.9rem; font-weight: 600; }

        /* 6. SSS ALANI */
        .faq-section { padding: 100px 0; background: var(--bg-light); border-radius: 60px; margin: 40px 0; }
        .faq-grid { max-width: 850px; margin: 0 auto; }
        .section-header { text-align: center; margin-bottom: 50px; }
        details { background: #fff; margin-bottom: 12px; border-radius: 12px; border: 1px solid #e2e8f0; transition: 0.3s; }
        summary { padding: 20px; font-weight: 700; cursor: pointer; display: flex; justify-content: space-between; align-items: center; list-style: none; }
        summary::after { content: '\2b'; font-family: "Font Awesome 6 Free"; font-weight: 900; color: var(--accent); }
        details[open] summary::after { content: '\2d'; }
        .answer { padding: 0 20px 20px; color: var(--text-light); border-top: 1px solid #f8fafc; padding-top: 15px; }

        /* 7. KURUMSAL FOOTER */
        .main-footer { background: var(--primary); color: #fff; padding: 80px 0 30px; border-radius: 60px 60px 0 0; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 50px; margin-bottom: 60px; }
        .footer-col h4 { color: var(--cta-orange); margin-bottom: 25px; font-size: 1.1rem; }
        .footer-col ul li { margin-bottom: 12px; }
        .footer-col a { color: #94a3b8; font-size: 0.95rem; }
        .footer-col a:hover { color: #fff; }
        .footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 30px; text-align: center; color: #64748b; font-size: 0.85rem; }

        /* 8. RESPONSIVE TASARIM */
        @media (max-width: 992px) {
            .footer-grid { grid-template-columns: repeat(2, 1fr); }
            .grid-3 { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 768px) {
            .nav-links { position: fixed; top: 75px; left: -100%; width: 100%; height: calc(100vh - 75px); background: #fff; flex-direction: column; padding: 40px; transition: 0.4s; align-items: flex-start; z-index: 999; }
            .menu-btn { display: block; }
            #menu-toggle:checked ~ .nav-links { left: 0; }
            .grid-3 { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; }
            .hero h1 { font-size: 2.2rem; }
            .hero-btns { flex-direction: column; }
            .btn { width: 100%; justify-content: center; }
        }


/* Güven Şeridi */
.trust-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    background: var(--primary);
    padding: 30px;
    border-radius: 24px;
    margin-top: -40px; /* Hero'nun içine girsin diye */
    position: relative;
    z-index: 10;
    color: #fff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.trust-item i {
    color: var(--cta-orange);
    font-size: 1.5rem;
}

.trust-item h4 {
    font-size: 0.9rem;
    line-height: 1.2;
}

/* --- GELİŞMİŞ KARŞILAŞTIRMA ALANI CSS --- */
    .comparison-container {
        padding: 100px 0;
        background: linear-gradient(to bottom, #fff, #f8fafc);
    }

    .comparison-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        margin-top: 50px;
        position: relative;
    }

    /* Karşılaştırma Kartları */
    .compare-box {
        background: #fff;
        border-radius: 24px;
        padding: 40px;
        border: 1px solid #e2e8f0;
        transition: all 0.4s ease;
        position: relative;
    }

    /* Standart Sineklik Kartı (Negatif) */
    .box-danger {
        border-top: 6px solid #cbd5e1;
        opacity: 0.85;
    }

    /* Zırhlı Kedi Sinekliği Kartı (Pozitif) */
    .box-success {
        border-top: 6px solid var(--accent);
        box-shadow: 0 20px 40px rgba(37, 99, 235, 0.1);
        transform: scale(1.02);
        z-index: 2;
    }

    .compare-box h3 {
        font-size: 1.6rem;
        margin-bottom: 25px;
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .box-danger h3 { color: #64748b; }
    .box-success h3 { color: var(--primary); }

    /* Karşılaştırma Listesi */
    .compare-list {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .compare-item {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        padding-bottom: 15px;
        border-bottom: 1px dashed #e2e8f0;
    }

    .compare-item:last-child { border: none; }

    .compare-item .icon {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        margin-top: 3px;
    }

    /* İkon Renkleri */
    .box-danger .icon { background: #f1f5f9; color: #94a3b8; }
    .box-success .icon { background: #dcfce7; color: #166534; }

    .compare-item .text h4 {
        font-size: 1.05rem;
        margin-bottom: 4px;
    }

    .compare-item .text p {
        font-size: 0.9rem;
        color: var(--text-light);
        line-height: 1.4;
    }

    /* Kartın üzerindeki "Neden Güvensiz / Neden Güvenli" Etiketi */
    .compare-badge {
        position: absolute;
        top: -15px;
        right: 30px;
        padding: 6px 15px;
        border-radius: 50px;
        font-size: 0.75rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .badge-danger { background: #f1f5f9; color: #64748b; }
    .badge-success { background: var(--cta-green); color: #fff; }

    /* Orta Kısım - VS İkonu (Masaüstü için) */
    .vs-circle {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 60px;
        height: 60px;
        background: #fff;
        border: 1px solid #e2e8f0;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 900;
        color: var(--text-light);
        z-index: 3;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    }

    @media (max-width: 992px) {
        .comparison-wrapper { grid-template-columns: 1fr; gap: 30px; }
        .box-success { transform: scale(1); }
        .vs-circle { display: none; }
    }



    /* --- VİDEO GALERİ TASARIMI --- */
    .video-section {
        padding: 80px 0;
        background: #fff;
    }

    .video-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        margin-top: 40px;
    }

    .video-card {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        cursor: pointer;
        background: #000;
    }

    /* Video Ön İzleme Resmi ve Katman */
    .video-thumb {
        width: 100%;
        height: 350px;
        object-fit: cover;
        display: block;
        opacity: 0.8;
        transition: 0.5s;
    }

    .video-card:hover .video-thumb {
        transform: scale(1.05);
        opacity: 0.6;
    }

    /* Play Butonu Tasarımı */
    .play-button {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 80px;
        height: 80px;
        background: var(--accent);
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        z-index: 2;
        transition: 0.3s;
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.5);
        animation: pulse-blue 2s infinite;
    }

    @keyframes pulse-blue {
        0% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.7); }
        70% { box-shadow: 0 0 0 20px rgba(37, 99, 235, 0); }
        100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
    }

    .video-card:hover .play-button {
        transform: translate(-50%, -50%) scale(1.1);
        background: var(--cta-orange);
    }

    /* Video Bilgi Yazısı */
    .video-info {
        position: absolute;
        bottom: 20px;
        left: 20px;
        color: #fff;
        z-index: 2;
    }

    .video-info h4 {
        font-size: 1.2rem;
        font-weight: 700;
        text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    }

    /* Instagram Yönlendirme Butonu */
    .insta-footer {
        text-align: center;
        margin-top: 50px;
    }

    .btn-insta {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        padding: 15px 40px;
        background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
        color: #fff;
        border-radius: 50px;
        font-weight: 700;
        font-size: 1.1rem;
        transition: 0.3s;
        box-shadow: 0 10px 20px rgba(220, 39, 67, 0.2);
    }

    .btn-insta:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(220, 39, 67, 0.4);
        filter: brightness(1.1);
    }

    /* Video tıklandığında iframe'in yerleşmesi için */
    .video-card iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 5;
    }

    @media (max-width: 768px) {
        .video-grid { grid-template-columns: 1fr; }
        .video-thumb { height: 250px; }
    }


/* --- GÜNCELLENMİŞ 4'LÜ FİYAT ALANI CSS --- */
    .pricing-section {
        padding: 120px 0 80px; /* Üst boşluk artırıldı, bitişiklik giderildi */
        background: #fff;
    }

    .pricing-header {
        text-align: center;
        margin-bottom: 60px;
    }

    /* Başlık ve Kedi İkonu */
    .pricing-header h2 {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        margin-top: 10px;
    }

    .pricing-header h2 i {
        color: var(--accent);
        font-size: 2rem;
    }

    .pricing-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr); 
        gap: 20px;
    }

    .price-card {
        background: #fff;
        padding: 40px 20px;
        border-radius: 24px;
        text-align: center; /* Tüm içerik merkezlendi */
        border: 1px solid #e2e8f0;
        transition: all 0.4s ease;
        display: flex;
        flex-direction: column;
        align-items: center; /* Yatayda ortalama */
        position: relative;
    }

    .price-card:hover {
        transform: translateY(-10px);
        border-color: var(--accent);
        box-shadow: 0 20px 40px rgba(0,0,0,0.07);
    }

    .price-card.featured {
        border: 2px solid var(--accent);
        background: #f0f7ff;
    }

    /* İkonlar */
    .price-card .main-icon {
        font-size: 2.2rem;
        color: var(--accent);
        margin-bottom: 20px;
        display: block;
    }

    .price-card h3 {
        font-size: 1rem;
        margin-bottom: 15px;
        color: var(--primary);
        line-height: 1.4;
        min-height: 50px;
    }

    .price-tag {
        font-size: 1.4rem;
        font-weight: 800;
        color: var(--primary);
        margin-bottom: 20px;
    }

    /* Özellik Listesi - TAM ORTALI */
    .price-features {
        list-style: none;
        padding: 20px 0 0;
        margin: 0;
        border-top: 1px solid #f1f5f9;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center; /* Maddeleri ortalar */
        gap: 10px;
    }

    .price-features li {
        font-size: 0.85rem;
        color: var(--text-light);
        display: flex;
        align-items: center;
        justify-content: center; /* İçerideki ikon ve metni ortalar */
        gap: 8px;
        width: 100%;
        text-align: center;
    }

    .price-features li i {
        font-size: 0.8rem;
        color: var(--cta-green);
    }

    .popular-tag {
        position: absolute;
        top: -14px;
        background: var(--cta-orange);
        color: #fff;
        padding: 5px 18px;
        border-radius: 50px;
        font-size: 0.7rem;
        font-weight: 800;
        box-shadow: 0 4px 10px rgba(249, 115, 22, 0.3);
    }

    .price-notice {
        background: #f8fafc;
        padding: 25px;
        border-radius: 20px;
        margin-top: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        border: 1px dashed #cbd5e1;
    }

    @media (max-width: 1100px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 650px) { .pricing-grid { grid-template-columns: 1fr; } }




/* --- SAĞ SABİT İLETİŞİM BUTONLARI --- */
.fixed-contact-wrapper {
    position: fixed;
    right: 25px; /* Sağdan boşluk */
    bottom: 30px; /* Alttan boşluk */
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    position: relative;
}

/* Üzerine gelince büyüme ve sola doğru hafif kayma efekti */
.floating-btn:hover {
    transform: scale(1.1) translateY(-5px);
}

.f-whatsapp {
    background: #25d366;
}

.f-phone {
    background: var(--accent); /* Temadaki mavi renk */
    animation: pulse-blue-glow 2s infinite; /* Sürekli hafif parlama efekti */
}

/* Telefon Butonu İçin Özel Parlama Animasyonu */
@keyframes pulse-blue-glow {
    0% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 99, 235, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
}

/* Mobil için boyut optimizasyonu */
@media (max-width: 768px) {
    .fixed-contact-wrapper {
        right: 15px;
        bottom: 20px;
    }
    .floating-btn {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
}


/* Section Konumlandırması */
.scroll-helper-section {
    width: 100%;
    padding: 20px 0;
    display: flex;
    justify-content: center;
    background: transparent; /* Arka plana göre uyum sağlar */
    margin-top: -50px; /* Hero'ya hafifçe yaklaştırır */
    z-index: 50;
    position: relative;
}

.scroll-container {
    background: var(--glass);
    backdrop-filter: blur(10px);
    padding: 12px 30px;
    border-radius: 50px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.scroll-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Mouse İkonu */
.mouse-icon {
    width: 22px;
    height: 35px;
    border: 2px solid var(--primary);
    border-radius: 12px;
    position: relative;
    display: flex;
    justify-content: center;
}

.wheel {
    width: 3px;
    height: 6px;
    background: var(--cta-orange);
    border-radius: 2px;
    margin-top: 6px;
    animation: scroll-move 1.5s infinite;
}

/* Yazı Alanı */
.scroll-info {
    display: flex;
    flex-direction: column;
}

.scroll-title {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 0.5px;
    line-height: 1;
}

.scroll-sub {
    font-size: 0.75rem;
    color: #666;
    margin: 4px 0 0 0;
    font-weight: 500;
}

/* Ok İkonu */
.arrow-down {
    color: var(--cta-orange);
    font-size: 1rem;
    animation: arrow-bounce 2s infinite;
}

/* Animasyonlar */
@keyframes scroll-move {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(12px); opacity: 0; }
}

@keyframes arrow-bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(5px); }
    60% { transform: translateY(3px); }
}

/* MOBİL AYARLARI */
@media (max-width: 768px) {
    .scroll-helper-section {
        margin-top: 20px; /* Mobilde iç içe geçmemesi için */
        padding: 10px 0;
    }
    
    .scroll-container {
        padding: 10px 20px;
        transform: scale(0.9); /* Mobilde biraz daha kibar durur */
    }

    .scroll-title {
        font-size: 0.85rem;
    }
}





.specs-section {
    padding: 80px 0;
    background: #f8fafc; /* Çok hafif gri arka plan */
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.spec-card {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 30px 25px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.spec-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.spec-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.5rem;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.spec-content h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 800;
}

.spec-content p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

/* Mobilde Daha Derli Toplu Görünüm */
@media (max-width: 768px) {
    .specs-section { padding: 50px 0; }
    .specs-grid { grid-template-columns: 1fr 1fr; gap: 12px; } /* Mobilde yan yana 2'li */
    .spec-card { padding: 20px 15px; }
    .spec-icon { width: 40px; height: 40px; font-size: 1.2rem; margin-bottom: 15px; }
    .spec-content h3 { font-size: 0.95rem; }
    .spec-content p { font-size: 0.8rem; }
}

@media (max-width: 480px) {
    /* Çok küçük ekranlarda alt alta */
    .specs-grid { grid-template-columns: 1fr; }
}

/* Müşteri Yorumları Bölümü */
.reviews-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.reviews-header {
    text-align: center;
    margin-bottom: 50px;
}

.reviews-header h2 {
    color: var(--dark-blue);
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.google-rating-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.google-logo {
    width: 24px;
}

.rating-score {
    font-weight: bold;
    font-size: 1.2rem;
    color: #4b5563;
}

.stars {
    color: #fbbf24;
}

.review-count {
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Yorum Kartları */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.review-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.05);
    position: relative;
    border: 1px solid #e2e8f0;
}

.quote-icon {
    position: absolute;
    top: 20px;
    right: 25px;
    color: #f1f5f9;
    font-size: 2rem;
}

.card-stars {
    color: #fbbf24;
    font-size: 0.8rem;
    margin-bottom: 15px;
}

.review-text {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 25px;
    font-weight: 500;
}

.user-info {
    display: flex;
    align-items: center;
    border-top: 1px solid #f1f5f9;
    padding-top: 20px;
}

.user-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
}

.btn-google i {
    font-family: "Font Awesome 6 Brands" !important; /* İkona özel fontu zorla */
    color: #4285F4;
    margin-right: 8px;
    font-style: normal; /* İtalikleşmeyi önler */
}


.seo-content-section {
    padding: 40px 0;
    background: #fff;
    border-top: 1px solid #eee;
}
.seo-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.seo-container h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 20px;
}
.seo-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
    text-align: left;
    max-height: 150px; /* Metnin başlangıç yüksekliği */
    overflow: hidden;
    position: relative;
    transition: max-height 0.5s ease;
}
/* Metnin altındaki hafif silinme efekti */
.seo-text::after {
    content: "";
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 50px;
    background: linear-gradient(transparent, #fff);
}
.seo-text.expanded {
    max-height: 2000px; /* Açılınca alacağı max yükseklik */
}
.seo-text.expanded::after {
    display: none;
}
.read-more-btn {
    margin-top: 15px;
    background: none;
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
}

<style>
.safety-badge-wrapper {
    display: flex;
    justify-content: center; /* Merkeze hizalar */
    margin-bottom: 10px; /* hero-tag ile aradaki boşluk */
}

.safety-badge-content {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 14px;
    background: rgba(16, 185, 129, 0.05); /* Çok hafif yeşil transparan */
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 50px;
    transition: all 0.3s ease;
}

/* Üzerine gelince parlaması için (Opsiyonel) */
.safety-badge-content:hover {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.4);
}

.badge-text {
    font-size: 0.7rem;
    font-weight: 800;
    color: #059669;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.live-dot {
    width: 6px;
    height: 6px;
    background-color: #10b981;
    border-radius: 50%;
    position: relative;
    /* Neon Parlama Efekti */
    box-shadow: 0 0 10px #10b981, 0 0 20px rgba(16, 185, 129, 0.4);
}

/* Çok hafif, göz yormayan nabız animasyonu */
.live-dot::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: #10b981;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: estetik-pulse 3s infinite;
}

@keyframes estetik-pulse {
    0% { width: 100%; height: 100%; opacity: 0.5; }
    100% { width: 300%; height: 300%; opacity: 0; }
}

/* Mobilde yazıyı biraz daha küçültelim */
@media (max-width: 768px) {
    .badge-text { font-size: 0.65rem; }
}


.hero-uyari {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff1f2; /* Çok hafif, temiz bir kırmızı zemin */
    color: #be123c; /* Karakterli, tok bir kırmızı */
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.75rem;
    margin-bottom: 12px; /* Altındaki hero-tag ile mesafe */
    border: 1px solid #fecdd3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: alert-fade 2s infinite ease-in-out;
}

/* Dikkat çekmesi için çok hafif bir nefes alma efekti */
@keyframes alert-fade {
    0%, 100% { opacity: 1; transform: translateY(0); }
    50% { opacity: 0.85; transform: translateY(-2px); }
}

/* İkon için küçük bir detay */
.hero-uyari i {
    font-size: 0.9rem;
    color: #e11d48;
}

/* Mobilde hizalama */
@media (max-width: 768px) {
    .hero-uyari {
        font-size: 0.7rem;
        padding: 5px 12px;
    }
}

