/* ========================================
   TESTIMONIALS MODULE - HYPER-SPECIFIC STYLES
   ======================================== */

/* Testimonials Section - Hyper-specific selectors */
section[id*="testimonials"] {
    padding-top: 3rem;
    padding-bottom: 3rem;
    border-top: 2px solid rgba(var(--secondary-color-rgb), 0.2);
    background-color: var(--background-light);
    background-image: url('data:image/svg+xml,<svg xmlns="https://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="none" width="100" height="100"/><path fill="rgba(var(--primary-color-rgb),0.05)" d="M0 0h100v100H0z"/><circle cx="10" cy="10" r="1" fill="rgba(var(--primary-color-rgb),0.1)"/><circle cx="20" cy="30" r="1.5" fill="rgba(var(--primary-color-rgb),0.07)"/><circle cx="40" cy="20" r="1" fill="rgba(var(--primary-color-rgb),0.12)"/><circle cx="60" cy="50" r="1.2" fill="rgba(var(--primary-color-rgb),0.1)"/><circle cx="80" cy="70" r="1" fill="rgba(var(--primary-color-rgb),0.07)"/><circle cx="30" cy="80" r="1.3" fill="rgba(var(--primary-color-rgb),0.1)"/><circle cx="50" cy="90" r="1" fill="rgba(var(--primary-color-rgb),0.12)"/></svg>');
    background-size: 100px;
    text-align: center;
}

/* Testimonial slider container - hyper-specific */
section[id*="testimonials"] .testimonial-slider {
    max-width: 1700px; 
    width: 95%;
    margin: 0 auto;
    position: relative;
    overflow: hidden; 
    box-sizing: border-box;
    padding-left: 30px; 
    padding-right: 30px;
}

/* Testimonial slides container - hyper-specific */
section[id*="testimonials"] .testimonial-slides {
    display: flex;
    transition: transform 0.5s ease-in-out; 
}

/* Individual testimonial item - hyper-specific */
section[id*="testimonials"] .testimonial-item {
    box-sizing: border-box;
    background: linear-gradient(135deg, var(--background-white) 0%, var(--background-light) 100%);
    border-radius: calc(var(--border-radius) + 4px);
    padding: 1.5rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    min-height: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0; 
    width: 100%; 
    margin: 0;
}

/* Testimonial item hover effect - hyper-specific */
section[id*="testimonials"] .testimonial-item:hover { 
    transform: scale(1.02); 
    box-shadow: 0 14px 50px rgba(0, 0, 0, 0.22); 
}

/* Testimonial item heading - hyper-specific */
section[id*="testimonials"] .testimonial-item h3 { 
    font-size: 1.3rem; 
    color: var(--secondary-color); 
    font-weight: 700; 
    margin: 0 0 1rem; 
    text-align: center; 
    letter-spacing: 0.5px; 
}

/* Testimonial item paragraph - hyper-specific */
section[id*="testimonials"] .testimonial-item p { 
    font-family: var(--font-primary); 
    font-size: 1rem; 
    font-weight: 300; 
    color: var(--text-color-dark); 
    margin-bottom: 1rem; 
    font-style: italic; 
}

/* Testimonial rating stars - hyper-specific */
section[id*="testimonials"] .testimonial-item .rating { 
    margin-bottom: 0.5rem; 
    display: flex; 
    justify-content: center; 
    gap: 0.3rem; 
}

/* Testimonial rating star SVG - hyper-specific */
section[id*="testimonials"] .testimonial-item .rating svg { 
    width: 1.3rem; 
    height: 1.3rem; 
    fill: var(--accent-color); 
    filter: drop-shadow(0 0 3px rgba(var(--accent-color-rgb), 0.3)); 
}

/* Testimonial author - hyper-specific */
section[id*="testimonials"] .testimonial-item .author { 
    font-size: 1rem; 
    color: var(--secondary-color); 
    font-weight: 700; 
    border-bottom: 2px solid var(--primary-color); 
    display: inline-block; 
    padding-bottom: 2px; 
}

/* Testimonial slider navigation - hyper-specific */
section[id*="testimonials"] .slider-nav { 
    position: absolute; 
    top: 50%; 
    width: 100%; 
    display: flex; 
    justify-content: space-between; 
    transform: translateY(-50%); 
    left: 0; 
    box-sizing: border-box; 
    z-index: 10; 
    pointer-events: none; 
}

/* Testimonial slider navigation buttons - hyper-specific */
section[id*="testimonials"] .slider-nav button { 
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color)); 
    border: none; 
    border-radius: 50%; 
    width: 44px; 
    height: 44px; 
    cursor: pointer; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    transition: background 0.3s ease, transform 0.3s ease; 
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2); 
    pointer-events: auto;
    margin-left: 0;
    margin-right: 0;
}

/* Testimonial slider navigation button hover - hyper-specific */
section[id*="testimonials"] .slider-nav button:hover { 
    background: var(--secondary-color); 
    transform: scale(1.1); 
}

/* Testimonial slider navigation button SVG - hyper-specific */
section[id*="testimonials"] .slider-nav button svg { 
    width: 22px; 
    height: 22px; 
    fill: var(--text-color-light); 
    filter: drop-shadow(0 0 2px rgba(var(--text-color-light-rgb), 0.5)); 
}

/* ========================================
   RESPONSIVE DESIGN - HYPER-SPECIFIC
   ======================================== */

/* Tablet and smaller desktop - hyper-specific */
@media (max-width: 1000px) {
    section[id*="testimonials"] .slider-nav button { 
        width: 44px; 
        height: 44px; 
    }
    
    section[id*="testimonials"] .slider-nav button svg { 
        width: 22px; 
        height: 22px; 
    }
}

/* Tablet Portrait - hyper-specific */
@media (max-width: 802px) {
    section[id*="testimonials"] { 
        padding: 2rem 0.75rem; 
    }
    
    section[id*="testimonials"] .testimonial-slider {
        max-width: 100%;
        width: 100%; 
        overflow: hidden; 
        position: relative; 
        padding-left: 25px;  
        padding-right: 25px; 
        box-sizing: border-box; 
    }
    
    section[id*="testimonials"] .testimonial-item {
        flex: 0 0 100%;
        width: 100%;
        margin: 0;
        padding: 1.5rem; 
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    }
    
    section[id*="testimonials"] .slider-nav {
        width: 100%; 
        position: absolute; 
        top: 50%; 
        transform: translateY(-50%); 
        left: 0; 
        display: flex; 
        justify-content: space-between; 
        z-index: 10; 
        pointer-events: none; 
    }
    
    section[id*="testimonials"] .slider-nav button {
        width: 38px; 
        height: 38px;
        pointer-events: auto; 
        margin-left: 0;
        margin-right: 0;
    }
    
    section[id*="testimonials"] .slider-nav button svg {
        width: 20px; 
        height: 20px;
    }
}

/* Mobile - hyper-specific */
@media (max-width: 480px) {
    section[id*="testimonials"] h2 { 
        font-size: 1.3rem; 
    }
    
    section[id*="testimonials"] .testimonial-item { 
        margin: 0; 
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.16); 
        padding: 1.5rem; 
    }
    
    section[id*="testimonials"] .testimonial-slider { 
        padding-left: 20px;  
        padding-right: 20px;
    }
    
    section[id*="testimonials"] .slider-nav button { 
        width: 34px; 
        height: 34px;
    }
    
    section[id*="testimonials"] .slider-nav button svg { 
        width: 18px; 
        height: 18px;
    }
}

/* Desktop view of testimonial slider - hyper-specific */
@media (min-width: 769px) {
    section[id*="testimonials"] .testimonial-item {
        width: 480px; 
        margin: 0 10px; 
    }
}

/* ========================================
   TESTIMONIAL-SPECIFIC ARROW ICONS
   ======================================== */

/* Testimonial arrow icons - hyper-specific */
section[id*="testimonials"] .icon-arrow-left::before {
    content: "‹";
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1;
}

section[id*="testimonials"] .icon-arrow-right::before {
    content: "›";
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1;
}

/* ========================================
   TESTIMONIAL-SPECIFIC UTILITY CLASSES
   ======================================== */

/* Testimonials section specific styling - hyper-specific */
.testimonials-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Testimonial section title styling - hyper-specific */
.testimonials-section .section-title {
    font-size: 2rem;
    color: var(--secondary-color, #495057);
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
} 

 

 