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

.page-contact__hero {
    background-color: #0A2463;
    color: #FFFFFF;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
}

@media (min-width: 768px) {
    .page-contact__hero {
        flex-direction: row;
        text-align: left;
        padding: 100px 40px;
        justify-content: center;
    }
}

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

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

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

.page-contact__hero-button {
    display: inline-block;
    background-color: #E0B34F; /* Gold button */
    color: #0A2463; /* 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, color 0.3s ease;
}

.page-contact__hero-button:hover {
    background-color: #F0C969; /* Lighter gold on hover */
    color: #0A2463;
}

.page-contact__hero-image {
    flex-shrink: 0;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .page-contact__hero-image {
        margin-top: 0;
        margin-left: 40px;
    }
}

.page-contact__hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-contact__section-title {
    font-size: 2.2em;
    color: #0A2463; /* Dark blue title */
    text-align: center;
    margin-top: 60px;
    margin-bottom: 40px;
    position: relative;
}

.page-contact__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #E0B34F; /* Gold underline */
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-contact__methods {
    padding: 60px 20px;
    background-color: #f8f8f8;
}

.page-contact__method-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

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

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

.page-contact__method-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-contact__method-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

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

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

.page-contact__method-link {
    color: #E0B34F; /* Gold link */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-contact__method-link:hover {
    color: #0A2463; /* Dark blue on hover */
    text-decoration: underline;
}

.page-contact__form-section {
    padding: 60px 20px;
    background-color: #FFFFFF;
}

.page-contact__form-description {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #555;
    font-size: 1.1em;
}

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

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

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

.page-contact__form-input,
.page-contact__form-textarea {
    width: calc(100% - 20px);
    padding: 12px 10px;
    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: #E0B34F; /* Gold focus */
    outline: none;
}

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

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

.page-contact__form-submit-button:hover {
    background-color: #1A3E8A; /* Slightly lighter dark blue on hover */
}

.page-contact__cta {
    background-color: #E0B34F; /* Gold background for CTA */
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
    color: #0A2463; /* Dark blue text */
}

@media (min-width: 768px) {
    .page-contact__cta {
        flex-direction: row-reverse;
        text-align: left;
        padding: 100px 40px;
        justify-content: center;
    }
}

.page-contact__cta-content {
    max-width: 600px;
}

.page-contact__cta-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #0A2463; /* Dark blue title */
    font-weight: bold;
}

.page-contact__cta-description {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.page-contact__cta-button {
    display: inline-block;
    background-color: #0A2463; /* Dark blue button */
    color: #FFFFFF;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-contact__cta-button:hover {
    background-color: #1A3E8A; /* Lighter dark blue on hover */
}

.page-contact__cta-image {
    flex-shrink: 0;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .page-contact__cta-image {
        margin-top: 0;
        margin-right: 40px;
    }
}

.page-contact__cta-img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .page-contact__hero-title {
        font-size: 2em;
    }
    .page-contact__hero-description,
    .page-contact__cta-description {
        font-size: 1em;
    }
    .page-contact__section-title,
    .page-contact__cta-title {
        font-size: 1.8em;
    }
    .page-contact__method-item {
        padding: 20px;
    }
    .page-contact__form {
        padding: 20px;
    }
}