:root {
    --primary-color: #ff4d00;
    --primary-dark: #e63900;
    --secondary-color: #2e3e63;
    --accent-color: #ffa700;
    --text-color: #333;
    --light-text: #777;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --card-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    color: var(--text-color);
    line-height: 1.4;
    padding-top: 70px;
}

/* Booking Wrapper and Background */
.booking-wrapper {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 10px 15px;
}

.booking-background {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1523580494863-6f3031224c94?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
    background-color: var(--secondary-color);
    background-size: cover;
    background-position: center;
    filter: brightness(0.7);
    z-index: -1;
}

.booking-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(46, 62, 99, 0.8) 0%, rgba(0, 0, 0, 0.8) 100%);
}

/* Booking Container */
.booking-container {
    max-width: 650px;
    margin: 10px auto 30px;
    background-color: var(--white);
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    position: relative;
    z-index: 1;
    animation: fadeUp 0.8s forwards;
}

@keyframes fadeUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Form Header */
.form-header {
    text-align: center;
    margin-bottom: 15px;
}

.form-header h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 2px;
    margin-top: 0;
}

.subtitle {
    color: var(--light-text);
    font-size: 0.85rem;
    font-weight: 300;
    margin-top: 0;
    margin-bottom: 0;
}

/* Form Sections */
.form-section {
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.section-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 8px;
    margin-top: 0;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 6px;
}

.form-group {
    flex: 1;
    min-width: 220px;
}

/* Form Elements Styling */
label {
    display: block;
    margin-bottom: 3px;
    font-weight: 500;
    color: var(--text-color);
    font-size: 0.8rem;
}

.input-icon-wrapper {
    position: relative;
}

.input-icon-wrapper i {
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--light-text);
    z-index: 1;
    font-size: 0.85rem;
}

input[type="text"],
input[type="tel"],
input[type="date"],
input[type="time"],
input[type="number"],
select {
    width: 100%;
    padding: 8px 8px 8px 30px;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    transition: var(--transition);
    background-color: var(--white);
    height: 36px;
}

input:focus,
select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(255, 77, 0, 0.1);
}

/* Submit Button */
.submit-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    margin-top: 5px;
    height: 40px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(255, 77, 0, 0.3);
}

/* Notes Section */
.notes-section {
    position: relative;
    z-index: 1;
    background-color: var(--white);
    margin: 15px auto 30px;
    padding: 20px;
    max-width: 1000px;
    box-shadow: var(--card-shadow);
    border-radius: 12px;
    animation: fadeUp 0.8s 0.3s forwards;
}

.notes-header {
    text-align: center;
    margin-bottom: 15px;
}

.notes-header h2 {
    font-size: 1.6rem;
    color: var(--secondary-color);
    margin-bottom: 2px;
    margin-top: 0;
}

.notes-subtitle {
    color: var(--light-text);
    font-size: 0.85rem;
    font-weight: 300;
    margin-top: 0;
    margin-bottom: 0;
}

.notes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 12px;
}

.note-item {
    display: flex;
    background-color: var(--light-gray);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

.note-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.note-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--secondary-color);
    color: var(--white);
    width: 40px;
    font-size: 1rem;
}

.note-content {
    padding: 10px;
    flex: 1;
}

.note-content h3 {
    margin-top: 0;
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.note-content p {
    margin: 3px 0;
    font-size: 0.8rem;
    color: var(--text-color);
    line-height: 1.3;
}

/* WhatsApp Float Button - Fixed Version */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
    color: white;
}

.whatsapp-float:active {
    transform: translateY(0);
}

.whatsapp-float i {
    font-size: 1.8rem;
}

/* Float Label */
.whatsapp-float::before {
    content: "Chat with us";
    position: absolute;
    right: 70px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
    font-weight: 500;
}

.whatsapp-float:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Hide the inline text */
.whatsapp-text {
    display: none;
}

@media (max-width: 768px) {
    .booking-container, 
    .notes-section {
        padding: 15px;
    }
    
    .form-header h1 {
        font-size: 1.6rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-float i {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 60px;
    }
    
    .booking-container, 
    .notes-section {
        padding: 12px;
        border-radius: 10px;
    }
    
    .form-header h1 {
        font-size: 1.4rem;
    }
    
    .section-title {
        font-size: 0.95rem;
    }
    
    .note-icon {
        width: 36px;
    }
    
    .note-content {
        padding: 8px;
    }
    
    .note-content h3 {
        font-size: 0.95rem;
    }
    
    .notes-grid {
        grid-template-columns: 1fr;
    }
}
