.testimonial-showcase-2dcea2fa {
    display: flex;
    flex-direction: row;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    min-height: 500px;
}
.ts-left-panel-2dcea2fa {
    flex: 1;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #1f3b5c 0%, #29496b 100%);
}
.ts-right-panel-2dcea2fa {
    flex: 1;
    position: relative;
}
.ts-right-panel-2dcea2fa img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}
.ts-right-overlay-2dcea2fa {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0);
}
.ts-small-heading-2dcea2fa {
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}
.ts-overall-rating-2dcea2fa {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 30px;
    opacity: 0.9;
}
.ts-slider-container-2dcea2fa {
    position: relative;
    min-height: 220px;
}
.ts-slide-2dcea2fa {
    position: absolute;
    top: 0; left: 0; width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;
    visibility: hidden;
}
.ts-slide-2dcea2fa.active {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    position: relative;
}
.ts-review-card-2dcea2fa {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    position: relative;
}
.ts-card-header-2dcea2fa {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}
.ts-stars-2dcea2fa {
    display: flex;
    gap: 2px;
}
.ts-star-2dcea2fa {
    color: #e0e0e0;
    font-size: 18px;
}
.ts-star-2dcea2fa.full {
    color: #fbbc04;
}
.ts-star-2dcea2fa.half {
    background: -webkit-linear-gradient(0deg, #fbbc04 50%, #e0e0e0 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.ts-review-text-2dcea2fa {
    color: #333333;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}
.ts-reviewer-info-2dcea2fa {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.ts-reviewer-details-2dcea2fa {
    display: flex;
    flex-direction: column;
}
.ts-reviewer-name-2dcea2fa {
    font-weight: 600;
    color: #111;
    font-size: 15px;
}
.ts-reviewer-location-2dcea2fa {
    font-size: 13px;
    color: #666;
}
.ts-google-badge-2dcea2fa svg {
    width: 24px;
    height: 24px;
}
.ts-bottom-controls-2dcea2fa {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}
.ts-dots-2dcea2fa {
    display: flex;
    gap: 8px;
}
.ts-dot-2dcea2fa {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}
.ts-dot-2dcea2fa.active {
    background: #fe5f15;
    transform: scale(1.2);
}
.ts-button-2dcea2fa {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(90deg, #fe5f15, #f38a00);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    text-transform: uppercase;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(254, 95, 21, 0.3);
}
.ts-button-2dcea2fa:hover {
    box-shadow: 0 6px 20px rgba(254, 95, 21, 0.6);
    color: #ffffff;
    transform: translateY(-2px);
}

/* API Loading Styles */
.ts-api-loading-2dcea2fa {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 200px;
    color: rgba(255,255,255,0.8);
}
.ts-spinner-2dcea2fa {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255,255,255,0.2);
    border-top: 4px solid #fe5f15;
    border-radius: 50%;
    animation: spin-2dcea2fa 1s linear infinite;
    margin-bottom: 15px;
}
@keyframes spin-2dcea2fa {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    .testimonial-showcase-2dcea2fa {
        flex-direction: column;
    }
    .ts-right-panel-2dcea2fa {
        min-height: 300px;
    }
    .ts-left-panel-2dcea2fa {
        padding: 40px 20px;
    }
    .ts-bottom-controls-2dcea2fa {
        flex-direction: column;
        gap: 20px;
    }
}
