/* ========================================= */
/* TESTIMONIALS PAGE INDEPENDENT STYLES     */
/* ========================================= */
/* All classes prefixed with 'testimonials-' to avoid conflicts */
/* Color Palette: #4E1F00 (Dark Brown), #74512D (Medium Brown), #FEBA17 (Gold), #F8F4E1 (Cream) */

/* Base Testimonials Page Layout */
.testimonials-page {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #4E1F00;
}

/* ========================================= */
/* TESTIMONIALS OVERVIEW STATS SECTION      */
/* ========================================= */
.testimonials-overview {
    padding: 5rem 0;
    background: linear-gradient(135deg, #F8F4E1 0%, #ffffff 100%);
    position: relative;
}

.testimonials-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23FEBA17" opacity="0.1"/></svg>') repeat;
    background-size: 50px 50px;
    pointer-events: none;
}

.testimonials-overview .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.testimonials-overview-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    align-items: stretch;
}

.testimonials-stat-item {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(78, 31, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonials-stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FEBA17 0%, #74512D 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.testimonials-stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(78, 31, 0, 0.15);
    border-color: rgba(254, 186, 23, 0.3);
}

.testimonials-stat-item:hover::before {
    transform: scaleX(1);
}

.testimonials-stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FEBA17 0%, #74512D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    display: block;
    line-height: 1;
    letter-spacing: -0.02em;
}

.testimonials-stat-label {
    color: #4E1F00;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0;
}

.testimonials-stat-label-text {
    color: #74512D;
    font-size: 1rem;
    font-weight: 500;
    margin-top: 0.5rem;
}

/* ========================================= */
/* FEATURED TESTIMONIALS SECTION            */
/* ========================================= */
.testimonials-featured {
    padding: 6rem 0;
    background: white;
    position: relative;
}

.testimonials-featured .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.testimonials-section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.testimonials-section-title {
    color: #4E1F00;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    position: relative;
}

.testimonials-section-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #FEBA17 0%, #74512D 100%);
    border-radius: 2px;
}

.testimonials-section-description {
    color: #74512D;
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

.testimonials-main-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 3rem;
    align-items: stretch;
}

.testimonials-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(78, 31, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonials-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 80px rgba(78, 31, 0, 0.15);
    border-color: rgba(254, 186, 23, 0.4);
}

.testimonials-card-featured {
    border: 3px solid #FEBA17;
    background: linear-gradient(135deg, #F8F4E1 0%, white 100%);
    position: relative;
}

.testimonials-card-featured::before {
    content: 'FEATURED';
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #FEBA17;
    color: #4E1F00;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 3;
}

.testimonials-card-header {
    padding: 2.5rem 2.5rem 1.5rem;
    background: white;
    flex-shrink: 0;
    position: relative;
}

.testimonials-client-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.testimonials-client-avatar {
    background: linear-gradient(135deg, #FEBA17 0%, #74512D 100%);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(254, 186, 23, 0.3);
}

.testimonials-client-details h4 {
    color: #4E1F00;
    margin: 0 0 0.5rem 0;
    font-size: 1.3rem;
    font-weight: 700;
}

.testimonials-client-details p {
    color: #74512D;
    font-size: 1rem;
    margin: 0 0 0.75rem 0;
    font-weight: 500;
}

.testimonials-rating {
    color: #FEBA17;
    font-size: 1.1rem;
    letter-spacing: 0.15rem;
}

.testimonials-settlement-amount {
    background: linear-gradient(135deg, #4E1F00 0%, #74512D 100%);
    color: #FEBA17;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 800;
    font-size: 1.1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 8px 25px rgba(78, 31, 0, 0.2);
}

.testimonials-settlement-amount::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(254, 186, 23, 0.3), transparent);
    transition: left 0.6s ease;
}

.testimonials-card:hover .testimonials-settlement-amount::before {
    left: 100%;
}

.testimonials-card-content {
    padding: 0 2.5rem 2.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.testimonials-card-content p {
    color: #4E1F00;
    font-size: 1.1rem;
    line-height: 1.8;
    font-style: italic;
    margin: 0;
    flex-grow: 1;
    position: relative;
    padding-left: 2rem;
}

.testimonials-card-content p::before {
    content: '"';
    color: #FEBA17;
    font-size: 4rem;
    font-family: Georgia, serif;
    position: absolute;
    top: -0.5rem;
    left: -0.5rem;
    line-height: 1;
    opacity: 0.8;
}

.testimonials-card-footer {
    padding: 2rem 2.5rem;
    background: linear-gradient(135deg, #F8F4E1 0%, #ffffff 100%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    margin-top: auto;
    flex-shrink: 0;
    border-top: 1px solid rgba(254, 186, 23, 0.2);
}

.testimonials-case-type {
    color: #74512D;
    font-weight: 600;
    flex: 1;
}

.testimonials-case-year {
    color: #4E1F00;
    font-weight: 700;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(78, 31, 0, 0.1);
}

/* ========================================= */
/* VIDEO TESTIMONIALS SECTION               */
/* ========================================= */
.testimonials-video {
    padding: 6rem 0;
    background: linear-gradient(135deg, #F8F4E1 0%, #ffffff 100%);
    position: relative;
}

.testimonials-video .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.testimonials-video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
    align-items: stretch;
}

.testimonials-video-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(78, 31, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(254, 186, 23, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonials-video-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 80px rgba(78, 31, 0, 0.15);
    border-color: #FEBA17;
}

.testimonials-video-thumbnail {
    position: relative;
    height: 280px;
    overflow: hidden;
    flex-shrink: 0;
}

.testimonials-video-placeholder {
    background: linear-gradient(135deg, #4E1F00 0%, #74512D 100%);
    color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2.5rem;
}

.testimonials-video-placeholder h3 {
    font-size: 1.5rem;
    margin: 0;
    text-align: center;
    font-weight: 700;
    color: #F8F4E1;
    letter-spacing: -0.01em;
}

.testimonials-play-button {
    background: rgba(254, 186, 23, 0.95);
    color: #4E1F00;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 5px solid white;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.testimonials-play-button:hover {
    background: #FEBA17;
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.testimonials-video-info {
    padding: 2.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.testimonials-video-info h4 {
    color: #4E1F00;
    margin: 0 0 1.5rem 0;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.3;
}

.testimonials-video-info p {
    color: #74512D;
    line-height: 1.7;
    margin: 0;
    flex-grow: 1;
    font-size: 1.05rem;
}

/* ========================================= */
/* REVIEW SUMMARY SECTION                   */
/* ========================================= */
.testimonials-review-summary {
    padding: 6rem 0;
    background: white;
    position: relative;
}

.testimonials-review-summary .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.testimonials-content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.testimonials-content-left h2 {
    color: #4E1F00;
    font-size: 2.8rem;
    margin-bottom: 2rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.testimonials-content-left > p {
    color: #74512D;
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 3.5rem;
    font-weight: 400;
}

.testimonials-review-highlights {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.testimonials-highlight-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2rem;
    background: linear-gradient(135deg, #F8F4E1 0%, #ffffff 100%);
    border-radius: 20px;
    border-left: 5px solid #FEBA17;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(78, 31, 0, 0.05);
}

.testimonials-highlight-item:hover {
    transform: translateX(12px);
    box-shadow: 0 12px 40px rgba(78, 31, 0, 0.12);
    border-left-width: 8px;
}

.testimonials-highlight-icon {
    background: linear-gradient(135deg, #FEBA17 0%, #74512D 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(254, 186, 23, 0.3);
}

.testimonials-highlight-content h4 {
    color: #4E1F00;
    margin: 0 0 0.75rem 0;
    font-size: 1.2rem;
    font-weight: 700;
}

.testimonials-highlight-content p {
    color: #74512D;
    margin: 0;
    font-style: italic;
    line-height: 1.6;
    font-size: 1.05rem;
}

.testimonials-content-right {
    position: sticky;
    top: 10rem;
    align-self: flex-start;
}

.testimonials-carousel {
    background: linear-gradient(135deg, #4E1F00 0%, #74512D 100%);
    border-radius: 24px;
    padding: 3.5rem;
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    box-shadow: 0 20px 60px rgba(78, 31, 0, 0.2);
}

.testimonials-carousel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(254, 186, 23, 0.1) 50%, transparent 70%);
    animation: testimonials-shimmer 4s ease-in-out infinite;
}

@keyframes testimonials-shimmer {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.testimonials-carousel-testimonial {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
    position: absolute;
    top: 3.5rem;
    left: 3.5rem;
    right: 3.5rem;
    bottom: 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.testimonials-carousel-testimonial.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
}

.testimonials-quote-icon {
    color: #FEBA17;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.testimonials-carousel-testimonial p {
    font-size: 1.3rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 2.5rem;
    color: #F8F4E1;
    font-weight: 400;
}

.testimonials-client-info strong {
    color: #FEBA17;
    font-size: 1.2rem;
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.testimonials-client-info span {
    color: #F8F4E1;
    font-size: 1rem;
    font-weight: 500;
}

.testimonials-carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 3;
}

.testimonials-carousel-btn {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: none;
    background: rgba(254, 186, 23, 0.4);
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
}

.testimonials-carousel-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: transparent;
    transition: all 0.4s ease;
}

.testimonials-carousel-btn.active {
    background: #FEBA17;
    transform: scale(1.3);
}

.testimonials-carousel-btn.active::before {
    background: #4E1F00;
}

.testimonials-carousel-btn:hover {
    background: #FEBA17;
    transform: scale(1.2);
}

/* ========================================= */
/* AWARDS SECTION                           */
/* ========================================= */
.testimonials-awards-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #F8F4E1 0%, #ffffff 100%);
    position: relative;
}

.testimonials-awards-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.testimonials-awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.testimonials-award-item {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 12px 48px rgba(78, 31, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.testimonials-award-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FEBA17 0%, #74512D 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.testimonials-award-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 80px rgba(78, 31, 0, 0.15);
    border-color: #FEBA17;
}

.testimonials-award-item:hover::before {
    transform: scaleX(1);
}

.testimonials-award-icon {
    background: linear-gradient(135deg, #FEBA17 0%, #74512D 100%);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 2rem;
    box-shadow: 0 8px 25px rgba(254, 186, 23, 0.3);
}

.testimonials-award-item h4 {
    color: #4E1F00;
    margin: 0 0 0.75rem 0;
    font-size: 1.3rem;
    font-weight: 700;
}

.testimonials-award-item p {
    color: #74512D;
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
}

/* ========================================= */
/* CTA SECTION                              */
/* ========================================= */
.testimonials-cta-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #4E1F00 0%, #74512D 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(254,186,23,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(254,186,23,0.08)"/><circle cx="40" cy="70" r="1" fill="rgba(254,186,23,0.06)"/><circle cx="70" cy="10" r="1.2" fill="rgba(254,186,23,0.09)"/></svg>') repeat;
    animation: float 20s ease-in-out infinite;
}

.testimonials-cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.testimonials-cta-content h2 {
    color: white;
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0 0 1.5rem 0;
    line-height: 1.2;
}

.testimonials-cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin: 0 0 3rem 0;
    line-height: 1.6;
}

.testimonials-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.testimonials-cta-buttons .btn {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 200px;
    justify-content: center;
}

.testimonials-cta-buttons .btn-primary {
    background: linear-gradient(135deg, #FEBA17 0%, #FFD700 100%);
    color: #4E1F00;
    border: 2px solid transparent;
}

.testimonials-cta-buttons .btn-primary:hover {
    background: linear-gradient(135deg, #FFD700 0%, #FEBA17 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(254, 186, 23, 0.4);
}

.testimonials-cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.testimonials-cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.1);
}

/* Responsive Design for CTA */
@media (max-width: 768px) {
    .testimonials-cta-section {
        padding: 6rem 0;
    }
    
    .testimonials-cta-content h2 {
        font-size: 2.5rem;
    }
    
    .testimonials-cta-content p {
        font-size: 1.1rem;
    }
    
    .testimonials-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .testimonials-cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .testimonials-cta-content h2 {
        font-size: 2.2rem;
    }
    
    .testimonials-cta-buttons .btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* ========================================= */
/* RESPONSIVE DESIGN                        */
/* ========================================= */
@media (max-width: 1024px) {
    .testimonials-main-grid {
        grid-template-columns: 1fr;
        max-width: 700px;
        margin: 0 auto;
    }
    
    .testimonials-video-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }
    
    .testimonials-content-split {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .testimonials-awards-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

@media (max-width: 768px) {
    .testimonials-section-title {
        font-size: 2.4rem;
    }
    
    .testimonials-main-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-video-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-content-right {
        position: static;
    }
    
    .testimonials-card-header {
        padding: 2rem 2rem 1.25rem;
    }
    
    .testimonials-card-content {
        padding: 0 2rem 2rem;
    }
    
    .testimonials-card-footer {
        padding: 1.5rem 2rem;
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .testimonials-client-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .testimonials-client-avatar {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .testimonials-settlement-amount {
        align-self: flex-start;
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }
    
    .testimonials-carousel {
        padding: 2.5rem;
        min-height: 300px;
    }
    
    .testimonials-carousel-testimonial {
        top: 2.5rem;
        left: 2.5rem;
        right: 2.5rem;
        bottom: 2.5rem;
    }
    
    .testimonials-carousel-testimonial p {
        font-size: 1.1rem;
    }
    
    .testimonials-review-highlights {
        gap: 2rem;
    }
    
    .testimonials-highlight-item {
        padding: 1.5rem;
        gap: 1.5rem;
    }
    
    .testimonials-highlight-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .testimonials-section-title {
        font-size: 2rem;
    }
    
    .testimonials-card {
        margin: 0 1rem;
    }
    
    .testimonials-card-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .testimonials-card-content {
        padding: 0 1.5rem 1.5rem;
    }
    
    .testimonials-card-footer {
        padding: 1.25rem 1.5rem;
    }
    
    .testimonials-card-content p {
        font-size: 1rem;
        padding-left: 1.5rem;
    }
    
    .testimonials-video-placeholder h3 {
        font-size: 1.2rem;
    }
    
    .testimonials-play-button {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .testimonials-video-info {
        padding: 2rem;
    }
    
    .testimonials-carousel {
        padding: 2rem;
        min-height: 250px;
    }
    
    .testimonials-carousel-testimonial {
        top: 2rem;
        left: 2rem;
        right: 2rem;
        bottom: 2rem;
    }
    
    .testimonials-quote-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .testimonials-carousel-testimonial p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .testimonials-client-info strong {
        font-size: 1.1rem;
    }
    
    .testimonials-content-left h2 {
        font-size: 2.2rem;
    }
    
    .testimonials-overview-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonials-stat-number {
        font-size: 2.8rem;
    }
}

/* ========================================= */
/* HERO STATS SECTION                       */
/* ========================================= */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0 1rem 0;
    padding: 0;
}

.stat {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.stat-number-container {
    margin-bottom: 0.5rem;
    line-height: 1;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #FEBA17;
    line-height: 1;
    display: block;
}

.stat-suffix {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FEBA17;
    line-height: 1;
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
}

/* Responsive Hero Stats */
@media (max-width: 768px) {
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin: 1.5rem 0 0.5rem 0;
    }
    
    .stat {
        padding: 0.8rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-suffix {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        margin: 1rem 0 0.5rem 0;
    }
    
    .stat {
        padding: 0.7rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-suffix {
        font-size: 1.1rem;
    }
}
