/* Testimonials + Results Section */
.testimonials-results-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Dark background strip specifically for header text */
.testimonials-results-section::before {
    content: '';
    position: absolute;
    top: 112px;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(135deg, #0b1a2f 0%, #0f2747 100%);
    z-index: 0;
}

.testimonials-results-section .section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.testimonials-results-section .section-title {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.testimonials-results-section .section-desc {
    color: #cbd5e1;
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Carousel Container */
.tr-carousel-wrapper {
    position: relative;
    padding: 20px 0 50px;
    z-index: 1;
}

.tr-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE 10+ */
    padding: 10px;
}

.tr-carousel::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

/* Card Style */
.tr-card {
    flex: 0 0 calc(33.333% - 20px);
    scroll-snap-align: start;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.tr-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(214, 51, 132, 0.1);
}

/* Image Area - Strictly Uniform */
.tr-image-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    aspect-ratio: 4 / 3;
    background: #f0f0f0;
    position: relative;
    overflow: hidden;
}

.tr-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    /* Ensures faces stay centered */
    display: block;
}

.tr-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: #ffffff;
    transform: translateX(-50%);
    z-index: 2;
}

/* Labels Area */
.tr-labels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: center;
    padding: 8px 0;
    background: #f9f9f9;
    border-bottom: 1px solid #f0f0f0;
}

.tr-label {
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--text-light);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Content Area */
.tr-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tr-stars {
    color: #FFB800;
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.tr-testimonial {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
    flex-grow: 1;
}

.tr-footer {
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
}

.tr-name {
    display: block;
    font-weight: 700;
    color: var(--dark);
    font-size: 1rem;
}

.tr-city {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Navigation Buttons */
.tr-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: var(--pink);
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.tr-nav-btn:hover {
    background: var(--pink);
    color: #ffffff;
}

.tr-prev {
    left: -22px;
}

.tr-next {
    right: -22px;
}

/* Responsive */
@media (max-width: 1024px) {
    .tr-card {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .tr-card {
        flex: 0 0 100%;
    }

    .tr-prev,
    .tr-next {
        display: none;
    }

    .testimonials-results-section .section-title {
        font-size: 2.2rem;
    }
}