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

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

.page-contact__hero {
    background: linear-gradient(135deg, #0A2463, #335091);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.page-contact__title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #F3C700; /* Auxiliary color for emphasis */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-contact__description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-contact__cta-button {
    display: inline-block;
    background-color: #F3C700; /* Auxiliary color for CTA */
    color: #0A2463; /* Dark blue for text on gold */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-contact__cta-button:hover {
    background-color: #e0b400; /* Slightly darker gold on hover */
    transform: translateY(-2px);
}

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

.page-contact__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .page-contact__grid {
        grid-template-columns: 1fr 1fr;
    }
}

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

.page-contact__form-wrapper {
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background-color: #fefefe;
}

.page-contact__form {
    display: flex;
    flex-direction: column;
}

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

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

.page-contact__input,
.page-contact__textarea {
    width: calc(100% - 20px);
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    color: #333;
    background-color: #f0f2f5;
}

.page-contact__textarea {
    resize: vertical;
}

.page-contact__submit-button {
    background-color: #0A2463; /* Main color for submit */
    color: #F3C700; /* Auxiliary color for text on dark blue */
    padding: 14px 25px;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-contact__submit-button:hover {
    background-color: #1a3c7c; /* Slightly lighter blue on hover */
    transform: translateY(-2px);
}

.page-contact__image-wrapper {
    text-align: center;
}

.page-contact__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-contact__other-methods {
    padding: 60px 0;
    background-color: #f0f2f5;
    text-align: center;
}

.page-contact__methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-contact__method-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-contact__method-item:hover {
    transform: translateY(-5px);
}

.page-contact__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.page-contact__method-title {
    font-size: 1.5em;
    color: #0A2463;
    margin-bottom: 10px;
}

.page-contact__method-description {
    color: #555;
    margin-bottom: 15px;
}

.page-contact__method-link {
    color: #F3C700; /* Auxiliary color for links */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-contact__method-link:hover {
    color: #e0b400;
    text-decoration: underline;
}

.page-contact__social-links a {
    display: inline-block;
    margin: 0 10px;
    color: #0A2463;
    font-size: 1.1em;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-contact__social-links a:hover {
    color: #F3C700;
}

.page-contact__faq-section {
    padding: 60px 0;
    background-color: #fff;
}

.page-contact__faq-item {
    margin-bottom: 25px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.page-contact__faq-item:last-child {
    border-bottom: none;
}

.page-contact__faq-question {
    font-size: 1.3em;
    color: #0A2463;
    margin-bottom: 10px;
    cursor: pointer;
}

.page-contact__faq-answer {
    color: #555;
    padding-left: 20px;
}

.page-contact__faq-answer a {
    color: #F3C700;
    text-decoration: none;
    font-weight: bold;
}

.page-contact__faq-answer a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .page-contact__hero {
        padding: 60px 0;
    }

    .page-contact__title {
        font-size: 2em;
    }

    .page-contact__description {
        font-size: 1em;
    }

    .page-contact__subtitle {
        font-size: 1.8em;
    }

    .page-contact__form-wrapper {
        padding: 20px;
    }

    .page-contact__method-item {
        padding: 20px;
    }

    .page-contact__icon {
        width: 50px;
        height: 50px;
    }
}