/* style/resources-f168-user-testimonials.css */

/* Variables for colors */
:root {
    --page-f168-primary-color: #1A2E47;
    --page-f168-secondary-color: #FFD700;
    --page-f168-text-dark: #333333; /* Dark text for light backgrounds */
    --page-f168-text-light: #FFFFFF; /* Light text for dark backgrounds */
    --page-f168-background-light: #f8f9fa; /* Light background */
    --page-f168-card-background: #ffffff; /* Card background */
    --page-f168-border-color: #e0e0e0;
}

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

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

/* Hero Section */
.page-resources-f168-user-testimonials__hero {
    background: linear-gradient(135deg, var(--page-f168-primary-color) 0%, #3a506b 100%); /* Lighter variant of primary */
    color: var(--page-f168-text-light);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-resources-f168-user-testimonials__hero-title {
    font-size: 3em;
    margin-bottom: 20px;
    color: var(--page-f168-secondary-color); /* Gold for title */
    font-weight: bold;
    line-height: 1.2;
}

.page-resources-f168-user-testimonials__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--page-f168-text-light);
}

.page-resources-f168-user-testimonials__hero-cta {
    display: inline-block;
    background-color: var(--page-f168-secondary-color);
    color: var(--page-f168-primary-color); /* Dark text on gold button */
    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;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-f168-user-testimonials__hero-cta:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-3px);
}

/* General Section Styling */
.page-resources-f168-user-testimonials__section {
    padding: 60px 0;
    border-bottom: 1px solid var(--page-f168-border-color);
}

.page-resources-f168-user-testimonials__section:last-of-type {
    border-bottom: none;
}

.page-resources-f168-user-testimonials__section-title {
    font-size: 2.5em;
    color: var(--page-f168-primary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-resources-f168-user-testimonials__subsection-title {
    font-size: 1.8em;
    color: var(--page-f168-primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    border-left: 5px solid var(--page-f168-secondary-color);
    padding-left: 15px;
}

.page-resources-f168-user-testimonials p {
    margin-bottom: 1em;
    font-size: 1.05em;
    color: var(--page-f168-text-dark);
}

.page-resources-f168-user-testimonials ul {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 1em;
    color: var(--page-f168-text-dark);
}

.page-resources-f168-user-testimonials ul li {
    margin-bottom: 0.5em;
    font-size: 1em;
}

.page-resources-f168-user-testimonials strong {
    color: var(--page-f168-primary-color);
}

/* Images */
.page-resources-f168-user-testimonials__image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-resources-f168-user-testimonials__image--small {
    max-width: 70%;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

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

.page-resources-f168-user-testimonials__testimonial-card {
    background-color: var(--page-f168-card-background);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--page-f168-border-color);
}

.page-resources-f168-user-testimonials__testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.page-resources-f168-user-testimonials__testimonial-card .page-resources-f168-user-testimonials__subsection-title {
    font-size: 1.5em;
    margin-top: 0;
    margin-bottom: 15px;
    border-left: none;
    padding-left: 0;
    color: var(--page-f168-primary-color);
    text-align: center;
}
.page-resources-f168-user-testimonials__testimonial-card .page-resources-f168-user-testimonials__subsection-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--page-f168-secondary-color);
    margin: 10px auto 20px auto;
    border-radius: 2px;
}


.page-resources-f168-user-testimonials__cta-inline {
    display: block;
    background-color: var(--page-f168-secondary-color);
    color: var(--page-f168-primary-color);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
    text-align: center;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.page-resources-f168-user-testimonials__cta-inline:hover {
    background-color: #e6c200;
}

.page-resources-f168-user-testimonials__text-after-grid {
    text-align: center;
    margin-top: 50px;
    font-style: italic;
    color: var(--page-f168-primary-color);
    font-size: 1.1em;
}

/* Buttons */
.page-resources-f168-user-testimonials__btn-primary,
.page-resources-f168-user-testimonials__btn-secondary {
    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, box-shadow 0.3s ease;
    text-align: center;
    margin-top: 30px;
}

.page-resources-f168-user-testimonials__btn-primary {
    background-color: var(--page-f168-primary-color);
    color: var(--page-f168-text-light);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-f168-user-testimonials__btn-primary:hover {
    background-color: #3a506b; /* Lighter primary on hover */
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.page-resources-f168-user-testimonials__btn-secondary {
    background-color: var(--page-f168-secondary-color);
    color: var(--page-f168-primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-f168-user-testimonials__btn-secondary:hover {
    background-color: #e6c200; /* Darker secondary on hover */
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.page-resources-f168-user-testimonials__note {
    text-align: center;
    margin-top: 20px;
    font-style: italic;
    color: #666;
}

/* Final CTA Section */
.page-resources-f168-user-testimonials__cta-final {
    background-color: var(--page-f168-primary-color);
    color: var(--page-f168-text-light);
    padding: 80px 0;
    text-align: center;
}

.page-resources-f168-user-testimonials__cta-final .page-resources-f168-user-testimonials__section-title {
    color: var(--page-f168-secondary-color);
    margin-bottom: 20px;
}
.page-resources-f168-user-testimonials__cta-final .page-resources-f168-user-testimonials__section-title::after {
    background-color: var(--page-f168-text-light);
}

.page-resources-f168-user-testimonials__cta-final p {
    color: var(--page-f168-text-light);
    max-width: 800px;
    margin: 0 auto 30px auto;
    font-size: 1.1em;
}

.page-resources-f168-user-testimonials__cta-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.page-resources-f168-user-testimonials__cta-content {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    text-align: left;
}
.page-resources-f168-user-testimonials__cta-content .page-resources-f168-user-testimonials__section-title {
    text-align: left;
    margin-left: 0;
}
.page-resources-f168-user-testimonials__cta-content .page-resources-f168-user-testimonials__section-title::after {
    left: 0;
    transform: translateX(0);
}


.page-resources-f168-user-testimonials__cta-image-wrapper {
    flex: 0 0 auto;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 5px solid var(--page-f168-secondary-color);
}

.page-resources-f168-user-testimonials__cta-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* Conclusion Section */
.page-resources-f168-user-testimonials__conclusion {
    padding-bottom: 80px;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-resources-f168-user-testimonials__hero-title {
        font-size: 2.5em;
    }
    .page-resources-f168-user-testimonials__section-title {
        font-size: 2em;
    }
    .page-resources-f168-user-testimonials__subsection-title {
        font-size: 1.6em;
    }
    .page-resources-f168-user-testimonials__cta-flex {
        flex-direction: column;
        gap: 30px;
    }
    .page-resources-f168-user-testimonials__cta-content {
        text-align: center;
    }
    .page-resources-f168-user-testimonials__cta-content .page-resources-f168-user-testimonials__section-title {
        text-align: center;
    }
    .page-resources-f168-user-testimonials__cta-content .page-resources-f168-user-testimonials__section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .page-resources-f168-user-testimonials__hero {
        padding: 80px 0;
    }
    .page-resources-f168-user-testimonials__hero-title {
        font-size: 2em;
    }
    .page-resources-f168-user-testimonials__hero-subtitle {
        font-size: 1.1em;
    }
    .page-resources-f168-user-testimonials__section {
        padding: 40px 0;
    }
    .page-resources-f168-user-testimonials__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-resources-f168-user-testimonials__subsection-title {
        font-size: 1.4em;
        padding-left: 10px;
    }
    .page-resources-f168-user-testimonials__testimonial-grid {
        grid-template-columns: 1fr;
    }
    .page-resources-f168-user-testimonials__image {
        margin: 30px auto;
    }
    .page-resources-f168-user-testimonials__image--small {
        max-width: 90%;
    }
    .page-resources-f168-user-testimonials__cta-image-wrapper {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 480px) {
    .page-resources-f168-user-testimonials__hero-title {
        font-size: 1.8em;
    }
    .page-resources-f168-user-testimonials__hero-cta {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-resources-f168-user-testimonials__section-title {
        font-size: 1.5em;
    }
    .page-resources-f168-user-testimonials__subsection-title {
        font-size: 1.2em;
    }
    .page-resources-f168-user-testimonials p,
    .page-resources-f168-user-testimonials ul li {
        font-size: 0.95em;
    }
}