/* Testimonial Section Styles - Premium Editorial Design */

.divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 40px auto 0;
}

.testimonial-scroll-track {
    display: flex;
    gap: 30px;
    overflow-x: hidden;
    padding: 30px 0;
}

.testimonial-scroll-item {
    flex: 0 0 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
    display: block;
}

.testimonial-scroll-item .testimonial-card-luxe {
    height: 100%;
    min-height: 360px;
    background: #ffffff;
    border-radius: 4px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(25, 57, 118, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: none;
    display: flex;
    flex-direction: column;
    position: relative;
    border-left: 3px solid #C9A84C;
}

.testimonial-scroll-item .testimonial-card-luxe:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(25, 57, 118, 0.1);
}

.testimonial-scroll-item .testimonial-quote {
    font-family: 'Noto Serif', serif;
    font-size: 15px;
    line-height: 1.7 !important;
    color: #333;
    margin-bottom: 20px;
    padding: 0 !important;
    flex-grow: 1;
    font-style: italic;
}

.testimonial-author {
    margin-top: auto;
    padding-top: 15px !important;
    padding-bottom: 0 !important;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.author-img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    background: #fff;
    padding: 2px !important;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    flex-shrink: 0;
    margin: 0 !important;
}

.author-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.1 !important;
    padding: 0 !important;
}

.author-info h5 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #193976;
    margin-bottom: 0px !important;
    padding: 0 !important;
    line-height: 1.1 !important;
}

.author-info h5 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0 !important;
}

.author-info h5 a:hover {
    color: #C9A84C;
}

.author-info span {
    font-family: 'Manrope', sans-serif;
    letter-spacing: 0.03em;
    display: block;
    font-size: 9px !important;
    color: #888;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1 !important;
    padding: 0 !important;
}

.google-review-badge {
    color: #C9A84C;
    font-size: 24px;
    margin-bottom: 15px;
    opacity: 0.8;
}

/* Navigation Buttons at Bottom */
.testimonial-nav-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 15px;
}

.testimonial-nav-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #ffffff;
    color: #193976;
    border: 1px solid rgba(25, 57, 118, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.testimonial-nav-btn:hover {
    background: #193976;
    color: #fff;
    transform: scale(1.05);
}

.testimonial-dots {
    display: flex;
    gap: 10px;
}

.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1d1d1;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: #C9A84C;
    transform: scale(1.3);
}

@media (max-width: 992px) {
    .testimonial-scroll-item {
        flex: 0 0 calc(50% - 15px);
        max-width: calc(50% - 15px);
    }
}

@media (max-width: 576px) {
    .testimonial-scroll-item {
        flex: 0 0 calc(100% - 30px);
        max-width: calc(100% - 30px);
    }
    
    .testimonial-scroll-item .testimonial-card-luxe {
        min-height: 320px;
        padding: 20px;
    }
}

/* Simplified Footer CTA Buttons */
.btn-ingot {
    display: inline-block;
    padding: 8px 24px;
    background: #193976;
    color: #C9A84C !important;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #193976;
}

.btn-ingot:hover {
    background: #00235a;
    border-color: #00235a;
    color: #ffffff !important;
}

.btn-ghost {
    display: inline-block;
    padding: 8px 24px;
    background: transparent;
    color: #C9A84C !important;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #C9A84C;
}

.btn-ghost:hover {
    background: rgba(201, 168, 76, 0.1);
    color: #ffffff !important;
}
