
.premium-search-section {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

.search-container {
    width: 90%;
    max-width: 1100px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

/* Tabs */
.search-tabs {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
}

.tab {
    flex: 1;
    text-align: center;
    padding: 12px;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 10px;
    font-weight: 500;
    margin: 0px 5px;
}

.tab i {
    display: block;
    font-size: 20px;
    margin-bottom: 5px;
}

.tab.active,
.tab:hover {
    background: #00c6ff;
    color: #000;
}

/* Search Box */
.search-box {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    position: relative; /* IMPORTANT */
    padding-bottom: 40px; /* space for floating button */
}

/* Premium Floating Button */
/* .search-btn {
    position: absolute;
    left: 50%;
    bottom: -25px;
    transform: translateX(-50%);
    
    background: linear-gradient(135deg, #ff7a18, #ff3d00);
    color: #fff;
    border: none;
    height: 55px;
    width: 55px;
    border-radius: 50%;
    
    font-size: 18px;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 10px 30px rgba(255, 100, 0, 0.6);
    transition: all 0.3s ease;
    z-index: 10;
}

/* Hover effect (premium feel) */
/* .search-btn:hover {
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 100, 0, 0.9);
} */

/* Click effect */
/* .search-btn:active {
    transform: translateX(-50%) scale(0.95);
} */

.search-btn {
    position: absolute;
    left: 50%;
    bottom: -25px;
    transform: translateX(-50%);
    
    background: linear-gradient(135deg, #ff7a18, #ff3d00);
    color: #fff;
    border: none;

    height: 55px;
    width: 55px; /* default circle */
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    font-size: 16px;
    cursor: pointer;

    box-shadow: 0 10px 30px rgba(255, 100, 0, 0.6);
    transition: all 0.4s ease;
    overflow: hidden;
}

/* TEXT hidden initially */
/* .search-btn .btn-text {
    opacity: 0;
    white-space: nowrap;
    font-weight: 500;
    transition: 0.3s;
}

/* ✅ Active state (expand) */
/* .search-btn.active {
    width: 220px;
    border-radius: 50px;
    padding: 0 20px;
} */ 


/* .search-btn i {
    font-size: 18px;
}
@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 rgba(255, 100, 0, 0.6); }
    50% { box-shadow: 0 0 20px rgba(255, 100, 0, 0.9); }
    100% { box-shadow: 0 0 0 rgba(255, 100, 0, 0.6); }
} */
.search-btn.active {
    animation: pulseGlow 1.5s infinite;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 rgba(255, 100, 0, 0.5); }
    50% { box-shadow: 0 0 20px rgba(255, 100, 0, 0.9); }
    100% { box-shadow: 0 0 0 rgba(255, 100, 0, 0.5); }
}
.field {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* .field label {
    color: #ccc;
    font-size: 12px;
    margin-bottom: 5px;
} */

.field input {
    padding: 12px;
    border-radius: 10px;
    border: none;
    outline: none;
    font-size: 14px;
}


/* .guest-popup {
    position: absolute;
    top: 110%;
    left: 0;
    width: 280px;

    background: #fff;
    border-radius: 15px;
    padding: 15px;

    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    display: none;
    z-index: 9999;
}

.guest-popup.active {
    display: block;
} */

/* .guest-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
} */



.hotel-card-premium {
    display: flex;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.hotel-card-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* IMAGE */
.hotel-image {
    position: relative;
    width: 280px;
    height: 234px;
    overflow: hidden;
}

.hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hotel-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff4d4f;
    color: #fff;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
}

/* CONTENT */
.hotel-content {
    flex: 1;
    padding: 15px;
}

.hotel-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hotel-top h3 {
    margin: 0;
    font-size: 18px;
}

.hotel-nearby{
    font-size: 12px;
    color: #777;
    margin-top: 2px;
}
.rating {
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 13px;
    color: #2e7d32;
}

.hotel-location {
    color: #666;
    margin: 6px 0;
    font-size: 14px;
}

.hotel-type {
    font-size: 13px;
    color: #888;
}

/* AMENITIES */
.amenities {
    margin-top: 10px;
}

.amenities span {
    background: #f1f5ff;
    padding: 5px 10px;
    margin-right: 6px;
    border-radius: 6px;
    font-size: 12px;
}

/* PRICE */
.hotel-price-box {
    width: 180px;
    padding: 15px;
    border-left: 1px solid #eee;
    text-align: right;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 13px;
}

.hotel-price-box h2 {
    margin: 5px 0;
    color: #000;
}

.per-night {
    font-size: 12px;
    color: #777;
}

.view-btn {
    margin-top: 10px;
    background: #0a6dff;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 8px;
    width: 100%;
    cursor: pointer;
    font-weight: 500;
    transition: 0.3s;
}

.view-btn:hover {
    background: #084fc7;
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
/* Responsive */
@media (max-width: 768px) {
    .search-box {
        flex-direction: column;
    }

    .search-tabs {
        flex-wrap: wrap;
        gap: 10px;
    }
}