/* style/index-why-choose-us.css */
.page-index-why-choose-us {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #E0E0E0; /* Light grey for general text on dark background */
    background-color: #1A202C; /* Primary dark background */
    line-height: 1.6;
}

.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, #1A202C 0%, #3a475d 100%); /* Dark gradient */
    padding: 100px 0;
    text-align: center;
    color: #FFFFFF;
}

.page-index-why-choose-us__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.page-index-why-choose-us__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #B0B0B0;
}

.page-index-why-choose-us__highlight {
    color: #FFD700; /* Gold accent */
}

.page-index-why-choose-us__hero-actions .page-index-why-choose-us__btn {
    margin: 0 10px;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
    display: inline-block;
}

.page-index-why-choose-us__btn--primary {
    background-color: #FFD700; /* Gold button */
    color: #1A202C;
    border: 2px solid #FFD700;
}

.page-index-why-choose-us__btn--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-2px);
}

.page-index-why-choose-us__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-index-why-choose-us__btn--secondary:hover {
    background-color: #FFD700;
    color: #1A202C;
    transform: translateY(-2px);
}

.page-index-why-choose-us__section {
    padding: 80px 0;
    text-align: center;
}

.page-index-why-choose-us__about-bay789 {
    background-color: #232a39; /* Slightly lighter dark background */
    color: #E0E0E0;
}

.page-index-why-choose-us__section-title {
    font-size: 2.8em;
    margin-bottom: 60px;
    color: #FFFFFF;
    font-weight: 700;
}

.page-index-why-choose-us__content-grid {
    display: flex;
    gap: 40px;
    align-items: center;
    text-align: left;
}

.page-index-why-choose-us__text-content {
    flex: 1;
}

.page-index-why-choose-us__text-content p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #B0B0B0;
}

.page-index-why-choose-us__text-content strong {
    color: #FFD700;
}

.page-index-why-choose-us__image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.page-index-why-choose-us__features {
    background-color: #1A202C;
}

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

.page-index-why-choose-us__feature-card {
    background-color: #232a39;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-index-why-choose-us__feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.page-index-why-choose-us__feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    color: #FFD700;
    filter: invert(80%) sepia(90%) saturate(1000%) hue-rotate(0deg) brightness(120%) contrast(100%); /* Simulates gold color for icons */
}

.page-index-why-choose-us__feature-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-index-why-choose-us__feature-card p {
    font-size: 1.05em;
    color: #B0B0B0;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-index-why-choose-us__btn--text {
    background: none;
    border: none;
    color: #FFD700;
    text-decoration: underline;
    cursor: pointer;
    font-size: 1em;
    font-weight: 600;
    padding: 0;
    transition: color 0.3s ease;
}

.page-index-why-choose-us__btn--text:hover {
    color: #e6c200;
}

.page-index-why-choose-us__cta-section {
    background-color: #FFD700; /* Gold background for CTA */
    padding: 100px 0;
    color: #1A202C;
}

.page-index-why-choose-us__cta-title {
    font-size: 3em;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.2;
    color: #1A202C;
}

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

.page-index-why-choose-us__btn--large {
    padding: 18px 40px;
    font-size: 1.2em;
    border-width: 3px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-index-why-choose-us__hero-title {
        font-size: 2.8em;
    }
    .page-index-why-choose-us__hero-subtitle {
        font-size: 1.2em;
    }
    .page-index-why-choose-us__section-title {
        font-size: 2.2em;
    }
    .page-index-why-choose-us__content-grid {
        flex-direction: column;
    }
    .page-index-why-choose-us__cta-title {
        font-size: 2.5em;
    }
    .page-index-why-choose-us__cta-description {
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .page-index-why-choose-us__hero-section,
    .page-index-why-choose-us__section,
    .page-index-why-choose-us__cta-section {
        padding: 60px 0;
    }
    .page-index-why-choose-us__hero-title {
        font-size: 2.2em;
    }
    .page-index-why-choose-us__hero-subtitle {
        font-size: 1em;
    }
    .page-index-why-choose-us__hero-actions .page-index-why-choose-us__btn {
        padding: 12px 25px;
        font-size: 1em;
        margin: 5px;
    }
    .page-index-why-choose-us__section-title {
        font-size: 1.8em;
        margin-bottom: 40px;
    }
    .page-index-why-choose-us__features-grid {
        grid-template-columns: 1fr;
    }
    .page-index-why-choose-us__feature-title {
        font-size: 1.5em;
    }
    .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__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .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__hero-actions .page-index-why-choose-us__btn {
        display: block;
        width: fit-content;
        margin: 10px auto;
    }
    .page-index-why-choose-us__section-title {
        font-size: 1.5em;
    }
    .page-index-why-choose-us__feature-icon {
        width: 60px;
        height: 60px;
    }
    .page-index-why-choose-us__feature-title {
        font-size: 1.3em;
    }
    .page-index-why-choose-us__cta-title {
        font-size: 1.8em;
    }
}