.contact-wrapper {
    position: relative;
    width: 100%;
    height: calc(100vh - 80px);
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 8%;
    box-sizing: border-box;
}

.map-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.contact-card {
    position: relative;
    z-index: 10;
    background: #fff;
    padding: 50px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    text-align: left;
    border-radius: 4px;
}

.contact-card h1 {
    font-family: 'Playfair Display',serif;
    font-size: 38px;
    margin-bottom: 25px;
    font-weight: 400;
    color: #1a1a1a;
}

.contact-card .label {
    color: #c5a47e;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 10px;
    display: block;
    margin-bottom: 15px;
}

.contact-item {
    margin-bottom: 20px;
}

.contact-item p {
    line-height: 1.6;
    font-size: 14px;
    color: #555;
    margin: 0;
}

.contact-item strong {
    color: #1a1a1a;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 5px;
}

.contact-item a {
    text-decoration: none;
    color: #c5a47e;
    transition: 0.3s;
}

.contact-item a:hover {
    color: #1a1a1a;
}

hr {
    border: 0;
    border-top: 1px solid #f0f0f0;
    margin: 25px 0;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    font-size: 10px;
    text-transform: uppercase;
    text-decoration: none;
    color: #999;
    letter-spacing: 1px;
}

@media (max-width:768px) {
    .contact-wrapper {
        margin-top: 70px;
        height: auto;
        padding: 0;
        display: block;
        position: static;
        overflow: visible;
    }

    .map-container {
        position: relative;
        height: 300px;
        z-index: 0;
    }

    .contact-card {
        max-width: 100%;
        padding: 40px 20px;
        box-shadow: none;
        position: static;
    }
}

#bookingModal.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
}

#bookingModal .modal-content {
    background: #fff;
    margin: 5% auto;
    padding: 30px;
    max-width: 500px;
    border-radius: 4px;
    position: relative;
    color: #1a1a1a;
}

.menu-toggle {
    z-index: 10001 !important;
    position: relative !important;
}
