.page-contact {
    background-color: #0A0A0A;
    color: #FFF6D6;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-bottom: 40px; /* Ensure some space at the bottom */
}

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

/* Hero Section */
.page-contact__hero-section {
    position: relative;
    text-align: center;
    padding-top: 10px; /* Small top padding, not --header-offset */
    padding-bottom: 40px;
    background-color: #111111; /* Card BG for this section */
    overflow: hidden;
}

.page-contact__hero-banner {
    width: 100%;
    margin: 0;
    overflow: hidden;
    margin-bottom: 30px; /* Space between image and text */
}

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

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

.page-contact__main-title {
    font-size: clamp(1.8rem, 4.5vw, 2.8rem); /* Adjusted for H1 */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #F2C14E; /* Main color for H1 */
}

.page-contact__intro-text {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #FFF6D6;
}

/* Section Titles */
.page-contact__section-title {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 600;
    color: #F2C14E;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-contact__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #FFD36B;
    border-radius: 2px;
}

/* Contact Info Section */
.page-contact__info-section {
    padding: 60px 0;
    background-color: #0A0A0A;
}

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

.page-contact__method-card {
    background-color: #111111;
    border: 1px solid #3A2A12;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

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

.page-contact__method-title {
    font-size: 1.5rem;
    color: #FFD36B;
    margin-bottom: 15px;
}

.page-contact__method-description {
    font-size: 1rem;
    color: #FFF6D6;
    margin-bottom: 25px;
}

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

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

.page-contact__contact-form {
    max-width: 700px;
    margin: 0 auto;
    padding: 30px;
    background-color: #0A0A0A;
    border: 1px solid #3A2A12;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

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

.page-contact__form-input,
.page-contact__form-textarea {
    width: calc(100% - 20px); /* Adjust for padding */
    padding: 12px 10px;
    border: 1px solid #3A2A12;
    border-radius: 8px;
    background-color: #111111;
    color: #FFF6D6;
    font-size: 1rem;
    box-sizing: border-box;
}

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

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

.page-contact__form-textarea {
    resize: vertical;
}

/* Buttons */
.page-contact__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    color: #111111; /* Text color for buttons */
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    margin-top: 10px; /* Space above button */
}

.page-contact__button:hover {
    background: linear-gradient(180deg, #FFE89A 0%, #EAA82A 100%); /* Slightly lighter hover */
    transform: translateY(-2px);
}

.page-contact__button--submit {
    width: 100%;
    margin-top: 20px;
}

/* Responsive adjustments */
@media (max-width: 849px) {
    .page-contact__hero-section {
        padding-bottom: 30px;
    }
    .page-contact__main-title {
        font-size: clamp(1.5rem, 6vw, 2.2rem);
    }
    .page-contact__intro-text {
        font-size: 1rem;
    }
    .page-contact__section-title {
        font-size: clamp(1.4rem, 5vw, 1.8rem);
        margin-bottom: 30px;
    }
    .page-contact__contact-methods {
        grid-template-columns: 1fr; /* Stack cards on smaller screens */
    }
    .page-contact__method-card {
        padding: 25px;
    }
    .page-contact__method-title {
        font-size: 1.3rem;
    }
    .page-contact__method-description {
        font-size: 0.95rem;
    }
    .page-contact__form-input,
    .page-contact__form-textarea {
        width: calc(100% - 20px);
    }
}

@media (max-width: 549px) {
    .page-contact__container {
        padding: 0 15px;
    }
    .page-contact__hero-section {
        padding-bottom: 20px;
    }
    .page-contact__main-title {
        font-size: clamp(1.3rem, 7vw, 1.8rem);
    }
    .page-contact__intro-text {
        font-size: 0.9rem;
    }
    .page-contact__section-title {
        font-size: clamp(1.2rem, 6vw, 1.6rem);
        margin-bottom: 25px;
    }
    .page-contact__method-card {
        padding: 20px;
    }
    .page-contact__method-title {
        font-size: 1.2rem;
    }
    .page-contact__method-description {
        font-size: 0.9rem;
    }
    .page-contact__contact-form {
        padding: 20px;
    }
    .page-contact__form-label {
        font-size: 0.95rem;
    }
    .page-contact__form-input,
    .page-contact__form-textarea {
        padding: 10px;
        font-size: 0.95rem;
    }
    .page-contact__button {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
}

/* Ensure content area images are responsive and minimum size */
.page-contact img {
    max-width: 100%;
    height: auto;
    display: block;
    min-width: 200px;
    min-height: 200px;
    object-fit: cover;
    filter: none; /* Ensure no CSS filter changes image color */
}

/* Mobile overflow prevention */
@media (max-width: 768px) {
    .page-contact * {
        box-sizing: border-box;
    }
    .page-contact {
        overflow-x: hidden;
    }
    .page-contact img {
        max-width: 100% !important;
        height: auto !important;
    }
}