/* style/contact.css */

/* Base styling for the contact page content */
.page-contact {
    font-family: 'Arial', sans-serif;
    color: #f5f5f5; /* Light text on dark background */
    background-color: #0A192F; /* Primary background color */
    line-height: 1.6;
}

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

/* Hero Section */
.page-contact__hero-section {
    background: linear-gradient(135deg, #0A192F, #1a2a47); /* Dark blue gradient */
    padding: 100px 0;
    text-align: center;
    color: #f5f5f5;
    position: relative;
    overflow: hidden;
}

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

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

.page-contact__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #0A192F; /* Dark text on gold */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: 2px solid #FFD700;
}

.page-contact__cta-button:hover {
    background-color: #0A192F; /* Dark blue background on hover */
    color: #FFD700; /* Gold text on hover */
    border-color: #FFD700;
}

/* Info Section */
.page-contact__info-section {
    padding: 80px 0;
    background-color: #1a2a47; /* Slightly lighter dark blue */
    text-align: center;
}

.page-contact__section-title {
    font-size: 2.5em;
    color: #FFD700;
    margin-bottom: 50px;
    position: relative;
}

.page-contact__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 15px auto 0;
    border-radius: 2px;
}

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

.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 #2a3d5f;
}

.page-contact__icon {
    width: 3em; /* Adjust size for img */
    height: auto;
    margin-bottom: 15px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-contact__info-heading {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 10px;
}

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

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

.page-contact__info-link:hover {
    color: #f5f5f5;
}

.page-contact__social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.page-contact__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #FFD700;
    color: #0A192F;
    font-size: 1.5em;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-contact__social-link:hover {
    background-color: #f5f5f5;
    color: #0A192F;
}

.page-contact__social-icon {
    width: 1.5em; /* Adjust size for img */
    height: auto;
    display: block;
}

/* Form Section */
.page-contact__form-section {
    padding: 80px 0;
    background-color: #0A192F;
    text-align: center;
}

.page-contact__form-description {
    font-size: 1.1em;
    color: #e0e0e0;
    max-width: 700px;
    margin: 0 auto 40px;
}

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

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

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

.page-contact__form-input,
.page-contact__form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #2a3d5f;
    border-radius: 5px;
    background-color: #0A192F;
    color: #f5f5f5;
    font-size: 1em;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.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 0 3px rgba(255, 215, 0, 0.3);
}

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

.page-contact__submit-button:hover {
    background-color: #0A192F;
    color: #FFD700;
    border: 2px solid #FFD700;
}

/* FAQ CTA Section */
.page-contact__faq-cta-section {
    padding: 80px 0;
    background-color: #1a2a47;
}

.page-contact__faq-cta-section .page-contact__container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.page-contact__cta-content {
    flex: 1;
    min-width: 300px;
}

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

.page-contact__cta-text {
    font-size: 1.1em;
    color: #e0e0e0;
    margin-bottom: 30px;
}

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

.page-contact__faq-button:hover {
    background-color: #FFD700;
    color: #0A192F;
}

.page-contact__image-wrapper {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

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

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

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

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

    .page-contact__faq-cta-section .page-contact__container {
        flex-direction: column;
        text-align: center;
    }

    .page-contact__cta-content {
        order: 2;
    }

    .page-contact__image-wrapper {
        order: 1;
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .page-contact__hero-title {
        font-size: 2em;
    }

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

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

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

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

    .page-contact__info-heading {
        font-size: 1.5em;
    }

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