/*--------------------------------------------------------------
# Testimonial One
--------------------------------------------------------------*/
/* .testimonial-one__carousel removed due to being unused */

.testimonial-one__single {
    position: relative;
    display: block;
    border: 1px solid var(--gorent-bdr-color);
    border-radius: var(--gorent-bdr-radius);
    padding: 25px 30px 25px;
    z-index: 1;
}

.testimonial-one__client-info {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.testimonial-one__content {
    position: relative;
    display: block;
    flex: 1;
}

.testimonial-one__client-name {
    font-size: 20px;
    font-weight: 700;
    line-height: 20px;
    margin-bottom: 5px;
}

.testimonial-one__client-name a {
    color: var(--gorent-black);
}

.testimonial-one__client-name a:hover {
    color: var(--gorent-base);
}

.testimonial-one__rating {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 10px;
}

.testimonial-one__rating span {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 15px;
    color: var(--gorent-base);
}

.testimonial-one__quote {
    position: absolute;
    top: -1px;
    right: -1px;
    height: 60px;
    width: 60px;
    background-color: var(--gorent-base);
    border-radius: 50%;
    border-top-right-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.testimonial-one__single:hover .testimonial-one__quote {
    background-color: var(--gorent-black);
}

.testimonial-one__quote span {
    font-size: 22px;
    color: var(--gorent-black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.testimonial-one__single:hover .testimonial-one__quote span {
    color: var(--gorent-white);
}

/*--------------------------------------------------------------
# Testimonial Two
--------------------------------------------------------------*/
.testimonial-two .section-title {
    margin-bottom: 90px;
}

.testimonial-two__client-name a {
    color: var(--gorent-black);
}

.testimonial-two__client-name a:hover {
    color: var(--gorent-base);
}

/*--------------------------------------------------------------
# Testimonial Three
--------------------------------------------------------------*/
.testimonial-three__client-name a {
    color: var(--gorent-black);
}

.testimonial-three__client-name a:hover {
    color: var(--gorent-base);
}

/*--------------------------------------------------------------
# Testimonials Page
--------------------------------------------------------------*/
.testimonials-page {
    position: relative;
    display: block;
    padding: 120px 0 90px;
    z-index: 1;
}

.testimonials-page .testimonial-one__single {
    margin-bottom: 30px;
}

/*--------------------------------------------------------------
# Review Form – refreshed look
--------------------------------------------------------------*/
.testimonials-page .card.shadow-sm {
    border: 1px solid rgba(16, 24, 40, 0.06);
    border-radius: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #f7f9fc 100%);
    box-shadow: 0 8px 30px rgba(16, 24, 40, 0.08);
}

.testimonials-page .card.shadow-sm .card-body {
    padding: 28px;
}

@media (min-width: 576px) {
    .testimonials-page .card.shadow-sm .card-body { padding: 32px; }
}

.testimonials-page #recenzie-form .form-label {
    font-weight: 600;
    color: var(--gorent-black);
    margin-bottom: 6px;
}

.testimonials-page #recenzie-form .form-control {
    border: 1px solid #e6e8eb;
    border-radius: 12px;
    background-color: #fff;
    color: var(--gorent-black);
    padding: 10px 14px;
    transition: border-color 200ms ease, box-shadow 200ms ease, background-color 200ms ease;
}

.testimonials-page #recenzie-form .form-control::placeholder {
    color: #9aa3ab;
}

.testimonials-page #recenzie-form .form-control:focus {
    border-color: var(--gorent-base);
    box-shadow: 0 0 0 4px rgba(255, 94, 20, 0.12);
    outline: 0;
}

.testimonials-page #recenzie-form textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* Submit button polish */
.testimonials-page #recenzie-form .thm-btn {
    border-radius: 30px;
    padding: 12px 22px;
    box-shadow: 0 12px 24px rgba(255, 94, 20, 0.18);
    transition: transform 120ms ease, box-shadow 200ms ease;
}

.testimonials-page #recenzie-form .thm-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(255, 94, 20, 0.24);
}

/* Alerts */
.testimonials-page #recenzie-alert {
    border-radius: 10px;
    border-left: 4px solid var(--gorent-base);
    background: #fff;
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Review Stars – modern circles
--------------------------------------------------------------*/
.testimonials-page .review-stars {
    display: flex;
    gap: 8px;
    flex-direction: row-reverse;  /* keeps left-fill behavior */
    justify-content: flex-end;     /* aligns group to the left side visually */
}

.testimonials-page .review-stars .btn {
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px grey;
    border-radius: 50%;
    background-color: #fff;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: border-color 200ms ease, background-color 200ms ease, transform 120ms ease, box-shadow 200ms ease;
    box-shadow: 0 4px 10px rgba(16, 24, 40, 0.06);
    cursor: pointer;
}

.testimonials-page .review-stars .star {
    color: #cfd6dc; /* default muted star */
    font-size: 1.15rem;
    line-height: 1;
    transition: color 150ms ease, transform 120ms ease;
}

/* Hover preview: hovered star + all to its visual left */
.testimonials-page .review-stars label.btn:hover,
.testimonials-page .review-stars label.btn:hover ~ label {
    background-color: #fff5ef;
    box-shadow: 0 6px 14px rgba(255, 94, 20, 0.12);
}

.testimonials-page .review-stars label.btn:hover .star,
.testimonials-page .review-stars label.btn:hover ~ label .star {
    color: #FFB703; /* warm gold */
    transform: scale(1.05);
}

/* Checked state: checked star + all to its visual left */
.testimonials-page .review-stars .btn-check:checked + label,
.testimonials-page .review-stars .btn-check:checked + label ~ label {
    background-color: #ffe8dc;
    box-shadow: 0 6px 16px rgba(255, 94, 20, 0.18);
}

.testimonials-page .review-stars .btn-check:checked + label .star,
.testimonials-page .review-stars .btn-check:checked + label ~ label .star {
    color: #FF8A4C; /* accent fill */
    transform: none;
}

/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/