@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
.reviews-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 4rem;
    position: relative;
    min-height: 600px;
    overflow-x: hidden;
}
.reviews-content {
    display: flex;
    gap: 3rem;
    z-index: 1;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
    margin: 0 auto;
}

.main-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.reviews-container {
    display: flex;
    gap: 1.5rem;
    width: 100%;
    justify-content: center;
    margin-bottom: 1rem;
}

.review-card {
    flex: 0 1 300px;
    border-radius: 14px;
    padding: 1.2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.7);
    backdrop-filter: 10px;
    transition: all 0.3s ease;
    transform: rotate(var(--rotation));
}

.review-card:nth-child(1) { --rotation: -2deg; }
.review-card:nth-child(2) { --rotation: 1deg; }
.review-card:nth-child(3) { --rotation: -1deg; }

.review-card:hover {
    transform: translateY(-5px) rotate(var(--rotation));
}

.decorative-model {
    max-width: 500px;
    z-index: 0;
    width: 400px;
    pointer-events: none;
}

.model-image {
    width: 100%;
    height: auto;
    display: block;
}

.avatar-container {
    position: absolute;
    top: -75px;
    left: 50%;
    transform: translateX(-50%);
    width: 125px;
    height: 125px;
    overflow: hidden;
}

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

.review-content {
    text-align: center;
    margin-top: 2.5rem;
}

.stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 1rem;
}

.fa-star {
    color: #fbbc05;
    font-size: 1.2rem;
}

.review-content p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
    font-family: 'Gilroy-Regular', 'Gilroy';
}

.google-review-section {
    display: none;
    position: absolute;
    top: 2rem;
    right: 4rem;
    z-index: 2;
}

.google-review-content {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.google-logo {
    height: 20px;
    width: auto;
    display: block;
}

.google-link {
    display: block;
    transition: transform 0.3s ease;
}

.google-link:hover {
    transform: translateY(-2px);
}

.stars {
    color: #fbbc05;
    font-size: 0.9rem;
    display: flex;
    gap: 2px;
}

.review-link {
    color: #666;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.review-link:hover {
    color: #4285f4;
}

.reviews-title {
    text-align: center;
    margin-bottom: 4rem;
}

.reviews-title h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-family: 'Gilroy-Bold', 'Gilroy';
}

.inspiring-text {
    text-align: right;
    font-size: 1.1rem;
    margin-top: 4rem;
    position: relative;
    padding: 2rem;
    max-width: 800px;
}

.quote-marks {
    position: relative;
    height: 0;
}

.quote-start, .quote-end {
    color: #00b8d4;
    font-size: 4rem;
    line-height: 1;
    position: absolute;
    opacity: 0.3;
}

.quote-start {
    top: -1rem;
    left: -2rem;
}

.quote-end {
    bottom: -4rem;
    right: -2rem;
}

.quote-content {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.inspiring-text .highlight {
    color: #1a1a1a;
    font-size: 3.2rem;
    font-family: 'Gilroy-Bold', 'Gilroy';
    line-height: 1;
    letter-spacing: 1px;
}

.inspiring-text .emphasis {
    color: #1a1a1a;
    font-size: 3.2rem;
    font-family: 'Gilroy-Bold', 'Gilroy';
    line-height: 1;
    letter-spacing: 1px;
}

.inspiring-text .main-text {
    font-size: 2.4rem;
    color: #5f6368;
    font-weight: 300;
    font-family: 'Gilroy-Regular', 'Gilroy';
}

.bottom-section {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    padding: 1.5rem;
    position: relative;
    z-index: 1;
    margin-right: 300px;
}

.reviews-trust-indicators {
    display: flex;
    gap: 2rem;
    padding: 2rem;

    border: 1px solid #e0e0e0;
}

.reviews-stat-item {
    text-align: center;
    padding: 1.5rem 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--primary-dark);
}

.reviews-stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.reviews-stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: black;
    margin-bottom: 0.5rem;
    font-family: 'Gilroy-Bold', 'Gilroy';
}

.reviews-stat-label {
    font-size: 0.9rem;
    color: black;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Gilroy-Regular', 'Gilroy';
}

.reviews-cta-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.reviews-cta-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.reviews-cta-text {
    font-size: 1.2rem;
    color: #202124;
    font-weight: 500;
    font-family: 'Gilroy-Regular', 'Gilroy';
}

.reviews-cta-button {
    background: black;
    color: white;
    padding: 1rem 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    border: none;
    font-family: 'Gilroy-Bold', 'Gilroy';
}

.reviews-cta-button:hover {
    transform: translateY(-3px);
}

.reviews-cta-button span {
    position: relative;
    z-index: 1;
}

.reviews-cta-button i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.reviews-cta-button:hover i {
    transform: translateX(5px);
}

@media (max-width: 1200px) {
    .reviews-section {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
    }

    .reviews-container {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .review-card {
        margin-top: 0;
    }

    .decorative-model {
        display: none;
    }

    .google-review-section {
        position: relative;
        top: 0;
        right: 0;
        justify-content: center;
        width: 100%;
        margin-bottom: 2rem;
    }

    .bottom-section {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .reviews-trust-indicators {
        border-right: none;
        border-bottom: 2px solid rgba(0, 0, 0, 0.1);
        padding-right: 0;
        padding-bottom: 1.5rem;
    }

    .reviews-cta-section {
        flex-direction: column;
        text-align: center;
    }

    .inspiring-text {
        text-align: center;
    }
}

@media (max-width: 1200px) {
    .reviews-container {
        flex-direction: column;
        align-items: center;
        height: 70%;
    }

    .review-card {
       
        width: 80%;
        max-width: 300px;
        margin-top: 70px;
    }

    .reviews-trust-indicators {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem 1rem;
    }

    .reviews-stat-item {
        padding: 1.5rem;
    }
}

@media (max-width: 1050px) {
    .reviews-section {
        padding: 3rem 1.5rem;
        min-height: auto;
    }

    .decorative-model {
        display: none;
        position: relative;
        width: 80%;
        margin: 2rem auto 0;
    }

    .reviews-title h2 {
        font-size: 2rem;
    }

    .review-card {
        width: 100%;
        max-width: 300px;
        margin-top: 70px;
    }

    .review-card:nth-child(2) {
        margin-top: 70px;
    }

    .review-card:nth-child(3) {
        margin-top: 70px;
    }

    .inspiring-text {
        margin-top: 4rem;
        padding: 1.5rem;
    }

    .quote-start, .quote-end {
        font-size: 3rem;
    }

    .quote-start {
        top: -0.8rem;
        left: -1.5rem;
    }

    .quote-end {
        bottom: -3rem;
        right: -1.5rem;
    }

    .inspiring-text .highlight,
    .inspiring-text .emphasis {
        font-size: 2.4rem;
    }

    .google-review-section {
        position: static;
        margin-bottom: 2rem;
    }

    .reviews-container {
        display: none;
        height: 75vh;
        flex-direction: column;
        align-items: center;
    }

    .review-card {
        
        background: none;
        width: 100%;
    }

    .reviews-trust-indicators {
        flex-direction: column;
        gap: 1.5rem;
    }
}
