/* =========================================
   EDITORIAL TESTIMONIALS SECTION (ALABASTER)
   ========================================= */

.testimonial-section {
    position: relative;
    background-color: #E6E4E0; /* Alabaster White */
    color: #050505; /* Deep Black */
    padding: 8rem 5%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    border-bottom: 1px solid rgba(5, 5, 5, 0.1);
}

.testimonial-watermark {
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Playfair Display', serif;
    font-size: 45rem;
    line-height: 1;
    color: rgba(5, 5, 5, 0.04); /* Extremely faint black watermark */
    z-index: 1;
    pointer-events: none;
}

/* --- ARROW NAVIGATION --- */
.testi-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid #050505;
    color: #050505;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.testi-arrow:hover {
    background: #050505;
    color: #E6E4E0;
}

.prev-arrow { left: 5%; }
.next-arrow { right: 5%; }

.testimonial-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    width: 100%;
    text-align: center;
    padding: 0 40px; /* Buffer to prevent text overlapping arrows on smaller screens */
}

.testimonial-carousel {
    position: relative;
    min-height: 280px; 
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.8s;
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    position: relative;
}

.review-text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    /* Reduced from (1.8rem - 2.5rem) down to (1.2rem - 1.8rem) */
    font-size: clamp(1.2rem, 3vw, 1.8rem); 
    line-height: 1.6;
    color: #050505;
    margin-bottom: 2rem;
    padding: 0 1rem; /* Adds a tiny bit of breathing room on the sides */
}

.review-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.stars {
    color: #C89B3C; /* Keeps the Matte Gold stars */
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.client-name {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    color: #050505;
}

.google-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: #555555; /* Soft dark grey for the verified text */
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.5rem;
}

.google-badge i {
    font-size: 1rem;
    color: #050505; /* Black G logo */
}

.testimonial-dots {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.testimonial-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1.5px solid #050505; 
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.testimonial-dots .dot.active {
    background-color: #C89B3C;
    border-color: #C89B3C;
    transform: scale(1.3); 
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .prev-arrow { left: 2%; }
    .next-arrow { right: 2%; }
    .testi-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Fix for the multi-color Google SVG */
.google-badge svg {
    width: 14px;
    height: 14px;
    margin-right: 2px;
}
