/* style/index-core-offerings.css */
.page-index-core-offerings {
    font-family: 'Arial', sans-serif;
    color: #FFFFFF; /* Default text color on dark backgrounds */
    line-height: 1.6;
}

.page-index-core-offerings .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-index-core-offerings .bg-dark {
    background-color: #1A202C;
    color: #FFFFFF;
}

.page-index-core-offerings .bg-secondary {
    background-color: #FFD700;
    color: #1A202C;
}

.page-index-core-offerings .section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    padding-top: 40px;
}

.page-index-core-offerings .bg-secondary .section-title {
    color: #1A202C;
}

.page-index-core-offerings .section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
    color: #E0E0E0;
}

.page-index-core-offerings .bg-secondary .section-description {
    color: #333333;
}

/* Hero Section */
.page-index-core-offerings .hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    background: linear-gradient(135deg, #1A202C 0%, #333d4f 100%);
    min-height: 60vh;
}

.page-index-core-offerings .hero-section .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.page-index-core-offerings .hero-content {
    flex: 1;
    min-width: 300px;
}

.page-index-core-offerings .hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700;
    font-weight: bold;
    line-height: 1.2;
}

.page-index-core-offerings .hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #E0E0E0;
}

.page-index-core-offerings .hero-actions .btn {
    margin-right: 15px;
    margin-bottom: 15px;
}

.page-index-core-offerings .hero-image-wrapper {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.page-index-core-offerings .hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Buttons */
.page-index-core-offerings .btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-size: 1em;
    cursor: pointer;
    border: 2px solid transparent;
}

.page-index-core-offerings .btn-primary {
    background-color: #FFD700;
    color: #1A202C;
}

.page-index-core-offerings .btn-primary:hover {
    background-color: #e6c200;
    color: #1A202C;
}

.page-index-core-offerings .btn-secondary {
    background-color: transparent;
    color: #FFD700;
    border-color: #FFD700;
}

.page-index-core-offerings .btn-secondary:hover {
    background-color: #FFD700;
    color: #1A202C;
}

.page-index-core-offerings .btn-link {
    background-color: transparent;
    color: #FFD700;
    border: none;
    padding: 8px 0;
    font-size: 0.9em;
}

.page-index-core-offerings .btn-link:hover {
    text-decoration: underline;
    color: #e6c200;
}

.page-index-core-offerings .btn-large {
    padding: 15px 30px;
    font-size: 1.1em;
}

.page-index-core-offerings .btn-outline {
    background-color: transparent;
    color: #1A202C;
    border-color: #1A202C;
}

.page-index-core-offerings .btn-outline:hover {
    background-color: #1A202C;
    color: #FFD700;
}

/* Features Section (Product Grid) */
.page-index-core-offerings .features-section {
    padding: 80px 0;
}

.page-index-core-offerings .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-index-core-offerings .product-card {
    background-color: #2a3345;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-core-offerings .product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
}

.page-index-core-offerings .product-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

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

.page-index-core-offerings .product-text {
    color: #CCCCCC;
    margin-bottom: 20px;
}

/* Why NOHU90 Section */
.page-index-core-offerings .why-nohu90-section {
    padding: 80px 0;
    background-color: #2a3345;
}

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

.page-index-core-offerings .benefit-card {
    background-color: #1A202C;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-index-core-offerings .benefit-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 15px;
    object-fit: contain;
}

.page-index-core-offerings .benefit-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-index-core-offerings .benefit-text {
    color: #CCCCCC;
}

/* CTA Section */
.page-index-core-offerings .cta-section {
    padding: 60px 0;
    text-align: center;
}

.page-index-core-offerings .cta-actions .btn {
    margin: 10px;
}

/* Process Section */
.page-index-core-offerings .process-section {
    padding: 80px 0;
    background-color: #1A202C;
}

.page-index-core-offerings .process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-index-core-offerings .step-card {
    background-color: #2a3345;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-index-core-offerings .step-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 15px;
    object-fit: contain;
}

.page-index-core-offerings .step-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-index-core-offerings .step-text {
    color: #CCCCCC;
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-index-core-offerings .hero-title {
        font-size: 2.8em;
    }
    .page-index-core-offerings .section-title {
        font-size: 2em;
    }
    .page-index-core-offerings .hero-section .container {
        flex-direction: column;
        text-align: center;
    }
    .page-index-core-offerings .hero-image-wrapper {
        order: -1; /* Image above text on smaller screens */
    }
    .page-index-core-offerings .hero-actions {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .page-index-core-offerings .hero-actions .btn {
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .page-index-core-offerings .hero-title {
        font-size: 2.2em;
    }
    .page-index-core-offerings .hero-description {
        font-size: 1em;
    }
    .page-index-core-offerings .section-title {
        font-size: 1.8em;
    }
    .page-index-core-offerings .product-card, 
    .page-index-core-offerings .benefit-card, 
    .page-index-core-offerings .step-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .page-index-core-offerings .hero-title {
        font-size: 1.8em;
    }
    .page-index-core-offerings .section-title {
        font-size: 1.5em;
    }
    .page-index-core-offerings .btn-large {
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-index-core-offerings .product-title, .page-index-core-offerings .benefit-title, .page-index-core-offerings .step-title {
        font-size: 1.4em;
    }
}

/* JS animation classes */
.page-index-core-offerings-hidden {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.page-index-core-offerings-fade-in {
    opacity: 1;
    transform: translateY(0);
}