/* style/contact.css */

/* Base Styles & Utilities */
.page-contact {
    font-family: 'Arial', sans-serif;
    color: #FFFFFF; /* Light text on dark background */
    line-height: 1.6;
    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; /* Gold for titles */
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

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

.page-contact__section-intro {
    text-align: center;
    font-size: 1.1em;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.page-contact__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-align: center;
    cursor: pointer;
}

.page-contact__btn--primary {
    background-color: #FFD700;
    color: #0A1931;
    border: 2px solid #FFD700;
}

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

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

.page-contact__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A1931;
    transform: translateY(-2px);
}

.page-contact__btn--submit {
    background-color: #FFD700;
    color: #0A1931;
    border: none;
    width: 100%;
    padding: 15px;
    font-size: 1.1em;
}

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

/* Hero Section */
.page-contact__hero {
    background: linear-gradient(135deg, #0A1931 0%, #1a3a66 100%); /* Dark blue gradient */
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-contact__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-contact__hero-description {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 30px;
    color: #e0e0e0;
}

.page-contact__hero-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-top: 30px;
}

/* Contact Methods Section */
.page-contact__methods {
    padding: 60px 0;
    background-color: #0A1931;
}

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

.page-contact__method-card {
    background-color: #1a2a47; /* Slightly lighter dark 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__method-card:hover {
    transform: translateY(-5px);
    background-color: #2b3d5b;
}

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

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

.page-contact__method-text {
    font-size: 1em;
    color: #c0c0c0;
    margin-bottom: 20px;
}

.page-contact__email-address, .page-contact__phone-number {
    font-size: 1.2em;
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 20px;
}

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

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

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

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

.page-contact__form-input,
.page-contact__form-textarea {
    width: calc(100% - 20px);
    padding: 12px;
    border: 1px solid #3a4a67;
    border-radius: 5px;
    background-color: #0a1931; /* Darker input background */
    color: #FFFFFF;
    font-size: 1em;
    box-sizing: border-box;
}

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

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

/* FAQ Section */
.page-contact__faq {
    padding: 60px 0;
    background-color: #0A1931;
    position: relative;
    overflow: hidden;
}

.page-contact__faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto 40px;
}

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

.page-contact__faq-question {
    font-size: 1.3em;
    color: #FFD700;
    margin-bottom: 10px;
}

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

.page-contact__faq-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 40px auto 0;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* Call to Action Section */
.page-contact__cta {
    background-color: #FFD700; /* Gold background for CTA */
    padding: 70px 20px;
    text-align: center;
    color: #0A1931; /* Dark text on gold background */
}

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

.page-contact__cta-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px;
    color: #333;
}

.page-contact__cta .page-contact__btn--primary {
    background-color: #0A1931;
    color: #FFD700;
    border: 2px solid #0A1931;
    font-size: 1.1em;
    padding: 15px 30px;
}

.page-contact__cta .page-contact__btn--primary:hover {
    background-color: #1a2a47;
    border-color: #1a2a47;
    color: #FFD700;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-contact__hero-title {
        font-size: 2.8em;
    }
    .page-contact__section-title {
        font-size: 2em;
    }
    .page-contact__method-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-contact__hero {
        padding: 60px 0;
    }
    .page-contact__hero-title {
        font-size: 2.2em;
    }
    .page-contact__hero-description {
        font-size: 1.1em;
    }
    .page-contact__section-title {
        font-size: 1.8em;
    }
    .page-contact__method-card {
        padding: 20px;
    }
    .page-contact__method-title {
        font-size: 1.5em;
    }
    .page-contact__form {
        padding: 30px;
    }
    .page-contact__cta-title {
        font-size: 2.5em;
    }
}

@media (max-width: 576px) {
    .page-contact__hero {
        padding: 40px 0;
    }
    .page-contact__hero-title {
        font-size: 1.8em;
    }
    .page-contact__hero-description {
        font-size: 1em;
    }
    .page-contact__section-title {
        font-size: 1.5em;
    }
    .page-contact__method-grid {
        grid-template-columns: 1fr;
    }
    .page-contact__form-input, .page-contact__form-textarea {
        width: 100%;
    }
    .page-contact__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-contact__cta-title {
        font-size: 2em;
    }
    .page-contact__cta-description {
        font-size: 1em;
    }
}