/* ============================================
   REVIEW INTEGRATION STYLES
   Google and Yelp Review Badges & CTAs
   ============================================ */

/* Review CTA Section (After Testimonials) */
.review-cta-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 4rem 2rem;
    margin-top: 3rem;
    border-radius: 16px;
    text-align: center;
}

.review-cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.review-cta-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Review Buttons */
.review-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.review-btn {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 240px;
}

.review-btn i {
    font-size: 2.5rem;
}

.review-btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
}

.review-btn-text strong {
    font-size: 1.2rem;
    display: block;
}

.review-btn-text small {
    font-size: 0.85rem;
    font-weight: 400;
    opacity: 0.9;
}

/* Google Review Button */
.review-btn-google {
    background: #fff;
    color: #4285f4;
    border: 2px solid #4285f4;
}

.review-btn-google:hover {
    background: #4285f4;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(66, 133, 244, 0.3);
}

/* Yelp Review Button */
.review-btn-yelp {
    background: #fff;
    color: #d32323;
    border: 2px solid #d32323;
}

.review-btn-yelp:hover {
    background: #d32323;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(211, 35, 35, 0.3);
}

/* Review Badges Display */
.review-badges-display {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.review-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.review-badge i {
    font-size: 2rem;
    color: #fbbf24;
}

.review-badge-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.review-rating {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
}

.review-source {
    font-size: 0.85rem;
    color: #64748b;
}

/* Footer Review Links */
.footer-reviews {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-reviews-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-review-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-review-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-review-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.footer-review-link i {
    font-size: 1.1rem;
}

/* Testimonials Page - Review Platforms Section */
.review-platforms-section {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    padding: 5rem 2rem;
    margin-top: 3rem;
    border-radius: 20px;
    text-align: center;
}

.review-platforms-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
}

.review-platforms-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
}

.review-platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.review-platform-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-decoration: none;
    color: #1e293b;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.review-platform-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.review-platform-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4285f4 0%, #357ae8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.review-platform-icon.yelp-icon {
    background: linear-gradient(135deg, #d32323 0%, #b71c1c 100%);
}

.review-platform-icon i {
    font-size: 2.5rem;
    color: #fff;
}

.review-platform-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.review-platform-card p {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 1.5rem;
}

.review-platform-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.review-platform-rating i {
    color: #fbbf24;
    font-size: 1.2rem;
}

.rating-number {
    font-weight: 700;
    font-size: 1.3rem;
    color: #1e293b;
    margin-left: 0.5rem;
}

.review-btn-link {
    color: #2563eb;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.review-btn-link i {
    transition: transform 0.3s ease;
}

.review-platform-card:hover .review-btn-link i {
    transform: translateX(5px);
}

/* View All Reviews Buttons */
.view-all-reviews {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.view-reviews-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.view-reviews-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .review-cta-section {
        padding: 3rem 1.5rem;
    }
    
    .review-cta-title {
        font-size: 1.5rem;
    }
    
    .review-cta-subtitle {
        font-size: 1rem;
    }
    
    .review-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .review-btn {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .review-badges-display {
        flex-direction: column;
        gap: 1rem;
    }
    
    .review-badge {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .review-platforms-title {
        font-size: 1.8rem;
    }
    
    .review-platforms-subtitle {
        font-size: 1rem;
    }
    
    .review-platforms-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .view-all-reviews {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .view-reviews-btn {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .footer-review-links {
        flex-direction: column;
    }
    
    .footer-review-link {
        width: 100%;
        justify-content: center;
    }
}

/* Animation for Review Badges */
@keyframes pulse-star {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.review-badge i,
.review-platform-rating i {
    animation: pulse-star 2s ease-in-out infinite;
}

/* Stagger animation delay for multiple stars */
.review-platform-rating i:nth-child(1) { animation-delay: 0s; }
.review-platform-rating i:nth-child(2) { animation-delay: 0.1s; }
.review-platform-rating i:nth-child(3) { animation-delay: 0.2s; }
.review-platform-rating i:nth-child(4) { animation-delay: 0.3s; }
.review-platform-rating i:nth-child(5) { animation-delay: 0.4s; }
