.page-contact {
    background-color: #0D0E12; /* Background */
    color: #FFF3E6; /* Text Main */
    font-family: Arial, sans-serif;
}

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

/* Hero Section */
.page-contact__hero-section {
    position: relative;
    display: flex;
    flex-direction: column; /* Ensure image is above text */
    align-items: center;
    text-align: center;
    padding-top: 10px; /* Small top padding, not --header-offset */
    padding-bottom: 40px;
    overflow: hidden;
    background-color: #17191F; /* Card BG for the section */
}

.page-contact__hero-image-wrapper {
    width: 100%;
    max-height: 600px; /* Limit height for hero image */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px; /* Space between image and content */
}

.page-contact__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

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

.page-contact__main-title {
    color: #FFB04D; /* Glow */
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 176, 77, 0.5);
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Example clamp for responsiveness */
}

.page-contact__hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #FFF3E6; /* Text Main */
}

.page-contact__hero-cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button gradient */
    color: #FFF3E6; /* Text Main */
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-contact__hero-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(255, 140, 26, 0.4);
}

/* Section Titles */
.page-contact__section-title {
    text-align: center;
    color: #FFB04D; /* Glow */
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    padding-top: 60px;
    text-shadow: 0 0 8px rgba(255, 176, 77, 0.3);
}

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

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

.page-contact__info-card {
    background-color: #17191F; /* Card BG */
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #A84F0C; /* Border */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-contact__info-icon {
    font-size: 3rem;
    color: #FFA53A; /* Auxiliary */
    margin-bottom: 15px;
    display: block;
}

.page-contact__info-title {
    font-size: 1.5rem;
    color: #FFF3E6; /* Text Main */
    margin-bottom: 10px;
}

.page-contact__info-text {
    font-size: 1rem;
    line-height: 1.5;
    color: #FFF3E6; /* Text Main */
    margin-bottom: 15px;
}

.page-contact__info-button {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button gradient */
    color: #FFF3E6; /* Text Main */
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-contact__info-button:hover {
    background: linear-gradient(180deg, #D96800 0%, #FFA53A 100%);
}

/* Contact Form Section */
.page-contact__form-section {
    padding: 60px 0;
    background-color: #17191F; /* Card BG */
}

.page-contact__contact-form {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
    background-color: #0D0E12; /* Background */
    border-radius: 12px;
    border: 1px solid #A84F0C; /* Border */
}

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

.page-contact__form-label {
    display: block;
    font-size: 1.1rem;
    color: #FFF3E6; /* Text Main */
    margin-bottom: 8px;
    font-weight: 600;
}

.page-contact__form-input,
.page-contact__form-textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: #2D2F36; /* Darker input background */
    border: 1px solid #A84F0C; /* Border */
    border-radius: 8px;
    color: #FFF3E6; /* Text Main */
    font-size: 1rem;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

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

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

.page-contact__form-textarea {
    resize: vertical;
    min-height: 120px;
}

.page-contact__form-submit-button {
    display: block;
    width: 100%;
    padding: 15px 20px;
    background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button gradient */
    color: #FFF3E6; /* Text Main */
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__form-submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(255, 140, 26, 0.4);
}

/* Map Section */
.page-contact__map-section {
    padding: 60px 0;
    background-color: #0D0E12; /* Background */
}

.page-contact__map-embed {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #A84F0C; /* Border */
    max-width: 1000px;
    margin: 0 auto;
}

.page-contact__map-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-width: 200px; /* Ensure min size */
    min-height: 200px; /* Ensure min size */
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-contact__main-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

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

    .page-contact__section-title {
        font-size: 2rem;
        margin-bottom: 30px;
        padding-top: 40px;
    }

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

    .page-contact__info-card {
        padding: 20px;
    }

    .page-contact__info-icon {
        font-size: 2.5rem;
    }

    .page-contact__info-title {
        font-size: 1.3rem;
    }

    .page-contact__contact-form {
        padding: 25px;
    }

    /* Ensure content images do not cause overflow */
    .page-contact__hero-image,
    .page-contact__map-image {
        max-width: 100% !important;
        height: auto !important;
    }
}