/* style/index-full88-user-testimonials.css */

/* Biến CSS */
:root {
    --full88-primary-color: #003366;
    --full88-secondary-color: #FFD700;
    --full88-accent-color: #DC143C;
    --full88-text-dark: #333333;
    --full88-text-light: #ffffff;
    --full88-bg-light: #f4f7f6;
    --full88-bg-dark: #002244;
    --full88-border-color: #e0e0e0;
}

.page-index-full88-user-testimonials {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--full88-text-dark);
    background-color: var(--full88-bg-light);
}

.page-index-full88-user-testimonials__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-index-full88-user-testimonials__hero-section {
    background: linear-gradient(135deg, var(--full88-primary-color) 0%, #004488 100%);
    color: var(--full88-text-light);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-index-full88-user-testimonials__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract_lines,digital_pattern,dark_blue_gold]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-index-full88-user-testimonials__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: var(--full88-secondary-color);
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-full88-user-testimonials__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.page-index-full88-user-testimonials__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-index-full88-user-testimonials__btn--primary {
    background-color: var(--full88-accent-color);
    color: var(--full88-text-light);
    border: 2px solid var(--full88-accent-color);
}

.page-index-full88-user-testimonials__btn--primary:hover {
    background-color: #a00d2e;
    transform: translateY(-2px);
    border-color: #a00d2e;
}

.page-index-full88-user-testimonials__btn--secondary {
    background-color: var(--full88-secondary-color);
    color: var(--full88-primary-color);
    border: 2px solid var(--full88-secondary-color);
}

.page-index-full88-user-testimonials__btn--secondary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
    border-color: #e6c200;
}

.page-index-full88-user-testimonials__btn--large {
    padding: 15px 35px;
    font-size: 1.1em;
}

.page-index-full88-user-testimonials__content-section {
    padding: 60px 0;
}

.page-index-full88-user-testimonials__section-title {
    font-size: 2.2em;
    color: var(--full88-primary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-index-full88-user-testimonials__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--full88-secondary-color);
    border-radius: 2px;
}

.page-index-full88-user-testimonials__text-block {
    margin-bottom: 40px;
    font-size: 1.05em;
}

.page-index-full88-user-testimonials__text-block p {
    margin-bottom: 15px;
}

.page-index-full88-user-testimonials__sub-title {
    font-size: 1.6em;
    color: var(--full88-primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-index-full88-user-testimonials__intro-text {
    text-align: center;
    font-size: 1.1em;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-index-full88-user-testimonials__review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.page-index-full88-user-testimonials__review-card {
    background-color: var(--full88-text-light);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-full88-user-testimonials__review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-index-full88-user-testimonials__review-image {
    width: 100%;
    max-width: 150px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
    object-fit: cover;
}

.page-index-full88-user-testimonials__card-title {
    font-size: 1.4em;
    color: var(--full88-primary-color);
    margin-bottom: 15px;
}

.page-index-full88-user-testimonials__card-text {
    font-size: 0.95em;
    color: #555555;
    margin-bottom: 20px;
}

.page-index-full88-user-testimonials__tips-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.page-index-full88-user-testimonials__tip-item {
    background-color: var(--full88-text-light);
    border-left: 5px solid var(--full88-secondary-color);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
}

.page-index-full88-user-testimonials__tip-item .page-index-full88-user-testimonials__sub-title {
    font-size: 1.3em;
    margin-top: 0;
    color: var(--full88-primary-color);
}

.page-index-full88-user-testimonials__faq {
    margin-top: 40px;
    margin-bottom: 60px;
}

.page-index-full88-user-testimonials__faq-item {
    background-color: var(--full88-text-light);
    border: 1px solid var(--full88-border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-index-full88-user-testimonials__faq-question {
    font-size: 1.3em;
    color: var(--full88-primary-color);
    padding: 18px 25px;
    margin: 0;
    cursor: pointer;
    background-color: #f9f9f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-index-full88-user-testimonials__faq-question:hover {
    background-color: #f0f0f0;
}

.page-index-full88-user-testimonials__faq-question::after {
    content: '+';
    font-size: 1.2em;
    font-weight: bold;
    color: var(--full88-secondary-color);
    transition: transform 0.3s ease;
}

.page-index-full88-user-testimonials__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-index-full88-user-testimonials__faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    color: #444444;
}

.page-index-full88-user-testimonials__faq-answer.active {
    max-height: 200px; /* Adjust as needed */
    padding: 15px 25px 20px;
}

.page-index-full88-user-testimonials__feedback-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-index-full88-user-testimonials__hero-title {
        font-size: 2em;
    }

    .page-index-full88-user-testimonials__hero-description {
        font-size: 1em;
    }

    .page-index-full88-user-testimonials__section-title {
        font-size: 1.8em;
    }

    .page-index-full88-user-testimonials__sub-title {
        font-size: 1.4em;
    }

    .page-index-full88-user-testimonials__review-card {
        padding: 20px;
    }

    .page-index-full88-user-testimonials__card-title {
        font-size: 1.2em;
    }

    .page-index-full88-user-testimonials__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }

    .page-index-full88-user-testimonials__faq-answer {
        padding: 10px 20px 15px;
    }
}

@media (max-width: 480px) {
    .page-index-full88-user-testimonials__hero-section {
        padding: 60px 0;
    }

    .page-index-full88-user-testimonials__hero-title {
        font-size: 1.8em;
    }

    .page-index-full88-user-testimonials__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .page-index-full88-user-testimonials__btn--large {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-index-full88-user-testimonials__section-title {
        font-size: 1.6em;
    }

    .page-index-full88-user-testimonials__review-grid,
    .page-index-full88-user-testimonials__tips-list {
        grid-template-columns: 1fr;
    }
}