/**
 * Advanced Testimonials for Elementor
 * Stylesheet
 */

/* Grid Layout */
.advanced-testimonials-grid {
    display: grid;
    margin-bottom: 0;
}

/* Section Header */
.advanced-testimonials-header {
    position: relative;
}

.advanced-testimonials-subtitle {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.advanced-testimonials-title {
    font-weight: 700;
    line-height: 1.2;
}

.advanced-testimonials-description {
    line-height: 1.6;
}

/* Testimonial Cards */
.advanced-testimonial-card {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #ffffff;
}

.advanced-testimonial-card.has-quote-icon::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 120px;
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
    z-index: 0;
}

/* Hover Animations */
.advanced-testimonial-card.hover-lift:hover {
    transform: translateY(-10px);
}

.advanced-testimonial-card.hover-grow:hover {
    transform: scale(1.05);
}

.advanced-testimonial-card.hover-shrink:hover {
    transform: scale(0.98);
}

/* Stars */
.testimonial-stars {
    position: relative;
    z-index: 1;
}

/* Testimonial Text */
.testimonial-text {
    position: relative;
    z-index: 1;
    line-height: 1.8;
}

/* Author Section */
.testimonial-author {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.author-avatar {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: 600;
    margin: 0 0 5px 0;
}

.author-position {
    margin: 0;
}

/* CTA Section */
.cta-section {
    text-align: center;
    color: white;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.cta-title {
    margin: 0 0 15px 0;
}

.cta-description {
    margin: 0 0 30px 0;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    background: white;
}

.cta-button:hover {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .advanced-testimonial-card.has-quote-icon::before {
        font-size: 80px;
        top: 10px;
        left: 20px;
    }
}
