/* ============================================
   REVIEWS SECTION - SINGLE REVIEW LAYOUT
   ============================================ */

/* Section Base */
.reviews-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Background decoration */
.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.reviews-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(111, 66, 193, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.container {
    position: relative;
    z-index: 1;
}

/* Section Badge */
.section-badge {
    background: rgba(13, 110, 253, 0.08);
    border: 1px solid rgba(13, 110, 253, 0.2);
    display: inline-flex !important;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #0d6efd;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

.tracking-wider {
    letter-spacing: 0.1em;
}

.text-gradient {
    background: linear-gradient(135deg, #0d6efd 0%, #6f42c1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Featured Review - New Single Review Layout */
.featured-review {
    position: relative;
    background: #ffffff;
    border-radius: 40px;
    padding: 3.5rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(13, 110, 253, 0.1);
    transition: all 0.4s ease;
    margin: 2rem 0;
}

.featured-review:hover {
    transform: translateY(-5px);
    box-shadow: 0 35px 80px rgba(13, 110, 253, 0.12);
}

/* Quote Icon */
.quote-icon {
    position: absolute;
    top: 2rem;
    right: 3rem;
    font-size: 6rem;
    line-height: 1;
    color: rgba(13, 110, 253, 0.08);
    z-index: 1;
}

.quote-icon i {
    display: block;
}

/* Review Content */
.review-content {
    position: relative;
    z-index: 2;
}

/* Stars */
.review-stars {
    color: #fbbf24;
    display: flex;
    gap: 4px;
}

.review-stars i {
    font-size: 1.3rem;
}

/* Review Text */
.review-text-wrapper {
    margin-bottom: 1.5rem;
}

.review-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #2c3e50;
    margin: 0;
    font-style: normal;
}

/* Author Info */
.author-info {
    padding-top: 1rem;
    border-top: 2px solid rgba(13, 110, 253, 0.08);
}

.author-name {
    font-size: 1.3rem;
    color: #1a2639;
    letter-spacing: -0.02em;
}

.author-title {
    font-size: 1rem;
    color: #64748b;
}

/* CTA Button */
.btn-modern {
    background: rgba(13, 110, 253, 0.08);
    border: 2px solid rgba(13, 110, 253, 0.2);
    color: #0d6efd;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    font-weight: 500;
}

.btn-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
    z-index: 0;
}

.btn-modern span,
.btn-modern i {
    position: relative;
    z-index: 1;
}

.btn-modern:hover {
    background: linear-gradient(135deg, #0d6efd, #6f42c1);
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(13, 110, 253, 0.25);
}

.btn-modern:hover::before {
    left: 100%;
}

/* Responsive */
@media (max-width: 992px) {
    .featured-review {
        padding: 2.5rem;
    }

    .quote-icon {
        font-size: 5rem;
        right: 2rem;
    }

    .review-text {
        font-size: 1.15rem;
        line-height: 1.7;
    }
}

@media (max-width: 768px) {
    .featured-review {
        padding: 2rem;
    }

    .quote-icon {
        font-size: 4rem;
        top: 1.5rem;
        right: 1.5rem;
    }

    .review-stars {
        margin-bottom: 1rem !important;
    }

    .review-text {
        font-size: 1.1rem;
        line-height: 1.6;
    }

    .author-name {
        font-size: 1.2rem;
    }

    .reviews-section::before,
    .reviews-section::after {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 576px) {
    .featured-review {
        padding: 1.75rem;
        border-radius: 30px;
    }

    .quote-icon {
        font-size: 3.5rem;
        top: 1rem;
        right: 1rem;
    }

    .review-text {
        font-size: 1rem;
        line-height: 1.5;
    }

    .review-stars i {
        font-size: 1.1rem;
    }

    .author-name {
        font-size: 1.1rem;
    }

    .author-title {
        font-size: 0.9rem;
    }
}

/* Remove any carousel-related styles */
.carousel-control-prev,
.carousel-control-next,
.carousel-indicators,
.carousel-control-icon,
.review-avatar {
    display: none;
}