.home-office-booking {
    background: #070707;
}

.booking-form1 {
    background: #1E1E1E;
}

.booking-form1 .footer-booking2-left-container {
    width: 100%;
    max-width: 460px;
}

.booking-form1 h2 {
    padding-bottom: 45px;
}

.booking-form1 h5 {
    font-family: 'Satoshi-Light', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #D5D5D5;
}

.booking-form1 p {
    font-family: 'Satoshi-Light', sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: #FFF;
    text-align: left;
    padding: 10px 0 20px;
}

.booking-form1 .modal-content-telephone-icons {
    padding-top: 25px;
}

@media (max-width: 1280px) {
    .booking-form2 {
        display: none;
    }
}

/* Booking Modal Styles */
.booking-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.booking-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.booking-modal-content {
    background: #1A1A1A;
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* Modal loader */
.booking-modal-loading {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.35);
    z-index: 5;
}
.booking-modal-loading .spinner {
    width: 48px;
    height: 48px;
    border: 4px solid rgba(255,255,255,0.25);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: booking-spin 0.9s linear infinite;
}
@keyframes booking-spin {
    to { transform: rotate(360deg); }
}

/* Toaster Styles */
.booking-toaster {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10001;
    max-width: 400px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.booking-toaster.show {
    transform: translateX(0);
}

.booking-toaster-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-radius: 8px;
}

.booking-toaster-message {
    flex: 1;
    font-family: 'Satoshi-Medium', sans-serif;
    font-size: 14px;
    line-height: 1.4;
    margin-right: 12px;
}

.booking-toaster-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

.booking-toaster-close:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

/* Toaster Types */
.booking-toaster-success {
    background: #4CAF50;
    color: white;
}

.booking-toaster-error {
    background: #f44336;
    color: white;
}

.booking-toaster-warning {
    background: #ff9800;
    color: white;
}

.booking-toaster-info {
    background: #2196F3;
    color: white;
}

/* Responsive */
@media (max-width: 480px) {
    .booking-toaster {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
}

.booking-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    z-index: 10001;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.booking-modal-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.property-booking-us {
    display: flex;
    width: 100%;
    min-height: 500px;
}

.booking-us__container {
    flex: 1;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.booking-us__header {
    text-align: center;
    margin-bottom: 40px;
}

.booking-us__title {
    font-family: 'Satoshi-Bold', sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: #FFF;
    margin: 0 0 10px 0;
    line-height: 1.2;
}

.booking-us__subtitle {
    font-family: 'Satoshi-Light', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #D5D5D5;
    margin: 0;
}

.booking-us__form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.booking-us__form label {
    font-family: 'Satoshi-Medium', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #FFF;
    margin-bottom: 8px;
    display: block;
}

.booking-us__form input {
    width: 100%;
    padding: 16px 20px;
    background: #E0E0E0;
    border: none;
    border-radius: 12px;
    font-family: 'Satoshi-Regular', sans-serif;
    font-size: 16px;
    color: #333;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-sizing: border-box;
}

.booking-us__form input:focus {
    outline: none;
    background: #F0F0F0;
    transform: translateY(-2px);
}

.booking-us__form input.error {
    border: 2px solid #ff4444;
    background: #ffe6e6;
}

.booking-us__form input.error:focus {
    background: #ffe6e6;
    border-color: #ff4444;
}

.booking-us__form input::placeholder {
    color: #666;
    font-family: 'Satoshi-Regular', sans-serif;
}

.booking-us__form button {
    background: #FFF;
    color: #000;
    border: none;
    padding: 16px 32px;
    border-radius: 60px;
    font-family: 'Satoshi-Medium', sans-serif;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    align-self: center;
    min-width: 200px;
}

.booking-us__form button:hover {
    background: #F0F0F0;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.booking-us-image__container {
    flex: 0 0 40%;
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.booking-us-image__container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .booking-modal-content {
        width: 95%;
        max-width: none;
        flex-direction: column;
    }
    
    .booking-us__container {
        padding: 30px 25px;
    }
    
    .booking-us__header {
        margin-bottom: 30px;
    }
    
    .booking-us__title {
        font-size: 24px;
        line-height: 1.3;
    }
    
    .booking-us__subtitle {
        font-size: 15px;
    }
    
    .booking-us__form {
        gap: 18px;
    }
    
    .booking-us__form label {
        font-size: 15px;
        margin-bottom: 7px;
    }
    
    .booking-us__form input {
        padding: 13px 15px;
        font-size: 15px;
        border-radius: 10px;
    }
    
    .booking-us__form button {
        padding: 13px 22px;
        font-size: 15px;
        min-width: 150px;
    }
    
    .booking-us-image__container {
        flex: 0 0 180px;
        min-height: 180px;
    }
    
    .booking-modal-close {
        top: 15px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    .booking-us__container {
        padding: 20px 15px;
    }
    
    .booking-us__header {
        margin-bottom: 25px;
    }
    
    .booking-us__title {
        font-size: 20px;
        line-height: 1.3;
    }
    
    .booking-us__subtitle {
        font-size: 14px;
    }
    
    .booking-us__form {
        gap: 15px;
    }
    
    .booking-us__form label {
        font-size: 14px;
        margin-bottom: 6px;
    }
    
    .booking-us__form input {
        padding: 12px 14px;
        font-size: 14px;
        border-radius: 8px;
    }
    
    .booking-us__form button {
        padding: 12px 20px;
        font-size: 14px;
        min-width: 140px;
        border-radius: 50px;
    }
    
    .booking-us-image__container {
        flex: 0 0 150px;
        min-height: 150px;
    }
}

@media (max-width: 360px) {
    .booking-us__container {
        padding: 15px 10px;
    }
    
    .booking-us__title {
        font-size: 18px;
    }
    
    .booking-us__subtitle {
        font-size: 13px;
    }
    
    .booking-us__form label {
        font-size: 13px;
    }
    
    .booking-us__form input {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .booking-us__form button {
        padding: 10px 16px;
        font-size: 13px;
        min-width: 120px;
    }
}







.booking-us__form label , .booking-us__title, .booking-us__subtitle{
font-family: "Montserrat", sans-serif;
    font-style: normal;
}