/**
 * Browse Hotels Premium Styles
 * Ultra-modern hotel booking experience
 */

/* =============================================
   CSS Variables
   ============================================= */
:root {
    --bh-primary: #667eea;
    --bh-primary-dark: #5a67d8;
    --bh-secondary: #764ba2;
    --bh-accent: #f093fb;
    --bh-tertiary: #4facfe;
    --bh-success: #10b981;
    --bh-warning: #f59e0b;
    --bh-danger: #ef4444;
    --bh-dark: #1a1a2e;
    --bh-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --bh-gradient-animated: linear-gradient(-45deg, #667eea, #764ba2, #f093fb, #4facfe);
    --bh-glass: rgba(255, 255, 255, 0.95);
    --bh-glass-dark: rgba(26, 26, 46, 0.85);
    --bh-shadow: 0 10px 40px rgba(102, 126, 234, 0.15);
    --bh-shadow-lg: 0 25px 80px rgba(102, 126, 234, 0.25);
    --bh-radius: 1.25rem;
    --bh-radius-lg: 2rem;
}

/* =============================================
   Base Styles
   ============================================= */
.browse-hotels-premium {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
    overflow-x: hidden;
}

/* =============================================
   Animated Background
   ============================================= */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
    bottom: 10%;
    left: -100px;
    animation-delay: -5s;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    top: 40%;
    right: 10%;
    animation-delay: -10s;
}

.shape-4 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #10b981, #06b6d4);
    bottom: 30%;
    right: 30%;
    animation-delay: -15s;
}

.shape-5 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    top: 60%;
    left: 20%;
    animation-delay: -7s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, -30px) rotate(5deg); }
    50% { transform: translate(-20px, 20px) rotate(-5deg); }
    75% { transform: translate(40px, 10px) rotate(3deg); }
}

/* =============================================
   Premium Navbar
   ============================================= */
.navbar-premium {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1000;
}

.navbar-premium.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    padding: 0.75rem 0;
}

.navbar-premium .brand-icon {
    width: 45px;
    height: 45px;
    background: var(--bh-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.navbar-premium .brand-text {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--bh-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-premium .nav-link {
    color: #374151;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.navbar-premium .nav-link:hover,
.navbar-premium .nav-link.active {
    color: var(--bh-primary);
    background: rgba(99, 102, 241, 0.1);
}

.navbar-premium .btn-gradient {
    background: var(--bh-gradient);
    border: none;
    color: white;
    font-weight: 600;
    border-radius: 50px;
    padding: 0.5rem 1.25rem;
    transition: all 0.3s ease;
}

.navbar-premium .btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
    color: white;
}

.user-dropdown {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.user-avatar {
    width: 32px;
    height: 32px;
    background: var(--bh-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.875rem;
}

.dropdown-premium {
    border: none;
    border-radius: 16px;
    box-shadow: var(--bh-shadow-lg);
    padding: 0;
    overflow: hidden;
    min-width: 280px;
}

.dropdown-header-premium {
    background: var(--bh-gradient);
    padding: 1.5rem;
}

.dropdown-header-premium .user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
}

.dropdown-header-premium .avatar-lg {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.dropdown-header-premium .info strong {
    display: block;
    font-size: 1rem;
}

.dropdown-header-premium .info small {
    opacity: 0.8;
}

/* =============================================
   Hero Section with Rotating Gallery
   ============================================= */
.hero-compact {
    position: relative;
    padding: 100px 0 0px;
    overflow: hidden;
    max-height: 10%;
}

/* Rotating Image Gallery Background */
.hero-gallery {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-gallery-slide.active {
    opacity: 1;
}

.hero-gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

/* Animated Gradient Overlay */
.hero-overlay-animated {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bh-gradient-animated);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    opacity: 0.85;
    z-index: 1;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Floating Orbs in Hero */
.hero-orbs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
}

.hero-orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(102, 126, 234, 0.5);
    top: -100px;
    left: -100px;
    animation: orbFloat1 20s ease-in-out infinite;
}

.hero-orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(240, 147, 251, 0.5);
    bottom: -50px;
    right: -50px;
    animation: orbFloat2 18s ease-in-out infinite;
}

.hero-orb-3 {
    width: 200px;
    height: 200px;
    background: rgba(79, 172, 254, 0.4);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: orbFloat3 15s ease-in-out infinite;
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(50px, 30px) rotate(5deg); }
    50% { transform: translate(0, 60px) rotate(0deg); }
    75% { transform: translate(-30px, 30px) rotate(-5deg); }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(-40px, -20px); }
    66% { transform: translate(20px, -40px); }
}

@keyframes orbFloat3 {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.2); }
}

/* Particles in Hero */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
}

.hero-particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: particleRise linear infinite;
}

.hero-particle:nth-child(1) { left: 10%; width: 6px; height: 6px; animation-duration: 12s; animation-delay: 0s; }
.hero-particle:nth-child(2) { left: 20%; width: 4px; height: 4px; animation-duration: 15s; animation-delay: 2s; }
.hero-particle:nth-child(3) { left: 35%; width: 8px; height: 8px; animation-duration: 10s; animation-delay: 1s; }
.hero-particle:nth-child(4) { left: 50%; width: 5px; height: 5px; animation-duration: 14s; animation-delay: 3s; }
.hero-particle:nth-child(5) { left: 65%; width: 7px; height: 7px; animation-duration: 11s; animation-delay: 0.5s; }
.hero-particle:nth-child(6) { left: 75%; width: 4px; height: 4px; animation-duration: 16s; animation-delay: 4s; }
.hero-particle:nth-child(7) { left: 85%; width: 6px; height: 6px; animation-duration: 13s; animation-delay: 2.5s; }
.hero-particle:nth-child(8) { left: 95%; width: 5px; height: 5px; animation-duration: 12s; animation-delay: 1.5s; }

@keyframes particleRise {
    0% { bottom: -20px; opacity: 0; }
    10% { opacity: 0.8; }
    90% { opacity: 0.8; }
    100% { bottom: 100%; opacity: 0; }
}

.hero-compact .hero-content {
    position: relative;
    z-index: 10;
}

.hero-title-compact {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle-compact {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease-out 0.2s both;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 1s ease-out 0.1s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =============================================
   Search Section
   ============================================= */
.search-section {
    position: relative;
    z-index: 10;
    margin-top: -60px;
    padding-bottom: 4rem;
}

.search-card {
    background: var(--bh-glass);
    border-radius: var(--bh-radius-lg);
    padding: 2rem;
    box-shadow: var(--bh-shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.5);
    
}

.search-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.search-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bh-dark);
    margin-bottom: 0.5rem;
}

.search-header p {
    color: #6b7280;
    margin: 0;
}

.search-input-group {
    position: relative;
}

.search-input-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.search-input-group label i {
    color: var(--bh-primary);
}

.search-input-group .form-control,
.search-input-group .form-select {
    height: 55px;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-input-group .form-control:focus,
.search-input-group .form-select:focus {
    border-color: var(--bh-primary);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.btn-search {
    height: 55px;
    background: var(--bh-gradient);
    border: none;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-search:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
    color: white;
}

/* Inline Search Card (near hotels) */
.search-card-inline {
    background: var(--bh-glass);
    backdrop-filter: blur(20px);
    border-radius: var(--bh-radius);
    padding: 2rem;
    box-shadow: var(--bh-shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
    margin-top: -70px; /* Adjust the value as needed */
}

/* Animated border glow */
.search-card-inline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: var(--bh-gradient);
    animation: borderGlow 3s linear infinite;
}

@keyframes borderGlow {
    0% { left: -100%; }
    100% { left: 100%; }
}

.search-card-inline .search-input-group .form-control,
.search-card-inline .search-input-group .form-select {
    height: 50px;
    border-radius: 12px;
    border: 2px solid rgba(102, 126, 234, 0.1);
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.search-card-inline .search-input-group .form-control:focus,
.search-card-inline .search-input-group .form-select:focus {
    border-color: var(--bh-primary);
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.15);
    background: white;
}

.search-card-inline .btn-search {
    height: 50px;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

/* Button shine effect */
.search-card-inline .btn-search::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: btnShine 3s infinite;
}

@keyframes btnShine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

/* =============================================
   Section Styling
   ============================================= */
.destinations-section,
.hotels-section,
.deals-section,
.why-us-section {
    padding: 5rem 0;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.15));
    color: var(--bh-primary);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

/* Shimmer animation on badge */
.section-badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--bh-dark);
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, var(--bh-dark) 0%, var(--bh-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* =============================================
   Destination Cards
   ============================================= */
.destination-card {
    position: relative;
    height: 300px;
    border-radius: var(--bh-radius);
    overflow: hidden;
    cursor: pointer;
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.destination-card:hover img {
    transform: scale(1.1);
}

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.destination-info h4 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.destination-info p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.875rem;
}

.destination-link {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bh-dark);
    transition: all 0.3s ease;
}

.destination-link:hover {
    background: var(--bh-primary);
    color: white;
    transform: translateX(5px);
}


/* =============================================
   Filter Tags
   ============================================= */
.filter-tags {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.filter-tag {
    padding: 0.625rem 1.25rem;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-tag:hover {
    border-color: var(--bh-primary);
    color: var(--bh-primary);
}

.filter-tag.active {
    background: var(--bh-gradient);
    border-color: transparent;
    color: white;
}

/* =============================================
   Hotel Cards Premium
   ============================================= */
.hotel-card-premium {
    background: white;
    border-radius: var(--bh-radius);
    overflow: hidden;
    box-shadow: var(--bh-shadow);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
}

/* Animated gradient border on hover */
.hotel-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--bh-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 10;
}

.hotel-card-premium:hover::before {
    transform: scaleX(1);
}

.hotel-card-premium:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 60px rgba(102, 126, 234, 0.3);
}

.hotel-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.4s ease;
}

.hotel-card-premium:hover .hotel-image img {
    transform: scale(1.15);
    filter: brightness(1.05);
}

.hotel-image-placeholder {
    width: 100%;
    height: 100%;
    background: var(--bh-gradient-animated);
    background-size: 400% 400%;
    animation: gradientShift 10s ease infinite;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.hotel-image-placeholder i {
    font-size: 3.5rem;
    margin-bottom: 0.75rem;
    opacity: 0.9;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.1); opacity: 1; }
}

.hotel-image-placeholder span {
    font-size: 1.125rem;
    font-weight: 600;
    opacity: 0.95;
}

.hotel-badges {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.badge-featured {
    background: var(--bh-gradient);
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-deal {
    background: linear-gradient(135deg, #ef4444, #f97316);
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.hotel-wishlist {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.wishlist-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.125rem;
    color: #6b7280;
}

.wishlist-btn:hover {
    transform: scale(1.1);
    color: #ef4444;
}

.hotel-price {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    text-align: center;
}

.price-from {
    display: block;
    font-size: 0.75rem;
    color: #6b7280;
}

.price-amount {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--bh-primary);
}

.price-period {
    font-size: 0.75rem;
    color: #6b7280;
}

.hotel-content {
    padding: 1.5rem;
}

.hotel-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.hotel-rating .stars {
    color: #f59e0b;
    font-size: 0.875rem;
}

.hotel-rating .stars i.text-muted {
    color: #d1d5db !important;
}

.rating-score {
    background: var(--bh-success);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
}

.rating-count {
    color: #6b7280;
    font-size: 0.75rem;
}

.hotel-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--bh-dark);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.hotel-card-premium:hover .hotel-name {
    color: var(--bh-primary);
}

.hotel-location {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.hotel-location i {
    color: var(--bh-primary);
}

.hotel-description {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.hotel-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.hotel-stats .stat {
    font-size: 0.8125rem;
    color: #6b7280;
    background: #f3f4f6;
    padding: 0.375rem 0.75rem;
    border-radius: 50px;
}

.hotel-stats .stat i {
    color: var(--bh-primary);
}

/* Empty State */
.empty-state {
    background: #f8fafc;
    border-radius: var(--bh-radius);
    padding: 4rem 2rem;
}

.empty-state .empty-icon {
    opacity: 0.5;
}

.hotel-amenities {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.amenity {
    width: 36px;
    height: 36px;
    background: #f3f4f6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.hotel-card-premium:hover .amenity {
    background: rgba(99, 102, 241, 0.1);
    color: var(--bh-primary);
}

.hotel-actions {
    display: flex;
    gap: 0.75rem;
}

.hotel-actions .btn {
    flex: 1;
    padding: 0.85rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.hotel-actions .btn-primary {
    background: var(--bh-gradient);
    border: none;
    color: white;
}

/* Button shine effect */
.hotel-actions .btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.hotel-actions .btn-primary:hover::after {
    left: 100%;
}

.hotel-actions .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.5);
}

.hotel-actions .btn-outline-primary {
    border: 2px solid var(--bh-primary);
    color: var(--bh-primary);
    background: transparent;
}

.hotel-actions .btn-outline-primary:hover {
    background: var(--bh-gradient);
    border-color: transparent;
    color: white;
    transform: translateY(-3px);
}

/* =============================================
   Deals Section
   ============================================= */
.deals-section {
    background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
}

.deal-card {
    position: relative;
    border-radius: var(--bh-radius);
    overflow: hidden;
}

.deal-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.deal-large {
    height: 100%;
    min-height: 450px;
}

.deal-small {
    height: 215px;
}

.deal-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 60%, transparent);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.deal-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ef4444, #f97316);
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
    width: fit-content;
}

.deal-card h3, .deal-card h4 {
    color: white;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.deal-card h3 { font-size: 1.75rem; }
.deal-card h4 { font-size: 1.25rem; }

.deal-card p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1rem;
}

.deal-timer {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.timer-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1rem;
    border-radius: 10px;
}

.timer-item span {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.timer-item small {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.75rem;
}

/* =============================================
   Why Us / Features Section
   ============================================= */
.why-us-section {
    background: white;
}

.feature-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #f8fafc;
    border-radius: var(--bh-radius);
    transition: all 0.4s ease;
    height: 100%;
}

.feature-card:hover {
    background: white;
    box-shadow: var(--bh-shadow-lg);
    transform: translateY(-10px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--bh-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.feature-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--bh-dark);
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: #6b7280;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
}

/* =============================================
   Newsletter Section
   ============================================= */
.newsletter-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #eef2ff 0%, #f8fafc 100%);
}

.newsletter-card {
    background: var(--bh-gradient);
    padding: 3rem;
    border-radius: var(--bh-radius-lg);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.3);
}

.newsletter-card h3 {
    color: white;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.newsletter-card p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
}

.newsletter-form .input-group {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 0.5rem;
}

.newsletter-form .form-control {
    background: transparent;
    border: none;
    color: white;
    padding: 1rem 1.5rem;
    font-size: 1rem;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form .form-control:focus {
    box-shadow: none;
}

.newsletter-form .btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
}

/* =============================================
   Footer Premium
   ============================================= */
.footer-premium {
    background: var(--bh-dark);
    color: white;
}

.footer-top {
    padding: 4rem 0;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-brand .brand-icon {
    width: 45px;
    height: 45px;
    background: var(--bh-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.footer-brand span {
    font-size: 1.5rem;
    font-weight: 800;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--bh-gradient);
    color: white;
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.app-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1rem;
    border-radius: 10px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.app-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.app-btn i {
    font-size: 1.5rem;
}

.app-btn small {
    display: block;
    font-size: 0.7rem;
    opacity: 0.8;
}

.app-btn span {
    font-weight: 600;
}

.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

.payment-methods i {
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.payment-methods i:hover {
    color: white;
}

/* =============================================
   Responsive Styles
   ============================================= */
@media (max-width: 991px) {
    .hero-compact {
        padding: 140px 0 60px;
    }

    .hero-title-compact {
        font-size: 2.25rem;
    }

    .hero-orb-1 {
        width: 300px;
        height: 300px;
    }

    .hero-orb-2 {
        width: 200px;
        height: 200px;
    }

    .section-title {
        font-size: 2rem;
    }

    .search-card-inline .row {
        gap: 0.5rem;
    }
}

@media (max-width: 767px) {
    .navbar-premium {
        padding: 0.75rem 0;
    }

    .hero-compact {
        padding: 120px 0 50px;
        min-height: 320px;
    }

    .hero-title-compact {
        font-size: 1.875rem;
    }

    .hero-subtitle-compact {
        font-size: 1rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    .hero-orbs {
        display: none;
    }

    .hero-particle:nth-child(n+5) {
        display: none;
    }

    .search-card-inline {
        padding: 1.25rem;
    }

    .search-card-inline .search-input-group label {
        font-size: 0.75rem;
    }

    .section-title {
        font-size: 1.75rem;
        background: var(--bh-dark);
        -webkit-background-clip: text;
        background-clip: text;
    }

    .hotel-image {
        height: 180px;
    }

    .hotel-actions {
        flex-direction: column;
    }

    .newsletter-card {
        padding: 2rem;
        text-align: center;
    }

    .newsletter-card h3 {
        font-size: 1.5rem;
    }

    .newsletter-form {
        margin-top: 1.5rem;
    }

    .footer-top {
        padding: 3rem 0;
    }
}
