/* =====================================================
   REVIEWS PAGE STYLES - BodenProfis Wien
   Teal color scheme: #1a3a3a, #0d4f4f, #1a5f5f
   ===================================================== */

/* Container */
.fe-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =====================================================
   REVIEWS HERO SECTION
   ===================================================== */

.reviews-hero {
    position: relative;
    padding: 140px 0 70px;
    background: linear-gradient(135deg, #1a3a3a 0%, #0d4f4f 50%, #1a5f5f 100%);
    overflow: hidden;
}

.reviews-hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.reviews-hero__shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    background: #fff;
}

.reviews-hero__shape--1 {
    width: 450px;
    height: 450px;
    top: -180px;
    right: -120px;
}

.reviews-hero__shape--2 {
    width: 350px;
    height: 350px;
    bottom: -120px;
    left: -100px;
}

/* Breadcrumb */
.reviews-hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.reviews-hero__breadcrumb-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.reviews-hero__breadcrumb-link:hover {
    color: #fff;
}

.reviews-hero__breadcrumb-sep {
    width: 10px;
    height: 10px;
    opacity: 0.4;
    filter: brightness(0) invert(1);
}

.reviews-hero__breadcrumb-current {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

/* Hero Content */
.reviews-hero__content {
    max-width: 700px;
}

.reviews-hero__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    color: #fff;
    margin-bottom: 20px;
}

.reviews-hero__label img {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    filter: invert(50%) sepia(80%) saturate(500%) hue-rotate(15deg);
}

.reviews-hero__title {
    font-size: 44px;
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin: 0 0 20px;
}

.reviews-hero__desc {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 32px;
}

/* Hero Stats */
.reviews-hero__stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.reviews-hero__stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.reviews-hero__stat-value {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
}

.reviews-hero__stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* =====================================================
   REVIEWS MAIN
   ===================================================== */

.reviews-main {
    background: #f8f9fa;
    padding: 60px 0 80px;
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

/* Review Card */
.review-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.review-card__header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.review-card__avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #fff8e1 0%, #fff3c4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.review-card__avatar img {
    width: 24px;
    height: 24px;
    filter: invert(50%) sepia(80%) saturate(500%) hue-rotate(15deg);
}

.review-card__info {
    flex: 1;
}

.review-card__name {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0 0 4px;
}

.review-card__rating {
    font-size: 14px;
    color: #f5a623;
    letter-spacing: 2px;
}

.review-card__service {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: linear-gradient(135deg, #e8f5f5 0%, #d4eded 100%);
    border-radius: 8px;
    font-size: 13px;
    color: #0d4f4f;
    margin-bottom: 16px;
}

.review-card__service img {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    filter: invert(25%) sepia(50%) saturate(500%) hue-rotate(140deg);
}

.review-card__text {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    margin: 0 0 16px;
}

.review-card__footer {
    border-top: 1px solid #eee;
    padding-top: 14px;
}

.review-card__date {
    font-size: 13px;
    color: #888;
}

/* =====================================================
   REVIEWS PAGINATION
   ===================================================== */

.reviews-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.reviews-pagination__btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    transition: all 0.2s;
}

.reviews-pagination__btn:hover {
    background: #0d4f4f;
    border-color: #0d4f4f;
    color: #fff;
}

.reviews-pagination__btn img {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.reviews-pagination__btn:hover img {
    filter: brightness(0) invert(1);
}

.reviews-pagination__numbers {
    display: flex;
    align-items: center;
    gap: 6px;
}

.reviews-pagination__num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    transition: all 0.2s;
}

.reviews-pagination__num:hover {
    background: #f5f5f5;
    border-color: #0d4f4f;
    color: #0d4f4f;
}

.reviews-pagination__num--active {
    background: linear-gradient(135deg, #0d4f4f 0%, #1a5f5f 100%);
    border-color: #0d4f4f;
    color: #fff;
}

.reviews-pagination__ellipsis {
    padding: 0 8px;
    color: #888;
}

/* =====================================================
   REVIEWS FORM SECTION
   ===================================================== */

.reviews-form {
    background: #fff;
    padding: 80px 0;
}

.reviews-form__wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.reviews-form__header {
    text-align: center;
    margin-bottom: 40px;
}

.reviews-form__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #e8f5f5 0%, #d4eded 100%);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #0d4f4f;
    margin-bottom: 16px;
}

.reviews-form__label img {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    filter: invert(25%) sepia(50%) saturate(500%) hue-rotate(140deg);
}

.reviews-form__title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 12px;
}

.reviews-form__desc {
    font-size: 16px;
    color: #666;
    margin: 0;
}

/* Form Styles */
#jqr_review_form {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 32px;
}

#jqr_review_form input,
#jqr_review_form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
    margin-bottom: 16px;
    box-sizing: border-box;
}

#jqr_review_form input:focus,
#jqr_review_form textarea:focus {
    outline: none;
    border-color: #0d4f4f;
    box-shadow: 0 0 0 3px rgba(13, 79, 79, 0.1);
}

#jqr_review_form textarea {
    resize: vertical;
    min-height: 120px;
}

.jqr_star-rating {
    display: flex;
    gap: 8px;
}

.jqr_star-rating i {
    color: #ddd;
    transition: color 0.2s;
}

.jqr_star-rating i.fas,
.jqr_star-rating i:hover {
    color: #f5a623;
}

.jqr_error-message {
    color: #e53e3e;
    font-size: 13px;
    margin-top: -12px;
    margin-bottom: 16px;
}

#jqr_submit {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #0d4f4f 0%, #1a5f5f 100%);
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

#jqr_submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 79, 79, 0.3);
}

/* =====================================================
   REVIEWS CTA SECTION
   ===================================================== */

.reviews-cta {
    background: linear-gradient(135deg, #1a3a3a 0%, #0d4f4f 100%);
    padding: 60px 0;
}

.reviews-cta__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.reviews-cta__text {
    flex: 1;
    min-width: 280px;
}

.reviews-cta__title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
}

.reviews-cta__desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.reviews-cta__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.reviews-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.reviews-cta__btn--primary {
    background: #fff;
    color: #0d4f4f;
}

.reviews-cta__btn--primary img {
    width: 18px;
    height: 18px;
    filter: invert(25%) sepia(50%) saturate(500%) hue-rotate(140deg);
}

.reviews-cta__btn--secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.reviews-cta__btn--secondary img {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
}

.reviews-cta__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* =====================================================
   RESPONSIVE - 1200px
   ===================================================== */

@media (max-width: 1200px) {
    .reviews-hero {
        padding: 130px 0 60px;
    }

    .reviews-hero__title {
        font-size: 38px;
    }

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =====================================================
   RESPONSIVE - 1024px
   ===================================================== */

@media (max-width: 1024px) {
    .reviews-hero__stats {
        gap: 30px;
    }

    .reviews-cta__content {
        flex-direction: column;
        text-align: center;
    }

    .reviews-cta__actions {
        justify-content: center;
    }
}

/* =====================================================
   RESPONSIVE - 768px
   ===================================================== */

@media (max-width: 768px) {
    .reviews-hero {
        padding: 120px 0 50px;
    }

    .reviews-hero__title {
        font-size: 32px;
    }

    .reviews-hero__desc {
        font-size: 15px;
    }

    .reviews-hero__stats {
        gap: 24px;
    }

    .reviews-hero__stat-value {
        font-size: 26px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .reviews-main {
        padding: 50px 0 60px;
    }

    .reviews-form {
        padding: 60px 0;
    }

    .reviews-form__title {
        font-size: 26px;
    }

    #jqr_review_form {
        padding: 24px;
    }

    .reviews-cta {
        padding: 50px 0;
    }

    .reviews-cta__title {
        font-size: 24px;
    }
}

/* =====================================================
   RESPONSIVE - 480px
   ===================================================== */

@media (max-width: 480px) {
    .reviews-hero {
        padding: 110px 0 40px;
    }

    .reviews-hero__breadcrumb {
        margin-bottom: 24px;
    }

    .reviews-hero__label {
        font-size: 13px;
        padding: 6px 12px;
    }

    .reviews-hero__title {
        font-size: 26px;
    }

    .reviews-hero__desc {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .reviews-hero__stats {
        gap: 20px;
    }

    .reviews-hero__stat-value {
        font-size: 22px;
    }

    .reviews-hero__stat-label {
        font-size: 13px;
    }

    .review-card {
        padding: 22px;
    }

    .review-card__avatar {
        width: 42px;
        height: 42px;
    }

    .review-card__name {
        font-size: 15px;
    }

    .review-card__text {
        font-size: 14px;
    }

    .reviews-pagination__btn {
        padding: 8px 16px;
        font-size: 13px;
    }

    .reviews-pagination__num {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }

    .reviews-form__title {
        font-size: 22px;
    }

    .reviews-form__desc {
        font-size: 14px;
    }

    #jqr_review_form {
        padding: 20px;
    }

    #jqr_review_form input,
    #jqr_review_form textarea {
        padding: 12px 14px;
        font-size: 14px;
    }

    #jqr_submit {
        padding: 14px 20px;
        font-size: 15px;
    }

    .reviews-cta__title {
        font-size: 22px;
    }

    .reviews-cta__desc {
        font-size: 14px;
    }

    .reviews-cta__btn {
        padding: 12px 20px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }
}

/* =====================================================
   RESPONSIVE - 375px
   ===================================================== */

@media (max-width: 375px) {
    .fe-container {
        padding: 0 16px;
    }

    .reviews-hero {
        padding: 100px 0 35px;
    }

    .reviews-hero__title {
        font-size: 22px;
    }

    .reviews-hero__stats {
        gap: 10px;
    }

    .reviews-hero__stat {
        flex-direction: row;
        align-items: center;
        gap: 10px;
    }

    .reviews-hero__stat-value {
        font-size: 20px;
    }

    .review-card {
        padding: 18px;
        border-radius: 12px;
    }

    .reviews-main {
        padding: 40px 0 50px;
    }

    .reviews-form {
        padding: 50px 0;
    }

    .reviews-form__wrapper {
        padding: 0;
    }

    .reviews-form__title {
        font-size: 20px;
    }

    #jqr_review_form {
        padding: 16px;
        border-radius: 12px;
    }

    .reviews-cta {
        padding: 40px 0;
    }

    .reviews-cta__title {
        font-size: 20px;
    }
}
