/* Reviews Section */
.reviews-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #f1f4ff 100%);
}

.reviews-header {
    max-width: 1000px;
    margin: 0 auto 80px;
}

.reviews-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(0, 102, 255, 0.1);
    color: #0066ff;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.reviews-header  .section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 40px;
    line-height: 1.2;
}

/* Rating Summary */
.rating-summary {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 60px;
    padding: 40px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.rating-box {
    text-align: center;
}

.rating-number {
    font-size: 4rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1;
    margin-bottom: 10px;
}

.rating-stars {
    margin-bottom: 10px;
}

.rating-stars i {
    color: #ffc107;
    font-size: 1.2rem;
    margin: 0 2px;
}

.rating-text {
    color: #666;
    font-size: 0.95rem;
}

.rating-stats {
    flex: 1;
    max-width: 400px;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.star-label {
    min-width: 60px;
    color: #666;
    font-size: 0.9rem;
}

.star-label i {
    color: #ffc107;
    font-size: 0.8rem;
}

.progress {
    flex: 1;
    height: 8px;
    background-color: #f1f4ff;
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar {
    background-color: #0066ff;
    border-radius: 4px;
}

.percent {
    min-width: 45px;
    color: #666;
    font-size: 0.9rem;
    text-align: right;
}

/* Review Cards */
.review-cards {
    margin-bottom: 80px;
}

.review-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-avatar {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    overflow: hidden;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 5px;
}

.user-location {
    color: #666;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.review-rating i {
    color: #ffc107;
    font-size: 1rem;
    margin-left: 2px;
}

.review-body {
    margin-bottom: 20px;
}

.review-text {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 15px;
}

.review-service {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #f8f9ff;
    border-radius: 30px;
    font-size: 0.9rem;
    color: #666;
}

.review-service i {
    color: #0066ff;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #f1f4ff;
}

.review-date, .review-verify {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #666;
}

.review-verify i {
    color: #00b67a;
}

.btn-load-more {
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid #0066ff;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-load-more:hover {
    background: #0066ff;
    color: #fff;
    transform: translateY(-2px);
}

.btn-load-more i {
    transition: transform 0.3s ease;
}

.btn-load-more:hover i {
    transform: translateX(5px);
}

/* FAQ Section */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(0, 102, 255, 0.1);
    color: #0066ff;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
}

/* Get Started Section */
.get-started-section {
    padding: 60px 0 100px;
}

.get-started-card {
    background: linear-gradient(135deg, #3c3d63 0%, #001629 100%);
    border-radius: 30px;
    padding: 60px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.get-started-content {
    position: relative;
    z-index: 1;
}

.get-started-card h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.get-started-card p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.btn-get-started {
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-get-started:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.btn-get-started i {
    transition: transform 0.3s ease;
}

.btn-get-started:hover i {
    transform: translateX(5px);
}

.get-started-image {
    position: relative;
    z-index: 1;
    text-align: right;
}

.get-started-image img {
    max-width: 100%;
    height: auto;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .reviews-section {
        padding: 80px 0;
    }

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

    .rating-summary {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        padding: 30px;
    }

    .rating-stats {
        width: 100%;
    }

    .get-started-card {
        padding: 40px;
        text-align: center;
    }

    .get-started-card h3 {
        font-size: 2rem;
    }

    .get-started-image {
        margin-top: 40px;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .reviews-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .review-card {
        padding: 25px;
    }

    .user-avatar {
        width: 50px;
        height: 50px;
    }

    .accordion-button {
        padding: 20px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.5rem;
    }

    .rating-number {
        font-size: 3rem;
    }

    .review-header {
        flex-direction: column;
        gap: 15px;
    }

    .review-rating {
        align-self: flex-start;
    }

    .get-started-card {
        padding: 30px;
    }

    .get-started-card h3 {
        font-size: 1.8rem;
    }
} 