.ibaw-reviews-section-wrapper {
    width: 100%;
    padding: 60px 0;
    overflow: hidden;
}

.ibaw-reviews-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
}

.ibaw-reviews-title {
    margin: 0 0 10px 0;
    font-size: 2.5rem;
    font-weight: 300;
}

.ibaw-reviews-subtitle {
    margin: 0;
    font-size: 1.1rem;
}

.ibaw-reviews-carousel-outer {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.ibaw-reviews-track {
    display: flex;
    gap: 25px;
    transition: transform 0.4s ease-in-out;
    will-change: transform;
}

.ibaw-review-card {
    position: relative;
    flex: 0 0 320px;
    height: 480px;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 25px;
    box-sizing: border-box;
}

/* Alternating Hover Colors per Card */
.ibaw-review-card:nth-child(odd):hover .ibaw-review-body,
.ibaw-review-card:nth-child(odd):hover {
    background-color: #C21B7A !important;
}

.ibaw-review-card:nth-child(even):hover .ibaw-review-body,
.ibaw-review-card:nth-child(even):hover {
    background-color: #087D9B !important;
}

.ibaw-review-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.ibaw-review-card-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0.45;
    transition: opacity 0.3s ease;
}

.ibaw-review-card-inner {
    position: static;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.ibaw-client-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ibaw-client-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.ibaw-client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ibaw-client-details {
    display: flex;
    flex-direction: column;
}

.ibaw-client-name {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
}

.ibaw-pet-info {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
}

.ibaw-review-body {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 25px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    z-index: 10;
    border-radius: 16px;
}

.ibaw-review-card:hover .ibaw-review-body {
    opacity: 1;
    visibility: visible;
}

.ibaw-review-text {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #ffffff;
    text-align: center;
}

.ibaw-carousel-nav {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    pointer-events: none;
    padding: 0 10px;
    z-index: 20;
}

.ibaw-nav-btn {
    pointer-events: auto;
    background: #000000;
    color: #ffffff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: background 0.3s ease;
}

.ibaw-nav-btn:hover {
    background: #333333;
}

@media (max-width: 768px) {
    .ibaw-review-card {
        flex: 0 0 280px;
        height: 420px;
    }
    .ibaw-reviews-carousel-outer {
        padding: 0 20px;
    }
}