/* ========================================
   Reviews Page - Customer Testimonials Design
   Color Scheme: Brown #8B5E3C + Beige #F5F0E8
   ======================================== */

/* Reset for reviews page */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    max-width: 1920px;
    min-width: 375px;
    margin: 0 auto;
    background: #FAFAF8;
}

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

/* ========================================
   Reviews Hero Section
   ======================================== */
.reviews-hero {
    position: relative;
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #8B5E3C 0%, #6B4E2E 100%);
    overflow: hidden;
}

.reviews-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.reviews-hero__shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.reviews-hero__shape--1 {
    width: 500px;
    height: 500px;
    top: -200px;
    right: -150px;
}

.reviews-hero__shape--2 {
    width: 400px;
    height: 400px;
    bottom: -150px;
    left: -100px;
}

/* Breadcrumb */
.reviews-hero__breadcrumb {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 32px;
}

.reviews-hero__breadcrumb-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.3s;
}

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

.reviews-hero__breadcrumb-link img {
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

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

.reviews-hero__breadcrumb-current {
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 600;
}

/* Hero Content */
.reviews-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.reviews-hero__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 24px;
}

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

.reviews-hero__title {
    font-size: 48px;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.reviews-hero__desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 40px;
}

/* Hero Stats */
.reviews-hero__stats {
    display: flex;
    justify-content: center;
    gap: 56px;
    padding-top: 36px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.reviews-hero__stat {
    text-align: center;
}

.reviews-hero__stat-value {
    display: block;
    font-size: 40px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.reviews-hero__stat-label {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* ========================================
   Reviews Main Content
   ======================================== */
.reviews-main {
    padding: 80px 0;
}

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

/* Review Card */
.review-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 2px 12px rgba(43, 31, 20, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(43, 31, 20, 0.12);
}

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

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

.review-card__avatar img {
    filter: brightness(0) invert(1);
}

.review-card__info {
    flex: 1;
}

.review-card__name {
    font-size: 18px;
    font-weight: 700;
    color: #2B1F14;
    margin-bottom: 6px;
}

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

.review-card__service {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(139, 94, 60, 0.08);
    color: #8B5E3C;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.review-card__service img {
    filter: brightness(0) saturate(100%) invert(36%) sepia(32%) saturate(800%) hue-rotate(356deg) brightness(92%) contrast(90%);
}

.review-card__text {
    font-size: 15px;
    color: #3A2F24;
    line-height: 1.7;
    margin-bottom: 20px;
}

.review-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid #F5F0E8;
}

.review-card__date {
    font-size: 13px;
    color: #8B5E3C;
    font-weight: 600;
}

/* ========================================
   Reviews Pagination
   ======================================== */
.reviews-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.reviews-pagination__btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #FFFFFF;
    color: #8B5E3C;
    border: 2px solid #F5F0E8;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: background 0.3s, border-color 0.3s, transform 0.2s;
}

.reviews-pagination__btn:hover {
    background: #8B5E3C;
    border-color: #8B5E3C;
    color: #FFFFFF;
    transform: scale(1.05);
}

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

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

.reviews-pagination__num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #FFFFFF;
    color: #6B4E2E;
    border: 2px solid #F5F0E8;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.2s;
}

.reviews-pagination__num:hover {
    background: #F5F0E8;
    border-color: #8B5E3C;
    transform: scale(1.1);
}

.reviews-pagination__num--active {
    background: #8B5E3C;
    color: #FFFFFF;
    border-color: #8B5E3C;
}

.reviews-pagination__ellipsis {
    color: #B8A28E;
    font-weight: 700;
    padding: 0 8px;
}

/* ========================================
   Review Form Section
   ======================================== */
.reviews-form {
    background: linear-gradient(135deg, #F5F0E8 0%, #FAF7F3 100%);
    padding: 80px 0;
}

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

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

.reviews-form__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(139, 94, 60, 0.1);
    color: #8B5E3C;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
}

.reviews-form__label img {
    filter: brightness(0) saturate(100%) invert(36%) sepia(32%) saturate(800%) hue-rotate(356deg) brightness(92%) contrast(90%);
}

.reviews-form__title {
    font-size: 36px;
    font-weight: 800;
    color: #2B1F14;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.reviews-form__desc {
    font-size: 16px;
    color: #5A4433;
    line-height: 1.6;
}

/* Form Styles */
#jqr_review_form {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(43, 31, 20, 0.08);
}

#jqr_review_form input[type="text"],
#jqr_review_form textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #F5F0E8;
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    color: #2B1F14;
    margin-bottom: 20px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

#jqr_review_form input[type="text"]:focus,
#jqr_review_form textarea:focus {
    outline: none;
    border-color: #8B5E3C;
    box-shadow: 0 0 0 3px rgba(139, 94, 60, 0.1);
}

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

#jqr_review_form button[type="submit"] {
    width: 100%;
    padding: 18px 32px;
    background: linear-gradient(135deg, #8B5E3C 0%, #6B4E2E 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.3s;
}

#jqr_review_form button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 94, 60, 0.3);
}

#jqr_review_form button[type="submit"]:active {
    transform: translateY(0);
}

/* Star Rating */
.jqr_star-rating {
    display: flex;
    gap: 8px;
}

.jqr_star-rating i {
    font-size: 28px;
    transition: transform 0.2s;
}

.jqr_star-rating i:hover {
    transform: scale(1.2);
}

/* Error Messages */
.jqr_error-message {
    color: #DC3545;
    font-size: 13px;
    margin-top: -12px;
    margin-bottom: 12px;
}

/* ========================================
   Reviews CTA Section
   ======================================== */
.reviews-cta {
    padding: 60px 0;
    background: #FFFFFF;
}

.reviews-cta__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    background: linear-gradient(135deg, #8B5E3C 0%, #6B4E2E 100%);
    padding: 48px 56px;
    border-radius: 24px;
}

.reviews-cta__text {
    flex: 1;
}

.reviews-cta__title {
    font-size: 32px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 12px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.reviews-cta__desc {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

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

.reviews-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    white-space: nowrap;
    transition: transform 0.2s, box-shadow 0.3s;
}

.reviews-cta__btn--primary {
    background: #FFFFFF;
    color: #8B5E3C;
}

.reviews-cta__btn--primary:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.reviews-cta__btn--primary img {
    filter: brightness(0) saturate(100%) invert(36%) sepia(32%) saturate(800%) hue-rotate(356deg) brightness(92%) contrast(90%);
}

.reviews-cta__btn--secondary {
    background: rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.reviews-cta__btn--secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

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

/* ========================================
   Responsive Design
   ======================================== */

/* Large Screens - 1200px */
@media (max-width: 1200px) {
    .fe-container {
        padding: 0 28px;
    }

    .reviews-hero {
        padding: 110px 0 55px;
    }

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

    .reviews-hero__stats {
        gap: 44px;
    }

    .reviews-grid {
        gap: 24px;
    }

    .reviews-cta__content {
        padding: 40px 48px;
    }

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

/* Tablets - 1024px */
@media (max-width: 1024px) {
    .fe-container {
        padding: 0 24px;
    }

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

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

    .reviews-hero__stats {
        gap: 36px;
    }

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

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

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

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

    #jqr_review_form {
        padding: 36px;
    }

    .reviews-cta__content {
        padding: 36px 40px;
    }
}

/* Tablets Portrait - 768px */
@media (max-width: 768px) {
    .reviews-hero {
        padding: 90px 0 45px;
    }

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

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

    .reviews-hero__stats {
        gap: 28px;
    }

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

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

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

    .reviews-cta__content {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
        padding: 32px;
    }

    .reviews-cta__actions {
        width: 100%;
        flex-direction: column;
    }

    .reviews-cta__btn {
        width: 100%;
        justify-content: center;
    }
}

/* Mobile - 480px */
@media (max-width: 480px) {
    .fe-container {
        padding: 0 16px;
    }

    .reviews-hero {
        padding: 85px 0 40px;
    }

    .reviews-hero__title {
        font-size: 28px;
        margin-bottom: 16px;
    }

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

    .reviews-hero__stats {
        flex-wrap: wrap;
        gap: 24px;
    }

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

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

    .reviews-main {
        padding: 48px 0;
    }

    .reviews-grid {
        margin-bottom: 48px;
    }

    .review-card {
        padding: 24px;
    }

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

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

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

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

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

    .reviews-form__header {
        margin-bottom: 36px;
    }

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

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

    #jqr_review_form {
        padding: 28px 24px;
    }

    #jqr_review_form input[type="text"],
    #jqr_review_form textarea {
        padding: 14px 18px;
        font-size: 14px;
    }

    #jqr_review_form button[type="submit"] {
        padding: 16px 28px;
        font-size: 15px;
    }

    .jqr_star-rating i {
        font-size: 24px;
    }

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

    .reviews-cta__content {
        padding: 28px 24px;
    }

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

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

    .reviews-cta__btn {
        padding: 14px 24px;
        font-size: 14px;
    }

    .reviews-pagination {
        gap: 12px;
    }

    .reviews-pagination__btn {
        padding: 10px 18px;
        font-size: 13px;
    }

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

/* Small Mobile - 375px */
@media (max-width: 375px) {
    .reviews-hero {
        padding: 80px 0 36px;
    }

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

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

    .reviews-hero__stats {
        gap: 20px;
    }

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

    .review-card {
        padding: 20px;
    }

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

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

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

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

    #jqr_review_form {
        padding: 24px 20px;
    }

    .reviews-cta__content {
        padding: 24px 20px;
    }

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

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