/* Mobile Coaching Testimonials */
@media (max-width: 768px) {
    .mobile-coaching-testimonials {
        padding: 3rem 0 2rem;
        background: #f8f9fa;
        margin-top: 2rem;
        overflow: hidden;
        border-top: 2px solid #e0e0e0;
    }

    .mobile-coaching-testimonials .section-header {
        text-align: center;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }

    .mobile-coaching-testimonials .section-title {
        font-size: 1.75rem;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 0.5rem;
        font-family: 'Poppins', sans-serif;
    }

    .mobile-coaching-testimonials .section-subtitle {
        font-size: 0.95rem;
        color: var(--text-light);
        line-height: 1.4;
    }

    /* Mobile Carousel */
    .mobile-testimonial-carousel-container {
        position: relative;
        width: 100%;
        padding: 0 1rem;
    }

    .mobile-testimonial-carousel-track {
        display: flex;
        transition: transform 0.3s ease;
        gap: 1rem;
    }

    .mobile-coaching-testimonial-slide {
        flex: 0 0 100%;
        background: white;
        border-radius: 12px;
        padding: 1.5rem;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        position: relative;
        min-height: 280px;
        transition: all 0.3s ease;
    }
    
    .mobile-coaching-testimonial-slide.expanded {
        background: #f8f9fa;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        min-height: auto;
    }

    .mobile-testimonial-quote-icon {
        font-size: 2rem;
        color: var(--primary);
        opacity: 0.3;
        position: absolute;
        top: 0.5rem;
        left: 1rem;
        font-family: Georgia, serif;
    }

    .mobile-testimonial-stars {
        color: #FFD700;
        font-size: 1rem;
        margin: 0.5rem 0;
        text-align: center;
    }

    .mobile-testimonial-content {
        font-size: 0.9rem;
        line-height: 1.5;
        color: var(--text-dark);
        margin: 1rem 0;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-align: center;
        font-style: italic;
    }
    
    /* Preview state */
    .mobile-testimonial-preview {
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Full content */
    .mobile-testimonial-full {
        font-size: 0.9rem;
        line-height: 1.5;
        color: var(--text-dark);
        margin: 1rem 0 0.5rem;
        font-style: italic;
        text-align: center;
    }
    
    /* Read more button */
    .mobile-read-more {
        font-size: 14px;
        color: #324e8a;
        font-weight: 600;
        text-align: center;
        padding: 10px 20px;
        margin: 0.5rem -0.5rem 1rem -0.5rem;
        background: rgba(50, 78, 138, 0.05);
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s ease;
        user-select: none;
        -webkit-tap-highlight-color: transparent;
    }

    .mobile-read-more:active {
        background: rgba(50, 78, 138, 0.1);
        transform: scale(0.98);
    }

    .mobile-coaching-testimonial-slide.expanded .mobile-read-more {
        background: rgba(50, 78, 138, 0.08);
        margin-top: 0.5rem;
    }

    .mobile-testimonial-author {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        margin-top: auto;
        padding-top: 1rem;
    }

    .mobile-author-image {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        overflow: hidden;
        background: linear-gradient(135deg, #0066cc, #0099ff);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

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

    .mobile-author-placeholder {
        color: white;
        font-size: 1rem;
        font-weight: 600;
    }

    .mobile-author-info {
        flex: 1;
        min-width: 0;
    }

    .mobile-author-name {
        font-size: 0.95rem;
        font-weight: 600;
        color: var(--text-dark);
        margin: 0;
        line-height: 1.2;
    }

    .mobile-author-role {
        font-size: 0.8rem;
        color: var(--text-light);
        margin: 0;
        line-height: 1.2;
    }

    /* Swipe Navigation */
    .mobile-testimonial-nav-dots {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 1.5rem;
    }

    .mobile-nav-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #ccc;
        border: none;
        padding: 0;
        transition: all 0.3s ease;
    }

    .mobile-nav-dot.active {
        background: var(--primary);
        transform: scale(1.3);
        width: 16px;
        border-radius: 3px;
    }

    /* Swipe hint */
    .mobile-swipe-indicator {
        text-align: center;
        margin-top: 1rem;
        font-size: 0.85rem;
        color: var(--text-light);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }

    .mobile-swipe-indicator svg {
        width: 16px;
        height: 16px;
        animation: swipeHint 2s ease-in-out infinite;
    }

    @keyframes swipeHint {
        0%, 100% { transform: translateX(0); }
        50% { transform: translateX(5px); }
    }
}
