/* style/contact.css */

/* General page styling, assuming body background is dark from shared.css */
.page-contact {
    font-family: Arial, sans-serif;
    color: #FFF6D6; /* Text Main */
    background: #0A0A0A; /* Background */
    line-height: 1.6;
}

/* Container for content sections */
.page-contact__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Hero Section */
.page-contact__hero-section {
    width: 100%;
    display: flex;
    flex-direction: column; /* Stacks children vertically */
    align-items: center; /* Center content horizontally if not full width */
    padding-top: 10px; /* Minimal top padding, relying on body for header offset */
    padding-bottom: 60px;
    background: #0A0A0A; /* Ensure background if image doesn't cover all */
}

.page-contact__hero-image-wrapper {
    width: 100%;
    max-width: 1920px; /* Max width of the image */
    margin-bottom: 30px; /* Space between image and text */
}

.page-contact__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 400px; /* Ensure hero image has a decent height */
}

.page-contact__hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 20px; /* Add padding for smaller screens */
}

.page-contact__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size */
    font-weight: 700;
    color: #FFD36B; /* Glow */
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-contact__hero-description {
    font-size: 1.1rem;
    color: #FFF6D6; /* Text Main */
}

.page-contact__hero-description a {
    color: #F2C14E; /* Main color for links */
    text-decoration: none;
}

.page-contact__hero-description a:hover {
    text-decoration: underline;
}

/* Section Titles and Descriptions */
.page-contact__section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #FFD36B; /* Glow */
    text-align: center;
    margin-bottom: 20px;
    padding-top: 40px;
}

.page-contact__section-description {
    font-size: 1.1rem;
    color: #FFF6D6; /* Text Main */
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-contact__content-text {
    font-size: 1rem;
    color: #FFF6D6; /* Text Main */
    margin-bottom: 15px;
}

.page-contact__content-text a {
    color: #F2C14E; /* Main color for links */
    text-decoration: none;
}

.page-contact__content-text a:hover {
    text-decoration: underline;
}

/* Dark Section Background */
.page-contact__dark-section {
    background: #0A0A0A; /* Background */
    padding: 60px 0;
}

/* Light Section Background (for FAQ) */
.page-contact__light-bg {
    background: #111111; /* Card BG, still dark, but distinct from main background */
    padding: 60px 0;
}

/* Contact Methods Grid */
.page-contact__method-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-contact__method-item {
    background: #111111; /* Card BG */
    border: 1px solid #3A2A12; /* Border */
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-contact__method-icon {
    width: 200px; /* Min size for images */
    height: auto;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-contact__method-title {
    font-size: 1.8rem;
    color: #FFD36B; /* Glow */
    margin-bottom: 15px;
}

.page-contact__method-text {
    font-size: 1rem;
    color: #FFF6D6; /* Text Main */
    margin-bottom: 25px;
}

/* Buttons */
.page-contact__btn-primary,
.page-contact__btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
    box-sizing: border-box;
}

.page-contact__btn-primary {
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Custom Button Color */
    color: #111111; /* Dark text for bright button */
    border: none;
}

.page-contact__btn-primary:hover {
    background: linear-gradient(180deg, #DDA11D 0%, #FFD86A 100%);
    color: #0A0A0A;
}

.page-contact__btn-secondary {
    background: #111111; /* Card BG */
    color: #FFD36B; /* Glow */
    border: 2px solid #F2C14E; /* Main color border */
}

.page-contact__btn-secondary:hover {
    background: #F2C14E; /* Main color */
    color: #111111; /* Dark text */
}

/* CTA Buttons Group */
.page-contact__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

/* FAQ Section */
.page-contact__faq-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 10px;
}

.page-contact__faq-list {
    margin-top: 40px;
}

.page-contact__faq-item {
    background: #0A0A0A; /* Background */
    border: 1px solid #3A2A12; /* Border */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-contact__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background: #111111; /* Card BG */
    color: #FFD36B; /* Glow */
    font-size: 1.2rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-contact__faq-question:hover {
    background: #3A2A12; /* Border color for hover */
}

.page-contact__faq-question h3 {
    margin: 0;
    color: inherit;
}

.page-contact__faq-toggle {
    font-size: 1.8rem;
    line-height: 1;
    transition: transform 0.3s ease;
    color: #F2C14E; /* Main color */
}

.page-contact__faq-item.active .page-contact__faq-toggle {
    transform: rotate(45deg);
}

.page-contact__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #FFF6D6; /* Text Main */
    background: #0A0A0A; /* Background */
}

.page-contact__faq-item.active .page-contact__faq-answer {
    max-height: 1000px !important; /* Sufficiently large to show all content */
    padding: 20px 25px;
}

.page-contact__faq-answer p {
    margin: 0;
    padding-bottom: 10px;
}

.page-contact__faq-answer p:last-child {
    padding-bottom: 0;
}

.page-contact__faq-answer a {
    color: #F2C14E; /* Main color for links */
    text-decoration: none;
}

.page-contact__faq-answer a:hover {
    text-decoration: underline;
}

/* Keyword highlighting */
.page-contact .keyword {
    color: #FFD36B; /* Highlight keywords with Glow color */
    font-weight: bold;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .page-contact {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-contact__container {
        padding: 0 15px;
    }

    /* Hero Section */
    .page-contact__hero-section {
        padding-bottom: 40px;
    }

    .page-contact__hero-content {
        margin-top: 30px; /* Adjust margin for smaller screens */
        padding: 15px;
    }

    .page-contact__main-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }

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

    /* Section Titles and Descriptions */
    .page-contact__section-title {
        font-size: clamp(1.8rem, 7vw, 2.2rem);
        padding-top: 30px;
    }

    .page-contact__section-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    /* Contact Methods Grid */
    .page-contact__method-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    /* Buttons */
    .page-contact__btn-primary,
    .page-contact__btn-secondary,
    .page-contact a[class*="button"],
    .page-contact a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-contact__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Images */
    .page-contact img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    /* Containers for images and content */
    .page-contact__section,
    .page-contact__card,
    .page-contact__container,
    .page-contact__method-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    /* FAQ Section */
    .page-contact__faq-question {
        font-size: 1.1rem;
        padding: 15px 20px;
    }

    .page-contact__faq-answer {
        padding: 0 20px;
    }

    .page-contact__faq-item.active .page-contact__faq-answer {
        padding: 15px 20px;
    }
}