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

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

.page-index-user-testimonials__hero {
    background: linear-gradient(135deg, #1A2C42, #3A4C62);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.page-index-user-testimonials__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    z-index: 0;
}

.page-index-user-testimonials__hero .page-index-user-testimonials__container {
    position: relative;
    z-index: 1;
}

.page-index-user-testimonials__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #E0B147;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-user-testimonials__hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #ddd;
}

.page-index-user-testimonials__hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-index-user-testimonials__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1.1em;
    text-align: center;
}

.page-index-user-testimonials__button--primary {
    background-color: #E0B147;
    color: #1A2C42;
    border: 2px solid #E0B147;
}

.page-index-user-testimonials__button--primary:hover {
    background-color: #f0c25a;
    transform: translateY(-2px);
}

.page-index-user-testimonials__button--secondary {
    background-color: transparent;
    color: #E0B147;
    border: 2px solid #E0B147;
}

.page-index-user-testimonials__button--secondary:hover {
    background-color: #E0B147;
    color: #1A2C42;
    transform: translateY(-2px);
}

.page-index-user-testimonials__section {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.page-index-user-testimonials__section:last-of-type {
    margin-bottom: 0;
    border-bottom: none;
}

.page-index-user-testimonials__section--why-feedback {
    background-color: #f2f4f6;
    text-align: center;
    position: relative;
}

.page-index-user-testimonials__section--why-feedback .page-index-user-testimonials__container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-index-user-testimonials__section-title {
    font-size: 2.5em;
    color: #1A2C42;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

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

.page-index-user-testimonials__section-paragraph {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 20px;
    max-width: 900px;
    text-align: justify;
}

.page-index-user-testimonials__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}

.page-index-user-testimonials__image--medium {
    max-width: 700px;
}

.page-index-user-testimonials__image--large {
    max-width: 800px;
}

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

.page-index-user-testimonials__testimonial-card {
    background-color: #1A2C42;
    color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.page-index-user-testimonials__testimonial-card::before {
    content: '“';
    position: absolute;
    top: -10px;
    left: 10px;
    font-size: 150px;
    color: rgba(224, 177, 71, 0.1);
    line-height: 1;
    font-family: serif;
    z-index: 0;
}

.page-index-user-testimonials__testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.page-index-user-testimonials__avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid #E0B147;
}

.page-index-user-testimonials__user-info {
    display: flex;
    flex-direction: column;
}

.page-index-user-testimonials__user-name {
    font-size: 1.4em;
    margin: 0;
    color: #E0B147;
}

.page-index-user-testimonials__user-location {
    font-size: 0.9em;
    color: #bbb;
    margin-top: 5px;
}

.page-index-user-testimonials__rating {
    color: #FFD700;
    margin-top: 5px;
    font-size: 1.1em;
}

.page-index-user-testimonials__quote {
    font-style: italic;
    margin: 0;
    padding-left: 10px;
    border-left: 4px solid #E0B147;
    position: relative;
    z-index: 1;
}

.page-index-user-testimonials__quote p {
    margin: 0;
    font-size: 1.05em;
}

.page-index-user-testimonials__quote a {
    color: #E0B147;
    text-decoration: underline;
}

.page-index-user-testimonials__quote a:hover {
    color: #f0c25a;
}

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

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

.page-index-user-testimonials__theme-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-index-user-testimonials__theme-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 5px 5px rgba(224, 177, 71, 0.4));
}

.page-index-user-testimonials__theme-title {
    font-size: 1.6em;
    color: #1A2C42;
    margin-bottom: 15px;
}

.page-index-user-testimonials__theme-description {
    font-size: 1em;
    color: #666;
}

.page-index-user-testimonials__section--submit-feedback {
    text-align: center;
    background-color: #1A2C42;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.page-index-user-testimonials__section--submit-feedback .page-index-user-testimonials__container {
    position: relative;
    z-index: 1;
}

.page-index-user-testimonials__section--submit-feedback .page-index-user-testimonials__section-title {
    color: #E0B147;
}

.page-index-user-testimonials__section--submit-feedback .page-index-user-testimonials__section-title::after {
    background-color: #E0B147;
}

.page-index-user-testimonials__section--submit-feedback .page-index-user-testimonials__section-paragraph {
    color: #ddd;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-index-user-testimonials__section--submit-feedback .page-index-user-testimonials__button {
    margin-top: 30px;
}

.page-index-user-testimonials__note {
    font-size: 0.9em;
    margin-top: 20px;
    color: #bbb;
}

.page-index-user-testimonials__note a {
    color: #E0B147;
    text-decoration: underline;
}

.page-index-user-testimonials__note a:hover {
    color: #f0c25a;
}

.page-index-user-testimonials__section--faq {
    background-color: #f2f4f6;
}

.page-index-user-testimonials__faq-item {
    background-color: #fff;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #E0B147;
}

.page-index-user-testimonials__faq-question {
    font-size: 1.4em;
    color: #1A2C42;
    margin-top: 0;
    margin-bottom: 15px;
}

.page-index-user-testimonials__faq-answer {
    font-size: 1em;
    color: #555;
}

.page-index-user-testimonials__faq-answer a {
    color: #1A2C42;
    text-decoration: underline;
}

.page-index-user-testimonials__faq-answer a:hover {
    color: #E0B147;
}

.page-index-user-testimonials__section--responsible-gambling {
    background-color: #1A2C42;
    color: #fff;
    text-align: center;
}

.page-index-user-testimonials__section--responsible-gambling .page-index-user-testimonials__section-title {
    color: #E0B147;
}

.page-index-user-testimonials__section--responsible-gambling .page-index-user-testimonials__section-title::after {
    background-color: #E0B147;
}

.page-index-user-testimonials__section--responsible-gambling .page-index-user-testimonials__section-paragraph {
    color: #ddd;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-index-user-testimonials__section--responsible-gambling .page-index-user-testimonials__button {
    margin-top: 30px;
}

.page-index-user-testimonials__section--final-cta {
    text-align: center;
    padding-bottom: 80px;
}

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

.page-index-user-testimonials__floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background-color: #E0B147;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    padding: 10px 25px;
    animation: floatEffect 2s ease-in-out infinite alternate;
}

.page-index-user-testimonials__floating-button {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #1A2C42;
    font-weight: bold;
}

.page-index-user-testimonials__floating-icon {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.page-index-user-testimonials__floating-text {
    font-size: 1.1em;
}

.page-index-user-testimonials__floating-cta:hover {
    transform: scale(1.05);
}

@keyframes floatEffect {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-index-user-testimonials__hero-title {
        font-size: 2.8em;
    }
    .page-index-user-testimonials__section-title {
        font-size: 2em;
    }
    .page-index-user-testimonials__testimonial-grid,
    .page-index-user-testimonials__themes-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-index-user-testimonials__section-paragraph {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .page-index-user-testimonials__hero {
        padding: 60px 0;
    }
    .page-index-user-testimonials__hero-title {
        font-size: 2.2em;
    }
    .page-index-user-testimonials__hero-description {
        font-size: 1em;
    }
    .page-index-user-testimonials__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-index-user-testimonials__button {
        width: 80%;
        max-width: 300px;
    }
    .page-index-user-testimonials__section {
        padding: 40px 0;
    }
    .page-index-user-testimonials__section-title {
        font-size: 1.8em;
    }
    .page-index-user-testimonials__testimonial-card {
        padding: 25px;
    }
    .page-index-user-testimonials__floating-cta {
        bottom: 15px;
        right: 15px;
        padding: 8px 20px;
    }
    .page-index-user-testimonials__floating-icon {
        width: 25px;
        height: 25px;
    }
    .page-index-user-testimonials__floating-text {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-index-user-testimonials__hero-title {
        font-size: 1.8em;
    }
    .page-index-user-testimonials__section-title {
        font-size: 1.5em;
    }
    .page-index-user-testimonials__testimonial-grid,
    .page-index-user-testimonials__themes-grid {
        grid-template-columns: 1fr;
    }
    .page-index-user-testimonials__button {
        width: 90%;
    }
    .page-index-user-testimonials__floating-cta {
        bottom: 10px;
        right: 10px;
        padding: 6px 15px;
    }
    .page-index-user-testimonials__floating-icon {
        width: 20px;
        height: 20px;
    }
    .page-index-user-testimonials__floating-text {
        font-size: 0.9em;
    }
}