/* style/contact.css */

/* General page layout */
.page-contact {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f0f2f5;
}

/* Hero Section */
.page-contact__hero {
    background: linear-gradient(135deg, #0A2463, #081a3d);
    color: #ffffff;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 40px;
}

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

.page-contact__title {
    font-size: 3em;
    margin-bottom: 20px;
    color: #E3B23C; /* Gold for title, high contrast with dark blue background */
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-contact__description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #f0f0f0; /* Light grey for description on dark background */
}

.page-contact__hero-image {
    max-width: 600px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-contact__img-responsive {
    width: 100%;
    height: auto;
    display: block;
}

/* Contact Methods Section */
.page-contact__methods {
    padding: 60px 20px;
    background-color: #f8f8f8;
    text-align: center;
}

.page-contact__section-title {
    font-size: 2.5em;
    color: #0A2463; /* Dark blue for section titles, high contrast with light background */
    margin-bottom: 40px;
    font-weight: bold;
}

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

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

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

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

.page-contact__method-title {
    font-size: 1.8em;
    color: #0A2463;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-contact__method-text {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* Buttons */
.page-contact__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.05em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    white-space: nowrap;
    text-align: center;
}

.page-contact__btn--primary {
    background-color: #E3B23C; /* Gold */
    color: #0A2463; /* Dark blue text, high contrast */
    border: 2px solid #E3B23C;
}

.page-contact__btn--primary:hover {
    background-color: #f0c550; /* Lighter gold */
    transform: translateY(-2px);
}

.page-contact__btn--secondary {
    background-color: transparent;
    color: #0A2463; /* Dark blue text, high contrast with light background */
    border: 2px solid #0A2463;
}

.page-contact__btn--secondary:hover {
    background-color: #0A2463;
    color: #ffffff; /* White text, high contrast with dark blue background */
    transform: translateY(-2px);
}

/* FAQ Section */
.page-contact__faq {
    padding: 60px 20px;
    background-color: #ffffff;
    text-align: center;
}

/* Call to Action Section */
.page-contact__cta {
    background: linear-gradient(45deg, #0A2463, #081a3d);
    padding: 80px 20px;
    text-align: center;
    color: #ffffff;
}

.page-contact__section-title--light {
    color: #E3B23C; /* Gold title on dark background, high contrast */
}

.page-contact__description--light {
    color: #f0f0f0;
    max-width: 900px;
    margin: 0 auto 40px auto;
    font-size: 1.15em;
}

.page-contact__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-contact__btn--gold {
    background-color: #E3B23C;
    color: #0A2463;
    border: 2px solid #E3B23C;
}

.page-contact__btn--gold:hover {
    background-color: #f0c550;
    transform: translateY(-2px);
}

.page-contact__btn--outline {
    background-color: transparent;
    color: #ffffff; /* White text, high contrast with dark background */
    border: 2px solid #ffffff;
}

.page-contact__btn--outline:hover {
    background-color: #ffffff;
    color: #0A2463; /* Dark blue text, high contrast with white background */
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-contact__hero {
        padding: 60px 15px;
        gap: 30px;
    }

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

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

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

    .page-contact__methods-grid {
        grid-template-columns: 1fr;
    }

    .page-contact__cta {
        padding: 60px 15px;
    }

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

    .page-contact__btn {
        width: 80%;
        max-width: 300px;
    }
}

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

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

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

    .page-contact__btn {
        font-size: 0.95em;
        padding: 10px 20px;
    }
}