/* style/index-core-features.css */

.page-index-core-features {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for general text on dark background */
    background-color: #0f1a2e; /* Darker background, slightly off-black */
}

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

.page-index-core-features__highlight {
    color: #FFD700; /* Gold accent for keywords */
    font-weight: bold;
}

/* Hero Section */
.page-index-core-features__hero {
    background: linear-gradient(135deg, #1A2B47 0%, #0f1a2e 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid #FFD700;
}

.page-index-core-features__hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, rgba(26, 43, 71, 0) 70%);
    animation: page-index-core-features__rotate 20s linear infinite;
    z-index: 0;
}

@keyframes page-index-core-features__rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.page-index-core-features__hero .page-index-core-features__container {
    position: relative;
    z-index: 1;
}

.page-index-core-features__title {
    font-size: 3.5em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-index-core-features__subtitle {
    font-size: 1.3em;
    color: #F5F5F5; /* Slightly lighter white for subtitle */
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-index-core-features__cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-index-core-features__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-index-core-features__button--primary {
    background-color: #FFD700; /* Gold button */
    color: #1A2B47; /* Dark blue text on gold */
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-index-core-features__button--primary:hover {
    background-color: #e6c200; /* Darker gold on hover */
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.page-index-core-features__button--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text for secondary */
    border: 2px solid #FFD700;
    box-shadow: 0 5px 15px rgba(26, 43, 71, 0.4);
}

.page-index-core-features__button--secondary:hover {
    background-color: #FFD700;
    color: #1A2B47;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.page-index-core-features__button--inline {
    padding: 10px 20px;
    font-size: 1em;
    margin-top: 15px;
    background-color: #FFD700;
    color: #1A2B47;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-index-core-features__button--inline:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

/* Section Styling */
.page-index-core-features__section {
    padding: 80px 0;
}

.page-index-core-features__section--overview {
    background-color: #1A2B47;
    text-align: center;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.page-index-core-features__section--detail {
    background-color: #0f1a2e;
}

.page-index-core-features__section--call-to-action {
    background: linear-gradient(45deg, #1A2B47, #0f1a2e);
    text-align: center;
    padding: 100px 0;
    border-top: 5px solid #FFD700;
}

.page-index-core-features__section-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 40px;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
}

.page-index-core-features__text {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #E0E0E0;
}

/* Feature Grid */
.page-index-core-features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-index-core-features__feature-card {
    background-color: #0f1a2e;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-core-features__feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    border-color: #FFD700;
}

.page-index-core-features__card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-index-core-features__card-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-index-core-features__card-text {
    font-size: 1em;
    line-height: 1.7;
    color: #C0C0C0;
}

/* Feature Articles */
.page-index-core-features__feature-article {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
    background-color: #1A2B47;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 215, 0, 0.15);
}

.page-index-core-features__feature-article:last-of-type {
    margin-bottom: 0;
}

.page-index-core-features__feature-article--reverse {
    flex-direction: row-reverse;
}

.page-index-core-features__article-content {
    flex: 1;
}

.page-index-core-features__article-title {
    font-size: 2.2em;
    color: #FFD700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.page-index-core-features__article-image-wrapper {
    flex: 1;
    min-width: 400px;
    text-align: center;
}

.page-index-core-features__article-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    border: 2px solid #FFD700;
    transition: transform 0.3s ease;
}

.page-index-core-features__article-image:hover {
    transform: scale(1.02);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-index-core-features__title {
        font-size: 2.8em;
    }
    .page-index-core-features__section-title {
        font-size: 2.2em;
    }
    .page-index-core-features__feature-article {
        flex-direction: column;
        text-align: center;
    }
    .page-index-core-features__feature-article--reverse {
        flex-direction: column;
    }
    .page-index-core-features__article-image-wrapper {
        min-width: unset;
        width: 100%;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .page-index-core-features__hero {
        padding: 80px 0;
    }
    .page-index-core-features__title {
        font-size: 2.2em;
    }
    .page-index-core-features__subtitle {
        font-size: 1.1em;
    }
    .page-index-core-features__section {
        padding: 60px 0;
    }
    .page-index-core-features__section-title {
        font-size: 1.8em;
    }
    .page-index-core-features__grid {
        grid-template-columns: 1fr;
    }
    .page-index-core-features__feature-article {
        padding: 30px;
    }
    .page-index-core-features__article-title {
        font-size: 1.8em;
    }
    .page-index-core-features__cta-group {
        flex-direction: column;
        gap: 15px;
    }
    .page-index-core-features__button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .page-index-core-features__hero {
        padding: 60px 0;
    }
    .page-index-core-features__title {
        font-size: 1.8em;
    }
    .page-index-core-features__subtitle {
        font-size: 1em;
    }
    .page-index-core-features__section {
        padding: 40px 0;
    }
    .page-index-core-features__section-title {
        font-size: 1.5em;
    }
    .page-index-core-features__text {
        font-size: 0.95em;
    }
    .page-index-core-features__article-title {
        font-size: 1.5em;
    }
    .page-index-core-features__card-title {
        font-size: 1.3em;
    }
    .page-index-core-features__button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-index-core-features__button--inline {
        padding: 8px 15px;
        font-size: 0.9em;
    }
}