/* ========== MEMNUNIYET HERO STATS ========== */
.memn-stats {
    padding: 60px 40px;
    background: #fff;
    text-align: center;
}

.memn-stats-container {
    max-width: 900px;
    margin: 0 auto;
}

.memn-stats-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 400;
    color: #222;
    margin-bottom: 10px;
}

.memn-stats-text {
    font-size: 15px;
    color: #666;
    margin-bottom: 40px;
}

.memn-stats-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.memn-stat {
    text-align: center;
}

.memn-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: #c9a84c;
}

.memn-stat-label {
    font-size: 13px;
    color: #999;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* ========== REVIEWS SECTION ========== */
.memn-reviews {
    padding: 80px 40px;
    background: #fff;
}

.memn-reviews-container {
    max-width: 1200px;
    margin: 0 auto;
}

.memn-reviews-header {
    text-align: center;
    margin-bottom: 50px;
}

.memn-reviews-subtitle {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #c9a84c;
    margin-bottom: 12px;
}

.memn-reviews-title {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    font-weight: 400;
    color: #222;
}

/* Filter Tabs */
.memn-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.memn-filter-btn {
    padding: 10px 24px;
    border: 1px solid #ddd;
    background: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.memn-filter-btn.active,
.memn-filter-btn:hover {
    border-color: #c9a84c;
    color: #c9a84c;
    background: #f9f5ec;
}

/* Reviews Grid */
.memn-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Review Card */
.memn-card {
    border: 1px solid #eee;
    padding: 36px 30px;
    transition: all 0.3s ease;
    position: relative;
}

.memn-card.hidden {
    display: none;
}

.memn-card:hover {
    border-color: #c9a84c;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.memn-card-stars {
    margin-bottom: 16px;
}

.memn-card-stars i {
    color: #c9a84c;
    font-size: 14px;
    margin-right: 2px;
}

.memn-card-text {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    font-style: italic;
    margin-bottom: 24px;
    min-height: 80px;
}

.memn-card-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.memn-card-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #c9a84c;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.memn-card-info h4 {
    font-size: 15px;
    font-weight: 700;
    color: #222;
    margin-bottom: 2px;
}

.memn-card-info span {
    font-size: 12px;
    color: #c9a84c;
    font-weight: 500;
}

.memn-card-quote {
    position: absolute;
    top: 20px;
    right: 24px;
}

.memn-card-quote i {
    font-size: 50px;
    color: rgba(201, 168, 76, 0.08);
}

/* ========== GOOGLE REVIEWS CTA ========== */
.memn-google {
    padding: 60px 40px;
    background: #f9f9f9;
    text-align: center;
}

.memn-google-container {
    max-width: 700px;
    margin: 0 auto;
}

.memn-google-icon {
    font-size: 48px;
    color: #c9a84c;
    margin-bottom: 20px;
}

.memn-google-title {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 400;
    color: #222;
    margin-bottom: 12px;
}

.memn-google-text {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 28px;
}

.memn-google-btn {
    display: inline-block;
    padding: 14px 40px;
    background: #c9a84c;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.memn-google-btn:hover {
    background: #b8953e;
    transform: translateY(-2px);
}
