/* Skip to content link for accessibility */
.skip-link {
    position: absolute;
    top: -50px;
    left: 0;
    background: var(--primary-blue);
    color: white;
    padding: 12px 24px;
    z-index: 10000;
    text-decoration: none;
    font-weight: 600;
    border-radius: 0 0 8px 0;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
    outline: 3px solid var(--accent-gold);
    outline-offset: 2px;
}

/* Content visibility for performance */
.hotels-section,
.destinations-section,
.testimonials-section,
.footer-section {
    content-visibility: auto;
    contain-intrinsic-size: 1px 500px;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus states for accessibility */
*:focus-visible {
    outline: 3px solid var(--accent-gold);
    outline-offset: 2px;
}

:root {
    --primary-blue: #0E1C15;
    --booking-blue: #152A1E;
    --accent-gold: #C8943A;
    --luxury-gold: #C8943A;
    --light-blue: #2D5A3D;
    --text-dark: #1A1A16;
    --text-light: #6B6458;
    --text-muted: #9E9486;
    --bg-light: #F5F3EE;
    --bg-white: #FAFAF7;
    --border-color: #E8E3DA;
    --success-green: #1E5C38;
    --cream: #F5EFE3;
    --amber: #C8943A;
    --stone: #A89880;
    --shadow-sm: 0 4px 10px -2px rgba(14, 28, 21, 0.06), 0 2px 4px -1px rgba(14, 28, 21, 0.04);
    --shadow-md: 0 10px 30px -8px rgba(14, 28, 21, 0.12), 0 4px 10px -4px rgba(14, 28, 21, 0.08);
    --shadow-lg: 0 24px 50px -12px rgba(14, 28, 21, 0.18), 0 10px 20px -8px rgba(14, 28, 21, 0.1);
    --glass-bg: rgba(250, 250, 247, 0.92);
    --glass-border: rgba(255, 255, 255, 0.25);
    --glass-blur: blur(16px);
}

* {
    box-sizing: border-box;
}

/* Enhanced button transitions */
.btn,
.header-btn,
.btn-hero,
.btn-book {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced card hover effects */
.hotel-card,
.destination-card,
.trust-badge {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Smooth image loading */
img {
    opacity: 1;
    transition: opacity 0.3s ease;
}

img[loading="lazy"] {
    opacity: 0;
}

img.loaded,
img[loading="lazy"]:not([src=""]) {
    opacity: 1;
}

/* Link hover effects */
a {
    transition: color 0.2s ease;
}

/* Form input focus enhancement */
.form-control:focus,
.form-select:focus {
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* Animation keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Animated elements */
.animate-fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background: var(--bg-white);
    overflow-x: hidden;
}

/* Professional Header */
.site-header {
    background: var(--primary-blue);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

.header-top {
    background: #0A1628;
    padding: 0.5rem 0;
    font-size: 0.85rem;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255,255,255,0.8);
}

.header-contact {
    display: flex;
    gap: 1.5rem;
}

.header-contact a {
    color: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
}

.header-contact a:hover {
    color: var(--accent-gold);
}

.header-main {
    padding: 1rem 0;
}

.header-main .container {
    max-width: 1400px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent-gold), #B8963D);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.4rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 0.7rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.main-nav a {
    color: var(--text-dark);
    font-weight: 400;
    padding: 0.5rem 0;
    position: relative;
    font-size: 0.88rem;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: color 0.2s;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--accent-gold);
    transition: width 0.25s ease;
}

.main-nav a:hover {
    color: var(--primary-blue);
}

.main-nav a:hover::after {
    width: 100%;
}

.header-actions {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.btn-cta {
    background: var(--primary-blue);
    color: var(--cream);
    padding: 0.55rem 1.3rem;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    border: 1.5px solid var(--primary-blue);
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    letter-spacing: 0.01em;
}

.btn-cta:hover {
    background: var(--booking-blue);
    border-color: var(--booking-blue);
    color: var(--cream);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-compare {
    background: transparent;
    border: 1.5px solid var(--accent-gold);
    color: var(--accent-gold);
}

.btn-compare:hover {
    background: var(--accent-gold);
    color: var(--primary-blue);
}

/* Mobile Nav */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: 1.4rem;
    cursor: pointer;
}

/* Mobile - hide nav */
@media (max-width: 767px) {
    .main-nav {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
}

@media (max-width: 768px) {
    .header-top {
        padding: 0.4rem 0;
    }

    .header-contact {
        display: none;
    }

    .header-top-content {
        justify-content: center;
    }

    .header-info {
        width: 100%;
        justify-content: center;
        gap: 0.75rem;
    }

    .header-info>span:last-child {
        display: none;
    }

    .header-content {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        gap: 0;
        padding: 0 1rem;
    }

    .header-actions {
        display: none;
    }

    .logo-icon {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }

    .logo-title {
        font-size: 1.2rem;
    }
}

.hero-section {
    padding: 5rem 0 3rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--booking-blue) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 100px 100px;
    opacity: 0.3;
}

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

.hero-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 0;
    opacity: 0.95;
    font-weight: 300;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.hero-stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Search Bar Section */
.search-bar-section {
    background: var(--bg-light);
    padding: 1.5rem 0;
    margin-top: 0;
    border-bottom: 1px solid var(--border-color);
    transition: box-shadow 0.2s ease;
}

/* Search highlight animation */
@keyframes searchHighlight {
    0% { box-shadow: 0 0 0 0 rgba(200, 148, 58, 0.5); }
    50% { box-shadow: 0 0 20px 10px rgba(200, 148, 58, 0.2); }
    100% { box-shadow: 0 0 0 0 rgba(200, 148, 58, 0); }
}

.search-bar-section.highlight {
    animation: searchHighlight 1.5s ease-out;
}

/* Sticky search bar on all screen sizes */
.search-bar-section {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.search-bar-section.stuck {
    box-shadow: 0 4px 16px rgba(14, 28, 21, 0.12);
    background: rgba(245, 243, 238, 0.97);
    backdrop-filter: blur(12px);
}

@media (max-width: 767px) {
    .search-bar-section {
        transition: transform 0.3s ease, box-shadow 0.2s ease;
        will-change: transform;
    }
    .search-bar-section.search-hidden {
        transform: translateY(-110%);
        box-shadow: none;
    }
}

.booking-search-bar {
    max-width: 1140px;
    margin: 0 auto;
}

.search-bar-container {
    display: flex;
    gap: 0;
    background: white;
    border-radius: 4px;
    overflow: visible;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.search-input-group {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-right: none;
    background: white;
}

.search-input-group:last-of-type {
    border-right: 1px solid var(--border-color);
}

.search-input-group.location-group {
    flex: 1.5;
}

.search-input-group.date-group {
    flex: 2;
}

.search-input-group.guests-group {
    flex: 1.5;
}

.search-icon {
    color: #6b6b6b;
    font-size: 1.2rem;
    margin-right: 12px;
    flex-shrink: 0;
}

.search-input {
    border: none;
    outline: none;
    font-size: 0.95rem;
    color: #262626;
    background: transparent;
    width: 100%;
    font-weight: 500;
}

.search-input::placeholder {
    color: #6b6b6b;
}

.date-input {
    width: 45%;
    font-size: 0.9rem;
}

.date-separator {
    margin: 0 8px;
    color: #6b6b6b;
    font-weight: 500;
}

.guests-select {
    appearance: none;
    cursor: pointer;
    padding-right: 20px;
}

.dropdown-icon {
    position: absolute;
    right: 16px;
    color: #6b6b6b;
    font-size: 0.8rem;
    pointer-events: none;
}

.clear-btn {
    background: none;
    border: none;
    color: #6b6b6b;
    cursor: pointer;
    padding: 4px;
    margin-left: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.clear-btn:hover {
    color: #262626;
}

.search-btn {
    background: var(--accent-gold);
    color: var(--text-dark);
    border: none;
    padding: 0 32px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.search-btn:hover {
    background: var(--luxury-gold);
}

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

    .search-input-group {
        border-right: 3px solid #FFB700;
        border-bottom: none;
    }

    .search-input-group:last-of-type {
        border-bottom: 3px solid #FFB700;
    }

    .search-btn {
        padding: 16px;
    }
}

/* Location Dropdown Styles */
.location-group {
    position: relative;
}

.location-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e0e0e0;
    border-top: none;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    max-height: 400px;
    overflow-y: auto;
    margin-top: 12px;
}

.location-dropdown-header {
    padding: 12px 16px;
    background: #f5f5f5;
    font-weight: 600;
    font-size: 0.9rem;
    color: #262626;
    border-bottom: 1px solid #e0e0e0;
}

.location-list {
    padding: 8px 0;
}

.location-item {
    padding: 12px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: background 0.2s ease;
    color: #262626;
    font-size: 0.95rem;
}

.location-item:hover {
    background: #f0f6ff;
}

.location-item i {
    color: #0071c2;
    font-size: 0.9rem;
}

.location-item.hidden {
    display: none;
}

.hotel-autocomplete {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e0e0e0;
    border-top: none;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 1001;
    max-height: 280px;
    overflow-y: auto;
    margin-top: 12px;
}

.hotel-autocomplete-header {
    padding: 8px 16px;
    background: #f5f5f5;
    font-weight: 600;
    font-size: 0.85rem;
    color: #555;
    border-bottom: 1px solid #e0e0e0;
}

.hotel-autocomplete-item {
    padding: 10px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: background 0.2s ease;
    color: #262626;
    font-size: 0.9rem;
}

.hotel-autocomplete-item:hover {
    background: #f0f6ff;
}

.hotel-autocomplete-item i {
    color: #0071c2;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.hotel-autocomplete-item span {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.filter-section {
    background: var(--bg-white);
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 999;
    transition: box-shadow 0.2s ease;
}

.filter-section.stuck {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Mobile Filter Toggle */
.filter-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.5rem;
    background: var(--bg-white);
    border: 2px solid var(--primary-blue);
    border-radius: 8px;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-toggle:hover {
    background: var(--primary-blue);
    color: white;
}

.filter-toggle[aria-expanded="true"] {
    background: var(--primary-blue);
    color: white;
}

.filter-toggle[aria-expanded="true"] .filter-chevron {
    transform: rotate(180deg);
}

.filter-count {
    background: var(--accent-gold);
    color: var(--text-dark);
    padding: 0.125rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    margin-left: 0.5rem;
    display: none;
}

.filter-count.active {
    display: inline-block;
}

.filter-chevron {
    margin-left: auto;
    transition: transform 0.3s ease;
    font-size: 0.75rem;
}

/* Hide filters on scroll — all screen sizes */
.filter-section {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.filter-section.filter-hidden {
    transform: translateY(-100%);
    box-shadow: none;
    pointer-events: none;
}

/* Mobile filter content toggle */
.filter-content {
    transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
}

@media (max-width: 767px) {
    .filter-content {
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        padding: 0;
    }

    .filter-content.show {
        max-height: 1000px;
        opacity: 1;
        padding-top: 1rem;
    }
}

@media (min-width: 768px) {
    .filter-toggle {
        display: none;
    }

    .filter-content {
        max-height: none !important;
        opacity: 1 !important;
        padding-top: 0;
    }
}

.filter-card {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-select {
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 0.6rem 0.75rem;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.form-select:focus {
    border-color: var(--booking-blue);
    box-shadow: 0 0 0 0.2rem rgba(0, 113, 194, 0.15);
}

.hotels-section {
    padding: 5rem 0;
}

.section-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.4rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 0.6rem;
    border-bottom: 1.5px solid var(--accent-gold);
    display: inline-block;
    letter-spacing: -0.01em;
}

.hotel-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    margin-bottom: 2rem;
    cursor: pointer;
    position: relative;
}

.hotel-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-color: rgba(200, 148, 58, 0.35);
}

.hotel-image-container {
    position: relative;
    height: 250px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.hotel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hotel-card:hover .hotel-image {
    transform: scale(1.1);
}

.hotel-rating {
    position: absolute;
    top: 0.9rem;
    left: 0.9rem;
    background: var(--primary-blue);
    color: var(--cream);
    padding: 0.4rem 0.85rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(14, 28, 21, 0.3);
    letter-spacing: 0.02em;
}

.hotel-price {
    position: absolute;
    bottom: 0.9rem;
    left: 0.9rem;
    background: rgba(250, 250, 247, 0.95);
    color: var(--primary-blue);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(4px);
}

.view-details {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(14, 28, 21, 0.9);
    color: var(--cream);
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.25s ease;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    white-space: nowrap;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(200, 148, 58, 0.3);
}

.hotel-card:hover .view-details {
    opacity: 1;
}

.hotel-body {
    padding: 1.5rem;
    border-radius: 0 0 12px 12px;
    background: var(--bg-white);
}

.hotel-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.hotel-location {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.hotel-address {
    color: var(--text-light);
    font-size: 0.75rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.hotel-address a {
    text-decoration: none;
    font-size: 0.85rem;
}

.hotel-address a:hover {
    text-decoration: underline;
}

.hotel-description {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.amenity-badge {
    background: #e8f4fd;
    color: var(--booking-blue);
    padding: 0.4rem 0.9rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    margin: 0.2rem;
    display: inline-block;
    border: 1px solid #d0e8f7;
}

.btn-book {
    background: var(--booking-blue);
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-book:hover {
    background: var(--light-blue);
    transform: translateY(-2px);
    animation: btnPulse 0.4s ease;
}

.btn-hotel-page {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    border-radius: 25px;
    border: 1px solid var(--booking-blue);
    color: var(--booking-blue);
    font-size: 0.8rem;
    transition: all 0.2s ease;
}

.btn-hotel-page:hover {
    background: var(--booking-blue);
    color: #fff;
}

/* Footer Styles */
.main-footer {
    background: #0B1910;
    color: rgba(245, 239, 227, 0.7);
    margin-top: 4rem;
}

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

.footer-section {
    margin-bottom: 1.5rem;
}

.footer-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.footer-text {
    color: #b0b0b0;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #b0b0b0;
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--booking-blue);
    font-size: 1.1rem;
    margin-top: 3px;
}

.footer-contact a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--accent-gold);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

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

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.badge-item {
    background: rgba(0, 113, 194, 0.15);
    color: var(--booking-blue);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 2rem 0 1.5rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.copyright {
    color: #b0b0b0;
    font-size: 0.9rem;
}

.copyright p {
    margin: 0;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.footer-legal a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--accent-gold);
}

.footer-legal .separator {
    color: rgba(255, 255, 255, 0.3);
}

.footer-note {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-note p {
    color: #888;
    font-size: 0.85rem;
    margin: 0;
}

@media (max-width: 768px) {
    .footer-top {
        padding: 3rem 0 2rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }
}

.footer h5 {
    color: var(--luxury-gold);
    margin-bottom: 1rem;
}

/* Amenity Filter Chips */
.amenity-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.amenity-filters-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    margin-right: 0.25rem;
}

.amenity-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.85rem;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    background: var(--bg-white);
    color: var(--text-dark);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s ease;
    white-space: nowrap;
}

.amenity-chip:hover {
    border-color: var(--booking-blue);
    color: var(--booking-blue);
}

.amenity-chip.active {
    background: var(--booking-blue);
    border-color: var(--booking-blue);
    color: #fff;
    animation: chipBounce 0.3s ease;
}

.amenity-chip i {
    font-size: 0.75rem;
}

/* View Toggle (List / Map) */
.view-toggle {
    display: flex;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.view-toggle-btn {
    padding: 0.5rem 1rem;
    border: none;
    background: var(--bg-white);
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.15s ease;
}

.view-toggle-btn:not(:last-child) {
    border-right: 1px solid var(--border-color);
}

.view-toggle-btn.active {
    background: var(--primary-blue);
    color: #fff;
}

.view-toggle-btn:hover:not(.active) {
    background: var(--bg-light);
}

.saved-view-btn.active {
    background: #b83250;
    color: #fff;
}

.saved-count-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gold);
    color: var(--primary-blue);
    font-size: 0.68rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    padding: 0 4px;
    line-height: 1;
    display: none;
}

.saved-view-btn.active .saved-count-badge {
    background: rgba(255,255,255,0.25);
    color: #fff;
}

/* Map popup */
.map-popup-card {
    min-width: 220px;
}

.map-popup-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 8px;
}

.map-popup-card h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 4px 0;
}

.map-popup-card .popup-rating {
    display: inline-block;
    background: var(--booking-blue);
    color: #fff;
    padding: 1px 6px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.map-popup-card .popup-price {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.85rem;
}

.map-popup-card a {
    display: inline-block;
    margin-top: 6px;
    color: var(--booking-blue);
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
}

@media (max-width: 768px) {
    .filter-section {
        padding: 1rem 0;
    }

    .filter-card {
        padding: 1rem;
    }

    .hotels-section {
        padding: 2rem 0;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        padding-bottom: 0.5rem;
    }

    .section-header {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }

    .hotel-image-container {
        height: 200px;
    }

    .hotel-body {
        padding: 1rem;
    }

    .hotel-title {
        font-size: 1.2rem;
    }

    .hotel-card {
        margin-bottom: 1rem;
    }

    .hotel-price {
        font-size: 1rem;
        padding: 0.4rem 0.8rem;
    }

    .hotel-rating {
        font-size: 0.85rem;
        padding: 0.35rem 0.75rem;
    }

    .hero-section {
        padding: 3rem 0 2rem;
    }

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

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

    #hotelsMap {
        height: 450px !important;
    }
}

/* Show More Button */
.btn-show-more {
    background: var(--booking-blue);
    color: #fff;
    border: none;
    padding: 0.75rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.btn-show-more:hover {
    background: var(--primary-blue);
}

.show-more-count {
    font-weight: 400;
    opacity: 0.85;
    font-size: 0.9rem;
}

/* Hotel image aspect ratio to prevent CLS */
.hotel-image {
    aspect-ratio: 400 / 267;
    object-fit: cover;
    width: 100%;
    height: auto;
}

/* Modal Gallery */
.main-gallery-image {
    position: relative;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.main-gallery-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s ease;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s;
    z-index: 2;
}

.main-gallery-image:hover .gallery-nav {
    opacity: 1;
}

.gallery-prev {
    left: 12px;
}

.gallery-next {
    right: 12px;
}

.gallery-nav:hover {
    background: rgba(0, 0, 0, 0.8);
}

.gallery-counter {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    z-index: 2;
}

.gallery-zoom-hint {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    opacity: 0;
    transition: opacity 0.2s;
    z-index: 2;
}

.main-gallery-image:hover .gallery-zoom-hint {
    opacity: 1;
}

.gallery-thumbnails {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
}

.gallery-thumb {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.7;
    transition: opacity 0.2s, border-color 0.2s;
    flex-shrink: 0;
}

.gallery-thumb:hover {
    opacity: 1;
}

.gallery-thumb.active {
    border-color: var(--booking-blue);
    opacity: 1;
}

/* Lightbox */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
    user-select: none;
}

.lightbox-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    z-index: 10000;
    opacity: 0.8;
}

.lightbox-close:hover {
    opacity: 1;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.3);
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 0.9rem;
    background: rgba(0, 0, 0, 0.5);
    padding: 6px 16px;
    border-radius: 20px;
}

@media (max-width: 768px) {
    .main-gallery-image img {
        height: 250px;
    }

    .gallery-nav {
        opacity: 1;
        width: 36px;
        height: 36px;
    }

    .gallery-zoom-hint {
        display: none;
    }

    .gallery-thumb {
        width: 80px;
        height: 54px;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
    }
}

/* Favorites Heart Button */
.fav-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #999;
    z-index: 3;
    transition: transform 0.2s, color 0.2s, background 0.2s;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.fav-btn:hover {
    transform: scale(1.15);
    color: #e74c3c;
}

.fav-btn.active {
    color: #e74c3c;
}

.fav-btn.active i {
    animation: heartPop 0.3s ease;
}

@keyframes heartPop {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}

/* Currency Selector */
.currency-selector {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    padding: 2px 8px;
    font-size: 0.8rem;
    cursor: pointer;
    outline: none;
}

.currency-selector option {
    color: #333;
    background: #fff;
}

/* Header Favorites Button */
.header-fav-btn {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    padding: 2px 10px;
    font-size: 0.8rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: background 0.2s;
}

.header-fav-btn:hover {
    background: rgba(255, 255, 255, 0.25);
}

.fav-count-badge {
    background: #e74c3c;
    color: #fff;
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* Trust Section */
.trust-section {
    background: #f0f6ff;
    padding: 1.25rem 0;
    border-bottom: 1px solid #d4e3f5;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.trust-icon {
    width: 42px;
    height: 42px;
    background: var(--primary-blue);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.trust-text strong {
    display: block;
    font-size: 0.85rem;
    color: var(--text-dark);
}

.trust-text span {
    font-size: 0.78rem;
    color: var(--text-light);
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.faq-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.faq-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    font-size: 1rem;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: box-shadow 0.2s;
}

.faq-item:hover {
    box-shadow: var(--shadow-sm);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.faq-arrow {
    transition: transform 0.3s;
    color: var(--text-muted);
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-light);
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 1.5rem 1.25rem;
}

@media (max-width: 768px) {
    .trust-badges {
        gap: 1rem;
    }

    .trust-badge {
        flex: 1 1 45%;
        min-width: 200px;
    }

    .trust-icon {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }

    .faq-title {
        font-size: 1.5rem;
    }

    .faq-question {
        font-size: 0.9rem;
        padding: 1rem 1.25rem;
    }

    .header-fav-btn,
    .currency-selector {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .trust-badges {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }

    .trust-badge {
        min-width: unset;
    }
}

/* Skip to Content (Accessibility) */
.skip-to-content {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-blue);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 0 0 8px 8px;
    z-index: 10001;
    font-weight: 600;
    text-decoration: none;
    transition: top 0.2s;
}

.skip-to-content:focus {
    top: 0;
    color: #fff;
}

/* Recently Viewed Hotels */
.recently-viewed-section {
    padding: 1.5rem 0 0.5rem;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
}

.recently-viewed-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.recently-viewed-grid {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    scrollbar-width: thin;
}

.recently-viewed-card {
    display: flex;
    gap: 0.75rem;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.5rem;
    min-width: 280px;
    cursor: pointer;
    transition: box-shadow 0.2s, transform 0.2s;
    flex-shrink: 0;
}

.recently-viewed-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.recently-viewed-card img {
    width: 100px;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.recently-viewed-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.recently-viewed-name {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 160px;
}

.recently-viewed-meta {
    display: flex;
    gap: 0.75rem;
    margin-top: 4px;
    font-size: 0.8rem;
}

.recently-viewed-rating {
    color: var(--accent-gold);
    font-weight: 600;
}

.recently-viewed-price {
    color: var(--text-light);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--primary-blue);
    color: #fff;
    border: none;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background 0.2s;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--booking-blue);
    transform: translateY(-2px);
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a2e;
    color: #e0e0e0;
    padding: 1rem 0;
    z-index: 9998;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s;
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cookie-consent-text {
    flex: 1;
    font-size: 0.9rem;
    line-height: 1.5;
    min-width: 250px;
}

.cookie-consent-text a {
    color: var(--accent-gold);
    text-decoration: underline;
}

.cookie-consent-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    border: none;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}

.cookie-btn:active {
    transform: scale(0.97);
}

.cookie-btn-accept {
    background: var(--booking-blue);
    color: #fff;
}

.cookie-btn-accept:hover {
    background: #005fa3;
}

.cookie-btn-decline {
    background: transparent;
    color: #ccc;
    border: 1px solid #555;
}

.cookie-btn-decline:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Share Menu Overlay */
.share-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10002;
    display: flex;
    align-items: center;
    justify-content: center;
}

.share-menu {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    min-width: 300px;
    max-width: 360px;
    box-shadow: var(--shadow-lg);
}

.share-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-color);
}

.share-menu-header h6 {
    margin: 0;
    font-weight: 700;
}

.share-menu-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    line-height: 1;
}

.share-menu-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.share-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--bg-white);
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.15s;
}

.share-option:hover {
    background: var(--bg-light);
    color: var(--text-dark);
}

.share-option i {
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
}

.share-option .fa-whatsapp {
    color: #25D366;
}

.share-option .fa-facebook-f {
    color: #1877F2;
}

.share-option .fa-envelope {
    color: var(--booking-blue);
}

.share-option .fa-link {
    color: var(--text-light);
}

@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-consent-actions {
        justify-content: center;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
    }

    .recently-viewed-card {
        min-width: 240px;
    }

    .recently-viewed-card img {
        width: 80px;
        height: 56px;
    }

    .recently-viewed-name {
        max-width: 120px;
    }
}

/* Loading Skeleton */
.skeleton-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    height: 100%;
    margin-bottom: 2rem;
}

.skeleton-image {
    height: 250px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s ease-in-out infinite;
}

.skeleton-body {
    padding: 1.5rem;
}

.skeleton-line {
    height: 14px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s ease-in-out infinite;
    border-radius: 4px;
    margin-bottom: 0.75rem;
}

.skeleton-line.title {
    height: 22px;
    width: 70%;
}

.skeleton-line.short {
    width: 40%;
}

.skeleton-line.medium {
    width: 55%;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Card Scroll Animation */
.hotel-card-animate {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.hotel-card-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hotels section dark mode */
[data-theme="dark"] .hotels-section {
    background: #16213e;
}

/* No Results State */
.no-results {
    padding: 3rem 1rem;
}

.no-results-icon {
    font-size: 3.5rem;
    color: var(--border-color);
    margin-bottom: 1rem;
}

.no-results h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.no-results p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Active Filter Chips */
.active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    padding: 0.75rem 0;
}

.active-filters:empty {
    display: none;
}

.active-filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.75rem;
    border-radius: 16px;
    background: #e8f4fd;
    color: var(--booking-blue);
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid #d0e8f7;
    cursor: pointer;
    transition: all 0.15s ease;
}

.active-filter-chip:hover {
    background: #d0e8f7;
}

.active-filter-chip .chip-close {
    font-size: 0.7rem;
    opacity: 0.7;
}

.active-filter-chip .chip-close:hover {
    opacity: 1;
}

.clear-all-filters {
    font-size: 0.8rem;
    color: var(--text-light);
    cursor: pointer;
    text-decoration: underline;
    background: none;
    border: none;
    padding: 0.3rem 0.5rem;
}

.clear-all-filters:hover {
    color: var(--booking-blue);
}

/* Quick View Popover */
.quick-view-popover {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    padding: 1rem;
    min-width: 260px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 10;
    pointer-events: none;
}

.hotel-card:hover .quick-view-popover {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-8px);
    pointer-events: auto;
}

.quick-view-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    padding: 0.2rem 0;
    color: var(--text-light);
}

.quick-view-row strong {
    color: var(--text-dark);
}

.quick-view-stars {
    color: var(--accent-gold);
    font-size: 0.75rem;
}

@media (max-width: 992px) {
    .quick-view-popover {
        display: none !important;
    }
}

/* Micro-interaction Keyframes */
@keyframes btnPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 113, 194, 0.4);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(0, 113, 194, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 113, 194, 0);
    }
}

@keyframes chipBounce {
    0% {
        transform: scale(1);
    }

    40% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.currency-flash {
    animation: currencyFlash 0.4s ease;
}

@keyframes currencyFlash {
    0% {
        opacity: 1;
    }

    30% {
        opacity: 0.3;
    }

    100% {
        opacity: 1;
    }
}

/* Reduce animations for users who prefer it and low-end mobile */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}