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

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

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

.page-index-user-testimonials .bg-light {
    background-color: #f8f9fa;
}

.page-index-user-testimonials .hero-section {
    background: linear-gradient(135deg, #0056B3, #FFC107);
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.page-index-user-testimonials .hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #fff;
}

.page-index-user-testimonials .hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
}

.page-index-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.3s ease;
    white-space: nowrap;
}

.page-index-user-testimonials .btn-primary {
    background-color: #FFC107;
    color: #000;
    border: none;
}

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

.page-index-user-testimonials .btn-secondary {
    background-color: #0056B3;
    color: #fff;
    border: 2px solid #0056B3;
}

.page-index-user-testimonials .btn-secondary:hover {
    background-color: #004085;
    transform: translateY(-2px);
}

.page-index-user-testimonials .btn-link {
    color: #0056B3;
    text-decoration: underline;
    background: none;
    border: none;
    padding: 0;
}

.page-index-user-testimonials .btn-link:hover {
    color: #004085;
    text-decoration: none;
}

.page-index-user-testimonials .btn-lg {
    padding: 15px 30px;
    font-size: 1.1em;
}

.page-index-user-testimonials .section-title {
    font-size: 2.5em;
    color: #0056B3;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-index-user-testimonials .section-subtitle {
    font-size: 1.1em;
    color: #555;
    text-align: center;
    margin-bottom: 40px;
}

.page-index-user-testimonials .sub-section-title {
    font-size: 1.8em;
    color: #0056B3;
    margin-bottom: 15px;
    font-weight: bold;
}

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

.page-index-user-testimonials .content-wrapper.reverse-layout {
    flex-direction: row-reverse;
}

.page-index-user-testimonials .content-wrapper .text-content,
.page-index-user-testimonials .content-wrapper .image-content {
    flex: 1;
    min-width: 300px;
}

.page-index-user-testimonials .content-wrapper .image-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.page-index-user-testimonials .testimonial-card, 
.page-index-user-testimonials .promo-card, 
.page-index-user-testimonials .payment-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-index-user-testimonials .card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    object-fit: contain;
}

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

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

.page-index-user-testimonials ul {
    list-style: disc inside;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #444;
}

.page-index-user-testimonials ul li {
    margin-bottom: 8px;
}

.page-index-user-testimonials .faq-list {
    max-width: 800px;
    margin: 0 auto;
}

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

.page-index-user-testimonials .faq-question {
    font-size: 1.3em;
    color: #0056B3;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-index-user-testimonials .faq-question::after {
    content: '+';
    font-size: 1.5em;
    color: #FFC107;
    transition: transform 0.3s ease;
}

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

.page-index-user-testimonials .faq-answer {
    font-size: 1em;
    color: #555;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    padding-top: 0;
}

.page-index-user-testimonials .faq-answer.active {
    max-height: 200px; /* Adjust as needed */
    padding-top: 15px;
}

.page-index-user-testimonials .cta-section {
    background-color: #0056B3;
    color: #fff;
    padding: 80px 0;
}

.page-index-user-testimonials .cta-section .section-title,
.page-index-user-testimonials .cta-section .section-subtitle {
    color: #fff;
}

/* 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 .content-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .page-index-user-testimonials .content-wrapper.reverse-layout {
        flex-direction: column;
    }
    .page-index-user-testimonials .content-wrapper .image-content {
        order: -1; /* Image above text on mobile for reverse layout */
        margin-bottom: 30px;
    }
    .page-index-user-testimonials .content-wrapper .text-content {
        min-width: unset;
    }
}

@media (max-width: 768px) {
    .page-index-user-testimonials .hero-section {
        padding: 80px 0;
    }
    .page-index-user-testimonials .hero-title {
        font-size: 2.2em;
    }
    .page-index-user-testimonials .hero-description {
        font-size: 1em;
    }
    .page-index-user-testimonials .section-padding {
        padding: 40px 0;
    }
    .page-index-user-testimonials .section-title {
        font-size: 1.8em;
    }
    .page-index-user-testimonials .section-subtitle {
        font-size: 0.9em;
    }
    .page-index-user-testimonials .testimonial-card, 
    .page-index-user-testimonials .promo-card, 
    .page-index-user-testimonials .payment-card {
        padding: 20px;
    }
    .page-index-user-testimonials .card-title {
        font-size: 1.2em;
    }
    .page-index-user-testimonials .faq-question {
        font-size: 1.1em;
    }
    .page-index-user-testimonials .btn-lg {
        padding: 12px 25px;
        font-size: 1em;
    }
}