/* style/index-user-testimonials-showcase.css */
.page-index-user-testimonials-showcase {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
}

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

.page-index-user-testimonials-showcase__hero {
    background-color: #003366; /* Main color */
    background-image: linear-gradient(135deg, #003366 0%, #001a33 100%);
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.page-index-user-testimonials-showcase__title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    color: #fff; /* White text on dark background */
}

.page-index-user-testimonials-showcase__subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    color: #e0e0e0; /* Lighter white for subtitle */
}

.page-index-user-testimonials-showcase__highlight {
    color: #FFCC00; /* Accent color */
}

.page-index-user-testimonials-showcase__button {
    display: inline-block;
    background-color: #FFCC00; /* Accent color for buttons */
    color: #003366; /* Dark text on accent button */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.page-index-user-testimonials-showcase__button:hover {
    background-color: #e6b800; /* Slightly darker accent on hover */
    transform: translateY(-2px);
}

.page-index-user-testimonials-showcase__button--secondary {
    background-color: #004d99; /* Darker blue for secondary action */
    color: #fff;
}

.page-index-user-testimonials-showcase__button--secondary:hover {
    background-color: #003366;
}

.page-index-user-testimonials-showcase__button--outline {
    background-color: transparent;
    border: 2px solid #FFCC00;
    color: #FFCC00;
}

.page-index-user-testimonials-showcase__button--outline:hover {
    background-color: #FFCC00;
    color: #003366;
}

.page-index-user-testimonials-showcase__button--small {
    padding: 10px 20px;
    font-size: 1em;
}

.page-index-user-testimonials-showcase__section-heading {
    font-size: 2.5em;
    color: #003366; /* Main color for headings */
    text-align: center;
    margin-bottom: 50px;
    padding-top: 60px;
    position: relative;
}

.page-index-user-testimonials-showcase__section-heading::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFCC00;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-index-user-testimonials-showcase__testimonials-grid,
.page-index-user-testimonials-showcase__why-choose,
.page-index-user-testimonials-showcase__faq,
.page-index-user-testimonials-showcase__responsible-gaming,
.page-index-user-testimonials-showcase__contact-cta {
    padding: 60px 0;
    background-color: #f8f8f8;
}

.page-index-user-testimonials-showcase__testimonials-grid {
    background-color: #fff;
}

.page-index-user-testimonials-showcase__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-index-user-testimonials-showcase__testimonial-card {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-user-testimonials-showcase__testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-index-user-testimonials-showcase__avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid #FFCC00;
}

.page-index-user-testimonials-showcase__user-name {
    font-size: 1.5em;
    color: #003366;
    margin-bottom: 10px;
}

.page-index-user-testimonials-showcase__rating {
    color: #FFCC00;
    font-size: 1.2em;
    margin-bottom: 15px;
}

.page-index-user-testimonials-showcase__quote {
    font-style: italic;
    color: #555;
    font-size: 1.05em;
}

.page-index-user-testimonials-showcase__description {
    text-align: center;
    font-size: 1.1em;
    color: #444;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-index-user-testimonials-showcase__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-index-user-testimonials-showcase__feature-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
    border-bottom: 4px solid #003366;
}

.page-index-user-testimonials-showcase__feature-item:hover {
    transform: translateY(-5px);
}

.page-index-user-testimonials-showcase__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.page-index-user-testimonials-showcase__feature-title {
    font-size: 1.4em;
    color: #003366;
    margin-bottom: 15px;
}

.page-index-user-testimonials-showcase__feature-text {
    color: #666;
    font-size: 0.95em;
}

.page-index-user-testimonials-showcase__cta-bottom {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px dashed #ccc;
}

.page-index-user-testimonials-showcase__cta-bottom p {
    font-size: 1.2em;
    color: #003366;
    margin-bottom: 25px;
    font-weight: bold;
}

.page-index-user-testimonials-showcase__faq-item {
    background-color: #fff;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.page-index-user-testimonials-showcase__faq-question {
    font-size: 1.3em;
    color: #003366;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-index-user-testimonials-showcase__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #FFCC00;
    transition: transform 0.3s ease;
}

.page-index-user-testimonials-showcase__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-index-user-testimonials-showcase__faq-answer {
    color: #555;
    font-size: 1.05em;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    padding-left: 10px;
}

.page-index-user-testimonials-showcase__faq-answer.active {
    max-height: 200px; /* Adjust based on content */
    padding-top: 10px;
}

.page-index-user-testimonials-showcase__link-inline {
    color: #003366;
    text-decoration: underline;
    font-weight: bold;
}

.page-index-user-testimonials-showcase__link-inline:hover {
    color: #FFCC00;
}

.page-index-user-testimonials-showcase__responsible-gaming {
    background-color: #e6f0f5; /* Light blue background */
    text-align: center;
    padding: 80px 0;
    border-top: 5px solid #003366;
}

.page-index-user-testimonials-showcase__responsible-gaming .page-index-user-testimonials-showcase__section-heading {
    color: #003366;
}

.page-index-user-testimonials-showcase__contact-cta {
    background-color: #003366; /* Main color */
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

.page-index-user-testimonials-showcase__contact-cta .page-index-user-testimonials-showcase__section-heading {
    color: #fff;
}

.page-index-user-testimonials-showcase__contact-cta .page-index-user-testimonials-showcase__section-heading::after {
    background-color: #FFCC00;
}

.page-index-user-testimonials-showcase__contact-cta .page-index-user-testimonials-showcase__description {
    color: #e0e0e0;
}

.page-index-user-testimonials-showcase__cta-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-index-user-testimonials-showcase__title {
        font-size: 2.8em;
    }
    .page-index-user-testimonials-showcase__subtitle {
        font-size: 1.2em;
    }
    .page-index-user-testimonials-showcase__section-heading {
        font-size: 2em;
    }
    .page-index-user-testimonials-showcase__grid,
    .page-index-user-testimonials-showcase__features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-index-user-testimonials-showcase__hero {
        padding: 80px 0;
    }
    .page-index-user-testimonials-showcase__title {
        font-size: 2.2em;
    }
    .page-index-user-testimonials-showcase__subtitle {
        font-size: 1em;
    }
    .page-index-user-testimonials-showcase__button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-index-user-testimonials-showcase__section-heading {
        font-size: 1.8em;
    }
    .page-index-user-testimonials-showcase__grid,
    .page-index-user-testimonials-showcase__features-grid {
        grid-template-columns: 1fr;
    }
    .page-index-user-testimonials-showcase__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-index-user-testimonials-showcase__cta-buttons .page-index-user-testimonials-showcase__button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    .page-index-user-testimonials-showcase__testimonial-card,
    .page-index-user-testimonials-showcase__feature-item,
    .page-index-user-testimonials-showcase__faq-item {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .page-index-user-testimonials-showcase__hero {
        padding: 60px 0;
    }
    .page-index-user-testimonials-showcase__title {
        font-size: 1.8em;
    }
    .page-index-user-testimonials-showcase__subtitle {
        font-size: 0.9em;
    }
    .page-index-user-testimonials-showcase__section-heading {
        font-size: 1.5em;
        margin-bottom: 30px;
    }
    .page-index-user-testimonials-showcase__container {
        padding: 0 15px;
    }
}