.reviews-page {
    background-color: #f4f4f4;
    padding: 120px 5% 60px;
    min-height: 100vh;
}
.container { 
    max-width: 1100px; 
    margin: 0 auto; 
}
.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}
.reviews-header h1 { 
    font-size: 2.5rem; 
    font-weight: 800; 
    margin: 0; 
}
.reviews-header p { 
    color: #666; 
    margin-top: 5px; 
}
.google-score { 
    text-align: right; 
}
.google-score .stars { 
    color: #fbbc05; 
    font-size: 1.4rem; 
    margin-bottom: 5px; 
}
.google-score strong { 
    font-size: 0.9rem; 
    color: #333; 
}
.reviews-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
    align-items: start;
}
.card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    margin-bottom: 20px;
    border: 1px solid #008ac9;
}
.reviews-feed { 
    width: 100%; 
}
.review-top { 
    display: flex; 
    align-items: center; 
    gap: 15px; 
    margin-bottom: 15px; 
    position: relative; 
}
.review-top img { 
    width: 50px; 
    height: 50px; 
    border-radius: 50%; 
    object-fit: cover; 
}
.review-top h4 { 
    margin: 0; 
    font-size: 1rem; 
    word-break: break-all; 
}
.review-top .date { 
    font-size: 0.75rem; 
    color: #999; 
}
.google-icon { 
    position: absolute; 
    right: 0; 
    top: 0; 
    color: #4285F4; 
    font-size: 1.2rem; 
}
.stars-small { 
    color: #fbbc05; 
    font-size: 0.8rem; 
    margin-bottom: 10px; 
}
.review-text {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
    font-style: italic;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-height: 4.5em; 
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}
.review-text.expanded {
    max-height: 1000px; 
}
.read-more-btn {
    background: none;
    border: none;
    color: #008ac9;
    font-weight: 700;
    cursor: pointer;
    padding: 0;
    margin-top: 10px;
    font-size: 0.8rem;
    display: none; 
    text-transform: uppercase;
}
.read-more-btn i { 
    font-size: 0.7rem; 
    margin-left: 5px; 
}
.form-card h3 { 
    font-size: 0.85rem; 
    font-weight: 800; 
    margin-bottom: 15px; 
    text-transform: uppercase; 
}
.separator { 
    border: none; 
    border-top: 1px solid #eee; 
    margin-bottom: 25px; 
}
.input-group { 
    margin-bottom: 20px; 
    display: flex; 
    flex-direction: column; 
}
.input-group label { 
    font-size: 0.7rem; 
    font-weight: 800; 
    margin-bottom: 8px; 
    color: #333; 
}
.input-group input, .input-group textarea {
    padding: 12px; 
    border: 1px solid #e0e0e0; 
    background: #fafafa; 
    border-radius: 4px; 
    font-size: 0.9rem;
    width: 100%; 
    box-sizing: border-box;
}
.rating-input { 
    display: flex; 
    flex-direction: row-reverse; 
    justify-content: flex-end; 
    gap: 5px; 
}
.rating-input input { 
    display: none; 
}
.rating-input label { 
    font-size: 1.5rem; 
    color: #ddd; 
    cursor: pointer; 
    transition: 0.2s; 
    margin: 0; 
}
.rating-input input:checked ~ label,
.rating-input label:hover,
.rating-input label:hover ~ label { 
    color: #fbbc05; 
}
.btn-send {
    background-color: #008ac9; 
    color: white; 
    width: 100%; 
    padding: 15px; 
    border: none;
    border-radius: 5px; 
    font-weight: 700; 
    cursor: pointer; 
    text-transform: uppercase; 
    transition: 0.3s;
}
@media (max-width: 992px) {
    .reviews-grid { 
        grid-template-columns: 1fr; 
    }
    .reviews-header { 
        flex-direction: column; 
        text-align: center; 
        gap: 20px; 
    }
    .google-score { 
        text-align: center; 
    }
}