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

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

.page-contact__hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #003366 0%, #0a4f91 100%); /* Dark blue gradient */
    color: #fff;
    padding: 80px 20px;
    text-align: center;
    gap: 40px;
}

.page-contact__hero-content {
    max-width: 800px;
}

.page-contact__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for emphasis */
    font-weight: bold;
}

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

.page-contact__hero-image-wrapper {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-contact__hero-image {
    width: 100%;
    height: auto;
    display: block;
}

.page-contact__cta-button,
.page-contact__method-button,
.page-contact__submit-button,
.page-contact__action-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #003366; /* Dark blue text */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.page-contact__cta-button:hover,
.page-contact__method-button:hover,
.page-contact__submit-button:hover,
.page-contact__action-button:hover {
    background-color: #e6c200; /* Slightly darker gold */
    transform: translateY(-2px);
}

.page-contact__section-title {
    font-size: 2.5em;
    color: #003366;
    text-align: center;
    margin-bottom: 20px;
    padding-top: 60px;
}

.page-contact__section-description {
    font-size: 1.1em;
    color: #555;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-contact__info-section {
    padding: 60px 0;
    background-color: #f8f8f8;
}

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

.page-contact__method-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.page-contact__method-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(0, 51, 102, 0.3));
}

.page-contact__method-title {
    font-size: 1.8em;
    color: #003366;
    margin-bottom: 15px;
}

.page-contact__method-text {
    color: #666;
    margin-bottom: 25px;
    flex-grow: 1;
}

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

.page-contact__contact-form {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

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

.page-contact__form-label {
    display: block;
    font-weight: bold;
    margin-bottom: 10px;
    color: #003366;
    font-size: 1.1em;
}

.page-contact__form-input,
.page-contact__form-textarea {
    width: calc(100% - 20px);
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    color: #333;
    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;
    min-height: 120px;
}

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

.page-contact__faq-items {
    margin-top: 40px;
    display: grid;
    gap: 20px;
}

.page-contact__faq-item {
    background-color: #fff;
    padding: 25px 30px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.07);
}

.page-contact__faq-question {
    font-size: 1.4em;
    color: #003366;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-contact__faq-answer {
    color: #555;
    font-size: 1em;
}

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

.page-contact__faq-answer a:hover {
    color: #FFD700;
}

.page-contact__action-section {
    background: linear-gradient(90deg, #003366 0%, #0a4f91 100%);
    padding: 80px 20px;
    color: #fff;
    text-align: center;
}

.page-contact__action-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.page-contact__action-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-contact__action-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-contact__action-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

/* Responsive Design */
@media (min-width: 768px) {
    .page-contact__hero {
        flex-direction: row;
        text-align: left;
        padding: 100px 40px;
    }

    .page-contact__hero-content {
        flex: 1;
        padding-right: 40px;
    }

    .page-contact__hero-image-wrapper {
        flex: 1;
        max-width: none;
    }

    .page-contact__action-content {
        flex-direction: row;
        text-align: left;
        justify-content: center;
    }

    .page-contact__action-image {
        flex: 1;
        order: 2;
        max-width: 400px;
    }

    .page-contact__action-text {
        flex: 1;
        padding-right: 40px;
        order: 1;
    }
}

@media (max-width: 767px) {
    .page-contact__hero-title {
        font-size: 2.5em;
    }
    .page-contact__section-title {
        font-size: 2em;
    }
    .page-contact__action-title {
        font-size: 2.2em;
    }
    .page-contact__contact-methods {
        grid-template-columns: 1fr;
    }
    .page-contact__hero, .page-contact__action-section {
        padding: 60px 20px;
    }
    .page-contact__contact-form {
        padding: 30px 20px;
    }
}