body {
    font-family: 'Inter', sans-serif;
    background: #E8D8C4; 
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

@media (max-width: 768px) {
    .grid-container {
        grid-template-columns: 1fr;
    }

    .slider-wrapper {
        height: 300px; 
    }

    .brand-card {
        width: 90%;
        margin: 10px auto;
    }
    h2 {
        font-size: 1.5rem;
    }
}
.booking-container {
    background-color: #561C24;
    border-radius: 20px;
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
    position: relative;
    overflow: hidden;
    width: 768px;
    max-width: 100%;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 50px;
}

.booking-header h2 {
    font-weight: bold;
    margin: 0;
    font-size: 29px;
    color: #E8D8C4;
}

.booking-header p {
    font-size: 14px;
    font-weight: 100;
    line-height: 20px;
    letter-spacing: 0.5px;
    text-align: center;
    margin: 20px 0 30px;
    color: #E8D8C4;
}

.form-group {
    width: 100%;
    margin-bottom: 8px;
}

.form-group input, .form-group select {
    background-color: #E8D8C4;
    border: none;
    padding: 12px 15px;
    margin: 8px 0;
    width: 100%;
    border-radius: 5px;
    font-size: 14px;
    outline: none;
    box-sizing: border-box;
}

.confirm-btn {
    border-radius: 20px;
    border: 1px solid #E8D8C4;
    background-color: #E8D8C4;
    color: #561C24;
    font-size: 12px;
    font-weight: bold;
    padding: 12px 45px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: transform 80ms ease-in;
    cursor: pointer;
    margin-top: 15px;
}

.confirm-btn:active {
    transform: scale(0.95);
}

.back-link {
    color: #E8D8C4;
    font-size: 14px;
    text-decoration: none;
    margin-top: 15px;
    border-bottom: 1px solid #ddd;
}
.float-logo{
     
    position: fixed !important; 
    top: 20px !important;
    left: 20px !important;
    width: 100px !important; 
    height: 100px !important; 
    border-radius: 50% !important; 
    object-fit: cover !important;
    z-index: 99999 !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    cursor: pointer;
}
/* Final polish */
.booking-container { border: 1px solid rgba(255,255,255,.16); }
.back-link { display: inline-flex; align-items: center; justify-content: center; }
@media (max-width: 820px) { body { padding: 24px 12px; } .booking-container { padding: 34px 18px; min-height: auto; } .float-logo { width: 62px !important; height: 62px !important; } }
