/* ========================================
   TRIPADVISOR TESTIMONIALS STYLING
   ======================================== */

/* === TRIPADVISOR BADGE === */
.tripadvisor-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    padding: 1.5rem 2rem;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.tripadvisor-logo {
    height: 40px;
    width: auto;
}

.tripadvisor-rating {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.tripadvisor-stars {
    display: flex;
    gap: 0.3rem;
}

.tripadvisor-stars i {
    color: #00AA6C;
    font-size: 1.2rem;
}

.tripadvisor-text {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.tripadvisor-text strong {
    font-size: 1.1rem;
    color: #00AA6C;
}

/* === TESTIMONIAL HEADER === */
.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 170, 108, 0.1);
}

.tripadvisor-bubbles {
    display: flex;
    gap: 0.25rem;
}

.tripadvisor-bubbles i {
    color: #00AA6C;
    font-size: 1rem;
}

.tripadvisor-source {
    font-size: 0.85rem;
    color: #00AA6C;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tripadvisor-source::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%2300AA6C"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
}

/* === TESTIMONIAL ITEM UPDATES === */
.testimonial-item {
    background: #ffffff !important;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3) !important;
    transition: var(--transition-smooth);
    border: 2px solid transparent !important;
    backdrop-filter: none !important;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 170, 108, 0.3) !important;
    border-color: rgba(0, 170, 108, 0.3) !important;
    background: #ffffff !important;
}

/* === TEXT VISIBILITY === */
.testimonial-text {
    color: #2c2c2c !important;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author h4 {
    color: #1a1a1a !important;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.testimonial-author p {
    color: #666666 !important;
    font-size: 0.9rem;
}

/* === MORE REVIEWS BUTTON === */
.btn-tripadvisor {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 3rem;
    background: #00AA6C;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0, 170, 108, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}

.btn-tripadvisor:hover {
    background: #008C5A;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 170, 108, 0.5);
    color: #ffffff;
}

.btn-tripadvisor i:first-child {
    font-size: 1.2rem;
}

.btn-tripadvisor i:last-child {
    font-size: 0.9rem;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .tripadvisor-badge {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
        text-align: center;
    }
    
    .tripadvisor-logo {
        height: 35px;
    }
    
    .tripadvisor-rating {
        align-items: center;
    }
    
    .tripadvisor-stars {
        justify-content: center;
    }
    
    .testimonial-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }
    
    .tripadvisor-source {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .tripadvisor-badge {
        padding: 1rem;
    }
    
    .tripadvisor-logo {
        height: 30px;
    }
    
    .tripadvisor-stars i {
        font-size: 1rem;
    }
    
    .tripadvisor-text {
        font-size: 0.85rem;
    }
    
    .testimonial-item {
        padding: 1.5rem;
    }
    
    .btn-tripadvisor {
        padding: 1rem 2rem;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
    }
}
