/* style/reviews-platform-features.css */
.page-reviews-platform-features {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

.page-reviews-platform-features__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-reviews-platform-features__hero-section {
    background: linear-gradient(135deg, #1A237E 0%, #3f4a9b 100%); /* Adjusted gradient for better contrast */
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-reviews-platform-features__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,pattern,dark_blue]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-reviews-platform-features__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFC107;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-reviews-platform-features__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: #e0e0e0;
    position: relative;
    z-index: 1;
}

.page-reviews-platform-features__section {
    padding: 60px 0;
    background-color: #fff;
    border-bottom: 1px solid #eee;
}

.page-reviews-platform-features__section--dark {
    background-color: #1A237E;
    color: #e0e0e0;
}

.page-reviews-platform-features__section--dark .page-reviews-platform-features__heading,
.page-reviews-platform-features__section--dark .page-reviews-platform-features__sub-heading {
    color: #FFC107;
}

.page-reviews-platform-features__section--dark .page-reviews-platform-features__text {
    color: #e0e0e0;
}

.page-reviews-platform-features__section--dark .page-reviews-platform-features__list li {
    color: #e0e0e0;
}

.page-reviews-platform-features__heading {
    font-size: 2.8em;
    color: #1A237E;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-reviews-platform-features__heading::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFC107;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-reviews-platform-features__sub-heading {
    font-size: 2em;
    color: #1A237E;
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 5px solid #FFC107;
    padding-left: 15px;
}

.page-reviews-platform-features__sub-heading--light {
    color: #FFC107;
    border-left-color: #e0e0e0;
}

.page-reviews-platform-features__text {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
}

.page-reviews-platform-features__text--light {
    color: #e0e0e0;
}

.page-reviews-platform-features__list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-reviews-platform-features__list li {
    background-color: #f0f4f7;
    margin-bottom: 10px;
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    font-size: 1.05em;
    color: #333;
}

.page-reviews-platform-features__list li::before {
    content: '✓';
    color: #FFC107;
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.2em;
    line-height: 1;
    flex-shrink: 0;
}

.page-reviews-platform-features__list--light li {
    background-color: rgba(255, 255, 255, 0.1);
    color: #e0e0e0;
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-reviews-platform-features__list--light li::before {
    color: #FFC107;
}

.page-reviews-platform-features__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
}

.page-reviews-platform-features__btn--primary {
    background-color: #FFC107;
    color: #1A237E;
    border: 2px solid #FFC107;
}

.page-reviews-platform-features__btn--primary:hover {
    background-color: #e6b000;
    border-color: #e6b000;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(255, 193, 7, 0.4);
}

.page-reviews-platform-features__btn--secondary {
    background-color: #1A237E;
    color: #FFC107;
    border: 2px solid #FFC107;
}

.page-reviews-platform-features__btn--secondary:hover {
    background-color: #0f144d;
    border-color: #e6b000;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(26, 35, 126, 0.4);
}

.page-reviews-platform-features__btn--large {
    padding: 18px 40px;
    font-size: 1.3em;
}

.page-reviews-platform-features__image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.page-reviews-platform-features__image:hover {
    transform: translateY(-5px);
}

.page-reviews-platform-features__image--full-width {
    margin-left: -20px;
    margin-right: -20px;
    width: calc(100% + 40px);
    max-width: unset;
    border-radius: 0;
    box-shadow: none;
}

.page-reviews-platform-features__cta-box {
    background-color: #f0f4f7;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin-top: 50px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.page-reviews-platform-features__cta-box--light {
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-reviews-platform-features__cta-text {
    font-size: 1.4em;
    margin-bottom: 25px;
    color: #1A237E;
    font-weight: bold;
}

.page-reviews-platform-features__cta-text--light {
    color: #FFC107;
}

.page-reviews-platform-features__section--conclusion {
    text-align: center;
    padding-bottom: 80px;
}

.page-reviews-platform-features__floating-promo {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    animation: page-reviews-platform-features__bounce 2s infinite ease-in-out;
}

.page-reviews-platform-features__floating-btn {
    background-color: #FFC107;
    color: #1A237E;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    display: flex;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-reviews-platform-features__floating-btn:hover {
    background-color: #e6b000;
    transform: scale(1.05);
}

.page-reviews-platform-features__floating-text {
    margin-right: 10px;
}

.page-reviews-platform-features__floating-icon {
    font-size: 1.3em;
}

@keyframes page-reviews-platform-features__bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-reviews-platform-features__hero-title {
        font-size: 2.8em;
    }
    .page-reviews-platform-features__hero-subtitle {
        font-size: 1.2em;
    }
    .page-reviews-platform-features__heading {
        font-size: 2.2em;
    }
    .page-reviews-platform-features__sub-heading {
        font-size: 1.6em;
    }
    .page-reviews-platform-features__text {
        font-size: 1em;
    }
    .page-reviews-platform-features__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-reviews-platform-features__btn--large {
        padding: 15px 35px;
        font-size: 1.1em;
    }
    .page-reviews-platform-features__cta-box {
        padding: 30px;
    }
    .page-reviews-platform-features__cta-text {
        font-size: 1.2em;
    }
    .page-reviews-platform-features__list li {
        padding: 12px 15px;
        font-size: 0.95em;
    }
    .page-reviews-platform-features__image--full-width {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .page-reviews-platform-features__hero-section {
        padding: 80px 0 60px;
    }
    .page-reviews-platform-features__hero-title {
        font-size: 2.2em;
    }
    .page-reviews-platform-features__hero-subtitle {
        font-size: 1em;
    }
    .page-reviews-platform-features__heading {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-reviews-platform-features__sub-heading {
        font-size: 1.4em;
        margin-top: 30px;
    }
    .page-reviews-platform-features__section {
        padding: 40px 0;
    }
    .page-reviews-platform-features__floating-promo {
        bottom: 15px;
        right: 15px;
    }
    .page-reviews-platform-features__floating-btn {
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-reviews-platform-features__floating-text {
        margin-right: 8px;
    }
    .page-reviews-platform-features__floating-icon {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-reviews-platform-features__hero-title {
        font-size: 1.8em;
    }
    .page-reviews-platform-features__hero-subtitle {
        font-size: 0.9em;
    }
    .page-reviews-platform-features__heading {
        font-size: 1.6em;
    }
    .page-reviews-platform-features__sub-heading {
        font-size: 1.2em;
    }
    .page-reviews-platform-features__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-reviews-platform-features__btn--large {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-reviews-platform-features__cta-box {
        padding: 25px;
    }
    .page-reviews-platform-features__cta-text {
        font-size: 1em;
    }
    .page-reviews-platform-features__list li {
        padding: 10px 12px;
        font-size: 0.9em;
    }
    .page-reviews-platform-features__floating-promo {
        bottom: 10px;
        right: 10px;
    }
    .page-reviews-platform-features__floating-btn {
        padding: 10px 15px;
        font-size: 0.9em;
    }
}