/* style/index-why-choose-us.css */

.page-index-why-choose-us {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

.page-index-why-choose-us__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-index-why-choose-us__hero-section {
    background: linear-gradient(135deg, #0A2463 0%, #3B5998 100%); /* Dark blue gradient */
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-index-why-choose-us__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('[GALLERY:bg:abstract,geometric,subtle_pattern]');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.page-index-why-choose-us__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: 700;
    color: #E0B94A; /* Gold for emphasis */
    position: relative;
    z-index: 1;
}

.page-index-why-choose-us__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
    position: relative;
    z-index: 1;
}

.page-index-why-choose-us__cta-button {
    display: inline-block;
    background-color: #E0B94A; /* Auxiliary color for CTA */
    color: #0A2463; /* Dark blue text on gold button */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    position: relative;
    z-index: 1;
    border: none;
    cursor: pointer;
}

.page-index-why-choose-us__cta-button:hover {
    background-color: #d4a737; /* Slightly darker gold on hover */
    transform: translateY(-3px);
}

.page-index-why-choose-us__cta-button--secondary {
    background-color: #0A2463;
    color: #E0B94A;
    border: 2px solid #E0B94A;
}

.page-index-why-choose-us__cta-button--secondary:hover {
    background-color: #1a3a7a;
    border-color: #E0B94A;
}

.page-index-why-choose-us__cta-button--primary {
    background-color: #E0B94A;
    color: #0A2463;
}

.page-index-why-choose-us__cta-button--primary:hover {
    background-color: #d4a737;
}

.page-index-why-choose-us__section {
    padding: 80px 0;
    background-color: #ffffff;
    border-bottom: 1px solid #eee;
}

.page-index-why-choose-us__section:nth-of-type(odd) {
    background-color: #fcfcfc;
}

.page-index-why-choose-us__section-title {
    font-size: 2.5em;
    color: #0A2463; /* Primary dark blue for main titles */
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.page-index-why-choose-us__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #E0B94A;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-index-why-choose-us__container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.page-index-why-choose-us__container--reversed {
    flex-direction: row-reverse;
}

.page-index-why-choose-us__content-block {
    flex: 1;
}

.page-index-why-choose-us__image-block {
    flex: 1;
    text-align: center;
}

.page-index-why-choose-us__image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.page-index-why-choose-us__image:hover {
    transform: scale(1.02);
}

.page-index-why-choose-us__sub-title {
    font-size: 1.8em;
    color: #0A2463;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-index-why-choose-us__text {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.page-index-why-choose-us__cta-section {
    background-color: #0A2463; /* Primary dark blue background */
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.page-index-why-choose-us__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #E0B94A; /* Gold for emphasis */
}

.page-index-why-choose-us__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-index-why-choose-us__hero-title {
        font-size: 2.5em;
    }
    .page-index-why-choose-us__hero-subtitle {
        font-size: 1.1em;
    }
    .page-index-why-choose-us__section-title {
        font-size: 2em;
    }
    .page-index-why-choose-us__sub-title {
        font-size: 1.5em;
    }
    .page-index-why-choose-us__text {
        font-size: 1em;
    }
    .page-index-why-choose-us__container {
        flex-direction: column;
        text-align: center;
    }
    .page-index-why-choose-us__container--reversed {
        flex-direction: column;
    }
    .page-index-why-choose-us__content-block, .page-index-why-choose-us__image-block {
        flex: none;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .page-index-why-choose-us__hero-section {
        padding: 80px 0;
    }
    .page-index-why-choose-us__hero-title {
        font-size: 2em;
    }
    .page-index-why-choose-us__hero-subtitle {
        font-size: 1em;
    }
    .page-index-why-choose-us__section {
        padding: 60px 0;
    }
    .page-index-why-choose-us__section-title {
        font-size: 1.8em;
        margin-bottom: 40px;
    }
    .page-index-why-choose-us__sub-title {
        font-size: 1.3em;
    }
    .page-index-why-choose-us__cta-title {
        font-size: 2em;
    }
    .page-index-why-choose-us__cta-description {
        font-size: 1em;
    }
    .page-index-why-choose-us__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-index-why-choose-us__hero-section {
        padding: 60px 0;
    }
    .page-index-why-choose-us__hero-title {
        font-size: 1.8em;
    }
    .page-index-why-choose-us__hero-subtitle {
        font-size: 0.9em;
    }
    .page-index-why-choose-us__section {
        padding: 40px 0;
    }
    .page-index-why-choose-us__section-title {
        font-size: 1.5em;
        margin-bottom: 30px;
    }
    .page-index-why-choose-us__sub-title {
        font-size: 1.2em;
    }
    .page-index-why-choose-us__text {
        font-size: 0.9em;
    }
    .page-index-why-choose-us__cta-title {
        font-size: 1.8em;
    }
    .page-index-why-choose-us__cta-description {
        font-size: 0.9em;
    }
    .page-index-why-choose-us__cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}