/* style/ae888-review.css */

/* Global styles for the page content, ensuring contrast and readability */
.page-ae888-review {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for general text on dark background */
    background-color: #0A192F; /* Primary dark background */
    line-height: 1.6;
}

.page-ae888-review__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-ae888-review__section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.page-ae888-review__section:nth-child(even) {
    background-color: #1A2E47; /* Slightly lighter dark background for contrast */
}

.page-ae888-review__section-title {
    font-size: 2.8em;
    color: #FFD700; /* Gold for titles */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-ae888-review__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
    color: #CCCCCC; /* Lighter gray for descriptions */
}

/* Hero Section */
.page-ae888-review__hero {
    background: linear-gradient(135deg, #0A192F 0%, #2C3E50 100%); /* Dark gradient */
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-ae888-review__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('[IMAGE:hero_main]'); /* Dynamic hero image */
    background-size: cover;
    background-position: center;
    opacity: 0.2; /* Subtle background image */
    z-index: 0;
}

.page-ae888-review__hero > .page-ae888-review__container {
    position: relative;
    z-index: 1;
}

.page-ae888-review__hero-title {
    font-size: 3.8em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-ae888-review__hero-subtitle {
    font-size: 1.4em;
    color: #F0F0F0; /* Off-white for subtitle */
    max-width: 900px;
    margin: 0 auto 40px auto;
}

/* Buttons */
.page-ae888-review__btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    text-align: center;
    border: none;
}

.page-ae888-review__btn--primary {
    background-color: #FFD700; /* Gold primary button */
    color: #0A192F; /* Dark text on gold */
}

.page-ae888-review__btn--primary:hover {
    background-color: #E0B500; /* Darker gold on hover */
    transform: translateY(-3px);
}

.page-ae888-review__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text for secondary */
    border: 2px solid #FFD700;
    padding: 10px 25px;
    font-size: 1em;
}

.page-ae888-review__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A192F;
    transform: translateY(-2px);
}

/* About Section */
.page-ae888-review__about .page-ae888-review__content-block {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 30px;
}

.page-ae888-review__about .page-ae888-review__image {
    flex: 0 0 40%;
    max-width: 40%;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-ae888-review__about p {
    flex: 1;
    font-size: 1.05em;
    color: #E0E0E0;
    margin-bottom: 15px;
}

.page-ae888-review__about p strong {
    color: #FFD700;
}

/* Why Review Section */
.page-ae888-review__why-review .page-ae888-review__list {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 30px auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.page-ae888-review__why-review .page-ae888-review__list li {
    background-color: #1A2E47;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    font-size: 1.05em;
    color: #F0F0F0;
    position: relative;
    padding-left: 45px;
    transition: transform 0.3s ease;
}

.page-ae888-review__why-review .page-ae888-review__list li:hover {
    transform: translateY(-5px);
}

.page-ae888-review__why-review .page-ae888-review__list li::before {
    content: '✔';
    color: #FFD700;
    font-size: 1.5em;
    position: absolute;
    left: 15px;
    top: 20px;
    line-height: 1;
}

/* Detail Categories Section */
.page-ae888-review__detail-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-ae888-review__detail-item {
    background-color: #1A2E47;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    text-align: center;
    padding-bottom: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-ae888-review__detail-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
}

.page-ae888-review__detail-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
}

.page-ae888-review__detail-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 15px;
    padding: 0 15px;
    min-height: 60px; /* Ensure consistent height for titles */
}

.page-ae888-review__detail-title a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-ae888-review__detail-title a:hover {
    color: #E0B500;
}

.page-ae888-review__detail-description {
    font-size: 1em;
    color: #CCCCCC;
    padding: 0 20px;
    margin-bottom: 25px;
    flex-grow: 1; /* Allow description to take available space */
}

/* Conclusion Section */
.page-ae888-review__conclusion p {
    font-size: 1.1em;
    color: #E0E0E0;
    max-width: 900px;
    margin: 0 auto 20px auto;
    text-align: justify;
}

.page-ae888-review__conclusion p strong {
    color: #FFD700;
}

.page-ae888-review__conclusion .page-ae888-review__btn {
    margin-top: 30px;
}

/* FAQ Section */
.page-ae888-review__faq .page-ae888-review__faq-item {
    background-color: #1A2E47;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease;
}

.page-ae888-review__faq .page-ae888-review__faq-item:hover {
    background-color: #2C3E50;
}

.page-ae888-review__faq-question {
    font-size: 1.5em;
    color: #FFD700; /* Gold for FAQ questions */
    margin-bottom: 10px;
}

.page-ae888-review__faq-answer {
    font-size: 1em;
    color: #CCCCCC;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-ae888-review__hero-title {
        font-size: 3em;
    }
    .page-ae888-review__hero-subtitle {
        font-size: 1.2em;
    }
    .page-ae888-review__section-title {
        font-size: 2.2em;
    }
    .page-ae888-review__about .page-ae888-review__content-block {
        flex-direction: column;
        text-align: center;
    }
    .page-ae888-review__about .page-ae888-review__image {
        max-width: 80%;
        margin-bottom: 30px;
    }
    .page-ae888-review__why-review .page-ae888-review__list {
        grid-template-columns: 1fr;
    }
    .page-ae888-review__detail-title {
        font-size: 1.4em;
    }
}

@media (max-width: 768px) {
    .page-ae888-review__hero {
        padding: 80px 0;
    }
    .page-ae888-review__hero-title {
        font-size: 2.5em;
    }
    .page-ae888-review__hero-subtitle {
        font-size: 1.1em;
    }
    .page-ae888-review__section {
        padding: 40px 0;
    }
    .page-ae888-review__section-title {
        font-size: 1.8em;
    }
    .page-ae888-review__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-ae888-review__detail-list {
        grid-template-columns: 1fr;
    }
    .page-ae888-review__faq-question {
        font-size: 1.3em;
    }
}