/* style/contact.css */

/* General styles for the contact page content */
.page-contact {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light text for dark background */
    background-color: #1A202C; /* Main background color */
    line-height: 1.6;
    padding-bottom: 50px; /* Add some padding at the bottom */
}

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

/* Hero Section */
.page-contact__hero {
    background-color: #1A202C; /* Dark background */
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden; /* To contain the image if it overflows */
}

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

.page-contact__subtitle {
    font-size: 1.3em;
    color: #CCCCCC;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

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

/* Info and Form Section */
.page-contact__info-section {
    padding: 60px 0;
    background-color: #2D3748; /* Slightly lighter dark background */
}

.page-contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

.page-contact__info-card {
    background-color: #1A202C;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    position: relative;
}

.page-contact__info-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 25px;
    font-weight: 600;
}

.page-contact__info-card p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #E0E0E0;
}

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

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

.page-contact__info-icon {
    max-width: 120px;
    height: auto;
    margin-top: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Form */
.page-contact__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

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

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

.page-contact__form-input,
.page-contact__form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #4A5568;
    border-radius: 8px;
    background-color: #2D3748;
    color: #E0E0E0;
    font-size: 1em;
    box-sizing: border-box;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

.page-contact__btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-contact__btn--submit {
    background-color: #FFD700;
    color: #1A202C; /* Dark text on gold button */
    border: none;
    margin-top: 10px;
}

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

/* FAQ Section */
.page-contact__faq-section {
    padding: 60px 0;
    background-color: #1A202C;
    text-align: center;
}

.page-contact__section-title {
    font-size: 2.5em;
    color: #FFD700;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-contact__faq-item {
    background-color: #2D3748;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    text-align: left;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-contact__faq-question {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px; /* Space for an eventual toggle icon */
}

.page-contact__faq-answer {
    font-size: 1.1em;
    color: #E0E0E0;
    line-height: 1.8;
    /* display: none; */ /* Handled by JS */
}

.page-contact__link-cta {
    color: #FFD700;
    font-weight: bold;
    text-decoration: none;
}

.page-contact__link-cta:hover {
    text-decoration: underline;
    color: #FFEB3B;
}

.page-contact__faq-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* CTA Section */
.page-contact__cta-section {
    background-color: #FFD700; /* Accent background for strong CTA */
    padding: 60px 0;
    text-align: center;
    color: #1A202C; /* Dark text on light background */
}

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

.page-contact__cta-title {
    font-size: 2.8em;
    color: #1A202C;
    margin-bottom: 15px;
    font-weight: bold;
}

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

.page-contact__btn--primary {
    background-color: #1A202C;
    color: #FFD700;
    border: 2px solid #1A202C;
    padding: 16px 32px;
    font-size: 1.2em;
}

.page-contact__btn--primary:hover {
    background-color: #333;
    color: #FFEB3B;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-contact__cta-image {
    max-width: 80%;
    height: auto;
    border-radius: 10px;
    margin-top: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-contact__grid {
        grid-template-columns: 1fr;
    }

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

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

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

    .page-contact__faq-question {
        font-size: 1.2em;
    }

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

    .page-contact__btn {
        padding: 12px 24px;
        font-size: 1em;
    }

    .page-contact__btn--primary {
        padding: 14px 28px;
        font-size: 1.1em;
    }
}

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

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

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

    .page-contact__info-section,
    .page-contact__faq-section,
    .page-contact__cta-section {
        padding: 40px 0;
    }

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

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

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