.page-contact {
    background-color: #140C0C;
    color: #FFF1E8;
    font-family: sans-serif; /* Roboto-like */
}

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

/* Hero Section */
.page-contact__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden; /* Ensure content stays within bounds */
}

.page-contact__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 200px; /* Minimum size */
    width: 1200px; /* Display width */
    height: 675px; /* Display height */
}

.page-contact__hero-content {
    padding: 40px 20px;
    max-width: 800px;
    margin-top: 20px; /* Text below image */
}

.page-contact__main-title {
    font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(to right, #F3C54D, #FFB04A); /* Gold gradient */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent; /* Fallback for non-webkit */
}

.page-contact__description {
    font-size: 1.1em;
    line-height: 1.6;
    opacity: 0.9;
}

/* Section Titles */
.page-contact__section-title {
    font-size: clamp(1.8em, 3vw, 2.8em);
    font-weight: 600;
    text-align: center;
    margin-top: 60px;
    margin-bottom: 40px;
    background: linear-gradient(to right, #F3C54D, #FFB04A); /* Gold gradient */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent; /* Fallback */
}

/* Contact Info Section */
.page-contact__contact-info-section {
    padding: 60px 0;
}

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

.page-contact__info-card {
    background-color: #2A1212; /* Card BG */
    border: 1px solid #6A1E1E; /* Border */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-contact__info-card-title {
    font-size: 1.5em;
    color: #F3C54D; /* Gold */
    margin-bottom: 15px;
}

.page-contact__info-text {
    font-size: 1em;
    line-height: 1.5;
    margin-bottom: 10px;
}

.page-contact__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    color: #FFF1E8; /* Text Main */
    background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%); /* Button gradient */
    transition: transform 0.3s ease;
    margin-top: 15px;
    border: none;
    cursor: pointer;
    font-size: 1em;
}

.page-contact__button:hover {
    transform: translateY(-2px);
}

.page-contact__button--secondary {
    background: #7E0D0D; /* Deep Red */
}

.page-contact__button--secondary:hover {
    background: #C61F1F; /* Primary color */
}

/* Form Section */
.page-contact__form-section {
    padding: 60px 0;
}

.page-contact__form-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
    background-color: #2A1212; /* Card BG */
    border-radius: 10px;
    padding: 40px;
    border: 1px solid #6A1E1E; /* Border */
}

.page-contact__form-image-container {
    flex: 1;
    min-width: 300px;
}

.page-contact__form-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    min-width: 200px; /* Minimum size */
    min-height: 200px; /* Minimum size */
    width: 800px; /* Display width */
    height: 600px; /* Display height */
    object-fit: cover;
}

.page-contact__contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 300px;
}

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

.page-contact__form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #FFF1E8; /* Text Main */
}

.page-contact__form-input,
.page-contact__form-textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #6A1E1E; /* Border */
    border-radius: 5px;
    background-color: #140C0C; /* Background */
    color: #FFF1E8; /* Text Main */
    font-size: 1em;
    box-sizing: border-box; /* Include padding in width */
}

.page-contact__form-input::placeholder,
.page-contact__form-textarea::placeholder {
    color: rgba(255, 241, 232, 0.6);
}

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
    outline: none;
    border-color: #C61F1F; /* Primary color */
    box-shadow: 0 0 0 2px rgba(198, 31, 31, 0.5);
}

.page-contact__button--submit {
    align-self: flex-start;
}

/* FAQ Section */
.page-contact__faq-section {
    padding: 60px 0 80px 0;
}

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

.page-contact__faq-item {
    background-color: #2A1212; /* Card BG */
    border: 1px solid #6A1E1E; /* Border */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-contact__faq-question {
    padding: 20px 25px;
    font-size: 1.2em;
    font-weight: 600;
    color: #F3C54D; /* Gold */
    cursor: pointer;
    position: relative;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-contact__faq-question::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-contact__faq-question.active::after {
    content: '-';
    transform: rotate(0deg); /* No rotation needed for - */
}

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

.page-contact__faq-answer p {
    padding-bottom: 20px;
    margin: 0;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-contact__form-wrapper {
        flex-direction: column;
        padding: 30px;
    }

    .page-contact__form-image-container {
        width: 100%;
    }

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

@media (max-width: 768px) {
    .page-contact__container {
        padding: 15px;
    }

    .page-contact__hero-content {
        padding: 30px 15px;
    }

    .page-contact__main-title {
        font-size: clamp(1.8em, 6vw, 2.5em);
    }

    .page-contact__description {
        font-size: 0.95em;
    }

    .page-contact__section-title {
        font-size: clamp(1.5em, 5vw, 2em);
        margin-top: 40px;
        margin-bottom: 30px;
    }

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

    .page-contact__form-wrapper {
        padding: 20px;
    }

    .page-contact__hero-image,
    .page-contact__form-image {
        max-width: 100%;
        height: auto;
    }
    /* Ensure all images in content area are responsive */
    .page-contact img {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Enforce minimum size */
        min-height: 200px; /* Enforce minimum size */
    }
}

@media (max-width: 480px) {
    .page-contact__button {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .page-contact__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
    }

    .page-contact__faq-answer p {
        padding-bottom: 15px;
    }
}