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

.page-index-core-services {
    font-family: 'Arial', sans-serif;
    color: #f5e6d0; /* Light text for dark background */
    background-color: #0A192F; /* Main dark background */
    line-height: 1.6;
}

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

.page-index-core-services__section {
    padding: 80px 0;
    text-align: center;
}

.page-index-core-services__section--dark {
    background-color: #050d1a;
}

.page-index-core-services__hero-section {
    background: linear-gradient(135deg, #0A192F 0%, #1a345e 100%);
    padding: 100px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-index-core-services__hero-section .page-index-core-services__container {
    z-index: 1;
}

.page-index-core-services__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Accent color for title */
    line-height: 1.2;
}

.page-index-core-services__hero-title .highlight {
    color: #fff;
}

.page-index-core-services__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    color: #d0e0f0;
}

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

.page-index-core-services__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
}

.page-index-core-services__button--primary {
    background-color: #FFD700;
    color: #0A192F;
}

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

.page-index-core-services__button--secondary {
    background-color: transparent;
    border: 2px solid #FFD700;
    color: #FFD700;
}

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

.page-index-core-services__button--small {
    padding: 10px 20px;
    font-size: 0.9em;
}

.page-index-core-services__button--large {
    padding: 20px 40px;
    font-size: 1.4em;
}

.page-index-core-services__hero-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    max-width: 900px;
    opacity: 0.2;
    z-index: 0;
}

.page-index-core-services__section-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFD700;
}

.page-index-core-services__section-subtitle {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #d0e0f0;
}

.page-index-core-services__content-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.page-index-core-services__content-block p {
    max-width: 900px;
    text-align: left;
    color: #f5e6d0;
}

.page-index-core-services__content-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    margin-top: 20px;
}

.page-index-core-services__content-image--large {
    max-width: 900px;
}

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

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

.page-index-core-services__service-card:hover {
    transform: translateY(-10px);
    background-color: #2a3d5e;
}

.page-index-core-services__service-icon {
    width: 100%;
    max-width: 150px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 5px;
}

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

.page-index-core-services__service-card p {
    color: #d0e0f0;
    margin-bottom: 20px;
    font-size: 0.95em;
}

.page-index-core-services__advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
    text-align: left;
}

.page-index-core-services__advantage-item {
    background-color: #1a2a47;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

.page-index-core-services__advantage-item p {
    color: #d0e0f0;
    font-size: 0.95em;
}

.page-index-core-services__section--cta {
    background-color: #0A192F;
    padding-bottom: 40px;
}

.page-index-core-services__steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.page-index-core-services__step-card {
    background-color: #1a2a47;
    padding: 30px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.page-index-core-services__step-card h3 {
    color: #FFD700;
    margin-bottom: 20px;
    font-size: 1.6em;
}

.page-index-core-services__step-card ol {
    list-style-type: decimal;
    margin-left: 20px;
    margin-bottom: 30px;
    color: #d0e0f0;
}

.page-index-core-services__step-card ol li {
    margin-bottom: 10px;
}

.page-index-core-services__app-download-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-index-core-services__app-download-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
    margin-top: 50px;
    text-align: left;
    justify-content: center;
}

.page-index-core-services__app-image {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.page-index-core-services__app-text {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.page-index-core-services__app-text p {
    color: #d0e0f0;
    margin-bottom: 30px;
    font-size: 1.1em;
}

.page-index-core-services__section--final-cta {
    background-color: #1a2a47;
    padding: 80px 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-index-core-services__hero-title {
        font-size: 3em;
    }
    .page-index-core-services__section-title {
        font-size: 2.2em;
    }
    .page-index-core-services__hero-image {
        width: 80%;
        right: -20%;
    }
    .page-index-core-services__services-grid,
    .page-index-core-services__advantages-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-index-core-services__app-download-content {
        flex-direction: column;
        text-align: center;
    }
    .page-index-core-services__app-text {
        max-width: 100%;
    }
    .page-index-core-services__app-text .page-index-core-services__button {
        margin: 10px auto;
    }
}

@media (max-width: 768px) {
    .page-index-core-services__hero-title {
        font-size: 2.5em;
    }
    .page-index-core-services__hero-description {
        font-size: 1.1em;
    }
    .page-index-core-services__section-title {
        font-size: 1.8em;
    }
    .page-index-core-services__hero-cta-group {
        flex-direction: column;
        gap: 15px;
    }
    .page-index-core-services__button {
        width: 80%;
        margin: 0 auto;
    }
    .page-index-core-services__hero-image {
        display: none;
    }
    .page-index-core-services__steps-container {
        flex-direction: column;
    }
    .page-index-core-services__step-card {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .page-index-core-services__hero-title {
        font-size: 2em;
    }
    .page-index-core-services__section-title {
        font-size: 1.5em;
    }
    .page-index-core-services__section,
    .page-index-core-services__hero-section {
        padding: 50px 0;
    }
    .page-index-core-services__button--large {
        padding: 15px 30px;
        font-size: 1.2em;
    }
    .page-index-core-services__service-card,
    .page-index-core-services__advantage-item,
    .page-index-core-services__step-card {
        padding: 20px;
    }
    .page-index-core-services__card-title,
    .page-index-core-services__advantage-title {
        font-size: 1.4em;
    }
    .page-index-core-services__app-text .page-index-core-services__button {
        width: 100%;
    }
}