/* style/contact.css */
.page-contact {
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.6;
}

.page-contact__hero {
    background: linear-gradient(135deg, #0A2463, #FFD700);
    color: #FFFFFF;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-contact__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.page-contact__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.page-contact__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFFFFF;
}

.page-contact__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #F0F0F0;
}

.page-contact__hero .highlight {
    color: #FFD700;
}

.page-contact__form-section {
    padding: 60px 0;
    background-color: #F8F9FA;
}

.page-contact__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.page-contact__form-wrapper, .page-contact__info-wrapper {
    flex: 1;
    min-width: 300px;
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-contact__section-title {
    font-size: 2em;
    color: #0A2463;
    margin-bottom: 30px;
    text-align: center;
    font-weight: bold;
}

.page-contact__form-group {
    margin-bottom: 20px;
}

.page-contact__form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #0A2463;
}

.page-contact__form-input, .page-contact__form-textarea {
    width: calc(100% - 20px);
    padding: 12px 10px;
    border: 1px solid #CED4DA;
    border-radius: 5px;
    font-size: 1em;
    transition: border-color 0.3s ease;
}

.page-contact__form-input:focus, .page-contact__form-textarea:focus {
    border-color: #FFD700;
    outline: none;
}

.page-contact__form-textarea {
    resize: vertical;
}

.page-contact__btn-submit {
    display: block;
    width: 100%;
    padding: 15px 20px;
    background-color: #0A2463;
    color: #FFFFFF;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.page-contact__btn-submit:hover {
    background-color: #1A3B8A;
}

.page-contact__contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    gap: 15px;
}

.page-contact__icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.page-contact__contact-heading {
    font-size: 1.3em;
    color: #0A2463;
    margin: 0;
}

.page-contact__contact-text {
    font-size: 1.1em;
    color: #555;
    margin: 0;
}

.page-contact__social-links {
    margin-top: 40px;
    text-align: center;
}

.page-contact__social-links .page-contact__contact-heading {
    margin-bottom: 20px;
}

.page-contact__social-icon-link {
    display: inline-block;
    margin: 0 10px;
    transition: transform 0.3s ease;
}

.page-contact__social-icon-link:hover {
    transform: translateY(-5px);
}

.page-contact__social-icon {
    width: 40px;
    height: 40px;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.page-contact__social-icon-link:hover .page-contact__social-icon {
    filter: grayscale(0%);
}

.page-contact__cta-section {
    background-color: #0A2463;
    color: #FFFFFF;
    padding: 60px 20px;
    text-align: center;
}

.page-contact__cta-content {
    flex-direction: column;
    align-items: center;
}

.page-contact__cta-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #FFFFFF;
    font-weight: bold;
}

.page-contact__cta-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #F0F0F0;
    max-width: 800px;
}

.page-contact__cta-section .highlight {
    color: #FFD700;
}

.page-contact__btn-cta {
    display: inline-block;
    padding: 15px 30px;
    background-color: #FFD700;
    color: #0A2463;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-contact__btn-cta:hover {
    background-color: #E6C200;
    transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-contact__hero-title {
        font-size: 2.5em;
    }

    .page-contact__hero-description {
        font-size: 1em;
    }

    .page-contact__container {
        flex-direction: column;
        gap: 30px;
    }

    .page-contact__form-wrapper, .page-contact__info-wrapper {
        padding: 25px;
    }

    .page-contact__section-title {
        font-size: 1.8em;
    }

    .page-contact__cta-title {
        font-size: 2em;
    }

    .page-contact__btn-cta {
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-contact__hero-title {
        font-size: 2em;
    }

    .page-contact__section-title {
        font-size: 1.5em;
    }

    .page-contact__contact-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .page-contact__icon {
        margin-bottom: 5px;
    }

    .page-contact__cta-title {
        font-size: 1.5em;
    }
}