/* Відгуки - Стилі для L'ete Travel */
.reviews-section { 
    padding: 120px 0 120px 0;
    background: #fff; 
    position: relative;
}

.reviews-section:before {
    content:'';
    position: absolute;
    display: block;
    top: 0;
    height: 100%;
    z-index: 1;
    width: 7px;
    left: 42px;
    background-repeat: repeat-y;
    background-image: url(../images/bg-dec.png);
    opacity: 0.5;
}

.reviews-container { 
    max-width: 1224px; 
    width: 92%; 
    margin: 0 auto; 
    padding: 0 15px;
    position: relative;
    z-index: 2;
}

.reviews-title { 
    font-size: 40px;
    line-height: 64px;
    text-transform: uppercase;
    font-weight: 100;
    color: #000;
    text-align: left;
    margin-bottom: 50px;
    font-family: 'Roboto', sans-serif;
    position: relative;
    padding-bottom: 50px;
}

.reviews-title:before {
    content:'';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 8px;
    background: #000;
}

/* Сітка відгуків */
.reviews-grid { 
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

@media (max-width: 768px) { 
    .reviews-grid { 
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }
}

.reviews-card { 
    background: #f9f9f9;
    border: 1px solid #ddd;
    padding: 40px;
    position: relative;
    transition: all 0.3s ease;
}

.reviews-card:before {
    content:'';
    position: absolute;
    top: -10px;
    left: -10px;
    width: 100%;
    height: 100%;
    border: 1px solid #e3e3e3;
    z-index: -1;
    transition: all 0.3s ease;
}

.reviews-card:hover {
    transform: translateY(-5px);
    border-color: #000;
    background: #fff;
}

.reviews-card:hover:before {
    top: -15px;
    left: -15px;
}

.reviews-card-header { 
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.reviews-card-avatar { 
    width: 50px;
    height: 50px;
    border: 2px solid #000;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin-right: 20px;
    flex-shrink: 0;
    background: #fff;
    font-family: 'Roboto', sans-serif;
}

.reviews-card-info { 
    flex: 1;
}

.reviews-card-name { 
    font-size: 14px;
    font-weight: 700;
    color: #000;
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Roboto', sans-serif;
}

.reviews-card-date { 
    font-size: 10px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Roboto', sans-serif;
}

.reviews-card-stars { 
    margin-bottom: 20px;
}

.reviews-card-stars i { 
    font-size: 14px;
    color: #ddd;
    margin-right: 4px;
}

.reviews-card-stars i.active { 
    color: #000;
}

.reviews-card-text { 
    font-size: 12px;
    line-height: 24px;
    color: #555;
    margin: 0;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}

/* Статистика - компактний елегантний блок */
.reviews-stats { 
    text-align: center;
    margin: 0 auto;
    padding: 25px 35px;
    max-width: 240px;
    background: #fff;
    border: 1px solid #000;
}

.reviews-stats-number { 
    font-size: 36px;
    font-weight: 300;
    color: #000;
    display: block;
    margin-bottom: 10px;
    font-family: 'Roboto', sans-serif;
    line-height: 1;
}

.reviews-stats-stars { 
    margin-bottom: 10px;
}

.reviews-stats-stars i { 
    font-size: 14px;
    color: #ddd;
    margin: 0 2px;
}

.reviews-stats-stars i.active { 
    color: #000;
}

.reviews-stats-count { 
    font-size: 9px;
    color: #666;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}