/* Mobile Testimonial Styles - Unique to avoid conflicts */

/* Mobile specific testimonial container styling */
@media screen and (max-width: 768px) {
    .testimonial-mobile-container {
        position: absolute !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        padding: 1rem !important;
        margin: 0 !important;
    }
    
    .testimonial-mobile-container .swiper-wrapper {
        align-items: stretch !important;
    }
    
    /* Hide the blue intro slide on mobile completely */
    .testimonial-intro-slide {
        display: none !important;
    }
    
    /* Mobile testimonial card styling */
    .testimonial-mobile-card {
        background: rgba(255, 255, 255, 0.95) !important;
        border-radius: 12px !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
        margin: 0 0.5rem !important;
        padding: 1.5rem !important;
        height: auto !important;
        min-height: 200px !important;
        opacity: 1 !important;
        backdrop-filter: blur(10px) !important;
    }
    
    /* Mobile testimonial header */
    .testimonial-mobile-header {
        align-items: flex-start !important;
        margin-bottom: 1rem !important;
    }
    
    /* Mobile testimonial image */
    .testimonial-mobile-img {
        width: 50px !important;
        height: 50px !important;
        border-radius: 50% !important;
        object-fit: cover !important;
        flex-shrink: 0 !important;
    }
    
    /* Mobile testimonial info */
    .testimonial-mobile-info {
        flex: 1 !important;
        margin-left: 0.75rem !important;
    }
    
    /* Mobile testimonial name */
    .testimonial-mobile-name {
        font-size: 16px !important;
        font-weight: 600 !important;
        color: #012152 !important;
        margin: 0 !important;
        line-height: 1.3 !important;
    }
    
    /* Mobile testimonial role */
    .testimonial-mobile-role {
        font-size: 14px !important;
        color: #64748b !important;
        margin: 0.25rem 0 0 0 !important;
        line-height: 1.2 !important;
    }
    
    /* Mobile testimonial content */
    .testimonial-mobile-content {
        width: 100% !important;
    }
    
    /* Mobile testimonial text */
    .testimonial-mobile-text {
        font-size: 14px !important;
        line-height: 1.5 !important;
        color: #374151 !important;
        margin: 0 0 1rem 0 !important;
    }
    
    /* Mobile testimonial stars */
    .testimonial-mobile-stars {
        color: #fbbf24 !important;
        font-size: 16px !important;
        margin: 0 !important;
    }
    
    /* Mobile pagination styling */
    .testimonial-mobile-pagination {
        position: static !important;
        margin-top: 1rem !important;
        text-align: center !important;
    }
    
    .testimonial-mobile-pagination .swiper-pagination-bullet {
        width: 30px !important;
        height: 4px !important;
        border-radius: 2px !important;
        background-color: rgba(255, 255, 255, 0.5) !important;
        margin: 0 4px !important;
        opacity: 1 !important;
    }
    
    .testimonial-mobile-pagination .swiper-pagination-bullet-active {
        background-color: #377FFE !important;
    }
}

/* Smaller mobile devices */
@media screen and (max-width: 480px) {
    .testimonial-mobile-container {
        padding: 0.75rem !important;
    }
    
    .testimonial-mobile-card {
        margin: 0 0.25rem !important;
        padding: 1.25rem !important;
        min-height: 180px !important;
    }
    
    .testimonial-mobile-img {
        width: 45px !important;
        height: 45px !important;
    }
    
    .testimonial-mobile-name {
        font-size: 15px !important;
    }
    
    .testimonial-mobile-role {
        font-size: 13px !important;
    }
    
    .testimonial-mobile-text {
        font-size: 13px !important;
    }
    
    .testimonial-mobile-stars {
        font-size: 14px !important;
    }
}

/* Very small mobile devices */
@media screen and (max-width: 375px) {
    .testimonial-mobile-container {
        padding: 0.5rem !important;
    }
    
    .testimonial-mobile-card {
        padding: 1rem !important;
        min-height: 160px !important;
    }
    
    .testimonial-mobile-img {
        width: 40px !important;
        height: 40px !important;
    }
    
    .testimonial-mobile-name {
        font-size: 14px !important;
    }
    
    .testimonial-mobile-role {
        font-size: 12px !important;
    }
    
    .testimonial-mobile-text {
        font-size: 12px !important;
    }
} 