/* =========================================
   FOOTER GENEL AYARLAR
   ========================================= */
.site-footer {
    background-color: #fff; /* Tam Beyaz */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #000; 
    border-top: none; 
    margin-top: 0;
    padding-top: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* =========================================
   KATMAN 1: YORUMLAR (REVIEWS) - AYRIK KARTLAR
   ========================================= */
.footer-layer-reviews {
    padding: 6rem 0;
    background-color: #fff;
}

/* Wrapper */
.reviews-wrapper-card {
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
    overflow: visible;
}

/* Grid Yapısı */
.reviews-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem; 
    align-items: start;
}

/* --- SOL: FORM KARTI (BAĞIMSIZ) --- */
.review-form-col {
    background: #fff;
    padding: 2.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06); /* Kart Gölgesi */
    height: 100%;
}

/* Başlıklar ve Metinler */
.footer-subtitle {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--clr-primary);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.footer-section-title {
    font-size: 2rem;
    font-weight: 900;
    color: #000;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.footer-section-desc {
    font-size: 1rem;
    color: #000;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group-clean {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Input ve Textarea */
.review-form input,
.review-form textarea {
    width: 100%;
    padding: 16px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    color: #000;
    font-weight: 500;
    transition: all 0.2s;
    font-family: inherit;
}

.review-form input::placeholder,
.review-form textarea::placeholder {
    color: #666;
}

.review-form input:focus,
.review-form textarea:focus {
    outline: none;
    border-color: var(--clr-primary);
    box-shadow: 0 0 0 4px rgba(0, 74, 173, 0.1);
}

/* Yıldızlar */
.rating-select-clean {
    display: flex;
    align-items: center; 
    gap: 15px; 
    margin-bottom: 0.5rem;
}

.rating-label {
    font-weight: 700;
    font-size: 1rem;
    color: #000;
    margin: 0; 
}

.star-input-clean {
    display: flex;
    flex-direction: row-reverse;
    line-height: 1; 
}

.star-input-clean input { display: none; }

.star-input-clean label {
    font-size: 1.8rem;
    color: #e2e8f0; 
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
    margin: 0 2px;
}

.star-input-clean input:checked ~ label,
.star-input-clean label:hover,
.star-input-clean label:hover ~ label {
    color: var(--clr-primary); 
}

/* Buton */
.btn-black-submit {
    background: var(--clr-primary);
    color: #fff;
    padding: 16px;
    border-radius: 10px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 1rem;
    width: 100%;
    margin-top: 0.5rem;
}

.btn-black-submit:hover {
    filter: brightness(110%);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.form-message {
    margin-top: 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
}
.form-message.success { color: #059669; }
.form-message.error { color: #ef4444; }

/* --- SAĞ: LİSTE KARTI (BAĞIMSIZ) --- */
.review-list-col {
    background: #fff;
    padding: 2.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06); /* Kart Gölgesi */
    height: 100%;
}

.list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f1f5f9;
}

.list-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #000;
    margin: 0;
}

.avg-score {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 8px 16px;
    border-radius: 99px;
}
.avg-score .score-val { font-weight: 800; color: #000; font-size: 1.1rem; }
.avg-score .stars { 
    color: var(--clr-primary); 
    font-size: 1rem; 
    letter-spacing: 2px; 
}
.avg-score .score-count { font-size: 0.9rem; color: #666; font-weight: 600; }

/* Slider */
.vertical-slider-mask {
    height: 500px;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
}

.vertical-slider-track {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    animation: scrollVertical 40s linear infinite;
    padding: 1rem 0;
}

.vertical-slider-mask:hover .vertical-slider-track {
    animation-play-state: paused;
}

@keyframes scrollVertical {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); } 
}

/* Yorum Item */
.review-item {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: transform 0.2s;
}

.review-item:hover {
    transform: scale(1.02);
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.ri-head {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1rem;
}

.ri-avatar img {
    width: 48px; height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.ri-meta {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.ri-meta strong { font-size: 1rem; color: #000; font-weight: 700; }
.ri-date { font-size: 0.8rem; color: #666; }

.ri-rating {
    margin-left: auto;
    color: var(--clr-primary);
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.ri-body p {
    font-size: 0.95rem;
    color: #000;
    line-height: 1.6;
    margin: 0;
}

.no-reviews-box {
    text-align: center;
    color: #666;
    padding: 2rem;
}


/* =========================================
   KATMAN 3: ANA MENÜ & BİLGİLER (SİYAH ALAN)
   ========================================= */
.footer-main-section {
    background-color: #020617; /* Çok Koyu Lacivert/Siyah */
    color: #94a3b8; /* Açık Gri Metin */
    padding: 6rem 0 4rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-main-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
}

/* Marka Kolonu */
.footer-brand-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-main-logo {
    width: 180px;
    height: auto;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1); /* Beyaz Logo */
}

.footer-brand-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #cbd5e1;
    max-width: 90%;
}

.footer-brand-stores {
    display: flex;
    gap: 10px;
}

.f-store-mini img {
    height: 40px;
    width: auto;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.2s;
}

.f-store-mini:hover img {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Link Kolonları */
.footer-links-col {
    display: flex;
    flex-direction: column;
}

.footer-col-head {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-col-head::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 30px; height: 2px;
    background-color: var(--clr-primary);
    border-radius: 2px;
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-list li {
    margin-bottom: 10px;
}

.footer-nav-list a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
}

.footer-nav-list a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-nav-list a::before {
    content: '›';
    font-size: 1.2rem;
    line-height: 0;
    margin-right: 5px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.2s ease;
    color: var(--clr-primary);
}

.footer-nav-list a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* =========================================
   ALT BİLGİ (COPYRIGHT)
   ========================================= */
.site-info-bar {
    background-color: #000;
    color: #64748b;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    font-size: 0.85rem;
    font-weight: 500;
}

.site-info-bar a { display: none; }
.site-info-bar .sep { display: none; }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .review-form-col {
        border-right: none;
        border-bottom: 1px solid #f1f5f9;
        padding: 2.5rem;
    }
    
    .review-list-col {
        padding: 2.5rem;
    }

    .footer-main-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-brand-desc { max-width: 100%; }
}

@media (max-width: 768px) {
    .footer-layer-reviews { padding: 4rem 0; }
    
    .review-form-col, .review-list-col { padding: 1.5rem; }
    
    .footer-section-title { font-size: 1.8rem; }
    
    .footer-cta-section { padding: 5rem 0; }
    
    .footer-cta-content { width: 90%; padding: 2rem 1.5rem; }
    
    .network-bg-animation { opacity: 0.2; }
    
    .footer-main-section { padding: 4rem 0; }
}