/* style/contact.css */

/* General page styling */
.page-contact {
    font-family: 'Arial', sans-serif;
    color: #f5e6d0; /* Light text for dark background */
    background-color: #0A192F; /* Deep blue primary background */
    line-height: 1.6;
    padding-bottom: 50px; /* Space for footer */
}

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

/* Hero Section */
.page-contact__hero {
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 100px 0;
    text-align: center;
    color: #FFD700; /* Gold for title */
    border-bottom: 2px solid #FFD700;
}

.page-contact__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 25, 47, 0.8) 0%, rgba(26, 42, 64, 0.8) 100%);
    z-index: 1;
}

.page-contact__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

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

.page-contact__subtitle {
    font-size: 1.3em;
    color: #c0c0c0; /* Lighter grey for subtitle */
    max-width: 700px;
    margin: 0 auto;
}

/* Section Titles */
.page-contact__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold */
    text-align: center;
    margin-top: 60px;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.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-description {
    text-align: center;
    font-size: 1.1em;
    color: #c0c0c0;
    margin-bottom: 40px;
}

/* Contact Info Section */
.page-contact__contact-info {
    padding: 60px 0;
    background-color: #1a2a40; /* Slightly lighter dark blue */
}

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

.page-contact__info-item {
    background-color: #0A192F;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.125);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-contact__icon {
    font-size: 3em; /* Placeholder for icon */
    color: #FFD700;
    margin-bottom: 15px;
    height: 60px; /* Ensure placeholder has height */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}
.page-contact__icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}


.page-contact__item-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-contact__info-item p {
    color: #c0c0c0;
    margin-bottom: 10px;
}

.page-contact__link {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-contact__link:hover {
    color: #e6b800; /* Darker gold on hover */
    text-decoration: underline;
}

/* Contact Form Section */
.page-contact__contact-form {
    padding: 60px 0;
    background-color: #0A192F;
}

.page-contact__form {
    max-width: 700px;
    margin: 0 auto;
    background-color: #1a2a40;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.125);
}

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

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

.page-contact__input,
.page-contact__textarea {
    width: calc(100% - 20px);
    padding: 12px 10px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 5px;
    background-color: #0A192F;
    color: #f5e6d0;
    font-size: 1em;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__input:focus,
.page-contact__textarea:focus {
    border-color: #FFD700;
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
    outline: none;
}

.page-contact__textarea {
    resize: vertical;
}

.page-contact__submit-btn {
    display: block;
    width: 100%;
    padding: 15px 25px;
    background-color: #FFD700;
    color: #0A192F;
    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-btn:hover {
    background-color: #e6b800; /* Darker gold */
    transform: translateY(-2px);
}

/* Call to Action Section */
.page-contact__cta {
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 80px 0;
    text-align: center;
    border-top: 2px solid #FFD700;
    border-bottom: 2px solid #FFD700;
}

.page-contact__cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 25, 47, 0.85) 0%, rgba(26, 42, 64, 0.85) 100%);
    z-index: 1;
}

.page-contact__cta .page-contact__section-title,
.page-contact__cta .page-contact__section-description,
.page-contact__cta .page-contact__cta-btn {
    position: relative;
    z-index: 2;
}

.page-contact__cta .page-contact__section-title {
    margin-top: 0;
}

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

.page-contact__cta-btn:hover {
    background-color: #e6b800;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-contact__cta-btn--secondary {
    background-color: #0A192F;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-contact__cta-btn--secondary:hover {
    background-color: #FFD700;
    color: #0A192F;
    border-color: #FFD700;
}


/* FAQ Section */
.page-contact__faq {
    padding: 60px 0;
    background-color: #0A192F;
}

.page-contact__faq-item {
    background-color: #1a2a40;
    border: 1px solid rgba(255, 215, 0, 0.18);
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

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

.page-contact__faq-answer {
    font-size: 1.1em;
    color: #c0c0c0;
    padding-left: 15px;
    border-left: 3px solid #FFD700;
    margin-top: 15px;
}

.page-contact__faq-answer a {
    color: #FFD700;
    text-decoration: underline;
}

.page-contact__faq-answer a:hover {
    color: #e6b800;
}

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

    .page-contact__subtitle {
        font-size: 1.1em;
    }

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

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

    .page-contact__form {
        padding: 30px;
    }

    .page-contact__cta-btn {
        width: calc(100% - 30px);
        margin: 10px 15px;
    }
}

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

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

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

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

    .page-contact__form {
        padding: 20px;
    }

    .page-contact__input,
    .page-contact__textarea {
        width: calc(100% - 10px);
    }
}