/* ===================================
   BOOKING GLOBAL
=================================== */
.booking-header,
.hotel-hero {
    position: relative;
    overflow: hidden;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    transition: .3s;
    cursor: pointer;
}

.btn-primary {
    background: #b08d57;
    color: white;
}
.btn-primary:hover {
    opacity: .85;
}
.btn-outline {
    border: 1px solid #b08d57;
    color: #b08d57;
    background: transparent;
}
.btn-outline:hover {
    background: #b08d57;
    color: white;
}
.btn-block {
    width: 100%;
}
/* ===================================
   BOOKING HEADER
=================================== */
.booking-header {
    padding: 100px 0;
    background:
        linear-gradient(rgba(0, 0, 0, .5),
            rgba(0, 0, 0, .5)),
        url('../images/booking-banner.jpg');
    background-size: cover;
    background-position: center;
    color: white;
}

.booking-title {
    max-width: 700px;
}
.booking-title h1 {
    font-size: 48px;
    margin-bottom: 15px;
}
.booking-title p {
    font-size: 18px;
}

/* ===================================
   SEARCH BOX
=================================== */
.booking-search {
    margin-top: -40px;
    position: relative;
    z-index: 5;
}
.search-grid {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, .12);
    display: grid;
    grid-template-columns:
        repeat(4, 1fr) auto;
    gap: 20px;
}
.search-grid label {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
}

.search-grid input,
.search-grid select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.search-grid button {
    background: #b08d57;
    color: white;
    border: none;
    padding: 0 30px;
    border-radius: 6px;
    cursor: pointer;
}

/* ===================================
   HOTEL LIST
=================================== */
.hotel-list {
    padding: 80px 0;
}

.hotel-grid {
    display: grid;
    grid-template-columns:
        repeat(3, 1fr);
    gap: 30px;
}

/* ===================================
   HOTEL CARD
=================================== */
.hotel-card {
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, .08);
    transition: .3s;
}

.hotel-card:hover {
    transform: translateY(-8px);
}

.hotel-image {
    height: 260px;
    overflow: hidden;
}

.hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .4s;
}
.hotel-card:hover .hotel-image img {
    transform: scale(1.05);
}
/* ===================================
   HOTEL CONTENT
=================================== */
.hotel-content {
    padding: 25px;
}
.hotel-rating {
    color: #b08d57;
    font-size: 14px;
    margin-bottom: 10px;
}

.hotel-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.hotel-location {
    color: #777;
    font-size: 14px;
    margin-bottom: 15px;
}
.hotel-description {
    color: #666;
    line-height: 1.6;
    height: 70px;
    overflow: hidden;
}
/* ===================================
   PRICE
=================================== */
.hotel-price {
    margin-top: 20px;
    margin-bottom: 20px;
}

.hotel-price small {
    display: block;
    color: #777;
}

.hotel-price h2 {
    display: inline-block;
    font-size: 24px;
    margin: 5px 0;
    color: #b08d57;
}
.hotel-price span {
    color: #777;
    font-size: 14px;
}
/* ===================================
   BUTTON ACTION
=================================== */
.hotel-action {
    display: flex;
    gap: 10px;
}

.hotel-action .btn {
    flex: 1;
    font-size: 13px;
    padding: 10px;
}

/* ===================================
   EMPTY STATE
=================================== */
.empty-state {
    text-align: center;
    padding: 80px 20px;
}

.empty-state i {
    font-size: 70px;
    color: #bbb;
}

.empty-state h2 {
    margin-top: 20px;
}
.empty-state p {
    color: #777;
}

/* ===================================
   BOOKING FOOTER
=================================== */
.booking-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}

.booking-pagination {
    display: flex;
    gap: 10px;
    align-items: center;
}

.page-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-decoration: none;
}

.page-current {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #b08d57;
    color: white;
    border-radius: 5px;
}
/* ===================================
   HOTEL DETAIL HERO
=================================== */
.hotel-hero {
    height: 600px;
    position: relative;
}
.hotel-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(0, 0, 0, .6),
            rgba(0, 0, 0, .3));
}

.hero-content {
    position: absolute;
    bottom: 80px;
    color: white;
    max-width: 700px;
}

.hotel-badge {
    display: inline-block;
    padding: 8px 18px;
    background: #b08d57;
    border-radius: 30px;
    font-size: 13px;
    margin-bottom: 15px;
}

.hero-content h1 {
    font-size: 50px;
    margin-bottom: 20px;
}

.hotel-meta {
    display: flex;
    gap: 25px;
    margin-bottom: 25px;
}

.hotel-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}
.hotel-meta i {
    color: #d6aa64;
}

.hero-price {
    margin-bottom: 25px;
}

.hero-price h2 {
    display: inline-block;
    font-size: 35px;
    margin: 5px;
}

/* ===================================
   DETAIL WRAPPER
=================================== */
.hotel-detail {
    padding: 80px 0;
}

.hotel-wrapper {
    display: grid;
    grid-template-columns:
        2fr 1fr;
    gap: 40px;
}
/* ===================================
   GALLERY
=================================== */
.gallery-main {
    height: 450px;
    overflow: hidden;
    border-radius: 12px;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumbnails {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.thumbnail-image {
    width: 90px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    opacity: .7;
    transition: .3s;
}
.thumbnail-image:hover {
    opacity: 1;
}
/* ===================================
   DESCRIPTION
=================================== */
.hotel-description {
    margin-top: 40px;
}

.hotel-description h2,
.hotel-information h2,
.related-hotels h2 {
    font-size: 30px;
    margin-bottom: 20px;
}

.hotel-description p {
    line-height: 1.8;
    color: #555;
}
.hotel-address {
    margin-top: 30px;
}
/* ===================================
   BOOKING SIDEBAR
=================================== */
.booking-card {
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, .1);
    position: sticky;
    top: 30px;
}

.booking-card h3 {
    margin-bottom: 20px;
}

.summary-price {
    font-size: 28px;
    color: #b08d57;
    font-weight: bold;
    margin-bottom: 25px;
}

.summary-price small {
    font-size: 14px;
    color: #777;
}

.summary-table {
    width: 100%;
    margin-bottom: 25px;
}

.summary-table td {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

/* ===================================
   HOTEL INFORMATION
=================================== */
.hotel-information {
    padding: 60px 0;
}

.information-grid {
    display: grid;
    grid-template-columns:
        1fr 1fr;
    gap: 30px;
}

.information-card {
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow:
        0 10px 25px rgba(0, 0, 0, .08);
}

.information-table {
    width: 100%;
}

.information-table th,
.information-table td {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    text-align: left;
}

/* ===================================
   HOTEL POLICIES
=================================== */
.hotel-policies {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hotel-policies li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    color: #555;
    line-height: 1.6;
}

.hotel-policies li::before {
    content: "✓";
    color: #b08d57;
    font-weight: bold;
    margin-right: 10px;
}

/* ===================================
   GOOGLE MAP
=================================== */
.hotel-map {
    padding: 60px 0;
}

.hotel-map h2 {
    margin-bottom: 25px;
}

.map-wrapper {
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: 12px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ===================================
   RELATED HOTELS
=================================== */
.related-hotels {
    padding: 80px 0;
    background: #f8f8f8;
}

.related-grid {
    display: grid;
    grid-template-columns:
        repeat(4, 1fr);
    gap: 25px;
}

.related-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow:
        0 8px 25px rgba(0, 0, 0, .08);
    transition: .3s;
}

.related-card:hover {
    transform: translateY(-5px);
}

.related-image {
    height: 200px;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-content {
    padding: 20px;
}

.related-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.related-content p {
    color: #777;
    font-size: 14px;
}
.related-price {
    margin: 15px 0;
    color: #b08d57;
    font-size: 20px;
    font-weight: bold;
}
.related-price span {
    color: #777;
    font-size: 13px;
    font-weight: normal;
}
/* ===================================
   RESPONSIVE TABLET
=================================== */
@media(max-width:992px) {
    .hotel-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }
    .hotel-wrapper {
        grid-template-columns: 1fr;
    }
    .information-grid {
        grid-template-columns: 1fr;
    }
    .related-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }
    .search-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }
    .hero-content h1 {
        font-size: 38px;
    }
}
/* ===================================
   RESPONSIVE MOBILE
=================================== */
@media(max-width:576px) {
    .container {
        width: 92%;
    }
    .booking-title h1 {
        font-size: 32px;
    }
    .search-grid {
        grid-template-columns: 1fr;
    }
    .hotel-grid {
        grid-template-columns: 1fr;
    }
    .hotel-action {
        flex-direction: column;
    }
    .hotel-hero {
        height: 500px;
    }
    .hero-content {
        bottom: 40px;
    }
    .hero-content h1 {
        font-size: 30px;
    }
    .hotel-meta {
        flex-direction: column;
        gap: 10px;
    }
    .gallery-main {
        height: 280px;
    }
    .gallery-thumbnails {
        overflow-x: auto;
    }
    .thumbnail-image {
        flex-shrink: 0;
    }
    .related-grid {
        grid-template-columns: 1fr;
    }
    .booking-footer {
        flex-direction: column;
        gap: 20px;
    }
}