/* Premium Testimonials Section Styles */

.premium-testimonials {
    padding: 120px 0;
    background-color: #fdfaf5;
    /* Very light cream background */
    position: relative;
    overflow: hidden;
}

/* Subtle decorative background */
.testimonials-bg-accent {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 40%;
    height: 60%;
    background-image: radial-gradient(circle, rgba(104, 68, 36, 0.03) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.testimonials-container {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
}

/* Section Header refined */
.premium-testimonials .section-header {
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.premium-testimonials .section-header h2 {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: -1px;
    margin-bottom: 10px;
}

.premium-testimonials .badge {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;

    color: var(--brand-brown);
    padding: 5px 15px;
    border-radius: 20px;
    margin-top: 5px;
}

.premium-testimonials .divider {
    width: 60px;
    height: 3px;
    background: var(--brand-gold);
    margin-top: 20px;
}

/* Slider Wrapper */
.testimonials-slider-wrapper {
    position: relative;
    max-width: 950px;
    margin: 0 auto;
}

.testimonials-slider {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

/* Premium Card Design */
.testimonial-card {
    min-width: 100%;
    box-sizing: border-box;
    padding: 0 20px;
    /* Reduced padding */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-content {
    position: relative;
    background: #ffffff;
    padding: 40px 60px;
    /* Reduced padding */
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(104, 68, 36, 0.08);
    text-align: center;
    margin-bottom: -30px;
    /* Overlap with profile */
    z-index: 2;
    max-width: 800px;
    /* Added max-width to control size further */
    margin-left: auto;
    margin-right: auto;
}

.quote-mark {
    position: absolute;
    font-size: 2.5rem;
    /* Reduced quote size */
    opacity: 0.15;
}

.quote-mark.left {
    top: 30px;
    /* Adjusted position */
    left: 30px;
}

.quote-mark.right {
    bottom: 30px;
    /* Adjusted position */
    right: 30px;
}

.quote-mark.gold {
    color: var(--brand-gold);
}

.testimonial-text {
    font-size: 1.2rem;
    /* Reduced font size from 1.3rem */
    line-height: 1.6;
    color: var(--brand-brown);
    font-family: var(--font-heading);
    font-weight: 400;
    margin: 0;
}

/* Footer & Profile */
.testimonial-footer {
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 3;
}

.guest-profile {
    background: #ffffff;
    padding: 15px 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(104, 68, 36, 0.05);
}

.guest-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.guest-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.guest-image i {
    font-size: 70px;
    color: var(--brand-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.guest-details h4 {
    font-size: 1.0rem;
    color: var(--brand-brown);
    margin: 0 0 2px 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.guest-details .role {
    font-size: 0.85rem;
    color: var(--brand-gold);
    font-weight: 600;
}

.testimonial-stars {
    color: var(--brand-gold);
    font-size: 0.8rem;
    margin-bottom: 4px;
}

/* Controls v2 */
.slider-controls-v2 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
    gap: 40px;
}

.slider-btn-v2 {
    background: #ffffff;
    border: none;
    color: var(--brand-brown);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    font-size: 1.2rem;
}

.slider-btn-v2:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(104, 68, 36, 0.15);
    background-color: var(--brand-brown);
    color: #ffffff;
}

.slider-dots-v2 {
    display: flex;
    gap: 15px;
}

.slider-dots-v2 .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(104, 68, 36, 0.1);
    cursor: pointer;
    transition: all 0.4s ease;
}

.slider-dots-v2 .dot.active {
    background-color: var(--brand-gold);
    width: 30px;
    border-radius: 10px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .testimonial-content {
        padding: 50px 60px;
    }

    .testimonial-text {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .premium-testimonials {
        padding: 80px 0;
    }

    .premium-testimonials .section-header h2 {
        font-size: 1.8rem; /* Aligned with standard mobile h2 */
    }

    .testimonial-content {
        padding: 40px 30px;
    }

    .testimonial-text {
        font-size: 1.1rem;
    }

    .quote-mark {
        font-size: 2rem;
    }

    .quote-mark.left {
        top: 20px;
        left: 20px;
    }

    .quote-mark.right {
        bottom: 20px;
        right: 20px;
    }

    .guest-profile {
        padding: 10px 20px;
        gap: 15px;
    }

    .guest-image {
        width: 55px;
        height: 55px;
    }

    .guest-image i {
        font-size: 55px;
    }
}