/* --- ФОРМА --- */
.custom-form-card {
    background: #fdfdf8;
    border-radius: 20px;
    border: 1px solid #dad9ab;
}

.section-title {
    color: #4a3c2c;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 700;
}

.custom-label {
    color: #4a3c2c;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
}

/* Інпути з акцентом фірмового кольору при кліку */
.custom-input {
    border: 1px solid #dad9ab;
    border-radius: 10px;
}

.custom-input:focus {
    border-color: #758144;
    box-shadow: 0 0 0 0.25rem rgba(117, 129, 68, 0.25);
}

.custom-submit-btn {
    background: #758144;
    color: white;
    border-radius: 12px;
    padding: 12px;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.custom-submit-btn:hover {
    background: #5d6835;
    color: white;
    transform: translateY(-2px);
}

/* --- ЗІРОЧКИ РЕЙТИНГУ --- */
.rating-stars {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.rating-stars input { display: none; }

.rating-stars label {
    font-size: 30px;
    color: #dad9ab;
    cursor: pointer;
    transition: 0.2s;
    line-height: 1;
}

.rating-stars input:checked ~ label,
.rating-stars label:hover,
.rating-stars label:hover ~ label {
    color: #758144; /* Твій фірмовий колір */
}

/* --- ХМАРКА ВІДГУКУ --- */
.review-cloud {
    background: #fdfdf1;
    border: 1px solid #dad9ab;
    border-radius: 20px 20px 20px 5px; /* Асиметричні кути */
    padding: 25px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-cloud:hover {
    transform: translateY(-5px);
    box-shadow: 5px 10px 20px rgba(117, 129, 68, 0.2);
}

/* Маленький "хвостик" для хмарки */
.review-cloud::after {
    content: '';
    position: absolute;
    bottom: -14px;
    left: 20px;
    border-width: 15px 15px 0 0;
    border-style: solid;
    border-color: #fdfdf1 transparent;
}

.visitor-name { color: #4a3c2c; }
.stars { color: #758144; font-size: 1.2em; }
.visitor-message { font-style: italic; color: #5d5d5d; line-height: 1.6; }

/* --- ДЕКОР ФОНУ (Листя) --- */
.reviews-decor-wrapper {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.decor-item {
    position: fixed;
    opacity: 0.6;
    pointer-events: none;
}

.decor-left-top { top: 5%; left: 3%; width: 280px; margin-top: 70px; }
.decor-left-bottom { bottom: 5%; left: 3%; width: 220px; margin-bottom: 70px; }
.decor-right-center { top: 20%; right: 2%; width: 300px; }
.decor-right-bottom { bottom: 5%; right: 4%; width: 180px; margin-bottom: 30px; }

@media (max-width: 1400px) {
    .decor-item { width: 200px; }
}
@media (max-width: 1024px) {
    .reviews-decor-wrapper { display: none; }
}