:root {
    --premium-gold: #b3834d;
    --dark-bg: #121212;
    --card-bg: #1a1a1a;
    --border-color: #2a2a2a;
}

/* ================= GENEL BÖLÜM ================= */
.review-section {
    background-color: var(--dark-bg);
    padding: 80px 0;
    color: white;
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
}

.review-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ================= BAŞLIKLAR ================= */
.review-header {
    text-align: center;
    margin-bottom: 60px;
}

.review-subtitle {
    color: var(--premium-gold);
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 600;
}

.review-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
}

.gold-text {
    color: var(--premium-gold);
}

/* ================= YORUM KARTLARI (4'LÜ GRID) ================= */
.review-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.review-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s ease;
    overflow: hidden;
}

.review-card:hover {
    transform: translateY(-10px);
    border-color: var(--premium-gold);
    box-shadow: 0 15px 30px rgba(179, 131, 77, 0.15);
}

.quote-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 50px;
    color: var(--premium-gold);
    opacity: 0.1;
    z-index: 1;
    transition: 0.4s;
}

.review-card:hover .quote-icon {
    opacity: 0.3;
    transform: scale(1.1);
}

.review-bg-overlay {
    position: absolute;
    bottom: -10%; right: -10%;
    width: 150px; height: 150px;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.05;
    z-index: 0;
}

.review-content {
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
}

.review-stars {
    margin-bottom: 20px;
    font-size: 14px;
}

.active-star { color: var(--premium-gold); }
.passive-star { color: #444; }

.review-text {
    color: #ccc;
    font-size: 15px;
    line-height: 1.7;
    font-style: italic;
    margin: 0;
}

/* ================= MÜŞTERİ BİLGİSİ ================= */
.review-customer {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.customer-avatar {
    width: 50px; height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--premium-gold);
}

.customer-avatar img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.customer-name {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: 700;
}

.customer-tag {
    font-size: 12px;
    color: var(--premium-gold);
    font-weight: 600;
}

/* ================= İSTATİSTİKLER BARI ================= */
.stats-box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 60px;
}

.stat-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 40px 20px;
    border-right: 1px solid var(--border-color);
}

.stat-item:last-child { border-right: none; }

.stat-icon {
    font-size: 35px;
    color: var(--premium-gold);
}

.stat-value {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 5px;
}

.stat-text {
    font-size: 13px;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ================= YORUM YAP FORMU ================= */
.review-form-area {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 50px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.review-form-area h3 {
    font-size: 28px;
    margin: 0 0 10px 0;
}

.form-desc {
    color: #888;
    margin-bottom: 30px;
}

.review-alert {
    background: rgba(179, 131, 77, 0.1);
    color: var(--premium-gold);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid var(--premium-gold);
    margin-bottom: 25px;
    font-weight: 600;
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-group input, .input-group textarea {
    width: 100%;
    padding: 18px;
    background: var(--dark-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: white;
    font-family: inherit;
    font-size: 15px;
    transition: 0.3s;
    box-sizing: border-box;
}

.input-group input:focus, .input-group textarea:focus {
    outline: none;
    border-color: var(--premium-gold);
    box-shadow: 0 0 10px rgba(179, 131, 77, 0.2);
}

.btn-submit-review {
    background: var(--premium-gold);
    color: white;
    padding: 18px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit-review:hover {
    background: #c5965e;
    transform: translateY(-2px);
}

/* YILDIZ SEÇİM CSS TRİCK'İ (Sağdan Sola) */
.star-rating-box {
    margin-bottom: 10px;
}

.star-rating-box span {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
}

.rating-css {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
}

.rating-css input { display: none; }
.rating-css label {
    font-size: 35px;
    color: #444;
    cursor: pointer;
    transition: 0.2s;
    padding: 0 5px;
}

.rating-css input:checked ~ label,
.rating-css label:hover,
.rating-css label:hover ~ label {
    color: var(--premium-gold);
}

/* ================= ANİMASYON ================= */
.animate-review {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.animate-review.fade-in-up {
    opacity: 1;
    transform: translateY(0);
}

/* ================= MOBİL UYUMLULUK ================= */
@media (max-width: 1200px) {
    .review-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-box { grid-template-columns: repeat(2, 1fr); }
    .stat-item { border-bottom: 1px solid var(--border-color); }
    .stat-item:nth-child(2n) { border-right: none; }
    .stat-item:nth-last-child(-n+2) { border-bottom: none; }
}

@media (max-width: 768px) {
    .review-title { font-size: 32px; }
    .review-grid { grid-template-columns: 1fr; }
    .stats-box { grid-template-columns: 1fr; }
    .stat-item { border-right: none; justify-content: flex-start; padding: 25px 30px; }
    .review-form-area { padding: 30px 20px; }
}