.page-contact {
    background-color: #140C0C; /* Background */
    color: #FFF1E8; /* Text Main */
    padding-bottom: 40px;
}

.page-contact__hero-section {
    position: relative;
    overflow: hidden;
    padding-top: 10px; /* Small top padding */
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-contact__hero-banner {
    width: 100%;
    margin: 0;
    overflow: hidden;
}

.page-contact__hero-banner img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 5; /* Matches 1920x600 */
    object-fit: cover;
    object-position: center;
    filter: none; /* No filter */
}

.page-contact__hero-content {
    max-width: 800px;
    padding: 0 20px;
    margin-top: 20px;
}

.page-contact__main-title {
    font-size: clamp(1.8rem, 4.5vw, 3rem); /* Adjusted for H1, slightly larger for desktop but clamped */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #FFF1E8;
}

.page-contact__description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-contact__cta-button {
    display: inline-block;
    padding: 14px 30px;
    background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%); /* Button color */
    color: #140C0C; /* Contrast with button */
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-contact__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-contact__section-title {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-top: 60px;
    margin-bottom: 40px;
    color: #F3C54D; /* Gold accent */
}

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

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

.page-contact__info-card {
    background-color: #2A1212; /* Card BG */
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid #6A1E1E; /* Border */
}

.page-contact__card-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #F3C54D; /* Gold */
}

.page-contact__card-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #FFF1E8;
}

.page-contact__card-text a {
    color: #FFB04A; /* Gold link */
    text-decoration: none;
}

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

.page-contact__card-link {
    display: inline-block;
    color: #FFB04A; /* Gold */
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.page-contact__card-link:hover {
    color: #F3C54D; /* Slightly lighter gold on hover */
}

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

.page-contact__social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #C61F1F; /* Main color */
    color: #FFF1E8;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.page-contact__social-icon:hover {
    background-color: #E53030; /* Accent color */
}

.page-contact__form-section {
    padding: 20px;
    max-width: 800px;
    margin: 60px auto 0;
}

.page-contact__form-description {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #FFF1E8;
}

.page-contact__contact-form {
    background-color: #2A1212; /* Card BG */
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid #6A1E1E; /* Border */
}

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

.page-contact__form-label {
    display: block;
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 600;
    color: #FFF1E8;
}

.page-contact__form-input,
.page-contact__form-textarea {
    width: calc(100% - 20px); /* Adjust for padding */
    padding: 12px 10px;
    border: 1px solid #7E0D0D; /* Deep Red */
    border-radius: 6px;
    background-color: #140C0C; /* Background */
    color: #FFF1E8;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
    border-color: #FFB04A; /* Gold on focus */
    outline: none;
}

.page-contact__submit-button {
    width: 100%;
    padding: 15px;
    background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%); /* Button color */
    color: #140C0C;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-contact__submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-contact__faq-section {
    padding: 20px;
    max-width: 900px;
    margin: 60px auto 0;
}

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

.page-contact__faq-item {
    background-color: #2A1212; /* Card BG */
    padding: 25px;
    margin-bottom: 15px;
    border-radius: 10px;
    border: 1px solid #6A1E1E; /* Border */
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page-contact__faq-question {
    font-size: 1.2rem;
    font-weight: 600;
    color: #F3C54D; /* Gold */
    margin-bottom: 10px;
}

.page-contact__faq-answer {
    font-size: 1rem;
    line-height: 1.6;
    color: #FFF1E8;
}

.page-contact__faq-answer a {
    color: #FFB04A; /* Gold link */
    text-decoration: none;
}

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


/* Responsive adjustments */
@media (max-width: 768px) {
    .page-contact__main-title {
        font-size: clamp(1.6rem, 6vw, 2.5rem); /* Adjust for smaller screens */
    }

    .page-contact__description {
        font-size: 1rem;
        padding: 0 15px;
    }

    .page-contact__info-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
    }

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

    .page-contact__form-input,
    .page-contact__form-textarea {
        width: calc(100% - 24px); /* Adjust for padding on smaller screens */
        padding: 10px 12px;
    }

    .page-contact__hero-banner img {
        aspect-ratio: 16 / 9; /* More standard for mobile hero */
    }
    
    .page-contact__section-title {
        font-size: clamp(1.3rem, 5vw, 2rem);
    }
}

@media (max-width: 549px) {
    .page-contact__main-title {
        font-size: clamp(1.4rem, 7vw, 2rem);
    }
    .page-contact__cta-button {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
    .page-contact__section-title {
        margin-top: 40px;
        margin-bottom: 30px;
    }
}

/* Ensure all images scale correctly on mobile and prevent overflow */
@media (max-width: 768px) {
    .page-contact img {
        max-width: 100%;
        height: auto;
    }
}