/**
 * Testimonials Section Styles
 */

/* ========================================
   Section Header
   ======================================== */
.block-testimonials .header {
    margin-bottom: 60px;
}

.section-title-dark {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-intro-centered {
    max-width: 700px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.8;
    color: #666;
}

/* ========================================
   Testimonials Grid
   ======================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* ========================================
   Testimonial Cards
   ======================================== */
.testimonial-card {
    position: relative;
    background: #fff;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

/* Quote Icon */
.testimonial-quote {
    position: absolute;
    top: 25px;
    right: 30px;
}

.testimonial-quote span {
    font-size: 40px;
    color: #f0f0f0;
}

/* Rating Stars */
.testimonial-rating {
    display: flex;
    gap: 3px;
    margin-bottom: 20px;
}

.testimonial-rating i {
    font-size: 16px;
    color: #FFD700;
}

/* Testimonial Text */
.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
    margin: 0 0 25px 0;
    font-style: italic;
}

/* Author Info */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color, #AF997F);
}

.author-info h5 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 3px 0;
}

.author-info span {
    font-size: 13px;
    color: #888;
}

/* ========================================
   Google Reviews CTA
   ======================================== */
.testimonials-cta {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.testimonials-cta p {
    font-size: 15px;
    color: #666;
    margin: 0 0 15px 0;
}

.google-reviews-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 500;
    color: var(--primary-color, #AF997F);
    text-decoration: none;
    transition: gap 0.3s ease;
}

.google-reviews-link:hover {
    gap: 12px;
    text-decoration: underline;
    color: var(--primary-color, #AF997F);
}

.google-reviews-link i {
    font-size: 14px;
    color: #FFD700;
}

/* ========================================
   Responsive - Tablet
   ======================================== */
@media (max-width: 992px) {
    .section-title-dark {
        font-size: 2rem;
    }

    .testimonial-card {
        padding: 30px;
    }
}

/* ========================================
   Responsive - Mobile
   ======================================== */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-title-dark {
        font-size: 1.75rem;
    }

    .section-intro-centered {
        font-size: 15px;
    }

    .block-testimonials .header {
        margin-bottom: 40px;
    }
}

/* ========================================
   Responsive - Small Mobile
   ======================================== */
@media (max-width: 480px) {
    .testimonial-card {
        padding: 25px;
    }

    .testimonial-text {
        font-size: 14px;
    }

    .testimonial-quote span {
        font-size: 30px;
    }

    .author-avatar {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .author-info h5 {
        font-size: 15px;
    }
}
