.contact-mobile-hero {
    display: none;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.contact-mobile-hero img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.contact-header {
    background-color: #F6F2E9;
}

.contact-image-col {
    min-height: 100%;
    background-size: cover !important;
    background-position: center bottom !important;
    background-repeat: no-repeat !important;
}

.contact-form-col{
    background:#F6F2E9;
}

.contact-info-card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.location-marker {
    position: absolute;
    top: 30px;
    left: 30px;
    background: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
}

.marker-pin {
    width: 40px;
    height: 40px;
    background: #000000;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.marker-label {
    font-weight: 600;
    color: #0a0c08;
}

.contact-subtitle {
    letter-spacing: 2px;
    color: #c9a961;
}

.contact-title {
    font-family: 'Playfair Display', serif;
    color: #2d5016;
}

.contact-description {
    max-width: 500px;
}

.form-label {
    letter-spacing: 1px;
    color: #2d5016;
}

.form-control, .form-select {
    border: 1px solid #d4c4a8;
    border-radius: 4px;
    padding: 12px 15px;
}

.form-control:focus, .form-select:focus {
    border-color: #c9a961;
    box-shadow: 0 0 0 0.2rem rgba(201, 169, 97, 0.25);
}

.btn-contact-submit {
    background-color: #1F3A2E;
    color: white;
    border: none;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;

    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    text-decoration: none;
    border-radius: .3rem;
}

.btn-contact-submit:hover {
    background-color: #1F3A2E;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 80, 22, 0.3);
}

.btn-contact-submit:disabled {
    background-color: #6c757d;
    cursor: not-allowed;
    transform: none;
}

.contact-info-card .d-flex {
    transition: transform 0.3s ease;
    gap: 20px;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    color: #c9a961;
}

.map-wrapper {
    position: relative;
    height: 450px;
}

.map-static {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    padding: 20px 40px;
}

.contact-mobile-hero {
    margin-top: -1px;
}

/* Toast Notification */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1050;
}

.alert {
    border-radius: 8px;
    border: none;
}

/* Loading State */
.btn-loader {
    display: inline-flex;
    align-items: center;
}

@media (max-width:991.98px){

    .contact-mobile-hero{
        display:block;
    }

    .contact-image-col{
        display:none;
    }

    .contact-form-col{
        padding:2rem 0;
    }

    .contact-section{
        padding-top:0 !important;
        background-color: #F6F2E9;
    }
}
