.page-contact {
    background-color: #100224; /* Deep purple-black, similar to WOW88 style */
    color: #FFFFFF; /* White text for readability on dark background */
    padding-top: 10px; /* Small top padding for first section, body handles --header-offset */
    overflow-x: hidden; /* Prevent horizontal overflow on mobile */
}

.page-contact__hero-section {
    position: relative;
    display: flex;
    flex-direction: column; /* Enforce top-image, bottom-text on mobile */
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    min-height: clamp(420px, 50vw, 800px); /* Responsive height for hero */
}

.page-contact__hero-image {
    width: 100%;
    height: auto; /* Responsive image */
    max-width: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    margin-bottom: 20px; /* Space between image and text content */
}

.page-contact__hero-content {
    max-width: 800px;
    margin: 0 auto;
    z-index: 1; /* Ensure text is above any background elements if layered */
    padding: 0 15px;
}

.page-contact__main-title {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 15px;
    color: #FFFFFF; /* White for title */
}

.page-contact__hero-description {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #E0E0E0; /* Slightly off-white for description */
}

.page-contact__cta-button {
    display: inline-block;
    background: linear-gradient(90deg, #EA7C07, #ff5e3a); /* Orange-red gradient for CTA */
    color: #FFFFFF;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease;
    min-height: 44px; /* Touch target size */
}

.page-contact__cta-button:hover {
    transform: translateY(-3px);
}

.page-contact__section-title {
    font-size: 2.2em;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #26A9E0; /* Primary blue for section titles */
    background-image: linear-gradient(90deg, #26A9E0, #EA7C07); /* Gradient for important H2 */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.page-contact__info-section,
.page-contact__form-section,
.page-contact__social-section,
.page-contact__faq-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.page-contact__info-card {
    background-color: #1a0a33; /* Slightly lighter dark background for cards */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-contact__info-icon {
    width: 200px; /* Min size 200x200 */
    height: 200px;
    object-fit: contain;
    margin-bottom: 20px;
}

.page-contact__card-title {
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 10px;
    color: #26A9E0; /* Primary blue for card titles */
}

.page-contact__card-text {
    font-size: 1em;
    line-height: 1.5;
    margin-bottom: 15px;
    color: #E0E0E0;
    flex-grow: 1; /* Push link to bottom */
}

.page-contact__card-link {
    color: #EA7C07; /* Orange for links */
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.page-contact__card-link:hover {
    color: #ff5e3a;
}

.page-contact__contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #1a0a33;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

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

.page-contact__form-input,
.page-contact__form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #26A9E0; /* Primary blue border */
    border-radius: 8px;
    background-color: #0d011c; /* Even 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-textarea {
    resize: vertical;
}

.page-contact__submit-button {
    display: block;
    width: 100%;
    background: linear-gradient(90deg, #EA7C07, #ff5e3a); /* Orange-red gradient for submit button */
    color: #FFFFFF;
    padding: 15px 25px;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
    min-height: 44px; /* Touch target size */
}

.page-contact__submit-button:hover {
    transform: translateY(-3px);
}

.page-contact__social-description {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.1em;
    color: #E0E0E0;
}

.page-contact__social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.page-contact__social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #FFFFFF;
    font-weight: 500;
    transition: color 0.3s ease;
}

.page-contact__social-link:hover {
    color: #26A9E0;
}

.page-contact__social-image {
    width: 200px; /* Min size 200x200 */
    height: 200px;
    object-fit: contain;
    margin-bottom: 10px;
}

.page-contact__faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.page-contact__faq-item {
    background-color: #1a0a33;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-contact__faq-question {
    font-size: 1.3em;
    font-weight: 600;
    color: #26A9E0;
    margin-bottom: 10px;
    cursor: pointer; /* Indicate it's clickable for accordion */
}

.page-contact__faq-answer {
    font-size: 1em;
    line-height: 1.6;
    color: #E0E0E0;
    display: none; /* Hidden by default for accordion */
}

.page-contact__faq-question.active + .page-contact__faq-answer {
    display: block; /* Show when active */
}

/* Mobile responsiveness */
@media (max-width: 849px) {
    .page-contact__hero-section {
        padding: 20px 10px;
        min-height: auto;
    }

    .page-contact__hero-image {
        max-width: 100%;
        width: 100%;
        height: auto;
    }

    .page-contact__hero-content {
        padding: 0 10px;
    }

    .page-contact__main-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem); /* Using clamp for H1 on mobile */
    }

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

    .page-contact__cta-button {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .page-contact__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-contact__info-section,
    .page-contact__form-section,
    .page-contact__social-section,
    .page-contact__faq-section {
        padding: 40px 15px;
    }

    .page-contact__info-grid {
        grid-template-columns: 1fr; /* Stack cards on very small screens */
    }

    .page-contact__info-card,
    .page-contact__contact-form,
    .page-contact__faq-item {
        padding: 25px;
    }

    .page-contact__social-links {
        gap: 20px;
    }

    .page-contact__social-image {
        width: 200px; /* Must be at least 200px */
        height: 200px; /* Must be at least 200px */
    }
}

@media (max-width: 768px) {
    /* Ensure all images maintain min 200x200 if not explicitly smaller in HTML attributes and not overriden by CSS */
    .page-contact img {
        max-width: 100%;
        height: auto;
    }

    /* Override for specific images if they need to be smaller but still >= 200px */
    .page-contact__social-image {
        width: 200px; /* Must be at least 200px */
        height: 200px; /* Must be at least 200px */
    }
}

/* Ensure no content causes horizontal scroll */
@media (max-width: 768px) {
    .page-contact {
        overflow-x: hidden;
    }
}