/* Reviews & FAQ Section Styles */

/* Main Container Layout */
.custom-reviews-faq-section {
    padding: 40px 0;
    color: #fff;
    text-align: center;
}

.section-title {
    font-size: 24px;
    font-weight: bold;
    color: #f1c40f; /* Gold */
    margin-bottom: 30px;
    text-shadow: 0 0 10px rgba(241, 196, 15, 0.5);
    font-family: 'Open24DisplaySt', sans-serif; /* Assuming font from site */
    letter-spacing: 2px;
}

.custom-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.custom-col {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    /* Background Image: Lightning Effect (Original) */
    background: url('https://nexus-montana88.online/Images/downloaded/kilat.webp') no-repeat center center;
    background-size: 100% 100%; /* Ensure it covers the container */
    
    /* Optional: Keep layout properties, remove extra CSS effects if image has them */
    border: none; 
    border-radius: 15px;
    padding: 30px;
    /* box-shadow: none; */ /* Let the image handle the glow if it has one */
    position: relative;
    overflow: hidden;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* animation: none; */ /* Remove CSS animation, rely on WebP animation */
}
/* Removed @keyframes lightning-flash as we use animated WebP */

/* Slider Container */
.slider-container {
    position: relative;
    width: 100%;
    height: 200px; /* Height for slider content */
    overflow: hidden;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Reviews Styling */
.review-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    transform: translateX(50px);
}

.review-item.active {
    opacity: 1;
    transform: translateX(0);
}

.review-avatar {
    width: 50px;
    height: 50px;
    background-color: #f1c40f;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 18px;
}

.review-stars {
    color: #f1c40f;
    font-size: 20px;
    margin-bottom: 10px;
}

.review-text {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.5;
    font-style: italic;
}

.review-author {
    font-style: normal;
    color: #f1c40f;
    font-weight: bold;
    font-size: 14px;
}

/* FAQ Styling */
.faq-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    transform: translateY(20px);
    text-align: left;
    padding: 0 10px;
}

.faq-item.active {
    opacity: 1;
    transform: translateY(0);
}

.faq-question {
    font-weight: bold;
    color: #f1c40f;
    margin-bottom: 15px;
    font-size: 18px;
    border-bottom: 1px solid rgba(241, 196, 15, 0.3);
    padding-bottom: 10px;
}

.faq-answer {
    font-size: 15px;
    line-height: 1.6;
}

/* Indicators */
.slider-indicators {
    display: flex;
    justify-content: center;
    margin-top: 15px;
    gap: 8px;
    z-index: 10;
}

.indicator {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.indicator.active {
    background-color: #f1c40f;
    box-shadow: 0 0 5px #f1c40f;
}

/* SEO Article Styling in Footer */
.seo-article-content {
    font-family: 'Comic Sans MS', 'Comic Sans', cursive;
    background-color: transparent; /* Transparent background to blend with footer */
    color: #ffffff; /* White text for contrast on dark background */
    padding: 20px 0; /* Remove side padding to align better */
    margin: 20px 0;
    border: none; /* Remove border */
}

.seo-article-content h1, 
.seo-article-content h2, 
.seo-article-content h3 {
    color: #f1c40f !important; /* Yellow Heading */
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    margin-top: 15px;
    margin-bottom: 10px;
    font-weight: bold;
}

.seo-article-content h1 {
    font-size: 24px;
}

.seo-article-content h2 {
    font-size: 20px;
}

.seo-article-content h3 {
    font-size: 18px;
}

.seo-article-content p, 
.seo-article-content li {
    color: #cccccc; /* Light grey text for readability */
    line-height: 1.6;
    margin-bottom: 10px;
}

.seo-article-content ul, 
.seo-article-content ol {
    margin-left: 20px;
    margin-bottom: 15px;
}

.seo-article-content a {
    color: #f1c40f !important; /* Yellow Links */
    text-decoration: underline;
    font-weight: bold;
}

/* SEO Read More Button */
.seo-read-more-btn {
    background: transparent;
    border: 1px solid #f1c40f;
    color: #f1c40f;
    padding: 8px 16px;
    font-family: 'Comic Sans MS', 'Comic Sans', cursive;
    font-size: 14px;
    cursor: pointer;
    border-radius: 4px;
    margin-top: 10px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    display: inline-block;
}

.seo-read-more-btn:hover {
    background: #f1c40f;
    color: #000;
}