/* Reviews Page Styles - UmzugProfis24 */

/* Base Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin: 0;
    padding: 0;
    background: #f9fafb;
}

/* Header */
header {
    background: white;
    border-bottom: 1px solid #e5e7eb;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

header .logo a::before {
    content: "←";
    font-size: 1.2rem;
    color: #00a887;
}

header .logo a:hover {
    color: #00a887;
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

header nav a {
    color: #00a887;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 8px 16px;
}

header nav a:hover {
    color: #008c6f;
    text-decoration: underline;
}

/* Main Container */
main {
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.article-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px 40px;
}

.article {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}

/* Title */
.titleH1 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1e3a52;
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}


/* Review Cards */
.review-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
    background: #ffffff;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 168, 135, 0.12);
    border-color: #00a887;
}

.review-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.review__wrp {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.review-content h3 {
    margin: 0;
    font-size: 1.3rem;
    color: #1e3a52;
    font-weight: 600;
}

.review-service {
    display: inline-block;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    color: #00a887;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    border: 1px solid #bbf7d0;
}

.review-comment {
    margin: 0;
    line-height: 1.7;
    color: #374151;
    font-size: 1.05rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-left: 3px solid #00a887;
    border-radius: 8px;
}

.review-meta {
    display: flex;
    justify-content: flex-end;
    margin-top: 1rem;
}

.review-rating {
    font-size: 1.3rem;
    color: #fbbf24;
    letter-spacing: 2px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.pagination .btn,
.pagination .current {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    text-decoration: none;
    background: white;
    color: #64748b;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pagination .btn:hover {
    background: #00a887;
    border-color: #00a887;
    color: white;
}

.pagination .current {
    background: #00a887;
    border-color: #00a887;
    color: white;
    pointer-events: none;
}

.pagination .ellipsis {
    padding: 0 8px;
    color: #94a3b8;
}

/* Review Form Section */
.review-form-section {
    max-width: 800px;
    margin: 4rem auto;
    padding: 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
    position: relative;
}

.review-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00a887 0%, #00c896 50%, #00a887 100%);
    border-radius: 20px 20px 0 0;
}

.review-form-section h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    color: #1e3a52;
    font-size: 2rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

.review-form-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #00a887;
    border-radius: 2px;
}

/* Form Styles */
#jqr_review_form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

#jqr_review_form input,
#jqr_review_form textarea {
    padding: 1rem 1.2rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
}

#jqr_review_form input:focus,
#jqr_review_form textarea:focus {
    outline: none;
    border-color: #00a887;
    box-shadow: 0 0 0 3px rgba(0, 168, 135, 0.1);
    background: #fafffe;
}

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

/* Star Rating */
.jqr_star-rating {
    display: flex;
    gap: 0.8rem;
    font-size: 2rem !important;
    margin: 0.5rem 0;
    justify-content: center;
}

.jqr_star-rating i {
    cursor: pointer;
    transition: all 0.2s ease;
    color: #fbbf24 !important;
}

.jqr_star-rating i:hover {
    transform: scale(1.2);
    filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.5));
}

.jqr_star-rating i.fas {
    animation: starPulse 0.3s ease;
}

@keyframes starPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1.1); }
}

/* Submit Button */
#jqr_submit {
    align-self: center;
    background: linear-gradient(135deg, #00a887 0%, #00c896 100%);
    color: white;
    border: none;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 168, 135, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 1rem;
}

#jqr_submit:hover {
    background: linear-gradient(135deg, #008c6f 0%, #00a887 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 168, 135, 0.4);
}

#jqr_submit:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 168, 135, 0.3);
}

#jqr_submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Error Messages */
.jqr_error-message {
    color: #ef4444 !important;
    font-size: 0.85rem;
    margin-top: 0.3rem;
    font-weight: 500;
    animation: shake 0.3s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .article-container {
        padding: 40px 20px;
    }

    .article {
        padding: 40px;
    }

    .review-form-section {
        margin: 3rem 20px;
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    header .container {
        padding: 0 15px;
    }

    header .logo a {
        font-size: 1rem;
    }

    header nav a {
        font-size: 0.95rem;
        padding: 6px 12px;
    }

    .article-container {
        padding: 30px 15px;
    }

    .article {
        padding: 30px;
        border-radius: 15px;
    }

    .titleH1 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .review-card {
        padding: 1.5rem;
    }

    .review-content h3 {
        font-size: 1.1rem;
    }

    .review-comment {
        font-size: 1rem;
        padding: 1.2rem;
    }

    .review-rating {
        font-size: 1.1rem;
    }

    .review-form-section {
        margin: 2.5rem 15px;
        padding: 2rem;
        border-radius: 15px;
    }

    .review-form-section h2 {
        font-size: 1.6rem;
    }

    #jqr_review_form input,
    #jqr_review_form textarea {
        padding: 0.85rem 1rem;
    }

    #jqr_submit {
        width: 100%;
        padding: 1rem 2rem;
    }

    .jqr_star-rating {
        font-size: 1.8rem !important;
    }

    .pagination .btn,
    .pagination .current {
        min-width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    header {
        padding: 15px 0;
    }

    .titleH1{
    font-size: 2.1rem !important;
    }

    header .logo a {
        font-size: 0.95rem;
    }

    header .logo a::before {
        font-size: 1rem;
    }

    header nav a {
        font-size: 0.9rem;
        padding: 5px 10px;
    }

    .article-container {
        padding: 20px 10px;
    }

    .article {
        padding: 20px;
        border-radius: 12px;
    }

    .titleH1 {
        font-size: 1.6rem;
    }

    .review-card {
        padding: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .review__wrp {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .review-content h3 {
        font-size: 1rem;
    }

    .review-service {
        font-size: 0.85rem;
        padding: 0.3rem 0.8rem;
    }

    .review-comment {
        font-size: 0.95rem;
        padding: 1rem;
    }

    .review-rating {
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .review-form-section {
        margin: 2rem 10px;
        padding: 1.5rem;
        border-radius: 12px;
    }

    .review-form-section h2 {
        font-size: 1.4rem;
        margin-bottom: 2rem;
    }

    #jqr_review_form {
        gap: 1.2rem;
    }

    #jqr_review_form input,
    #jqr_review_form textarea {
        padding: 0.75rem 0.9rem;
        font-size: 0.95rem;
        border-radius: 10px;
    }

    .jqr_star-rating {
        font-size: 1.6rem !important;
        gap: 0.5rem;
    }

    #jqr_submit {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 375px) {
    header {
        padding: 12px 0;
    }

    header .container {
        padding: 0 10px;
    }

    header .logo a {
        font-size: 0.85rem;
        gap: 5px;
    }

    header .logo a::before {
        font-size: 0.95rem;
    }

    header nav a {
        font-size: 0.85rem;
        padding: 4px 8px;
    }

    .article-container {
        padding: 15px 8px;
    }

    .article {
        padding: 18px 15px;
    }

    .titleH1 {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }

    .titleH1::after {
        width: 60px;
        height: 3px;
    }

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

    .review-content h3 {
        font-size: 0.95rem;
    }

    .review-service {
        font-size: 0.8rem;
        padding: 0.25rem 0.6rem;
    }

    .review-comment {
        font-size: 0.9rem;
        padding: 0.8rem;
        line-height: 1.6;
    }

    .review-rating {
        font-size: 0.95rem;
    }

    .pagination {
        gap: 6px;
        margin: 30px 0;
    }

    .pagination .btn,
    .pagination .current {
        min-width: 32px;
        height: 32px;
        font-size: 0.85rem;
        padding: 0 8px;
    }

    .review-form-section {
        margin: 1.5rem 8px;
        padding: 1.2rem;
    }

    .review-form-section h2 {
        font-size: 1.2rem;
    }

    #jqr_review_form {
        gap: 1rem;
    }

    #jqr_review_form input,
    #jqr_review_form textarea {
        padding: 0.65rem 0.8rem;
        font-size: 0.9rem;
        border-radius: 8px;
    }

    .jqr_star-rating {
        font-size: 1.4rem !important;
        gap: 0.3rem;
    }

    #jqr_submit {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
        letter-spacing: 0.5px;
    }
}
.reviewLi{
    margin: 0 !important;
}