/* ==========================================================================
   MAGIC BOX FITNESS - GOOGLE REVIEWS PREMIUM CSS (TAM VE EKSİKSİZ)
   ========================================================================== */

/* Google Yorumları Bölümü - Efektli Premium Karanlık Arka Plan */
.google-reviews-section {
    background-color: #0a0a0a;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    
    /* 1. Efekt: İnce Tekno Izgara Deseni */
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.007) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.007) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* 2. Efekt: Sol Üst ve Sağ Alt Köşelere Neon Sarı Işık Patlamaları (Glow) */
.google-reviews-section::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, rgba(230, 255, 0, 0.06) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 1;
    pointer-events: none;
    filter: blur(40px);
}

.google-reviews-section::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, rgba(230, 255, 0, 0.04) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 1;
    pointer-events: none;
    filter: blur(40px);
}

.reviews-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Başlık Alanı */
.reviews-header {
    text-align: center;
    margin-bottom: 55px;
}

.reviews-header h2 {
    font-family: 'Syncopate', sans-serif;
    font-size: 38px;
    font-weight: 800;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: -1.5px;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.reviews-header p {
    color: #a0a0a0;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

/* Google Puan Özeti */
.google-rating-summary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 28px;
    border-radius: 50px;
    margin-top: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
}

.google-rating-summary .google-logo {
    font-weight: 800;
    font-size: 18px;
}

.google-rating-summary .stars-wrapper {
    color: #ffb400;
    display: flex;
    gap: 3px;
    font-size: 14px;
}

.google-rating-summary .rating-text {
    font-weight: 700;
    color: #ffffff;
    font-size: 14px;
}

/* Animasyonlu Aşağı Kaydırma Oku */
.scroll-arrow-wrapper {
    margin-top: 35px;
}

.scroll-down-arrow {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border-radius: 50%;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: bounceArrow 2s infinite;
    backdrop-filter: blur(5px);
}

.scroll-down-arrow:hover {
    background: #e6ff00;
    color: #000;
    transform: translateY(3px);
    box-shadow: 0 10px 25px rgba(230, 255, 0, 0.4);
    border-color: transparent;
}

@keyframes bounceArrow {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Yorum Izgarası (Masaüstünde Yan Yana Düzen) */
.reviews-grid-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 50px;
}

@media (min-width: 1200px) {
    .reviews-grid-layout {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Dikdörtgen / Yatay Beyaz Kart Tasarımı */
.review-card {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Kart İç Yapısı */
.review-card-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 15px;
    height: 100%;
}

/* Hover Animasyonları: Büyüme, Çarpıcı Gölge */
.review-card:hover {
    transform: scale(1.03) translateY(-4px);
    box-shadow: 0 20px 45px rgba(230, 255, 0, 0.2);
}

/* Sağa Sola Giden Işık / Parlama Efekti (Shine) */
.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(230, 255, 0, 0.25) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transition: none;
    z-index: 1;
}

.review-card:hover::before {
    left: 150%;
    transition: all 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Kart Başlığı */
.review-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Anonim Profil Resimleri (Harfler) */
.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 800;
    font-size: 15px;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Benzersiz Modern Profil Gradyanları */
.avatar-on { background: linear-gradient(135deg, #00c6ff, #0072ff); }
.avatar-ah { background: linear-gradient(135deg, #f857a6, #ff5858); }
.avatar-n { background: linear-gradient(135deg, #11998e, #38ef7d); }
.avatar-k { background: linear-gradient(135deg, #fc4a1a, #f7b733); }
.avatar-t { background: linear-gradient(135deg, #8e2de2, #4a00e0); }
.avatar-s { background: linear-gradient(135deg, #ff6b6b, #ff8e8e); }
.avatar-o { background: linear-gradient(135deg, #396afc, #2948ff); }
.avatar-f { background: linear-gradient(135deg, #1d976c, #93f9b9); }
.avatar-a { background: linear-gradient(135deg, #ed4264, #ffedbc); }

.reviewer-name {
    font-weight: 800;
    font-size: 16px;
    color: #111111;
}

.review-date {
    font-size: 11px;
    color: #888888;
    text-transform: uppercase;
    font-weight: 600;
}

.google-icon {
    font-size: 20px;
    color: #4285F4;
}

/* Yorum İçeriği ve Yıldızlar */
.review-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-grow: 1;
}

.review-stars {
    color: #ffb400;
    font-size: 13px;
    display: flex;
    gap: 3px;
}

.review-text {
    font-size: 14px;
    line-height: 1.6;
    color: #333333;
    font-weight: 500;
}

/* Daha Fazla Yorum Butonu */
.more-reviews-wrapper {
    text-align: center;
    margin-top: 55px;
}

.more-reviews-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #e6ff00;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 5px 15px rgba(230, 255, 0, 0.05);
}

.more-reviews-btn:hover {
    background-color: #e6ff00;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(230, 255, 0, 0.3);
}

/* Mobil Uyumluluk Ayarları */
@media (max-width: 991px) {
    .reviews-grid-layout {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .google-reviews-section {
        padding: 80px 0;
    }
    .reviews-header h2 {
        font-size: 28px;
    }
    .reviews-grid-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .review-card {
        padding: 24px;
    }
    .reviewer-avatar {
        width: 44px;
        height: 44px;
        font-size: 14px;
    }
    .review-text {
        font-size: 13px;
    }
    .more-reviews-btn {
        padding: 14px 28px;
        font-size: 12px;
    }
}