/* ===== SHR GOOGLE REVIEWS INTEGRATION CSS ===== */
/* Created: November 21, 2025 */
/* Purpose: Styles for 68 Google Reviews integration */

/* ===== REVIEW CARD STYLES ===== */
.shr-review-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shr-review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.shr-review-rating {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 5px;
}

.shr-review-stars {
    color: #ffc107;
    font-size: 18px;
    letter-spacing: 2px;
}

.shr-review-date {
    color: #999;
    font-size: 13px;
    margin-left: 10px;
}

.shr-review-excerpt {
    font-size: 16px;
    line-height: 1.6;
    color: #4C4C4C;
    margin-bottom: 15px;
    font-style: italic;
}

.shr-review-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.shr-review-author-name {
    font-weight: 600;
    color: #0F0200;
    font-size: 15px;
}

.shr-review-badge {
    display: inline-block;
    padding: 4px 12px;
    background: #35ADF2;
    color: #ffffff;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

.shr-read-more {
    color: #35ADF2;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s ease;
}

.shr-read-more:hover {
    color: #0F0200;
}

/* ===== TRUST BADGE STYLES ===== */
.shr-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    padding: 12px 20px;
    border-radius: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}

.shr-trust-badge .rating-stars {
    color: #ffc107;
    font-size: 20px;
    letter-spacing: 2px;
}

.shr-trust-badge .rating-text {
    font-size: 14px;
    font-weight: 600;
    color: #0F0200;
}

.shr-trust-badge .rating-count {
    color: #35ADF2;
}

/* ===== TESTIMONIAL CAROUSEL STYLES ===== */
.shr-testimonial-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.shr-carousel-container {
    overflow: hidden;
    position: relative;
}

.shr-carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.shr-carousel-slide {
    min-width: 100%;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .shr-carousel-slide {
        min-width: 50%;
    }
}

@media (min-width: 1024px) {
    .shr-carousel-slide {
        min-width: 33.333%;
    }
}

.shr-carousel-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.shr-carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.shr-carousel-dot.active {
    background: #35ADF2;
    width: 30px;
    border-radius: 10px;
}

.shr-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #35ADF2;
    color: #ffffff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    z-index: 10;
}

.shr-carousel-arrow:hover {
    background: #0F0200;
}

.shr-carousel-arrow.prev {
    left: 0;
}

.shr-carousel-arrow.next {
    right: 0;
}

/* ===== TESTIMONIALS PAGE FILTER STYLES ===== */
.shr-review-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 30px 0;
}

.shr-filter-btn {
    padding: 10px 20px;
    background: #f5f5f5;
    border: 2px solid transparent;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    color: #4C4C4C;
    cursor: pointer;
    transition: all 0.3s ease;
}

.shr-filter-btn:hover {
    background: #e0e0e0;
}

.shr-filter-btn.active {
    background: #35ADF2;
    color: #ffffff;
    border-color: #35ADF2;
}

/* ===== REVIEW GRID STYLES ===== */
.shr-review-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin: 40px 0;
}

@media (min-width: 768px) {
    .shr-review-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .shr-review-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.shr-review-grid.featured {
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .shr-review-grid.featured {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== AGGREGATE RATING SECTION ===== */
.shr-aggregate-rating {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #35ADF2 0%, #0F0200 100%);
    color: #ffffff;
    border-radius: 15px;
    margin: 40px 0;
}

.shr-aggregate-rating .rating-number {
    font-size: 72px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
}

.shr-aggregate-rating .rating-stars {
    font-size: 32px;
    letter-spacing: 5px;
    margin-bottom: 10px;
}

.shr-aggregate-rating .rating-count {
    font-size: 18px;
    opacity: 0.9;
}

/* ===== SECTION HEADING STYLES ===== */
.shr-section-heading {
    text-align: center;
    margin-bottom: 40px;
}

.shr-section-heading h2 {
    font-size: 42px;
    font-weight: 700;
    color: #0F0200;
    margin-bottom: 15px;
}

.shr-section-heading h3 {
    font-size: 32px;
    font-weight: 700;
    color: #0F0200;
    margin-bottom: 15px;
}

.shr-section-heading p {
    font-size: 18px;
    color: #4C4C4C;
    max-width: 700px;
    margin: 0 auto;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 767px) {
    .shr-review-card {
        padding: 20px;
    }

    .shr-section-heading h2 {
        font-size: 32px;
    }

    .shr-section-heading h3 {
        font-size: 26px;
    }

    .shr-carousel-arrow {
        display: none;
    }

    .shr-aggregate-rating .rating-number {
        font-size: 56px;
    }

    .shr-aggregate-rating .rating-stars {
        font-size: 24px;
    }
}

/* ===== HIDE/SHOW FUNCTIONALITY ===== */
.shr-hidden {
    display: none !important;
}
