/* ==========================================================================
   1. Basic Reset & Global Styles
   ========================================================================== */
:root {
    /* Colors */
    --primary-color: #8a5840;
    /* Brown for buttons/accents */
    --dark-bg: #292929;
    /* Navbar/Footer background */
    --light-bg: #f8f8f7;
    /* Light section backgrounds */
    --text-color: #37352f;
    /* Main dark text */
    --light-text: #b3b3b3;
    /* Navbar links text (slightly off-white) - Used in dark backgrounds */
    --white: #ffffff;
    --border-color: #cccccc;
    /* Input border color */
    --placeholder-color: #999999;
    /* Placeholder text color */

    /* Fonts */
    --sans-serif-font: "Poppins", sans-serif;
    --serif-font: "Playfair Display", serif;

    /* Component Specific */
    /* Add other global component variables if needed */
    --availability-button-bg: var(--primary-color);
    /* Added variable */
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--sans-serif-font);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    font-size: 16px;
    font-weight: 400;
    padding-top: 110px;
    /* Adjust based on initial navbar height */
}

.container {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--sans-serif-font);
    font-weight: 600;
    margin-bottom: 0.75em;
    color: var(--text-color);
    line-height: 1.3;
}

h1 {
    font-size: 2.2rem;
    margin-top: 1.8rem;
}

h2 {
    font-size: 1.7rem;
    margin-top: 1.5rem;
}

h3 {
    font-size: 1.4rem;
    margin-top: 1.25rem;
}

h4 {
    font-size: 1.1rem;
    margin-top: 1.0rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #6a3610;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    vertical-align: middle;
}

hr {
    border: none;
    border-bottom: 1px solid #e0e0e0;
    /* Lighter border */
    margin: 2.5em 0;
    /* Increased margin */
}

.clear {
    clear: both;
}

/* Basic Button Style */
.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.85rem;
    /* Slightly smaller */
    letter-spacing: 0.5px;
    transition: background-color 0.2s ease;
    text-align: center;
    line-height: 1.4;
    /* Ensure consistent line height */
}

.btn:hover {
    background-color: #6a3610;
    color: var(--white);
}

/* Icon Button adjustment */
.btn i {
    margin-right: 6px;
    font-size: 0.9em;
    /* Relative to button font size */
}

/* ==========================================================================
   2. Navigation Bar (Code Provided By User - Unchanged)
   ========================================================================== */
.navbar {
    background-color: var(--dark-bg);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    padding: 20px 0;
    transition: padding 0.4s ease-in-out;
}

.navbar.shrunk {
    padding: 5px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-wrap: nowrap;
}

.navbar .logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    padding-right: 20px;
}

.navbar .logo img {
    height: 70px;
    max-width: 160px;
    display: block;
    transition: height 0.4s ease-in-out;
}

.navbar.shrunk .logo img {
    height: 50px;
}

.nav-links-container {
    display: flex;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-left: 15px;
}

.nav-links a.active {
    color: var(--white);
    font-weight: 500;
}

.nav-links .dropbtn.active {
    color: var(--white);
    font-weight: 500;
}

.dropdown-content a.active {
    color: var(--primary-color);
    background-color: var(--light-bg);
    font-weight: 500;
}

.nav-links a {
    text-decoration: none;
    color: var(--light-text);
    padding: 5px;
    display: block;
    font-size: 0.8rem;
    font-weight: 400;
    text-transform: capitalize;
    letter-spacing: 0.8px;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links .dropdown:hover .dropbtn {
    color: var(--white);
}

li.dropdown {
    position: relative;
}

.dropdown-content {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    position: absolute;
    background-color: var(--dark-bg);
    min-width: 180px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.15);
    z-index: 1;
    border-radius: 0;
    padding: 5px 0;
    border-top: 3px solid var(--primary-color);
    margin-top: 10px;
    left: 0;
    top: 100%;
    transition: opacity 0.2s ease 0.3s, visibility 0s linear 0.5s, pointer-events 0s linear 0.5s;
}

.dropdown:hover .dropdown-content,
.dropdown-content:hover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.2s ease 0s, visibility 0s linear 0s, pointer-events 0s linear 0s;
}

.dropdown-content a {
    color: var(--light-text);
    padding: 10px 15px;
    text-decoration: none;
    display: block;
    white-space: nowrap;
    font-size: 0.85rem;
    text-transform: none;
    letter-spacing: normal;
    font-weight: 400;
    background-color: transparent;
}

.dropdown-content a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.book-now-btn {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    text-transform: uppercase;
    margin-left: 25px;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background-color 0.2s ease;
    height: 38px;
}

.book-now-btn i {
    font-size: 0.85rem;
}

.book-now-btn:hover {
    background-color: #6a3610;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 5px;
    margin-left: 15px;
    flex-shrink: 0;
}

/* --- Navbar Responsive (Untouched) --- */
@media (max-width: 992px) {
    .nav-links li {
        margin-left: 15px;
    }

    .book-now-btn {
        margin-left: 20px;
        padding: 8px 15px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .navbar .container {
        flex-wrap: wrap;
    }

    .navbar .logo {
        flex-grow: 1;
        padding-right: 0;
    }

    .navbar .logo img {
        height: 40px;
    }

    .navbar.shrunk .logo img {
        height: 28px;
    }

    .nav-links-container {
        display: none;
        order: 3;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out, padding 0.3s ease-out;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--dark-bg);
        z-index: 1001;
        border-top: 1px solid #444;
        padding: 0;
    }

    .nav-links-container.active {
        display: flex;
        flex-direction: column;
        max-height: 500px;
        padding: 10px 0;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        align-items: stretch;
    }

    .nav-links li {
        margin-left: 0;
        width: 100%;
        border-bottom: 1px solid #444;
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        padding: 12px 15px;
        text-align: left;
        width: 100%;
        font-size: 0.85rem;
        float: none;
    }

    .dropdown .dropdown-content {
        position: static;
        box-shadow: none;
        border-top: none;
        background-color: #404040;
        padding-left: 30px;
        border-bottom: 1px solid #555;
        width: 100%;
        margin-top: 0;
        left: auto;
        top: auto;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transition: none;
        display: block;
    }

    .nav-links-container:not(.active) .dropdown .dropdown-content {
        display: none;
    }

    .nav-links-container.active .dropdown .dropdown-content {
        display: block;
    }

    .dropdown-content a {
        color: var(--light-text) !important;
    }

    .dropdown-content a:hover {
        background-color: rgba(255, 255, 255, 0.1) !important;
        color: var(--white) !important;
    }

    .dropdown-content a.active {
        background-color: rgba(255, 255, 255, 0.1) !important;
        color: var(--white) !important;
        font-weight: 500;
    }

    .book-now-btn {
        margin: 10px 15px;
        width: calc(100% - 30px);
        justify-content: center;
        align-self: center;
        height: 42px;
    }
}

@media (min-width: 769px) {
    .nav-toggle {
        display: none !important;
    }

    .nav-links-container {
        display: flex !important;
        position: static !important;
        flex-direction: row !important;
        align-items: center !important;
        width: auto !important;
        background: none !important;
        max-height: none !important;
        overflow: visible !important;
        padding: 0 !important;
        border-top: none !important;
        order: 0 !important;
    }

    .nav-links {
        flex-direction: row !important;
        width: auto !important;
    }

    .nav-links li {
        border-bottom: none !important;
        width: auto !important;
        margin-left: 15px !important;
    }

    .nav-links a {
        width: auto !important;
        padding: 5px !important;
    }

    .dropdown .dropdown-content {
        position: absolute !important;
        background-color: var(--dark-bg) !important;
        padding-left: 0 !important;
        border-bottom: none !important;
        box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.15) !important;
        border-top: 3px solid var(--primary-color) !important;
        margin-top: 10px !important;
        left: 0 !important;
        top: 100% !important;
        width: auto !important;
        min-width: 180px;
        display: block !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        transition: opacity 0.2s ease 0.3s, visibility 0s linear 0.5s, pointer-events 0s linear 0.5s !important;
    }

    .dropdown:hover .dropdown-content,
    .dropdown-content:hover {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transition: opacity 0.2s ease 0s, visibility 0s linear 0s, pointer-events 0s linear 0s !important;
    }

    .dropdown-content a {
        color: var(--light-text) !important;
        padding: 10px 15px !important;
        text-align: left !important;
        background-color: transparent !important;
    }

    .dropdown-content a:hover {
        background-color: rgba(255, 255, 255, 0.1) !important;
        color: var(--white) !important;
    }

    .dropdown-content a.active {
        color: var(--primary-color) !important;
        background-color: var(--light-bg) !important;
    }

    .dropdown-content a.active:hover {
        background-color: var(--light-bg) !important;
        color: var(--primary-color) !important;
    }

    .book-now-btn {
        margin: 0 0 0 25px !important;
        width: auto !important;
        align-self: center !important;
    }
}

/* ==========================================================================
   3. Main Content Area & Common Page Elements (Adjusted for Room Page Focus)
   ========================================================================== */

main {
    min-height: calc(100vh - 110px - 250px);
    /* Viewport height - navbar height - approx footer height */
    padding-bottom: 60px;
    /* Add top margin/padding if needed below navbar */
    margin-top: 30px;
    /* Add space below navbar */
}

/* Remove or comment out generic hero/title sections if not used on this specific template */
/* .hero-image { ... } */
/* .page-title-section { ... } */
/* .intro-section { ... } */


/* ==========================================================================
   4. Footer (Code Provided By User - Unchanged)
   ========================================================================== */
.footer {
    background-color: var(--dark-bg);
    color: #a0a0a0;
    padding: 50px 0 30px 0;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column h4 {
    color: var(--white);
    font-size: 0.9rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 500;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 0.85rem;
}

.footer-column ul li a:hover {
    color: var(--white);
}

.footer-column p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #a0a0a0;
}

.footer-column p a {
    font-size: 0.85rem;
    color: #a0a0a0;
}

.footer-column p a:hover {
    color: var(--white);
}

.footer-column i {
    width: 16px;
    text-align: center;
    color: #ccc;
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: center;
    font-size: 0.8rem;
    color: #888;
}

/* --- Footer Responsive (Untouched) --- */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 769px) {
    .footer-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}


/* ==========================================================================
   5. Responsive Media Queries (General - Untouched, Specific Overrides Below)
   ========================================================================== */
/* General Hero/Title adjustments for medium/small screens (can be removed if elements aren't used) */
@media (max-width: 992px) {
    .hero-image {
        height: 300px;
    }

    .hero-image .hero-title-container h1 {
        font-size: 2.4rem;
    }

    .page-title-main {
        font-size: 2.4rem;
    }

    .page-subtitle {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    .hero-image {
        height: 250px;
    }

    .hero-image .hero-title-container h1 {
        font-size: 2rem;
    }

    .intro-section {
        padding: 10px 0;
    }

    .page-title-main {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1.4rem;
    }

    .page-title-section {
        margin-bottom: 30px;
    }
}


/* ==========================================================================
   6. Individual Room Detail Styles (ADJUSTED)
   ========================================================================== */

.room-details-section {
    /* margin-top: 30px; /* Moved to main */
}

.room-details-grid {
    display: grid;
    grid-template-columns: 1fr;
    /* Mobile: Single column */
    gap: 30px;
    /* Gap for mobile */
}

/* --- Left Column: Room Gallery --- */
.room-gallery {
    /* Styles for the container of the main image, description, small gallery */
}

.room-gallery .main-room-image img {
    /* Assuming a container for the top image */
    width: 100%;
    height: auto;
    margin-bottom: 25px;
    border-radius: 3px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.room-gallery h2 {
    /* Heading *within* the left gallery column, if any */
    margin-bottom: 20px;
    font-size: 1.8rem;
    /* Larger heading for main content */
    color: var(--text-color);
    /* Standard text color */
}

.room-description {
    margin-bottom: 30px;
    /* Increased space */
    line-height: 1.7;
    color: #555;
    /* Slightly lighter text */
    font-size: 0.95rem;
}

/* Small gallery grid within the left column */
.room-gallery-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    /* Responsive 3+ columns */
    gap: 10px;
    /* Reduced gap */
    margin-top: 20px;
}

.room-gallery-page-item img {
    border: 1px solid #eee;
    background-color: var(--light-bg);
    padding: 4px;
    /* Slightly reduced padding */
    border-radius: 3px;
    /* Match other images */
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: block;
    width: 100%;
    height: 150px;
    /* Adjust height for smaller grid items */
    object-fit: cover;
}

.room-gallery-page-item img:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}


/* --- Right Column: Room Info Panel --- */
.room-info {
    background-color: var(--light-bg);
    padding: 25px;
    border-radius: 4px;
    /* Added relative positioning if needed for absolute elements like special offer */
    position: relative;
    height: fit-content;
    /* Make panel height based on content */
}

/* --- Room Info Panel Price Display --- */
.room-price {
    display: grid;
    grid-template-columns: auto 1fr;
    /* Column for "From", Column for Amount/Qualifier */
    /* grid-template-rows: auto auto; */
    /* Row for Amount, Row for Qualifier */
    grid-template-areas:
        "label amount"
        ". qualifier";
    /* Dot means empty cell */
    align-items: baseline;
    /* Align text based on their baseline */
    justify-content: start;
    /* Align the grid itself to the start */
    column-gap: 10px;
    /* Space between "From" and amount */
    row-gap: 0px;
    /* Space between amount and qualifier */
    margin-bottom: 25px;
    /* Space below the price block */
}

.room-price .price-label {
    grid-area: label;
    font-size: 0.8rem;
    /* Smaller font size */
    font-weight: 500;
    color: #777;
    /* Grey color */
    text-transform: uppercase;
    align-self: center;
    /* Vertically align 'From' roughly with middle of amount */
    /* Adjust padding if needed for fine-tuning alignment */
    /* padding-bottom: 10px; */
    /* Example nudge */
}

.room-price .price-amount {
    grid-area: amount;
    font-size: 2.2rem;
    /* Large font size for amount */
    font-weight: 600;
    /* Boldness */
    color: var(--primary-color);
    /* Use theme color */
    line-height: 1.1;
    /* Adjust line height */
}

.room-price .price-qualifier {
    grid-area: qualifier;
    font-size: 0.75rem;
    /* Smallest font size */
    font-weight: 400;
    color: #888;
    /* Lighter grey */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    /* Slight letter spacing */
    /* padding-top: 2px; */
    /* Add small gap if needed */
}

/* Availability checker inside the right panel */
.room-availability {
    margin-bottom: 25px;
}

.room-availability .form-group {
    /* Ensure form groups stack */
    margin-bottom: 10px;
    position: relative;
    /* Needed for icon positioning */
}

.room-availability .form-group label {
    /* Hide labels if not needed */
    display: none;
}

.room-availability input[type="text"],
.room-availability input[type="date"] {
    width: 100%;
    padding: 8px 40px 8px 15px;
    /* Keep padding for icon */
    border: 1px solid var(--border-color);
    border-radius: 4px;
    /* Match button radius */
    font-family: var(--sans-serif-font);
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-color);
    height: 40px;
    /* Standard height */
    background-color: var(--white);
    line-height: normal;
}

.room-availability input::placeholder {
    color: var(--placeholder-color);
    font-size: 0.9rem;
    opacity: 1;
}

.room-availability input[type="date"]::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
}

/* Icon inside input */
.room-availability .input-with-icon .input-icon {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    color: #999;
    /* Icon color */
    pointer-events: none;
    font-size: 1.1rem;
    line-height: 1;
}

.room-availability button {
    /* Check Availability Button */
    width: 100%;
    margin-top: 5px;
    /* Small space above button */
    padding: 12px 20px;
    /* Slightly taller button */
}

/* Headings within the info panel */
.room-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-top: 25px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid #ddd;
    /* Separator line */
}

.room-amenities {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    /* Adjust margin */
}

.room-amenities li {
    margin-bottom: 10px;
    /* Slightly reduced spacing */
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    /* Match input text size */
    color: #555;
}

.room-amenities i {
    width: 20px;
    /* Icon width */
    text-align: center;
    margin-right: 8px;
    /* Space after icon */
    color: var(--primary-color);
    font-size: 1rem;
    /* Icon size */
    flex-shrink: 0;
    /* Prevent icon shrinking */
}

/* Removed strong tag styling unless specifically needed */

.btn-share {
    /* Specific class for share button */
    width: 100%;
    margin-top: 20px;
    /* Optional: different style if needed */
    /* background-color: transparent; */
    /* border: 1px solid var(--primary-color); */
    /* color: var(--primary-color); */
}

/* .btn-share:hover { ... } */

/* Remove generic hr.room-divider if not used */
/* hr.room-divider { ... } */

/* Remove availability-note if not used or style differently */
/* .availability-note { ... } */

/* Style for a potential Special Offer button (positioning example) */
.btn-special-offer {
    position: absolute;
    top: 100px;
    /* Adjust vertical position */
    right: -20px;
    /* Position outside the panel */
    transform: rotate(90deg);
    transform-origin: bottom right;
    white-space: nowrap;
    padding: 6px 12px;
    font-size: 0.75rem;
    z-index: 10;
    /* Add other button styles if needed */
}


/* ==========================================================================
   7. Responsive adjustments for Room Details (ADJUSTED)
   ========================================================================== */

/* --- Tablet / Desktop Layout --- */
@media (min-width: 768px) {
    .room-details-grid {
        grid-template-columns: 2fr 1fr;
        /* Apply 2/3 1/3 split */
        gap: 40px;
        /* Adjust gap for desktop */
        align-items: start;
        /* Align columns to the top */
    }

    /* Adjust small gallery columns for wider screens if needed */
    .room-gallery-page-grid {
        grid-template-columns: repeat(3, 1fr);
        /* Ensure 3 columns */
    }

    /* Remove conflicting rules from original generic responsive block */
    /* .room-availability { flex-direction: row; } REMOVED */
    /* .room-availability .form-group.input-with-icon { flex: 1 1 180px; } REMOVED */
    /* .room-availability button { width: auto; float: left; } REMOVED */
    /* .availability-note { text-align: center; } REMOVED */
}

@media (min-width: 992px) {
    .room-details-grid {
        gap: 50px;
        /* Increase gap for larger screens */
    }

    /* Remove conflicting rules from original generic responsive block */
    /* .contact-grid { gap: 50px; } Not relevant here */
    /* .room-details-grid { grid-template-columns: 1fr 1fr; gap: 50px; } REMOVED/OVERRIDDEN */
}


/* --- Mobile adjustments (Consolidated) --- */
@media (max-width: 767px) {
    /* Use 767px to avoid overlap */

    /* Room Details specific mobile adjustments */
    .room-details-grid {
        grid-template-columns: 1fr;
        /* Ensure single column */
        gap: 30px;
    }

    .room-gallery-page-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        /* More columns on small screens */
        gap: 8px;
    }

    .room-gallery-page-item img {
        height: 120px;
        /* Adjust height */
    }

    .room-info {
        padding: 20px;
        /* Slightly reduce padding */
    }

    .room-price {
        font-size: 1.6rem;
    }

    .room-info h3 {
        font-size: 1rem;
    }

    .btn-special-offer {
        /* Adjust special offer button for mobile */
        position: static;
        /* Normal flow */
        transform: none;
        /* No rotation */
        width: 100%;
        margin-top: 20px;
        text-align: center;
    }

    /* Remove or adjust conflicting rules from original generic mobile block */
    /* .contact-form .form-group-row { ... } */
    /* .contact-form button[type="submit"] { width: 100%; } */
    /* .gallery-page-grid { ... } */
    /* .gallery-page-item img { ... } */
    /* .lightbox-close { ... } */
}


/* ==========================================================================
   8. Availability Checker (Homepage Specific - Untouched)
   ========================================================================== */
.availability-section {
    padding: 40px 0;
    background-color: var(--light-bg);
}

.availability-checker {
    max-width: 700px;
    margin: 0 auto;
    background-color: transparent;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: flex-end;
    justify-content: center;
}

.availability-checker .form-group.input-with-icon {
    flex: 1 1 100px;
    width: auto;
    min-width: 100px;
    position: relative;
}

.availability-checker label {
    display: none;
}

.availability-checker input[type="text"],
.availability-checker input[type="date"] {
    width: 100%;
    padding: 8px 40px 8px 15px;
    border: 1px solid var(--border-color);
    border-radius: 0;
    font-family: var(--sans-serif-font);
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-color);
    height: 38px;
    background-color: var(--white);
    line-height: normal;
}

.availability-checker input::placeholder {
    color: #787878;
    font-size: 13px;
    font-weight: 400;
    opacity: 1;
}

.availability-checker input[type="date"]::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
}

.input-with-icon .input-icon {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    color: #787878;
    pointer-events: none;
    font-size: 1.2rem;
    line-height: 1;
}

.availability-checker button {
    background-color: var(--availability-button-bg);
    color: var(--white);
    padding: 8px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    transition: background-color 0.2s ease;
    height: 38px;
    white-space: nowrap;
    letter-spacing: 0.4px;
    line-height: normal;
    flex-shrink: 0;
}

.availability-checker button:hover {
    background-color: #6a3610;
}

/* ==========================================================================
   9. Add other page-specific styles below ---
   ========================================================================== */
/* Add any other styles needed */