/* style/index-review-fabet.css */

/* Variables and Base Styles */
:root {
    --primary-color: #007BFF; /* Deep Blue */
    --secondary-color: #28A745; /* Vibrant Green */
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-light: #f1f3f5;
    --card-bg: #ffffff;
    --border-light: #e0e0e0;
}

/* Page Wrapper */
.page-index-review-fabet {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark); /* Default text color for light sections */
    background-color: var(--bg-light); /* Main background for content sections */
}

/* Fixed Header Padding */
.page-index-review-fabet__hero-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 180px; /* Desktop: Adjust for fixed header */
    padding-bottom: 60px;
    text-align: center;
    background-color: #000000; /* Dark background for hero section */
}

.page-index-review-fabet__hero-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
}

.page-index-review-fabet__hero-image {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.page-index-review-fabet__hero-content {
    position: relative;
    z-index: 2;
    color: var(--text-light); /* Light text on dark/dimmed background */
    padding: 40px;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for text */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    margin-top: 40px; /* Space from top of hero-container */
}

.page-index-review-fabet__main-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: bold;
    color: var(--text-light);
}

.page-index-review-fabet__highlight {
    color: var(--secondary-color); /* Highlight color for keywords */
}

.page-index-review-fabet__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    opacity: 0.9;
    color: var(--text-light);
}

.page-index-review-fabet__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--secondary-color), #218838);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: none;
}

.page-index-review-fabet__cta-button:hover {
    background: linear-gradient(135deg, #218838, var(--secondary-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* Content Sections */
.page-index-review-fabet__content-section {
    padding: 60px 20px;
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.page-index-review-fabet__light-bg {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

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

.page-index-review-fabet__card {
    background: var(--card-bg);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin-bottom: 30px;
}

.page-index-review-fabet__section-title {
    font-size: 2.2em;
    font-weight: bold;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.3;
}

.page-index-review-fabet__section-title .page-index-review-fabet__highlight {
    color: var(--secondary-color);
}

.page-index-review-fabet p {
    margin-bottom: 1em;
    font-size: 1.05em;
    line-height: 1.7;
    color: var(--text-dark);
}

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

.page-index-review-fabet__review-item {
    background: var(--card-bg);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-index-review-fabet__review-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-index-review-fabet__item-title {
    font-size: 1.5em;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-index-review-fabet__item-image {
    max-width: 100%; /* Ensure images are responsive */
    height: auto;
    display: block;
    margin: 0 auto 20px auto;
    border-radius: 8px;
    object-fit: cover;
    min-width: 200px; /* Minimum size requirement */
    min-height: 200px; /* Minimum size requirement */
}

.page-index-review-fabet__conclusion-section {
    margin-top: 60px;
    text-align: center;
}

.page-index-review-fabet__cta-wrapper {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.page-index-review-fabet__cta-button--large {
    padding: 18px 50px;
    font-size: 1.3em;
    background: linear-gradient(135deg, var(--primary-color), #0056b3);
}

.page-index-review-fabet__cta-button--large:hover {
    background: linear-gradient(135deg, #0056b3, var(--primary-color));
}

.page-index-review-fabet__cta-button--secondary {
    background: none;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    box-shadow: none;
}

.page-index-review-fabet__cta-button--secondary:hover {
    background: var(--primary-color);
    color: var(--text-light);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* FAQ Section */
.page-index-review-fabet__faq-section {
    padding: 60px 20px;
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.page-index-review-fabet__faq-main-title {
    font-size: 2.2em;
    font-weight: bold;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
}

.page-index-review-fabet__faq-main-title .page-index-review-fabet__highlight {
    color: var(--secondary-color);
}

.page-index-review-fabet__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-index-review-fabet__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}

.page-index-review-fabet__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 15px;
  opacity: 0;
}

.page-index-review-fabet__faq-item.active .page-index-review-fabet__faq-answer {
  max-height: 2000px !important; /* Ensure enough height for content */
  padding: 20px 15px !important;
  opacity: 1;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
}

.page-index-review-fabet__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-index-review-fabet__faq-question:hover {
  background: #f5f5f5;
  border-color: #d0d0d0;
}

.page-index-review-fabet__faq-question:active {
  background: #eeeeee;
}

.page-index-review-fabet__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none; /* Allows click on parent div */
  color: var(--text-dark);
}

.page-index-review-fabet__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #666;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none; /* Allows click on parent div */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.page-index-review-fabet__faq-item.active .page-index-review-fabet__faq-toggle {
  color: var(--primary-color);
  transform: rotate(45deg); /* Change + to X or - */
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-index-review-fabet__main-title {
        font-size: 2.5em;
    }
    .page-index-review-fabet__hero-description {
        font-size: 1.1em;
    }
    .page-index-review-fabet__section-title {
        font-size: 1.8em;
    }
    .page-index-review-fabet__item-title {
        font-size: 1.3em;
    }
    .page-index-review-fabet__card {
        padding: 30px;
    }
    .page-index-review-fabet__hero-content {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .page-index-review-fabet__hero-banner {
        padding-top: 140px !important; /* Mobile: Adjust for fixed header */
        padding-bottom: 40px;
    }
    .page-index-review-fabet__hero-container {
        padding: 0 0;
    }
    .page-index-review-fabet__hero-content {
        padding: 20px 15px !important;
        min-height: 200px;
        margin-top: 20px;
    }
    .page-index-review-fabet__main-title {
        font-size: 1.8em;
        margin-bottom: 15px;
    }
    .page-index-review-fabet__hero-description {
        font-size: 1em;
        margin-bottom: 20px;
    }
    .page-index-review-fabet__cta-button {
        padding: 12px 30px;
        font-size: 1em;
    }
    .page-index-review-fabet__content-section {
        padding: 40px 15px;
    }
    .page-index-review-fabet__container {
        padding: 0 15px;
    }
    .page-index-review-fabet__card {
        padding: 20px;
    }
    .page-index-review-fabet__section-title {
        font-size: 1.5em;
        margin-bottom: 20px;
    }
    .page-index-review-fabet p {
        font-size: 0.95em;
    }
    .page-index-review-fabet__review-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-index-review-fabet__item-title {
        font-size: 1.2em;
    }
    .page-index-review-fabet__cta-wrapper {
        gap: 15px;
    }
    .page-index-review-fabet__cta-button--large {
        padding: 15px 35px;
        font-size: 1.1em;
    }
    .page-index-review-fabet__faq-section {
        padding: 40px 15px;
    }
    .page-index-review-fabet__faq-main-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-index-review-fabet__faq-question {
        padding: 15px;
        flex-wrap: wrap;
    }
    .page-index-review-fabet__faq-question h3 {
        font-size: 15px;
        margin-bottom: 0;
        width: calc(100% - 40px);
    }
    .page-index-review-fabet__faq-toggle {
        margin-left: 10px;
        width: 24px;
        height: 24px;
        font-size: 20px;
    }
    .page-index-review-fabet__faq-answer {
        padding: 0 15px;
    }
    .page-index-review-fabet__faq-item.active .page-index-review-fabet__faq-answer {
        padding: 15px !important;
    }

    /* Mobile image responsive adaptation */
    .page-index-review-fabet img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    
    .page-index-review-fabet__section,
    .page-index-review-fabet__card,
    .page-index-review-fabet__container,
    .page-index-review-fabet__hero-container,
    .page-index-review-fabet__review-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    /* Specific override for hero-container padding on mobile */
    .page-index-review-fabet__hero-banner .page-index-review-fabet__hero-container {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
}

/* Ensure no filter is used to change image colors */
.page-index-review-fabet img {
    filter: none; /* Explicitly ensure no filter is applied */
}