/* Reviews Page Styles */

.reviews-hero {
    padding: 140px 0 80px;
    background: var(--ivory-bg);
    text-align: center;
}

.reviews-hero h1 {
    font-size: 4rem;
    color: var(--emerald-deep);
}

.reviews-section {
    padding: 100px 0;
    background: white;
}

.review-card-premium {
    max-width: 900px;
    margin: 0 auto 100px;
    background: white;
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.05);
    border: 1px solid rgba(212, 173, 96, 0.1);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.review-card-premium::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 40px;
    background: var(--gold-muted);
    opacity: 0.3;
}

.review-author-name {
    font-size: 1.8rem;
    color: var(--emerald-deep);
    margin-bottom: 30px;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.review-author-name::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 25%;
    width: 50%;
    height: 2px;
    background: var(--gold-muted);
}

.review-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    line-height: 1.6;
    color: #444;
    font-style: italic;
    margin-bottom: 40px;
    padding: 0 20px;
}

.review-proof-container {
    max-width: 400px;
    margin-top: 20px;
}

.review-proof-container img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.review-proof-container img:hover {
    transform: scale(1.03) translateY(-5px);
}

.proof-hint {
    display: block;
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--gold-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@media (max-width: 768px) {
    .review-card-premium {
        padding: 40px 20px;
    }
    .review-text {
        font-size: 1.2rem;
    }
    .reviews-hero h1 {
        font-size: 3rem;
    }
}
