a {
  color: inherit;           /* parent ka color use karein (na ke default blue) */
  text-decoration: none;    /* underline hata de */
  cursor: pointer;          /* pointer hand (optional) */
}

/* visited / hover / active states bhi reset karna achha hota hai */
a:visited { color: inherit; }
a:hover   { text-decoration: none; }
a:active  { color: inherit; }

.destination-dropdown {
    max-height: 300px;
    overflow-y: auto;
}

.miami-card-img {
    height: 200px;
    object-fit: cover;
}

/* Custom: Card Header btn-primary hover orange */
.card-header.btn-primary {
    color: #fff;
}
.card-header.btn-primary:hover {
    background-color: #e98d43;
    color: #fff;
}
/* Custom: Chat/Call Button Hover like Book Now */
.btn-outline-info.btn-sm:hover {
    background-color: #083066;
    color: #fff;
    border-color: #083066;
}
/* Expedia Clone - Base Theme Styles */

/* Expedia Brand-like Color Variables */
:root {
    /* Core palette */
    --expedia-blue: #0d3f8c;
    --expedia-dark-blue: #083066;
    --expedia-yellow: #ffd700;
    --expedia-light-gray: #f5f5f5;
    --expedia-medium-gray: #666666;
    --expedia-dark-gray: #333333;
    --expedia-border: #d6d6d6;
    --expedia-white: #ffffff;
    --expedia-success: #00aa6c;
    --expedia-error: #e74c3c;
    --expedia-rating: #ff8c00;
}

/* Global Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 1.4;
    color: var(--expedia-dark-gray);
    margin: 0;
    padding: 0;
    background-color: var(--expedia-white);
}

/* Reset Bootstrap overrides */
.btn-primary {
    background-color: var(--expedia-blue);
    border-color: var(--expedia-blue);
    color: white;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: #083066;
    border-color: #083066;
}

.text-primary {
    color: var(--expedia-blue) !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    /* Famous UAE background: Dubai Marina skyline */
    background-image: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), 
                      url('../images/hotels/dubai-marina-skyline.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 80px 0 60px;
    position: relative;
    width: 100%;
    min-height: 70vh;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-background .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    margin-bottom: 40px;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    color: white;
    margin: 0 0 16px;
    letter-spacing: -1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 20px;
    color: white;
    margin: 0;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Search Container */
.search-container {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--expedia-white);
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Search Tabs */
.search-tabs-wrapper {
    background: var(--expedia-white);
    border-bottom: 1px solid var(--expedia-border);
}

.search-tabs {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    overflow-x: auto;
}

.search-tab {
    flex-shrink: 0;
}

.search-tab-btn {
    background: none;
    border: none;
    padding: 16px 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--expedia-medium-gray);
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
}

/* ==============================
   Bundle & Save Section Styles
   ============================== */
.bundle-packages-section {
    padding: 48px 0 56px;
    background: var(--expedia-white);
}

.bundle-packages-section .container {
    max-width: 1200px;
}

.bundle-header {
    padding-left: 1.5rem;
}

.bundle-header h2 {
    font-size: 28px;
    line-height: 1.2;
    margin: 0 0 8px;
    color: var(--expedia-dark-gray);
    font-weight: 700;
}

.bundle-header p {
    margin: 0 0 20px;
    color: var(--expedia-medium-gray);
}


.bundle-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    padding: 10px 12px;
    background: var(--expedia-white);
    border: 1px solid var(--expedia-border);
    border-radius: 999px;
    flex-wrap: wrap;
    overflow-x: auto;
    scrollbar-width: none;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.bundle-tabs::-webkit-scrollbar {
    display: none;
}

.bundle-tab {
    appearance: none;
    border: 1px solid transparent;
    background: #f1f4fb;
    padding: 10px 20px;
    color: var(--expedia-medium-gray);
    font-weight: 600;
    cursor: pointer;
    border-radius: 999px;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}

.bundle-tab:hover {
    color: var(--expedia-dark-gray);
    border-color: rgba(13, 63, 140, 0.2);
    background: #e6ecfb;
}

.bundle-tab:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(13, 63, 140, 0.25);
}

.bundle-tab.active,
.bundle-tab[aria-selected="true"] {
    background: var(--expedia-blue);
    color: #ffffff;
    border-color: var(--expedia-blue);
    box-shadow: 0 6px 16px rgba(13, 63, 140, 0.25);
}

.bundle-tab.active:hover,
.bundle-tab[aria-selected="true"]:hover {
    color: #ffffff;
}

.bundle-panels {
    position: relative;
}

.bundle-panel {
    display: none;
}

.bundle-panel.active {
    display: block;
}

.bundle-carousel {
    position: relative;
    padding: 0 24px;
}

.bundle-track-wrapper {
    overflow: hidden;
}

.bundle-track {
    display: flex;
    gap: 19px;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 4px 0;
    will-change: transform;
}

.bundle-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 20px;
    border: 1px solid var(--expedia-border);
    background: rgba(255, 255, 255, 0.95);
    color: var(--expedia-dark-gray);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.bundle-nav:hover {
    background: #fff;
}

.bundle-nav.prev { left: -12px; }
.bundle-nav.next { right: -12px; }

.bundle-nav:disabled {
    opacity: 0.5;
    pointer-events: none;
}

/* Card */
.bundle-card {
    flex: 0 0 auto;
    width: 300px;
    min-width: 300px;
    max-width: 300px;
    background: #fff;
    border: 1px solid var(--expedia-border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.bundle-card-image {
    position: relative;
    width: 100%;
    /* Fallback height for browsers without aspect-ratio support */
    height: 200px;
    background: var(--expedia-light-gray);
    overflow: hidden;
}

.bundle-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bundle-card-image img.bundle-image-fallback {
    object-fit: contain;
    background: var(--expedia-light-gray);
    color: var(--expedia-medium-gray);
}

/* Package card styling used on detail booking form */
.package-card {
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
    border-radius: 8px;
    border: 1px solid var(--expedia-border);
    position: relative;
}
.package-card .card-body { padding: 18px; }
.package-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(8,48,102,0.06); }
.package-card.selected { border-color: var(--expedia-blue); box-shadow: 0 12px 40px rgba(13,63,140,0.12); }
.package-card .selected-badge { display: none; position: absolute; top: 10px; right: 10px; background: var(--expedia-blue); color: #fff; width: 36px; height: 36px; border-radius: 50%; align-items: center; justify-content: center; font-weight: 700; box-shadow: 0 4px 12px rgba(13,63,140,0.18); }
.package-card.selected .selected-badge { display: inline-flex; }
.package-card .card-title { font-size: 18px; font-weight: 700; }
.package-card h6 { font-size: 13px; color: var(--expedia-medium-gray); }

/* Tighten paragraph spacing in the Burj description block to match .mb-2 */
#burjDescription p {
    margin-top: 0;
    margin-bottom: 0.5rem; /* equivalent to Bootstrap .mb-2 */
}

/* Color for Burj operator and reviews to match accent (#e98d43) */
#burjOperator,
#burjReviews {
    color: #e98d43 !important;
}

/* Guest counter styling */
.guest-counter { min-width: 120px; }
.guest-counter .small { color: var(--expedia-medium-gray); margin-bottom:6px; }
.guest-counter .input-group { display:flex; align-items:center; gap:6px; }
.guest-counter .btn { width:34px; height:34px; padding:0; display:inline-flex; align-items:center; justify-content:center; }
.guest-counter input { height:34px; }

@media (max-width: 768px) {
    .guest-counter { min-width: 100px; }
}

/* Booking summary under guest counters */
.booking-summary { margin-top: 12px; font-size: 14px; color: var(--expedia-dark-gray); }
.booking-summary .total { font-weight: 700; color: var(--expedia-blue); }

/* Dropdown menu inside booking form should look like a card */
.dropdown-menu.p-3 { border-radius: 8px; }
.dropdown .input-group .btn { width:34px; height:34px; }

/* Guest dropdown rows: label and controls aligned horizontally */
.guest-row { gap: 12px; }
.guest-row .guest-label { min-width: 110px; }
.guest-row .guest-controls { display: flex; align-items: center; gap: 6px; }
.guest-row .guest-controls .form-control { width: 60px; }

/* Breadcrumb hero style to match index feel */
.breadcrumb-hero {
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(4px);
}
.breadcrumb-hero .breadcrumb {
    background: transparent;
    margin-bottom: 0;
}
.breadcrumb-hero .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.6);
}
.breadcrumb-hero .breadcrumb-item a {
    color: #fff;
}
.breadcrumb-hero .breadcrumb-item.active {
    color: #fff;
    font-weight: 600;
}

/* Burj highlight meta row */
.burj-meta { font-size: 0.95rem; margin-top: .25rem; margin-bottom: .25rem; }
.burj-meta #burjReviews { color: rgba(0,0,0,0.6); }
.burj-meta #burjOperator { color: rgba(0,0,0,0.6); }

/* Package rates compact tiles inside package cards */
.package-rates { padding: 6px 0; }
.package-rates .rate-item {
    min-width: 86px;
    border: 1px solid rgba(13,63,140,0.06);
    background: linear-gradient(180deg, #fff, #fbfdff);
}
.package-rates .rate-label { color: var(--expedia-medium-gray); font-size: 12px; }
.package-rates .rate-value { color: var(--expedia-dark-gray); font-size: 15px; }
.package-rates .rate-item .rate-value { letter-spacing: 0.2px; }

@media (max-width: 576px) {
    .package-rates { gap: 8px; }
    .package-rates .rate-item { min-width: 70px; padding: 8px; }
}

/* Prefer aspect-ratio when supported */
@supports (aspect-ratio: 3 / 2) {
    .bundle-card-image {
        height: auto;
        aspect-ratio: 3 / 2; /* 600x400 like sample */
    }
}

.bundle-offer-badge {
    position: absolute;
    left: 12px;
    bottom: 12px;
    background: rgba(8, 48, 102, 0.92);
    color: #fff;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.bundle-card-body {
    padding: 12px;
}

.bundle-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--expedia-dark-gray);
    margin: 0 0 6px;
}

.bundle-card-location {
    margin: 0 0 10px;
    color: var(--expedia-medium-gray);
    font-size: 13px;
}

.bundle-card-perks {
    list-style: none;
    padding: 0;
    margin: 0 0 10px;
    display: grid;
    gap: 6px;
}

.bundle-card-perks li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--expedia-dark-gray);
    font-size: 13px;
}

.bundle-card-perks i {
    color: var(--expedia-success);
    font-size: 16px;
}

.bundle-card-pricing {
    border-top: 1px dashed var(--expedia-border);
    padding-top: 10px;
}

.bundle-price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.bundle-current-price {
    font-size: 18px;
    font-weight: 800;
    color: var(--expedia-dark-gray);
}

.bundle-original-price {
    font-size: 13px;
    color: var(--expedia-medium-gray);
    text-decoration: line-through;
}

.bundle-price-note,
.bundle-found-note {
    margin: 4px 0 0;
    font-size: 12px;
    color: var(--expedia-medium-gray);
}

.bundle-card-link {
    display: inline-block;
    margin-top: 10px;
    font-weight: 700;
    color: var(--expedia-blue);
    text-decoration: none;
}

.bundle-card-link:hover {
    text-decoration: underline;
}

/* Responsive tweaks */
@media (max-width: 992px) {
    .bundle-card { 
        width: 280px;
        min-width: 280px;
        max-width: 280px;
    }
    .bundle-nav.prev { left: -8px; }
    .bundle-nav.next { right: -8px; }
}

@media (max-width: 576px) {
    .bundle-card { 
        width: 260px;
        min-width: 260px;
        max-width: 260px;
    }
    .bundle-header h2 { font-size: 22px; }
}

/* ==============================
   Smooth Modal Overlays (Custom)
   ============================== */
body.modal-open {
    overflow: hidden;
}

.date-picker-overlay,
.traveler-selector-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 9999;
    animation: overlayFadeIn 180ms ease-out;
}

.date-picker-overlay.closing,
.traveler-selector-overlay.closing {
    animation: overlayFadeOut 160ms ease-in forwards;
}

.date-picker,
.traveler-selector {
    background: var(--expedia-white);
    border-radius: 12px;
    padding: 20px;
    width: min(420px, 92vw);
    box-shadow: 0 16px 40px rgba(0,0,0,0.22), 0 4px 12px rgba(0,0,0,0.08);
    transform-origin: center;
    animation: modalZoomIn 200ms cubic-bezier(.2,.7,.3,1);
}

.date-picker-overlay.closing .date-picker,
.traveler-selector-overlay.closing .traveler-selector {
    animation: modalZoomOut 160ms ease-in forwards;
}

@keyframes overlayFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes overlayFadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

@keyframes modalZoomIn {
    from { opacity: 0; transform: translateY(8px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes modalZoomOut {
    from { opacity: 1; transform: translateY(0) scale(1); }
    to { opacity: 0; transform: translateY(8px) scale(0.98); }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .date-picker-overlay,
    .traveler-selector-overlay,
    .date-picker,
    .traveler-selector {
        animation: none !important;
    }
}

.search-tab-btn:hover {
    color: var(--expedia-blue);
}

.search-tab-btn.active {
    color: var(--expedia-blue);
    border-bottom-color: var(--expedia-blue);
}

.search-tab-btn i {
    margin-right: 8px;
    font-size: 16px;
}

/* Search Form Content */
.search-form-content {
    background: var(--expedia-white);
    padding: 24px;
}

.search-panel {
    display: none;
}

.search-panel.active {
    display: block;
}

.search-form {
    width: 100%;
}

.search-fields {
    display: flex;
    gap: 0;
    margin-bottom: 16px;
}

.search-field {
    position: relative;
    min-height: 60px;
    border: 1px solid var(--expedia-border);
    border-right: none;
    background: var(--expedia-white);
}

.search-field:first-child {
    border-radius: 4px 0 0 4px;
}

.search-field:last-child {
    border-radius: 0 4px 4px 0;
    border-right: 1px solid var(--expedia-border);
}

.search-field-destination {
    flex: 2;
}

.search-field-dates {
    flex: 1.5;
}

.search-field-travelers {
    flex: 1.5;
}

.search-field-submit {
    flex: 0 0 120px;
    border: none;
    padding: 0;
}

.search-field label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--expedia-dark-gray);
    margin-bottom: 4px;
    padding: 8px 16px 0;
}

.search-input {
    width: 100%;
    border: none;
    outline: none;
    font-size: 16px;
    color: var(--expedia-dark-gray);
    padding: 0 16px 12px;
    background: transparent;
}

.search-input::placeholder {
    color: var(--expedia-medium-gray);
}

.search-field:focus-within {
    border-color: var(--expedia-blue);
    box-shadow: 0 0 0 2px rgba(13, 63, 140, 0.2);
}

.search-btn {
    width: 100%;
    height: 100%;
    color: #ffffff;
    background: var(--expedia-blue);
    border: none;
    border-radius: 0 4px 4px 0;
    font-size: 16px;
    font-weight: 700;
    color: var(--expedia-dark-gray);
    cursor: pointer;
    transition: all 0.2s ease;
}

.search-btn:hover {
    background: #b99572;
}

.search-options {
    padding: 0 4px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: var(--expedia-dark-gray);
    cursor: pointer;
}

.checkbox-input {
    margin-right: 8px;
    accent-color: var(--expedia-blue);
}

.checkbox-text {
    line-height: 1.4;
}

/* Promotional Banner */
.promotional-banner {
    background: var(--expedia-yellow);
    padding: 12px 0;
    text-align: center;
    border-bottom: 1px solid var(--expedia-border);
}

.promotional-banner p {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--expedia-dark-gray);
}

/* Featured Deals Section */
.featured-deals {
    padding: 32px 0 40px;
    background: var(--expedia-white);
}

.featured-deals .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    margin-bottom: 24px;
}

.section-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--expedia-dark-gray);
    margin: 0 0 8px;
}

.deals-filter {
    font-size: 14px;
    color: var(--expedia-medium-gray);
    margin: 0;
}

/* Hotel Slider */
.hotel-slider-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 40px 0;
}

/* Wrapper for slider with side buttons */
.slider-container-wrapper {
    position: relative;
    width: 102%;
    margin: 39px 0;
    padding: -1px 60px; /* Space for side buttons outside slider */
}

.hotel-slider-wrapper {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.hotel-slider {
    display: flex;
    gap: 9px;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 4px 0;
    will-change: transform;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: 1px solid var(--expedia-border);
    background: var(--expedia-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 20px;
    color: var(--expedia-dark-gray);
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.slider-nav.prev-btn {
    left: -45px;
}

.slider-nav.next-btn {
    right: -40px;
}

.slider-nav:hover {
    background: var(--expedia-light-gray);
    border-color: var(--expedia-medium-gray);
}

.slider-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Hotel Cards */
.hotel-card {
    background: var(--expedia-white);
    border: 1px solid var(--expedia-border);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.2s ease;
    flex: 0 0 calc(25% - 15px); /* Show 4 cards by default */
    min-width: 280px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hotel-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.hotel-image-container {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.image-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.image-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-slider img.active {
    opacity: 1;
}

.image-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 8px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.hotel-image-container:hover .image-nav {
    opacity: 1;
}

.image-nav button {
    width: 32px;
    height: 32px;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    color: var(--expedia-dark-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.image-nav button:hover {
    background: var(--expedia-white);
    transform: scale(1.1);
}

.image-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.2s ease;
}

.dot.active {
    background: var(--expedia-white);
    transform: scale(1.2);
}

.hotel-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--expedia-blue);
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    z-index: 2;
}

.favorite-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 2;
}

.favorite-btn:hover {
    background: var(--expedia-white);
    transform: scale(1.1);
}

.favorite-btn.active {
    color: #e74c3c;
}

.hotel-card-body {
    padding: 16px;
}

.hotel-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
    gap: 12px;
}

.hotel-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--expedia-dark-gray);
    margin: 0;
    line-height: 1.3;
    flex: 1;
}

.hotel-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.rating-badge {
    background: var(--expedia-blue);
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
}

.rating-text {
    font-size: 12px;
    color: var(--expedia-medium-gray);
    font-weight: 500;
}

.hotel-location {
    font-size: 14px;
    color: var(--expedia-medium-gray);
    margin: 0 0 12px;
}

.price-section {
    margin-top: 12px;
}

.member-price-badge {
    background: #2c5aa0;
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 6px;
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 8px;
}

.member-price-badge i {
    font-size: 10px;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4px;
}

.price-info {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.current-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--expedia-dark-gray);
}

.original-price {
    font-size: 14px;
    color: var(--expedia-medium-gray);
    text-decoration: line-through;
}

.price-period {
    font-size: 12px;
    color: var(--expedia-medium-gray);
}

.total-note {
    font-size: 12px;
    color: var(--expedia-medium-gray);
    margin: 0 0 2px;
}

.includes-note {
    font-size: 11px;
    color: var(--expedia-medium-gray);
    margin: 0;
}

/* Miami Beach Search Section */
.miami-search-section {
    padding: 0;
    background: transparent;
    border: none;
}

.miami-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    min-height: 480px;
    position: relative;
    padding: 40px 20px 60px;
    border-radius: 12px;
    margin: 20px;
}

.miami-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.banner-header {
    margin-bottom: 40px;
}

.banner-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin: 0 0 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 20px;
}

.see-all-deals-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
    align-self: flex-start;
}

.see-all-deals-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Miami Hotels Container */
.miami-hotels-container {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    gap: 20px;
}

.banner-nav {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 20px;
    color: var(--expedia-dark-gray);
    flex-shrink: 0;
    backdrop-filter: blur(10px);
}

.banner-nav:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.05);
}

.miami-hotels-grid {
    display: flex;
    gap: 20px;
    overflow: hidden;
    flex: 1;
    transition: transform 0.3s ease;
}

/* Miami Deal Cards */
.miami-deal-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    overflow: hidden;
    min-width: 240px;
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    transition: all 0.2s ease;
}

.miami-deal-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.deal-image-container {
    position: relative;
    height: 160px;
    overflow: hidden;
}

.vip-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--expedia-blue);
    color: white;
    font-size: 10px;
    font-weight: 600;
    padding: 3px 6px;
    border-radius: 3px;
    z-index: 2;
}

.deal-card-content {
    padding: 16px;
}

.hotel-location-small {
    font-size: 12px;
    color: var(--expedia-medium-gray);
    margin: 0 0 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hotel-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--expedia-dark-gray);
    margin: 0 0 8px;
    line-height: 1.3;
}

.rating-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}

.rating-badge {
    font-size: 12px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
    color: white;
}

.rating-badge.very-good {
    background: #4a90e2;
}

.rating-badge.excellent {
    background: #2ecc71;
}

.rating-badge.wonderful {
    background: #9b59b6;
}

.rating-badge.exceptional {
    background: #e74c3c;
}

.rating-text {
    font-size: 11px;
    color: var(--expedia-medium-gray);
}

.pricing-details {
    border-top: 1px solid #eee;
    padding-top: 12px;
}

.price-row {
    margin-bottom: 4px;
}

.nightly-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--expedia-dark-gray);
}

.total-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.total-price {
    font-size: 14px;
    font-weight: 600;
    color: var(--expedia-dark-gray);
}

.original-price {
    font-size: 12px;
    color: var(--expedia-medium-gray);
    text-decoration: line-through;
}

.includes-text {
    font-size: 11px;
    color: var(--expedia-success);
    margin: 0 0 8px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.includes-text i {
    font-size: 10px;
}

.discount-badge {
    background: #e74c3c;
    color: white;
    font-size: 10px;
    font-weight: 600;
    padding: 3px 6px;
    border-radius: 3px;
    display: inline-block;
}

.member-price-badge {
    background: #2c5aa0;
    color: white;
    font-size: 10px;
    font-weight: 600;
    padding: 3px 6px;
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 6px;
}

.member-price-badge i {
    font-size: 9px;
}

/* Your Recent Searches Section */
.recent-searches-section {
    padding: 32px 0;
    background: var(--expedia-white);
    border-top: 1px solid var(--expedia-border);
}

.recent-searches-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.recent-searches-header {
    margin-bottom: 20px;
}

.recent-searches-header h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--expedia-dark-gray);
    margin: 0;
}

.recent-search-card {
    background: var(--expedia-white);
    border: 1px solid var(--expedia-border);
    border-radius: 8px;
    padding: 20px 24px;
    transition: all 0.2s ease;
    max-width: 600px;
}

.recent-search-card:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-color: var(--expedia-blue);
}

.search-card-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.search-info {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.search-icon {
    width: 48px;
    height: 48px;
    background: #e8f2ff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--expedia-blue);
    font-size: 20px;
    flex-shrink: 0;
}

.search-details {
    flex: 1;
}

.search-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--expedia-dark-gray);
    margin: 0 0 4px;
    line-height: 1.3;
}

.search-dates {
    font-size: 14px;
    color: var(--expedia-dark-gray);
    margin: 0 0 2px;
    font-weight: 500;
}

.search-specs {
    font-size: 14px;
    color: var(--expedia-medium-gray);
    margin: 0;
}

.search-again-btn {
    background: var(--expedia-blue);
    color: white;
    border: none;
    border-radius: 6px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.search-again-btn:hover {
    background: #1a4480;
    transform: translateY(-1px);
}

.search-again-btn i {
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hotel-slider-container {
        gap: 12px;
    }
    
    .slider-container-wrapper {
        padding: 0 50px; /* Reduced padding for mobile */
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .hotel-card {
        min-width: 260px;
    }
    
    .hotel-slider {
        gap: 16px;
    }
    
    /* Miami Section Responsive */
    .miami-banner {
        margin: 10px;
        padding: 24px 16px 40px;
        min-height: 400px;
    }
    
    .banner-header h2 {
        font-size: 24px;
    }
    
    .banner-subtitle {
        font-size: 14px;
    }
    
    .miami-hotels-container {
        gap: 12px;
    }
    
    .banner-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .miami-deal-card {
        min-width: 200px;
    }
    
    .miami-hotels-grid {
        gap: 12px;
    }
    
    .hotel-title {
        font-size: 14px;
    }
    
    .nightly-price {
        font-size: 16px;
    }
    
    /* Recent Searches Responsive */
    .recent-searches-section {
        padding: 24px 0;
    }
    
    .recent-searches-header h2 {
        font-size: 20px;
    }
    
    .recent-search-card {
        padding: 16px 20px;
    }
    
    .search-card-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .search-info {
        gap: 12px;
    }
    
    .search-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .search-title {
        font-size: 16px;
    }
    
    .search-dates,
    .search-specs {
        font-size: 13px;
    }
    
    .search-again-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 16px;
    }
}

/* Features Section */
.features-section {
    background: var(--expedia-light-gray);
    padding: 40px 0;
}

.features-section .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
}

.feature-card {
    background: var(--expedia-white);
    border: 1px solid var(--expedia-border);
    border-radius: 8px;
    padding: 24px;
    text-align: center;
    height: 100%;
    transition: all 0.2s ease;
}

.feature-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 48px;
    color: var(--expedia-blue);
    margin-bottom: 16px;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--expedia-dark-gray);
    margin: 0 0 12px;
}

.feature-description {
    font-size: 14px;
    color: var(--expedia-medium-gray);
    margin: 0 0 16px;
    line-height: 1.5;
}

.feature-link {
    color: var(--expedia-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.feature-link:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-background {
        padding: 60px 0 40px;
        min-height: 60vh;
        background-attachment: scroll;
    }
    
    .search-fields {
        flex-direction: column;
    }
    
    .search-field {
        border-radius: 4px;
        border-right: 1px solid var(--expedia-border);
        margin-bottom: 8px;
    }
    
    .search-field:last-child {
        margin-bottom: 0;
    }
    
    .search-container {
        margin: 0 16px;
    }
    
    .search-tabs {
        overflow-x: scroll;
        -webkit-overflow-scrolling: touch;
    }
    
    .search-tab-btn {
        padding: 12px 16px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .hero-background {
        padding: 40px 0 30px;
        min-height: 50vh;
    }
    
    .search-form-content {
        padding: 16px;
    }
    
    .search-field label {
        padding: 6px 12px 0;
    }
    
    .search-input {
        padding: 0 12px 8px;
        font-size: 14px;
    }
}

/* Print Styles */
@media print {
    .search-container,
    .promotional-banner {
        display: none;
    }
    
    body {
        font-size: 12pt;
        color: black;
    }
    
    .hero-title {
        color: black;
    }
}

/* Promotional Banner Styles */
.promotional-banner {
    background: linear-gradient(135deg, #0d3f8c 0%, #1a5bb8 100%);
    padding: 20px 0;
    text-align: center;
    color: white;
}

.banner-content {
    margin: 0;
}

.banner-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    color: white;
}

/* Recent Searches Section */
.recent-searches-section {
    background-color: #f8f9fa;
    padding: 32px 0;
}

.recent-searches-card {
    background: white;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
}

.recent-searches-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin: 0 0 16px 0;
}

.search-item {
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 16px;
}

.search-destination {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 8px 0;
}

.search-dates {
    font-size: 14px;
    color: #666;
    margin: 0 0 4px 0;
    font-weight: 500;
}

.search-guests {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Miami Deals Section - Banner Style */
.miami-deals-section {
    position: relative;
    overflow: hidden;
    margin: 40px 0;
    padding: 0;
}

.miami-deals-section .container {
    padding-left: 24px;
    padding-right: 24px;
}

.miami-banner-container {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    border-radius: 12px;
    overflow: hidden;
}

.miami-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.miami-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.miami-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(24, 120, 120, 0.1) 0%, 
        rgba(24, 120, 120, 0.3) 50%, 
        rgba(24, 120, 120, 0.7) 100%);
    z-index: 2;
}

.miami-content-overlay {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 80px 0 60px;
}

.miami-header {
    margin-bottom: 40px;
}

.miami-title {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin: 0 0 16px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.miami-subtitle {
    margin: 0;
}

.deals-info {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    margin-right: 8px;
}

.deals-dates {
    color: white;
    font-size: 14px;
    font-weight: 600;
}

.miami-cta-btn {
    background: white;
    color: #0d3f8c;
    border: none;
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 6px;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease;
}

.miami-cta-btn:hover {
    background: #f0f0f0;
    color: #0d3f8c;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Miami Hotels Carousel */
.miami-hotels-carousel {
    position: relative;
    padding: 20px 0;
}

.hotels-slider-container {
    position: relative;
    overflow: visible;

}

.hotels-slider {
    display: flex;
    gap: 9px;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 10px 0;
    overflow-x: hidden;
    overflow-y: visible;
    will-change: transform;
}

.miami-hotel-card {
    flex: 0 0 300px;
    min-width: 300px;
    max-width: 300px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.miami-hotel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3);
}

.hotel-image-gallery {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hotel-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.miami-hotel-card:hover .hotel-main-image {
    transform: scale(1.05);
}

.image-nav-buttons {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 8px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.miami-hotel-card:hover .image-nav-buttons {
    opacity: 1;
}

.image-nav-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.image-nav-btn:hover {
    background: white;
    transform: scale(1.1);
}

.vip-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.hotel-info-section {
    padding: 20px;
}

.hotel-location {
    font-size: 12px;
    color: #666;
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hotel-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 12px 0;
    line-height: 1.3;
    min-height: 42px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hotel-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 16px 0;
}

.rating-badge {
    background: #00aa6c;
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    min-width: 32px;
    text-align: center;
}

.rating-badge.excellent {
    background: #00aa6c;
}

.rating-badge.exceptional {
    background: #0066cc;
}

.rating-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.rating-text {
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

.rating-count {
    font-size: 12px;
    color: #666;
}

.hotel-pricing {
    margin-bottom: 16px;
}

.deal-badge {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 8px;
}

.member-badge {
    background: rgba(255, 215, 10, 0.1);
    color: #b8860b;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 8px;
    border: 1px solid rgba(255, 215, 10, 0.3);
}

.member-badge i {
    font-size: 10px;
}

.price-details {
    line-height: 1.4;
}

.nightly-price {
    font-size: 13px;
    color: #333;
    margin-bottom: 4px;
}

.price-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.total-price {
    font-size: 16px;
    font-weight: 700;
    color: #333;
}

.original-price {
    font-size: 12px;
    color: #999;
    text-decoration: line-through;
}

.price-note {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: #00aa6c;
    font-weight: 500;
}

.price-note i {
    font-size: 10px;
}

.member-signin-link {
    margin-top: 12px;
}

.signin-link {
    color: #0d3f8c;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.signin-link:hover {
    border-bottom-color: #0d3f8c;
    color: #0d3f8c;
}

/* Carousel Navigation */
.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 4;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    user-select: none;
}

.carousel-nav-btn:hover:not([style*="pointer-events: none"]) {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}

.carousel-nav-btn:active:not([style*="pointer-events: none"]) {
    transform: translateY(-50%) scale(1.05);
}

.carousel-nav-btn.prev-nav {
    left: 20px;
}

.carousel-nav-btn.next-nav {
    right: 20px;
}

/* Responsive Design for Miami Section */
@media (max-width: 1200px) {
    .miami-hotel-card {
        flex: 0 0 260px;
    }
    
    .hotels-slider {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .miami-title {
        font-size: 24px;
    }
    
    .miami-header .row {
        text-align: center;
    }
    
    .miami-cta-btn {
        margin-top: 16px;
    }
    
    .miami-hotel-card {
        flex: 0 0 240px;
    }
    
    .hotels-slider {
        padding: 0 20px;
    }
    
    .carousel-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .carousel-nav-btn.prev-nav {
        left: 10px;
    }
    
    .carousel-nav-btn.next-nav {
        right: 10px;
    }
    
    .miami-content-overlay {
        padding: 40px 0;
    }
}

/* Discover Your New Favorite Stay Section */
.discover-stay-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

/* Destination tabs horizontal scroller */
.destination-cards-container {
    position: relative;
    overflow: hidden;
}

.destination-cards-wrapper {
    overflow: hidden;
}

.destination-cards-wrapper .row.flex-nowrap {
    flex-wrap: nowrap !important;
}

.destination-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--expedia-border);
    background: var(--expedia-white);
    color: var(--expedia-dark-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.destination-nav-btn:hover {
    background: var(--expedia-light-gray);
}

.prev-destination { left: 8px; }
.next-destination { right: 8px; }

.discover-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
}

.discover-subtitle {
    font-size: 16px;
    color: #666;
    font-weight: 400;
    margin-bottom: 0;
}

.discover-card {
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.discover-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.discover-image-container {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.discover-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.discover-card:hover .discover-image {
    transform: scale(1.05);
}

.discover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 24px;
    transition: background 0.3s ease;
}

.discover-card:hover .discover-overlay {
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
}

.discover-content {
    color: white;
    width: 100%;
}

.discover-card-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: white;
}

.discover-card-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
    line-height: 1.4;
}

.discover-link {
    color: white;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 2px;
    transition: all 0.2s ease;
    display: inline-block;
}

.discover-link:hover {
    color: white;
    border-bottom-color: white;
    transform: translateY(-1px);
}

/* Responsive Design for Discover Section */
@media (max-width: 768px) {
    .discover-stay-section {
        padding: 60px 0;
    }
    
    .discover-title {
        font-size: 24px;
    }
    
    .discover-subtitle {
        font-size: 14px;
    }
    
    .discover-image-container {
        height: 240px;
    }
    
    .discover-overlay {
        padding: 20px;
    }
    
    .discover-card-title {
        font-size: 18px;
    }
    
    /* Hotel Slider Responsive */
    .hotel-card {
        flex: 0 0 calc(50% - 10px); /* Show 2 cards on tablet */
    }
}

@media (max-width: 576px) {
    .hotel-card {
        flex: 0 0 100%; /* Show 1 card on mobile */
        min-width: auto;
    }
    
    .hotel-slider-container {
        padding: 0 40px;
    }
}

@media (min-width: 1200px) {
    .hotel-card {
        flex: 0 0 calc(25% - 15px); /* Show 4 cards on large screens */
    }
}