/* 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, #FFD700 0%, #1A237E 100%);
    padding: 100px 0;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

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

.page-index-user-testimonials__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: #eee;
}

.page-index-user-testimonials__section {
    padding: 60px 0;
    background-color: #f8f8f8;
}

.page-index-user-testimonials__section--dark {
    background-color: #1A237E;
    color: #fff;
}

.page-index-user-testimonials__section--cta {
    background: linear-gradient(45deg, #1A237E, #0028ff);
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

.page-index-user-testimonials__section-title {
    font-size: 2.5em;
    color: #1A237E;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-index-user-testimonials__section-title--light {
    color: #FFD700;
}

.page-index-user-testimonials__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: #555;
}

.page-index-user-testimonials__section-description--light {
    color: #eee;
}

.page-index-user-testimonials__content-grid {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.page-index-user-testimonials__text-content {
    flex: 1;
    min-width: 300px;
}

.page-index-user-testimonials__image-wrapper {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.page-index-user-testimonials__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

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

.page-index-user-testimonials__card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    color: #fff;
}

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

.page-index-user-testimonials__card-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-index-user-testimonials__list {
    list-style: none;
    padding: 0;
}

.page-index-user-testimonials__list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.page-index-user-testimonials__list li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: #FFD700;
}

.page-index-user-testimonials__testimonial-block {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.page-index-user-testimonials__testimonial-block--reverse {
    flex-direction: row-reverse;
}

.page-index-user-testimonials__testimonial-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

.page-index-user-testimonials__testimonial-content {
    flex: 1;
    min-width: 300px;
}

.page-index-user-testimonials__testimonial-content h3 {
    font-size: 2em;
    color: #1A237E;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-index-user-testimonials__testimonial-block--reverse .page-index-user-testimonials__testimonial-content h3 {
    color: #1A237E;
}

.page-index-user-testimonials__testimonial-content p {
    font-size: 1.1em;
    color: #444;
}

.page-index-user-testimonials__testimonial-block--reverse .page-index-user-testimonials__testimonial-content p {
    color: #444;
}

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

.page-index-user-testimonials__btn--primary {
    background-color: #FFD700;
    color: #1A237E; /* Dark blue for contrast */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

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

.page-index-user-testimonials__btn--secondary {
    background-color: #1A237E;
    color: #FFD700; /* Gold for contrast */
    border: 2px solid #FFD700;
    margin-left: 20px;
}

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

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

.highlight {
    color: #FFD700;
}

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

    .page-index-user-testimonials__hero-subtitle {
        font-size: 1.3em;
    }

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

    .page-index-user-testimonials__content-grid, 
    .page-index-user-testimonials__testimonial-block, 
    .page-index-user-testimonials__testimonial-block--reverse {
        flex-direction: column;
        text-align: center;
    }

    .page-index-user-testimonials__testimonial-image {
        max-width: 80%;
        margin: 0 auto;
    }

    .page-index-user-testimonials__btn--secondary {
        margin-left: 0;
        margin-top: 15px;
    }

    .page-index-user-testimonials__cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .page-index-user-testimonials__btn {
        width: 80%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .page-index-user-testimonials__hero-title {
        font-size: 2.2em;
    }

    .page-index-user-testimonials__hero-subtitle {
        font-size: 1.1em;
    }

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

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

    .page-index-user-testimonials__testimonial-content h3 {
        font-size: 1.6em;
    }

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

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

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

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

    .page-index-user-testimonials__section {
        padding: 40px 0;
    }

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

    .page-index-user-testimonials__btn {
        width: 90%;
        max-width: none;
    }
}