/* Google Reviews Section Styling - Horizon Heights Productions */

.hh-reviews-section {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(0, 188, 212, 0.05) 100%);
    padding: 80px 0;
}

.hh-reviews-header {
    text-align: center;
    margin-bottom: 50px;
}

.hh-reviews-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.hh-reviews-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* Reviews Grid for Multiple Platforms */
.hh-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

/* Individual Rating Card */
.hh-rating-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hh-rating-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 188, 212, 0.2);
}

.hh-rating-summary {
    display: flex;
    align-items: center;
    gap: 25px;
}

.hh-google-logo,
.hh-facebook-logo {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hh-google-logo svg,
.hh-facebook-logo svg {
    width: 40px;
    height: 40px;
}

.hh-rating-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hh-stars {
    display: flex;
    gap: 4px;
}

.hh-star {
    color: #FBBC05;
    font-size: 24px;
    text-shadow: 0 2px 4px rgba(251, 188, 5, 0.3);
}

.hh-rating-text {
    font-size: 1.2rem;
    color: #ffffff;
}

.hh-rating-text strong {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FBBC05;
}

.hh-review-count {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.hh-review-count strong {
    color: #ffffff;
    font-weight: 600;
}

/* Review CTA Buttons */
.hh-review-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hh-review-cta .hh-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.hh-review-cta .hh-btn--secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hh-review-cta .hh-btn--secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.hh-review-cta .hh-btn--primary {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.hh-review-cta .hh-btn--primary:hover {
    background: linear-gradient(135deg, #F7931E 0%, #FF6B35 100%);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    transform: translateY(-2px);
}

/* Trust Badges */
.hh-trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.hh-trust-badge {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.hh-trust-badge:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 188, 212, 0.3);
    transform: translateX(5px);
}

.hh-badge-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FF6B35 0%, #00BCD4 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.hh-badge-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hh-badge-text strong {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
}

.hh-badge-text span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hh-reviews-section {
        padding: 60px 0;
    }

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

    .hh-reviews-grid {
        grid-template-columns: 1fr;
    }

    .hh-rating-card {
        flex-direction: column;
        padding: 30px 20px;
        text-align: center;
    }

    .hh-rating-summary {
        flex-direction: column;
        text-align: center;
    }

    .hh-review-cta {
        flex-direction: column;
        width: 100%;
    }

    .hh-review-cta .hh-btn {
        width: 100%;
        justify-content: center;
    }

    .hh-trust-badges {
        grid-template-columns: 1fr;
    }

    .hh-trust-badge {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hh-reviews-header h2 {
        font-size: 1.75rem;
    }

    .hh-reviews-grid {
        grid-template-columns: 1fr;
    }

    .hh-rating-card {
        padding: 25px 15px;
    }

    .hh-star {
        font-size: 20px;
    }

    .hh-rating-text {
        font-size: 1rem;
    }

    .hh-rating-text strong {
        font-size: 1.3rem;
    }
}

/* Animation for reveal effect (if using reveal.js or similar) */
.hh-reviews-section.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.hh-reviews-section.reveal.active {
    opacity: 1;
    transform: translateY(0);
}


/* Google Maps Container Styling */
.hh-map-container {
    margin-top: 4rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
}

.hh-map-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.hh-map-wrapper:hover {
    box-shadow: 0 15px 50px rgba(0, 188, 212, 0.4);
    border-color: rgba(0, 188, 212, 0.5);
    transform: translateY(-3px);
}

.hh-map-wrapper iframe {
    display: block !important;
    width: 100% !important;
    height: 500px !important;
    border: 0 !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.hh-map-info {
    margin-top: 1.5rem;
}

.hh-map-info p {
    color: rgba(255, 255, 255, 0.7);
}

.hh-map-info strong {
    color: #FF6B35;
    font-weight: 600;
}

/* Responsive adjustments for map */
@media (max-width: 768px) {
    .hh-map-container {
        padding: 1.5rem;
        margin-top: 3rem;
    }

    .hh-map-container h3 {
        font-size: 1.5rem !important;
    }

    .hh-map-wrapper iframe {
        height: 350px !important;
    }
}

@media (max-width: 480px) {
    .hh-map-container {
        padding: 1rem;
    }

    .hh-map-container h3 {
        font-size: 1.3rem !important;
    }

    .hh-map-wrapper iframe {
        height: 300px !important;
    }

    .hh-map-info p {
        font-size: 0.85rem !important;
    }
}
