/* Reviews section styles */
.reviews-section {
    background-image: url('../img/reviews/bg/siblings.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 60px 20px;
    border-top: 3px solid #ffff00;
    border-bottom: 3px solid #ffff00;
    position: relative;
    z-index: 1;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.reviews-main-heading {
    text-align: center;
    font-size: 3em;
    color: #ffffff;
    margin: 0 0 50px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 15px rgba(255, 255, 255, 0.3);
    font-weight: bold;
}

.reviews-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.reviews-column h3 {
    font-size: 2.2em;
    margin-bottom: 30px;
    color: #ffffff;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 15px rgba(255, 255, 255, 0.3);
    font-weight: bold;
}

.review-quotes {
    display: flex;
    flex-direction: column;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.review-quote {
    font-family: 'SundaySchool', Arial, sans-serif;
    font-size: 1.1em;
    line-height: 1.6;
    color: #ffffff;
    margin: 0 0 15px 0;
    padding: 12px 0;
    padding-left: 15px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.review-quote .publication {
    display: block;
    margin-top: 0;
    color: #87ceeb;
    font-weight: bold;
    font-style: italic;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.9), 0 0 8px rgba(135, 206, 235, 0.5);
}

.review-ratings {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.review-ratings a {
    color: white;
}

.review-girls {
    max-width: 100%;
    bottom: 0px;
    transform: rotate(180deg) scale(0.9);
    transition: transform 0.5s ease;
    pointer-events: none;
    transform-origin: center center;
    will-change: transform;
}

.review-girls.spinning {
    transform: rotate(0deg) scale(0.8);
}

.review-rating {
    font-family: 'SundaySchool', Arial, sans-serif;
    font-size: 1.1em;
    color: #ffffff;
    margin: 0;
    padding: 12px 18px;
    background-color: rgba(255, 255, 255, 0.1);
    border-left: 4px solid #87ceeb;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.review-rating:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(135, 206, 235, 0.4);
    border-left-color: #ffffff;
}