.container {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    font-family: sans-serif;
    align-items: flex-start;
}

.left-col {
    flex: 1.5;
}

.right-col {
    flex: 1;
}

/* Breadcrumbs & Title */
.breadcrumb {
    font-size: 12px;
    color: #888;
    margin-bottom: 10px;
}

.title {
    font-size: 28px;
    font-weight: bold;
    color: #1a2b48;
    text-transform: uppercase;
}

.price {
    color: #b08d57;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Amenities List */
.amenities-list {
    list-style: none;
    padding: 0;
    font-size: 14px;
    line-height: 1.8;
    color: #555;
}

.amenities-list li::before {
    content: "• ";
    color: #888;
    margin-right: 5px;
}

/* Contact Card */
.contact-card {
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 25px;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.contact-link {
    display: block;
    font-size: 14px;
    margin-bottom: 10px;
    text-decoration: none;
    color: #007bff;
}

.btn-group {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.btn-action {
    flex: 1;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    color: white;
    text-decoration: none;
    font-size: 12px;
}

/* Modern Gallery Styles */
.gallery-container {
    margin-bottom: 20px;
}

.main-img-display {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease;
}

.thumbnail-row {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    overflow-x: auto;
    padding-bottom: 5px;
}

.thumb {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    opacity: 0.6;
    transition: 0.3s;
    border: 2px solid transparent;
}

.thumb:hover,
.thumb.active {
    opacity: 1;
    border-color: #b08d57;
}


@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
}

.btn-book-now {
    display: block;
    width: 100%;
    padding: 15px;
    text-align: center;
    background: linear-gradient(to bottom, #7a8d8a 0%, #5e6f6c 100%);
    /* Matches your image color */
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    border-radius: 10px;
    border: 1px solid #4a5a57;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-book-now:hover {
    background: linear-gradient(to bottom, #8da09d 0%, #6d807d 100%);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
    color: white;
}