/* HOTEL BANNER */
.hotel-banner {
    background-size: cover;
    background-position: center;
    padding: 70px 0;
    color: #fff;
}

.hotel-title {
    font-size: 48px;
    font-weight: 800;
}

.hotel-subtitle {
    font-size: 18px;
    margin-top: 5px;
    opacity: 0.9;
}

/* HOTEL SEARCH BOX */
.hotel-search-area {
    margin-top: -50px;
    margin-bottom: 40px;
}

.hotel-search-box {
    background: #fff;
    padding: 30px 35px;
    border-radius: 22px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.10);
}

.hotel-label {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #444;
}

.hotel-input-box {
    position: relative;
}

.hotel-icon {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    font-size: 15px;
    color: #888;
}

.hotel-input-field {
    width: 100%;
    height: 44px;
    padding-left: 38px;
    border-radius: 12px;
    border: 1px solid #ddd;
    background: #fafafa;
    font-size: 14px;
    transition: .2s;
}

.hotel-input-field:focus {
    border-color: #ff9800;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255,152,0,0.15);
}

/* Search Button */
.hotel-search-btn {
    background: #ff6a30;
    border: none;
    height: 44px;
    border-radius: 12px;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    transition: .2s;
}

.hotel-search-btn:hover {
    background: #ff5722;
    transform: translateY(-2px);
}
