.page-contact {
    background-color: #140C0C; /* Background */
    color: #FFF1E8; /* Text Main */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-bottom: 40px;
}

.page-contact__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: 10px; /* Minimal top padding, body handles header offset */
    padding-bottom: 40px;
}

.page-contact__hero-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    display: block;
    min-width: 200px;
    min-height: 200px;
}

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

.page-contact__main-title {
    color: #F3C54D; /* Gold */
    font-size: clamp(1.8rem, 4vw, 2.5rem); /* Responsive font size for H1 */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

.page-contact__description {
    font-size: 1.1rem;
    color: #FFF1E8; /* Text Main */
    max-width: 700px;
    margin: 0 auto;
}

.page-contact__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    overflow-x: hidden; /* Prevent horizontal scroll for child elements */
}

.page-contact__section-title {
    font-size: 2.2rem;
    color: #F3C54D; /* Gold */
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.page-contact__form-section {
    background-color: #2A1212; /* Card BG */
    padding: 60px 0;
    margin-bottom: 40px;
}

.page-contact__form {
    display: grid;
    gap: 20px;
    max-width: 700px;
    margin: 0 auto;
    padding: 30px;
    border: 1px solid #6A1E1E; /* Border */
    border-radius: 8px;
    background-color: #140C0C; /* Background */
}

.page-contact__form-group {
    display: flex;
    flex-direction: column;
}

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

.page-contact__form-input,
.page-contact__form-textarea {
    padding: 12px 15px;
    border: 1px solid #6A1E1E; /* Border */
    border-radius: 5px;
    background-color: #140C0C; /* Background */
    color: #FFF1E8; /* Text Main */
    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.7); /* Lighter placeholder */
}

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

.page-contact__submit-button {
    background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%); /* Button */
    color: #140C0C; /* Dark text for contrast */
    padding: 15px 25px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.2s ease;
    min-width: 200px;
    align-self: center;
}

.page-contact__submit-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.page-contact__info-section {
    padding: 60px 0;
    text-align: center;
    margin-bottom: 40px;
}

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

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

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

.page-contact__info-text {
    font-size: 1rem;
    color: #FFF1E8; /* Text Main */
    margin-bottom: 5px;
}

.page-contact__live-chat {
    background-color: #7E0D0D; /* Deep Red */
    padding: 40px 20px;
    border-radius: 8px;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.page-contact__live-chat-title {
    font-size: 1.8rem;
    color: #FFF1E8; /* Text Main */
    margin-bottom: 20px;
}

.page-contact__live-chat-button {
    background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%); /* Button */
    color: #140C0C; /* Dark text for contrast */
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.3s ease, transform 0.2s ease;
}

.page-contact__live-chat-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.page-contact__map-section {
    padding: 60px 0;
    text-align: center;
}

.page-contact__map-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    min-width: 200px;
    min-height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 30px;
    border: 1px solid #6A1E1E; /* Border */
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive adjustments */
@media (max-width: 849px) {
    .page-contact__main-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .page-contact__section-title {
        font-size: 1.8rem;
    }

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

@media (max-width: 549px) {
    .page-contact__hero-content {
        margin-top: 10px;
        padding: 0 15px;
    }
    .page-contact__main-title {
        font-size: clamp(1.3rem, 7vw, 1.8rem);
    }
    .page-contact__description {
        font-size: 1rem;
    }
    .page-contact__form {
        padding: 20px;
    }
    .page-contact__submit-button {
        width: 100%;
        min-width: unset;
    }
    .page-contact__info-card {
        padding: 20px;
    }
    .page-contact__live-chat {
        padding: 30px 15px;
    }
    .page-contact__live-chat-title {
        font-size: 1.5rem;
    }
    .page-contact__live-chat-button {
        width: 100%;
    }
    .page-contact__map-image {
        min-height: 200px;
    }
}

@media (max-width: 768px) {
    .page-contact img {
        max-width: 100%;
        height: auto;
    }
}