/* ==========================================================================
   BOOK CONSULTATION PAGE STYLES - Extends base.css
   ========================================================================== */

body {
    padding-top: 80px;
}       

/* Contact Form Section */
.booknow {
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    margin: 1rem;
    width: 100%;
}

.booknow h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #333;
    line-height: 1.4;
}

.booknow form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.booknow label {
    font-weight: bold;
    margin-bottom: 0.3rem;
    color: #333;
    font-size: 0.95rem;
}

.booknow input,
.booknow select,
.booknow textarea {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: #fff;
}

.booknow input:focus,
.booknow select:focus,
.booknow textarea:focus {
    outline: none;
    border-color: #000;
}

.booknow button {
    background-color: #000;
    color: #fff;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
    align-self: flex-start;
}

.booknow button:hover {
    background-color: #333;
}

/* Contact Body Section */
.contactbody {
    padding: 2rem;
    margin: 1rem;
}

.contactbody>div {
    margin-bottom: 2.5rem;
}

.contactbody h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #333;
}

.contactbody p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #555;
}

.contactbody ul {
    list-style-type: disc;
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.contactbody li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: #555;
}

.contactbody strong {
    color: #333;
    font-weight: bold;
}

/* Main Content Wrapper for Desktop Layout */
.main-content-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Desktop Layout - Side by Side */
@media (min-width: 1024px) {
    .main-content-wrapper {
        flex-direction: row;
        max-width: 1200px;
        margin: 0 auto;
        gap: 2rem;
        padding: 2rem;
    }

    .booknow {
        flex: 0 0 35%;
        position: sticky;
        top: 100px;
        /* Adjust based on your navbar height */
        height: fit-content;
        margin: 0;
    }

    .contactbody {
        flex: 1;
        margin: 0;
        padding: 0 2rem;
    }

    .booknow h2 {
        font-size: 1.3rem;
    }

    .booknow button {
        width: 100%;
    }
}

/* Tablet Layout */
@media (max-width: 1023px) and (min-width: 768px) {

    .booknow,
    .contactbody {
        max-width: 700px;
        margin: 1rem auto;
    }
}

/* Mobile Layout - Keep original top/bottom arrangement */
@media (max-width: 767px) {
    .main-content-wrapper {
        flex-direction: column;
    }

    .booknow,
    .contactbody {
        width: 100%;
        padding: 1.5rem;
        margin: 0.5rem;
    }

    .booknow h2 {
        font-size: 1.2rem;
    }

    .contactbody h2 {
        font-size: 1.5rem;
    }
}

/* ==========================================================================
   BOOK CONSULTATION PAGE RESPONSIVE ADJUSTMENTS
   ========================================================================== */

/* Responsive Design */
@media (max-width: 768px) {
    /* Page-specific mobile adjustments */
}

@media (max-width: 480px) {
    /* Page-specific small mobile adjustments */
}