/* Google Review CTA Bar */
.google-review-cta {
    background: #242424;
    padding: 20px 0;
    border-bottom: 1px solid #333;
}

.review-cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.review-cta-text {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-size: 16px;
}

.review-cta-stars {
    display: flex;
    gap: 3px;
}

.review-cta-stars i {
    color: #FFD700;
    font-size: 20px;
}

.review-cta-text span {
    font-weight: 500;
}

.review-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #242424;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.review-cta-btn:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    color: #000;
    text-decoration: none;
}

.review-cta-btn i {
    font-size: 12px;
}

/* Responsive Design */
@media (max-width: 767px) {
    .review-cta-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .review-cta-text {
        justify-content: center;
        font-size: 15px;
    }

    .review-cta-btn {
        padding: 10px 25px;
        font-size: 14px;
    }
}
