/* style/contact.css */

/* Base styles for the contact page */
.page-contact {
    font-family: 'Arial', sans-serif;
    color: #e0e0e0; /* Light text on dark background */
    background-color: #0A1931; /* Primary dark background */
}

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

.page-contact__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Accent color for titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-contact__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-contact__section-subtitle {
    font-size: 1.1em;
    color: #cccccc;
    text-align: center;
    margin-bottom: 30px;
}

.page-contact .highlight {
    color: #FFD700;
    font-weight: bold;
}

/* Hero Section */
.page-contact__hero {
    background: linear-gradient(135deg, #0A1931 0%, #1a3a66 100%);
    padding: 80px 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    box-shadow: inset 0 -5px 15px rgba(0, 0, 0, 0.3);
}

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

.page-contact__hero-title {
    font-size: 3.8em;
    color: #FFD700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-contact__hero-description {
    font-size: 1.4em;
    color: #f0f0f0;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Contact Info Section */
.page-contact__info-section {
    padding: 60px 0;
    background-color: #0F203D; /* Slightly lighter dark background */
}

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

.page-contact__method-card {
    background-color: #1A2B4C; /* Card background */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-contact__method-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.page-contact__method-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    filter: drop-shadow(0 0 5px #FFD700);
}

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

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

.page-contact__method-link {
    display: inline-block;
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.page-contact__method-link:hover {
    background-color: #FFD700;
    color: #0A1931;
    border-color: #FFD700;
}

.page-contact__method-link--cta {
    background-color: #FFD700;
    color: #0A1931;
}

.page-contact__method-link--cta:hover {
    background-color: #e6c200;
    color: #0A1931;
    border-color: #e6c200;
}

/* Contact Form Section */
.page-contact__form-section {
    padding: 60px 0;
    background-color: #0A1931;
}

.page-contact__contact-form {
    max-width: 700px;
    margin: 0 auto;
    background-color: #1A2B4C;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

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

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

.page-contact__form-input,
.page-contact__form-textarea {
    width: calc(100% - 20px);
    padding: 15px;
    border: 1px solid #3A4A6B;
    border-radius: 8px;
    background-color: #0F203D;
    color: #e0e0e0;
    font-size: 1em;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
    border-color: #FFD700;
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.3);
}

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

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

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

/* CTA Section */
.page-contact__cta-section {
    padding: 80px 0;
    background: linear-gradient(90deg, #0A1931 0%, #1a3a66 100%);
    text-align: center;
}

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

.page-contact__cta-image {
    max-width: 100%;
    width: 400px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-contact__cta-text-group {
    max-width: 700px;
}

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

.page-contact__cta-description {
    font-size: 1.2em;
    color: #f0f0f0;
    line-height: 1.6;
    margin-bottom: 30px;
}

.page-contact__cta-button {
    display: inline-block;
    background-color: #FFD700;
    color: #0A1931;
    padding: 18px 40px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 1.4em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-contact__cta-button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

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

    .page-contact__hero-description {
        font-size: 1.2em;
    }

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

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

    .page-contact__method-card {
        padding: 25px;
    }

    .page-contact__method-icon {
        width: 60px;
        height: 60px;
    }

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

    .page-contact__form-input,
    .page-contact__form-textarea {
        padding: 12px;
    }

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

    .page-contact__cta-title {
        font-size: 2.2em;
    }

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

    .page-contact__cta-button {
        font-size: 1.2em;
        padding: 15px 30px;
    }
}

@media (max-width: 480px) {
    .page-contact__hero {
        padding: 60px 15px;
    }

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

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

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

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

    .page-contact__cta-section {
        padding: 50px 0;
    }

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

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