/* Container */
#reviews.container {
    max-width: 1100px;
    margin: 60px auto;
    padding: 20px;
    font-family: Arial, sans-serif;
}

/* Layout */
.review-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

/* Left side (reviews) */
.review-left {
    flex: 1 1 55%;
}

.section-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

/* Review cards */
.review-card {
    background: #f7f7f7;
    border-radius: 12px;
    padding: 16px 18px;
    margin-bottom: 15px;
    line-height: 1.5;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}

/* Right side (form) */
.review-right {
    flex: 1 1 40%;
    background: #ffffff;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.review-right h3 {
    margin-bottom: 10px;
    font-size: 1.4rem;
}

/* Form */
#whatsappReviewForm {
    display: flex;
    flex-direction: column;
}

#whatsappReviewForm input,
#whatsappReviewForm textarea {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 0.95rem;
    outline: none;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

#whatsappReviewForm input:focus,
#whatsappReviewForm textarea:focus {
    border-color: #25D366;
    box-shadow: 0 0 0 2px rgba(37, 211, 102, 0.15);
}

/* Button */
.submit-wa {
    margin-top: 12px;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: #25D366;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.1s ease;
}

.submit-wa:hover {
    background: #1ebe5d;
    transform: translateY(-1px);
}

/* Feedback text */
#formFeedback {
    min-height: 18px;
}

/* Divider */
.review-right hr {
    margin: 18px 0;
    border: none;
    border-top: 1px solid #eee;
}

/* Call link */
.review-right a {
    color: #0f5c2f;
    font-weight: 600;
    text-decoration: none;
}

.review-right a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .review-stats {
        flex-direction: column;
    }

    .review-left,
    .review-right {
        flex: 1 1 100%;
    }

    #reviews.container {
        padding: 10px;
    }
}