/* style/contact.css */

/* General styling for the contact page */
.page-contact {
    font-family: Arial, sans-serif;
    color: #E0E0E0; /* Light gray for general text on dark background */
    background-color: #1A202C; /* Main dark background */
    line-height: 1.6;
    overflow-x: hidden;
}

.page-contact .highlight {
    color: #FFD700; /* Accent color for keywords */
}

/* Hero Section */
.page-contact__hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #1A202C 0%, #3a475a 100%); /* Gradient background for hero */
    gap: 30px;
}

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

.page-contact__title {
    font-size: 2.8em;
    color: #FFD700; /* Accent color for main title */
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.2;
}

.page-contact__subtitle {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #F0F0F0;
}

.page-contact__hero-image {
    max-width: 600px;
    width: 100%;
}

.page-contact__hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

/* General button styles */
.page-contact__btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    border: none;
    font-size: 1em;
}

.page-contact__btn--primary {
    background-color: #FFD700; /* Accent color for primary buttons */
    color: #1A202C; /* Dark text on accent background */
}

.page-contact__btn--primary:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-2px);
}

.page-contact__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Accent text for secondary buttons */
    border: 2px solid #FFD700;
}

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

/* Contact Methods Section */
.page-contact__methods {
    padding: 80px 20px;
    text-align: center;
    background-color: #1A202C;
}

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

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

.page-contact__method-card {
    background-color: #2A313C; /* Slightly lighter dark background for cards */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-contact__method-card:hover {
    transform: translateY(-5px);
}

.page-contact__method-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.page-contact__method-card h3 {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-contact__method-card p {
    font-size: 1em;
    color: #F0F0F0;
    margin-bottom: 20px;
    flex-grow: 1; /* Make paragraphs take available space */
}

.page-contact__email {
    font-weight: bold;
    color: #FFD700;
    font-size: 1.1em;
}

.page-contact__social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.page-contact__social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #FFD700;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.page-contact__social-icon img {
    width: 24px;
    height: 24px;
    margin: 0; /* Override card img margin */
}

.page-contact__social-icon:hover {
    background-color: #e6c200;
}

/* FAQ Section */
.page-contact__faq {
    padding: 80px 20px;
    text-align: center;
    background-color: #2A313C; /* Alternating dark background */
}

.page-contact__faq-intro {
    max-width: 900px;
    margin: 0 auto 40px auto;
    font-size: 1.1em;
    color: #F0F0F0;
}

/* Contact Form Section */
.page-contact__form-section {
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #1A202C;
}

.page-contact__form-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-contact__form-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-contact__form-content {
    flex: 1;
    text-align: left;
}

.page-contact__form-content .page-contact__section-title {
    text-align: left;
    margin-bottom: 20px;
}

.page-contact__form-content p {
    color: #F0F0F0;
    margin-bottom: 30px;
}

.page-contact__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.page-contact__form-group {
    display: flex;
    flex-direction: column;
}

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

.page-contact__form-group input,
.page-contact__form-group textarea {
    padding: 12px;
    border: 1px solid #FFD700;
    border-radius: 5px;
    background-color: #2A313C;
    color: #F0F0F0;
    font-size: 1em;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

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

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

/* Call to Action Section */
.page-contact__cta {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 80px 20px;
    text-align: center;
    background-color: #2A313C;
    align-items: center;
}

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

.page-contact__cta-content .page-contact__section-title {
    margin-bottom: 20px;
}

.page-contact__cta-content p {
    font-size: 1.1em;
    color: #F0F0F0;
    margin-bottom: 30px;
}

.page-contact__cta-image {
    max-width: 500px;
    width: 100%;
}

.page-contact__cta-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}


/* Responsive Design */
@media (min-width: 768px) {
    .page-contact__hero {
        flex-direction: row;
        text-align: left;
        padding: 100px 40px;
        justify-content: space-between;
    }

    .page-contact__hero-content {
        flex: 1;
        padding-right: 40px;
    }

    .page-contact__hero-image {
        flex: 1;
        max-width: 50%;
    }

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

    .page-contact__method-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .page-contact__form-section {
        flex-direction: row;
        text-align: left;
        gap: 80px;
        padding: 100px 40px;
    }

    .page-contact__form-image {
        order: 2; /* Image on right for larger screens */
    }

    .page-contact__form-content {
        order: 1; /* Form on left for larger screens */
    }

    .page-contact__form-content .page-contact__section-title {
        text-align: left;
    }

    .page-contact__cta {
        flex-direction: row;
        text-align: left;
        padding: 100px 40px;
        justify-content: space-between;
    }

    .page-contact__cta-content {
        flex: 1;
        padding-right: 40px;
    }

    .page-contact__cta-image {
        flex: 1;
        max-width: 50%;
    }
}

@media (min-width: 1024px) {
    .page-contact__title {
        font-size: 4em;
    }
    .page-contact__section-title {
        font-size: 2.5em;
    }
}