/* style/contact.css */

/* General styles for the contact page */
.page-contact {
    font-family: Arial, sans-serif;
    color: #fff;
    background-color: #0A2342;
}

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

/* Hero Section */
.page-contact__hero-section {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-color: #0A2342;
}

.page-contact__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.4;
}

.page-contact__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 35, 66, 0.8), rgba(255, 215, 0, 0.3));
    z-index: 2;
}

.page-contact__hero-content {
    position: relative;
    z-index: 3;
    color: #fff;
    max-width: 800px;
    padding: 20px;
}

.page-contact__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for highlight */
    line-height: 1.2;
}

.page-contact__hero-description {
    font-size: 1.2em;
    line-height: 1.6;
    color: #e0e0e0;
}

/* Info Section */
.page-contact__info-section {
    padding: 60px 0;
    background-color: #0A2342;
}

.page-contact__info-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
}

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

.page-contact__info-card {
    background-color: #1a3459; /* Slightly lighter blue */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-contact__info-card:hover {
    transform: translateY(-5px);
    background-color: #2a4a75;
}

.page-contact__info-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: brightness(1.2) drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

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

.page-contact__card-text {
    font-size: 1em;
    line-height: 1.5;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.page-contact__card-link {
    display: inline-block;
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    border: 2px solid #FFD700;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-contact__card-link:hover {
    background-color: #FFD700;
    color: #0A2342;
}

/* Form Section */
.page-contact__form-section {
    padding: 60px 0;
    background-color: #0A2342;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.page-contact__form-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 20px;
}

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

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

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

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

.page-contact__form-input,
.page-contact__form-textarea {
    width: calc(100% - 20px);
    padding: 12px;
    border: 1px solid #FFD700;
    border-radius: 5px;
    background-color: #0A2342;
    color: #fff;
    font-size: 1em;
    box-sizing: border-box;
}

.page-contact__form-input::placeholder,
.page-contact__form-textarea::placeholder {
    color: #a0a0a0;
}

.page-contact__form-textarea {
    resize: vertical;
    min-height: 120px;
}

.page-contact__submit-button {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: #FFD700;
    color: #0A2342;
    border: none;
    border-radius: 5px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-contact__submit-button:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

/* CTA Section */
.page-contact__cta-section {
    position: relative;
    padding: 80px 0;
    background-color: #0A2342;
    text-align: center;
    overflow: hidden;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.page-contact__cta-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.2;
}

.page-contact__cta-section .page-contact__container {
    position: relative;
    z-index: 2;
}

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

.page-contact__cta-description {
    font-size: 1.2em;
    color: #e0e0e0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-contact__cta-button {
    display: inline-block;
    background-color: #FFD700;
    color: #0A2342;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.3em;
    font-weight: bold;
    margin: 10px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-contact__cta-button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-contact__cta-button--secondary {
    background-color: transparent;
    border: 2px solid #FFD700;
    color: #FFD700;
}

.page-contact__cta-button--secondary:hover {
    background-color: #FFD700;
    color: #0A2342;
}

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

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

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

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

    .page-contact__contact-form {
        padding: 30px;
    }

    .page-contact__submit-button,
    .page-contact__cta-button {
        font-size: 1.1em;
        padding: 12px 25px;
    }
}

@media (max-width: 480px) {
    .page-contact__hero-section {
        height: 300px;
    }

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

    .page-contact__info-title,
    .page-contact__form-title,
    .page-contact__cta-title {
        font-size: 1.8em;
    }

    .page-contact__info-card {
        padding: 20px;
    }

    .page-contact__hero-description,
    .page-contact__cta-description {
        font-size: 0.9em;
    }
}