/* --- General Setup --- */
.modern-contact-section {
    background-color: #f3f1e9; /* Signature beige background */
    font-family: var(--font-02);
}

.contact-subtitle {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #b34a36; /* Rust orange */
    display: block;
    margin-bottom: 10px;
}

.contact-main-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a2332; /* Deep dark navy/charcoal */
    line-height: 1.1;
    letter-spacing: -1px;
}

/* --- Form Layout & Inputs --- */
.custom-input {
    background-color: #f9f9f9;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    padding: 12px 15px;
    color: #333;
    transition: all 0.3s ease;
}

.custom-input:focus {
    background-color: #ffffff;
    border-color: #b34a36;
    box-shadow: 0 0 0 0.25rem rgba(179, 74, 54, 0.1);
}

.custom-input::placeholder {
    color: #b5b5b5;
    font-weight: 300;
}

/* Validation Styling Overrides */
.is-invalid {
    border-color: #dc3545 !important;
    background-image: none !important; /* Removes default bootstrap exclamation mark if unwanted */
}
label.error {
    color: #dc3545;
    font-size: 12px;
    margin-top: 5px;
    font-weight: 500;
    display: block;
}

/* --- Right Side Dark Info Card --- */
.dark-contact-info {
    background-color: #000; /* Deep dark navy */
}

.contact-icon-box {
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #dca759; /* Gold accent */
}

.custom-hover-gold:hover {
    color: #dca759 !important; /* Gold on hover */
}
.custom-hover-gold a:hover {
    color: #dca759 !important;
}

/* --- Map Styling --- */
.hr-map-container {
    width: 100%;
    line-height: 0; /* Removes bottom gap */
}
.hr-map-container iframe {
    width: 100% !important;
    height: 450px !important;
    border: none;
    filter: grayscale(15%) contrast(95%); /* Gives the map a slightly muted, premium look */
}

/* Responsive Overrides */
@media (max-width: 768px) {
    .contact-main-title {
        font-size: 2.5rem;
    }
    .contact-wrapper-card {
        border-radius: 0 !important;
    }
    .hr-map-container iframe {
        height: 300px !important;
    }
}