/* ============================================================
   TK BLINDS TESTIMONIALS SLIDER WIDGET CSS
   ============================================================ */

.tk-testi-section {
    display: flex !important;
    flex-direction: column !important;
    gap: 40px !important;
    width: 100% !important;
    max-width: 1240px !important;
    margin: 0 auto !important;
    padding: 60px 24px !important;
    box-sizing: border-box !important;
    font-family: 'Montserrat', sans-serif !important;
}

.tk-testi-heading {
    font-size: 32px !important;
    font-weight: 800 !important;
    color: #032149 !important; /* Brand Navy */
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.25 !important;
    text-align: center !important;
}

/* Slider Outer Container */
.tk-testi-slider {
    width: 100% !important;
    border-radius: 16px !important;
    border: 1px solid #eff3f8 !important;
    box-shadow: 0 6px 24px rgba(3, 33, 73, 0.03) !important;
    overflow: hidden !important;
    background-color: #ffffff !important;
    position: relative !important;
}

/* Swiper slide content wrapper */
.tk-testi-slide {
    display: flex !important;
    flex-direction: row !important;
    width: 100% !important;
    box-sizing: border-box !important;
    align-items: stretch !important;
    background-color: #ffffff !important;
}

/* Left Column Image */
.tk-testi-img-wrap {
    width: 45% !important;
    flex-shrink: 0 !important;
    overflow: hidden !important;
    position: relative !important;
}

.tk-testi-img-wrap img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

/* Right Column Testimonial Content */
.tk-testi-content {
    width: 55% !important;
    padding: 54px 54px 84px 54px !important; /* Extra bottom padding for dots & arrows */
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    gap: 20px !important;
    box-sizing: border-box !important;
    position: relative !important;
}

/* Testimonial Elements */
.tk-testi-stars {
    display: flex !important;
    gap: 4px !important;
    color: #ffb300 !important; /* Gold Rating Color */
    font-size: 16px !important;
}

.tk-testi-stars i,
.tk-testi-stars svg {
    display: block !important;
    width: 16px !important;
    height: 16px !important;
    fill: currentColor !important;
}

.tk-testi-quote {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    line-height: 1.65 !important;
    color: #4a5b72 !important;
    margin: 0 !important;
    font-style: italic !important;
}

.tk-testi-author-meta {
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
}

.tk-testi-author {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    color: #032149 !important; /* Brand Navy */
    margin: 0 !important;
}

.tk-testi-location {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #8fa0b5 !important;
    margin: 0 !important;
}

/* Navigation Controls Styling */
.tk-testi-pagination {
    position: absolute !important;
    bottom: 32px !important;
    left: 54px !important;
    display: flex !important;
    z-index: 10 !important;
    width: auto !important;
}

.tk-testi-pagination .swiper-pagination-bullet {
    background-color: #dbe4ef !important;
    opacity: 1 !important;
    width: 8px !important;
    height: 8px !important;
    margin: 0 4px !important;
    border-radius: 50% !important;
    transition: all 0.25s ease !important;
    outline: none !important;
}

.tk-testi-pagination .swiper-pagination-bullet-active {
    background-color: #032149 !important;
    width: 20px !important;
    border-radius: 5px !important;
}

.tk-testi-arrows {
    position: absolute !important;
    bottom: 24px !important;
    right: 54px !important;
    display: flex !important;
    gap: 12px !important;
    z-index: 10 !important;
}

.tk-testi-arrow {
    width: 42px !important;
    height: 42px !important;
    border-radius: 50% !important;
    border: 1px solid #dbe4ef !important;
    background-color: #ffffff !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #032149 !important; /* Brand Navy */
    cursor: pointer !important;
    transition: all 0.25s ease !important;
    box-sizing: border-box !important;
}

.tk-testi-arrow:hover {
    background-color: #0b57a3 !important; /* Brand Blue */
    color: #ffffff !important;
    border-color: #0b57a3 !important;
    box-shadow: 0 4px 10px rgba(11, 87, 163, 0.2) !important;
}

.tk-testi-arrow svg {
    width: 16px !important;
    height: 16px !important;
    stroke: currentColor !important;
    stroke-width: 2.5 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
    fill: none !important;
}

/* ============================================================
   RESPONSIVENESS AND BREAKPOINTS
   ============================================================ */

@media (max-width: 900px) {
    .tk-testi-slide {
        flex-direction: column !important;
    }
    
    .tk-testi-img-wrap {
        width: 100% !important;
        height: 260px !important;
    }
    
    .tk-testi-content {
        width: 100% !important;
        padding: 36px 36px 84px 36px !important;
        gap: 16px !important;
    }
    
    .tk-testi-pagination {
        left: 36px !important;
    }
    
    .tk-testi-arrows {
        right: 36px !important;
    }
}

@media (max-width: 600px) {
    .tk-testi-section {
        padding: 48px 24px !important;
        gap: 28px !important;
    }

    .tk-testi-heading {
        font-size: 28px !important;
    }
    
    .tk-testi-content {
        padding: 28px 24px 84px 24px !important;
    }
    
    .tk-testi-pagination {
        left: 24px !important;
    }
    
    .tk-testi-arrows {
        right: 24px !important;
    }
}

@media (max-width: 480px) {
    .tk-testi-arrows {
        display: none !important; /* Hide navigation arrows on phones, keep dots only */
    }
    .tk-testi-pagination {
        left: 50% !important;
        transform: translateX(-50%) !important;
        bottom: 24px !important;
    }
    .tk-testi-content {
        padding: 24px 20px 64px 20px !important;
    }
}
