.is-style-homepage-testimonials {
    background-color: #040F13;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Background Glow */
.is-style-homepage-testimonials::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: rgba(14, 137, 159, 0.15);
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 1;
}

.is-style-homepage-testimonials .testimonials-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.is-style-homepage-testimonials .testimonials-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 24px;
    margin-bottom: 48px;
}

.is-style-homepage-testimonials .testimonials-pretitle {
    color: #0E899F;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.75px;
    display: block;
    margin-bottom: 12px;
}

.is-style-homepage-testimonials .testimonials-title {
    color: #ffffff;
    font-size: 48px;
    font-weight: 700;
    margin: 0;
    line-height: 1.1;
    font-family: 'Satoshi', var(--wp--preset--font-family--body), sans-serif;
}

/* Testimonials Grid */
.is-style-homepage-testimonials .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background-color: rgba(255, 255, 255, 0.1);
    gap: 1px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.is-style-homepage-testimonials .testimonial-card {
    background-color: #040F13;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: background-color 0.3s ease;
}

.is-style-homepage-testimonials .testimonial-card:hover {
    background-color: #08171d;
}

.is-style-homepage-testimonials .quote-icon {
    color: #0E899F;
    margin-bottom: 24px;
}

.is-style-homepage-testimonials .testimonial-text {
    margin: 0 0 32px 0;
    padding: 0;
}

.is-style-homepage-testimonials .testimonial-text p {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.is-style-homepage-testimonials .testimonial-author {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.is-style-homepage-testimonials .author-name {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
}

.is-style-homepage-testimonials .author-title {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .is-style-homepage-testimonials .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .is-style-homepage-testimonials .testimonial-card {
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .is-style-homepage-testimonials {
        padding: 60px 0;
    }
    .is-style-homepage-testimonials .testimonials-title {
        font-size: 36px;
    }
}
