@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800&display=swap');

/* Custom styles to augment Tailwind */

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

@supports (overflow: clip) {
    html,
    body {
        overflow-x: clip;
    }
}

/* Flatpickr Customization */
.flatpickr-calendar {
    box-shadow: none !important;
    border: none !important;
}

/* Ensure one month on mobile, two months on desktop fits in the main calendar view */
#view-calendar .flatpickr-calendar {
    width: 650px !important; /* Approx width for 2 months */
    max-width: 650px !important;
}

@media (max-width: 768px) {
    #view-calendar .flatpickr-calendar {
        width: 100% !important;
        max-width: 320px !important;
    }
}

.flatpickr-rContainer, .flatpickr-days, .dayContainer {
    width: auto !important;
    display: inline-block !important; 
}
.flatpickr-day {
    max-width: initial !important;
}

/* Flexible Calendar (Single) */
#view-flexible .flatpickr-calendar {
    width: 340px !important;
    margin: 0 auto;
}

@media (max-width: 768px) {
    #view-flexible .flatpickr-calendar {
        width: 100% !important;
        max-width: 320px !important;
    }
    #view-flexible .flex {
        flex-direction: column;
    }
}

.flatpickr-months {
    background: transparent !important;
    margin-bottom: 10px;
}

.flatpickr-current-month {
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    padding-top: 0 !important;
}

.flatpickr-weekdays {
    margin-bottom: 5px !important;
}

.flatpickr-weekday {
    color: #717171 !important;
    font-weight: 600 !important;
}

.flatpickr-day {
    border-radius: 50% !important; 
    font-weight: 500 !important;
    height: 40px;
    line-height: 40px;
}

.flatpickr-day.selected, .flatpickr-day.startRange, .flatpickr-day.endRange, .flatpickr-day.selected.inRange, /* ... overrides ... */ .flatpickr-day.today.selected {
    background: black !important;
    border-color: black !important;
}

/* Specific styling for the Flexible mode single day selection */
#view-flexible .flatpickr-day.selected {
    background: black !important;
    border-color: black !important;
}


.flatpickr-day.inRange {
    background: #f7f7f7 !important;
    border-color: #f7f7f7 !important;
    color: black !important;
    border-radius: 0 !important;
}

.flatpickr-day.startRange {
    border-radius: 50% 0 0 50% !important;
}

.flatpickr-day.endRange {
    border-radius: 0 50% 50% 0 !important;
}

/* Hide scrollbar for suggests */
#location-list::-webkit-scrollbar {
    width: 6px;
}
#location-list::-webkit-scrollbar-thumb {
    background-color: rgba(0,0,0,0.1);
    border-radius: 3px;
}

/* Hide scrollbar utility */
.hide-scrollbar::-webkit-scrollbar {
    display: none;
}
.hide-scrollbar {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

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

.animate-fade-in {
    animation: fadeIn 0.3s ease-out forwards;
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes logoSlideIn {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

.animate-logo {
    animation: logoSlideIn 1s ease-out forwards;
    display: inline-block;
}

.search-bar-container > div:active {
    transform: scale(0.98);
}

/* Owl Carousel Custom Navigation */
#homes-carousel .owl-nav {
    position: absolute;
    top: 128px; /* Center of h-64 (256px) image */
    left: 0;
    right: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 0; /* So it doesn't block clicks in the middle */
    pointer-events: none; /* Allow clicks through the container */
}

#homes-carousel .owl-nav button.owl-prev,
#homes-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 0; /* Relative to the nav container which is already positioned */
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.14) !important;
    border: 1px solid rgba(255, 255, 255, 0.28) !important;
    border-radius: 50% !important;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.14) !important;
    color: #ffffff !important;
    font-size: 24px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
    transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
    pointer-events: auto; /* Re-enable clicks on buttons */
}

#homes-carousel .owl-nav button.owl-prev:hover,
#homes-carousel .owl-nav button.owl-next:hover {
    background: rgba(0, 242, 195, 0.2) !important;
    border-color: rgba(0, 242, 195, 0.42) !important;
    box-shadow: 0 22px 42px rgba(0, 0, 0, 0.34), 0 0 28px rgba(0, 242, 195, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.18) !important;
    transform: translateY(-50%) scale(1.05);
}

#homes-carousel .owl-nav button.owl-prev {
    left: -20px; /* Adjust to overlap edge */
}

#homes-carousel .owl-nav button.owl-next {
    right: -20px; /* Adjust to overlap edge */
}

@media (max-width: 768px) {
    #homes-carousel .owl-nav button.owl-prev,
    #homes-carousel .owl-nav button.owl-next {
        width: 46px;
        height: 46px;
        font-size: 21px !important;
    }

    #homes-carousel .owl-nav button.owl-prev {
        left: 6px;
    }

    #homes-carousel .owl-nav button.owl-next {
        right: 6px;
    }
}

#homes-carousel .owl-nav button.owl-prev.disabled,
#homes-carousel .owl-nav button.owl-next.disabled {
    opacity: 0;
    pointer-events: none;
}

/* Photo Modal Styles */
#photo-modal {
    transition: opacity 0.3s ease;
}

#photo-modal.hidden {
    display: none;
    opacity: 0;
}

#photo-modal:not(.hidden) {
    display: flex;
    opacity: 1;
}

#modal-carousel .owl-stage {
    display: flex;
    align-items: center;
}

#modal-carousel .item img {
    max-height: 80vh;
    width: auto;
    margin: 0 auto;
    border-radius: 8px;
    object-fit: contain;
}

/* Modal Carousel Navigation */
#modal-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

#modal-carousel .owl-nav button {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 50% !important;
    color: white !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 24px !important;
    transition: all 0.2s ease;
    pointer-events: auto;
}

#modal-carousel .owl-nav button:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    transform: scale(1.1);
}

#modal-carousel .owl-dots {
    margin-top: 20px !important;
}

#modal-carousel .owl-dot span {
    background: rgba(255, 255, 255, 0.3) !important;
}

#modal-carousel .owl-dot.active span {
    background: white !important;
}

/* Global Logo Styles */
.neon-text-gradient {
    background: linear-gradient(90deg, #b066fe, #ff299f, #b066fe);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: move-gradient 4s linear infinite;
}

@keyframes move-gradient {
    to { background-position: 200% center; }
}

.font-outfit {
    font-family: 'Outfit', sans-serif;
}

.brand-gradient {
    background: linear-gradient(135deg, #b066fe 0%, #ff299f 100%);
}

/* Global Logo Styling */
.logo-img {
    height: 65px; /* Standardized height for desktop */
    width: auto;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .logo-img {
        height: 55px; /* Tablet height */
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 45px; /* Mobile height */
    }
}

.logo-img:hover {
    transform: scale(1.02);
}

/* --- List Property Page Styles --- */
.step-container { display: none; }
.step-container.active { display: block; }
.floating-label { transition: all 0.2s ease-out; pointer-events: none; }
.input-group:focus-within .floating-label,
.input-group input:not(:placeholder-shown)+.floating-label { transform: translateY(-1.2rem) scale(0.85); color: #6b7280; }
.animate-in { animation: slideIn 0.5s ease-out forwards; }
@keyframes slideIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.scrollbar-hide::-webkit-scrollbar { display: none; }
.scrollbar-hide { -ms-overflow-style: none; scrollbar-width: none; }
.error-border { border-color: #ef4444 !important; box-shadow: 0 0 0 1px #ef4444 !important; }

/* --- Party Page Styles --- */
:root {
    --neon-purple: #9d50bb;
    --neon-pink: #ff00cc;
    --neon-blue: #00d2ff;
    --dark-bg: #0d0d12;
    --card-bg: #1a1a24;
}
.party-page {
    background-color: var(--dark-bg);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}
.party-page h1, .party-page h2, .party-page h3, .party-page .font-outfit { font-family: 'Outfit', sans-serif; }
.glassmorphism { background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.1); }
.party-gradient { background: linear-gradient(135deg, var(--neon-purple) 0%, var(--neon-pink) 100%); }
.neon-border { border: 2px solid transparent; background-image: linear-gradient(var(--card-bg), var(--card-bg)), radial-gradient(circle at top left, var(--neon-purple), var(--neon-pink)); background-origin: border-box; background-clip: padding-box, border-box; }
.neon-glow { box-shadow: 0 0 15px rgba(157, 80, 187, 0.3); }
.search-box-glow { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 20px rgba(157, 80, 187, 0.2); border: 1px solid rgba(157, 80, 187, 0.3) !important; }
.neon-animate { animation: move-gradient 4s linear infinite; }
.shimmer-text { background: linear-gradient(120deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 70%); background-size: 200% 100%; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; animation: shimmer 3s infinite linear; }
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
/* --- Map Global Styles --- */
.leaflet-container {
    cursor: crosshair !important;
}

#map {
    cursor: crosshair;
}

/* --- Language & Currency Modal --- */
.lang-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lang-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.lang-modal {
    background: #fff;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    color: #222;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.lang-modal-header {
    padding: 24px 32px;
    border-bottom: 1px solid #eee;
    position: relative;
    background: #fff;
    z-index: 10;
}

.lang-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #222;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 16px;
    right: 16px;
}

.lang-modal-close:hover {
    background: #f7f7f7;
}

.lang-modal-tabs {
    display: flex;
    gap: 32px;
}

.lang-tab {
    font-size: 1rem;
    font-weight: 600;
    color: #717171;
    padding-bottom: 12px;
    cursor: pointer;
    position: relative;
    transition: color 0.2s;
}

.lang-tab:hover {
    color: #222;
}

.lang-tab.active {
    color: #222;
}

.lang-tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #222;
}

.lang-modal-body {
    padding: 32px;
    overflow-y: auto;
    flex: 1;
}

.translation-box {
    background: #f7f7f7;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.translation-info h4 {
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.translation-info p {
    font-size: 0.875rem;
    color: #717171;
}

.switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 30px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: #222;
}

input:checked+.slider:before {
    transform: translateX(18px);
}

.lang-section-title {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.lang-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}

@media (min-width: 768px) {
    .lang-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .lang-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.lang-item {
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    border: 1px solid transparent;
}

.lang-item:hover {
    background: #f7f7f7;
}

.lang-item.active {
    border-color: #222;
    background: #fff;
}

.lang-name {
    font-size: 0.875rem;
    font-weight: 500;
    display: block;
}

.lang-region {
    font-size: 0.875rem;
    color: #717171;
    display: block;
}

.currency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
}

.currency-item {
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
}

.currency-item:hover {
    background: #f7f7f7;
}

.currency-name {
    font-size: 0.875rem;
    font-weight: 500;
    display: block;
}

.currency-symbol {
    font-size: 0.875rem;
    color: #222;
    font-weight: 500;
    display: block;
}

.currency-region {
    font-size: 0.875rem;
    color: #717171;
    display: block;
}

/* Hide Scrollbar */
.lang-modal-body::-webkit-scrollbar {
    width: 8px;
}

.lang-modal-body::-webkit-scrollbar-track {
    background: transparent;
}

.lang-modal-body::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 10px;
}

.lang-modal-body::-webkit-scrollbar-thumb:hover {
    background: #ccc;
}

/* Premium global page loader */
#page-loader {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 18%, rgba(37, 99, 235, 0.16), transparent 35%),
        radial-gradient(circle at 82% 24%, rgba(139, 92, 246, 0.14), transparent 32%),
        radial-gradient(circle at 50% 84%, rgba(16, 185, 129, 0.12), transparent 38%),
        rgba(2, 8, 17, 0.9) !important;
    -webkit-backdrop-filter: blur(16px) saturate(125%);
    backdrop-filter: blur(16px) saturate(125%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    isolation: isolate;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

#page-loader::before,
#page-loader::after {
    content: "";
    position: absolute;
    width: clamp(18rem, 46vw, 38rem);
    aspect-ratio: 1;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(12px);
    opacity: 0.32;
    z-index: -1;
}

#page-loader::before {
    top: -24%;
    left: -12%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.28), transparent 66%);
    animation: loader-ambient-drift 8s ease-in-out infinite alternate;
}

#page-loader::after {
    right: -14%;
    bottom: -30%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.24), transparent 66%);
    animation: loader-ambient-drift 9s ease-in-out -3s infinite alternate-reverse;
}

#page-loader.loader-hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-experience {
    position: relative;
    display: flex;
    width: min(88vw, 27rem);
    flex-direction: column;
    align-items: center;
    padding: clamp(1.75rem, 5vw, 2.6rem) clamp(1.4rem, 5vw, 2.75rem);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: clamp(1.5rem, 4vw, 2rem);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.loader-experience::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.32), transparent 38%, rgba(139, 92, 246, 0.28));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.loader-logo-stage {
    position: relative;
    display: grid;
    width: clamp(7.2rem, 25vw, 9.2rem);
    aspect-ratio: 1;
    place-items: center;
    margin-bottom: clamp(1rem, 3vw, 1.35rem);
    animation: loader-float 3.2s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

.loader-logo-stage::before,
.loader-logo-stage::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.loader-logo-stage::before {
    inset: 3%;
    border: 1px solid rgba(103, 232, 249, 0.2);
    border-top-color: rgba(103, 232, 249, 0.8);
    border-right-color: rgba(139, 92, 246, 0.55);
    animation: loader-orbit 5s linear infinite;
}

.loader-logo-stage::after {
    inset: 16%;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.22), rgba(37, 99, 235, 0.08) 46%, transparent 72%);
    filter: blur(9px);
    animation: loader-glow 2.6s ease-in-out infinite;
}

.loader-icon {
    position: relative;
    z-index: 1;
    height: clamp(4.5rem, 16vw, 6.25rem);
    width: auto;
    max-width: 78%;
    object-fit: contain;
    filter: drop-shadow(0 0 14px rgba(34, 211, 238, 0.26)) drop-shadow(0 8px 18px rgba(0, 0, 0, 0.3));
}

.loader-message {
    display: flex;
    width: 100%;
    min-height: 3.15rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.76);
    font-family: 'Outfit', 'Inter', system-ui, sans-serif;
    text-align: center;
}

.loader-message-prefix {
    display: block;
    margin-bottom: 0.45rem;
    font-size: clamp(0.75rem, 2.5vw, 0.88rem);
    font-weight: 600;
    letter-spacing: 0.16em;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
}

.loader-words {
    display: inline-flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: clamp(0.28rem, 1.5vw, 0.55rem);
    font-size: clamp(0.68rem, 3vw, 0.94rem);
    line-height: 1.35;
    white-space: nowrap;
}

.loader-word {
    display: inline-block;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.loader-word-separator {
    color: rgba(255, 255, 255, 0.34);
    font-size: 0.7em;
    line-height: 1;
}

.loader-word-stay { color: #60a5fa; text-shadow: 0 0 18px rgba(96, 165, 250, 0.4); }
.loader-word-party { color: #a78bfa; text-shadow: 0 0 18px rgba(167, 139, 250, 0.4); }
.loader-word-care { color: #34d399; text-shadow: 0 0 18px rgba(52, 211, 153, 0.4); }
.loader-word-experiences { color: #22d3ee; text-shadow: 0 0 18px rgba(34, 211, 238, 0.4); }

.loader-progress {
    position: relative;
    width: min(8.5rem, 42vw);
    height: 2px;
    margin-top: 1.1rem;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
}

.loader-progress::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, transparent, #60a5fa, #34d399, #22d3ee, #a78bfa, transparent);
    transform: translateX(-100%);
    animation: loader-progress-sweep 1.7s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

@keyframes loader-word-cycle {
    0% { opacity: 0; transform: translateY(75%); filter: blur(5px); }
    6%, 20% { opacity: 1; transform: translateY(0); filter: blur(0); }
    25%, 100% { opacity: 0; transform: translateY(-75%); filter: blur(5px); }
}

@keyframes loader-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-7px); }
}

@keyframes loader-orbit { to { transform: rotate(360deg); } }

@keyframes loader-glow {
    0%, 100% { opacity: 0.55; transform: scale(0.94); }
    50% { opacity: 1; transform: scale(1.08); }
}

@keyframes loader-progress-sweep {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes loader-ambient-drift {
    0% { transform: translate3d(0, 0, 0) scale(1); }
    100% { transform: translate3d(6vw, 4vh, 0) scale(1.12); }
}

/* Ensure no scroll while loading */
body.loading {
    overflow: hidden;
}

@media (max-width: 768px) {
    #page-loader {
        -webkit-backdrop-filter: blur(11px) saturate(120%);
        backdrop-filter: blur(11px) saturate(120%);
    }

    .loader-experience { width: min(86vw, 23rem); }
}

@media (max-width: 380px) {
    .loader-experience { width: 90vw; padding-inline: 1rem; }
    .loader-words { gap: 0.25rem; }
}

@media (prefers-reduced-motion: reduce) {
    #page-loader::before,
    #page-loader::after,
    .loader-logo-stage,
    .loader-logo-stage::before,
    .loader-logo-stage::after,
    .loader-progress::after {
        animation: none;
    }

    .loader-word { animation-timing-function: ease-in-out; }
}

#main-nav {
    background: rgba(3, 9, 13, 0.86) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0 !important;
}

#main-nav .h-20 {
    height: 82px;
}

#main-nav .logo-img {
    height: 58px;
}

.home-wordmark {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    margin-left: 3px;
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1;
}

.home-wordmark-liv {
    background: linear-gradient(135deg, #00e6df 0%, #6fe36f 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.home-wordmark-asta {
    color: #ffffffdb;
}

#main-nav a,
#main-nav button {
    letter-spacing: 0;
}

#main-nav .hidden.md\:flex a {
    color: rgba(255, 255, 255, 0.78) !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    line-height: 1;
}

#main-nav .hidden.md\:flex a:hover {
    color: #ffffff !important;
}

#subscription-trigger {
    color: #e9fff8 !important;
    -webkit-text-fill-color: currentColor !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(0, 242, 195, 0.22) !important;
}

#btn-list-property {
    color: #00f2c3 !important;
    background: rgba(5, 18, 16, 0.72) !important;
    border: 1px solid rgba(239, 177, 64, 0.55) !important;
    box-shadow: 0 0 0 1px rgba(0, 242, 195, 0.04), 0 12px 28px rgba(0, 0, 0, 0.28);
}

.nav-lang-btn,
#mobile-menu-trigger {
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.055) !important;
    color: rgba(255, 255, 255, 0.82) !important;
}

#user-menu-dropdown {
    background: rgba(5, 14, 19, 0.96) !important;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 24px !important;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45) !important;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

#user-menu-dropdown .bg-gray-100 {
    background: rgba(255, 255, 255, 0.08) !important;
}

#user-menu-dropdown .text-gray-800,
#user-menu-dropdown .text-gray-900 {
    color: #ffffff !important;
}

#user-menu-dropdown .text-gray-500 {
    color: rgba(255, 255, 255, 0.52) !important;
}

#user-menu-dropdown .hover\:bg-gray-50:hover {
    background: rgba(255, 255, 255, 0.08) !important;
}

#user-menu-dropdown .group:hover .group-hover\:text-primary,
#user-menu-dropdown .group-hover\:text-primary:hover {
    color: #00f2c3 !important;
}

.relative.w-full.z-30 {
    background: linear-gradient(180deg, #061219 0%, #07161d 72%, #0b1d22 100%);
    padding: 86px 16px 96px;
}

.relative.h-\[450px\].md\:h-\[650px\].w-full {
    height: 590px !important;
    max-width: 1480px;
    margin: 0 auto;
    border-radius: 0 0 18px 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 -70px 84px rgba(0, 0, 0, 0.42);
}

.relative.h-\[450px\].md\:h-\[650px\].w-full > img {
    object-position: center 58%;
    filter: saturate(1.08) contrast(1.03) brightness(0.88);
}

.relative.h-\[450px\].md\:h-\[650px\].w-full > .absolute.inset-0 {
    background:
        linear-gradient(90deg, rgba(3, 9, 13, 0.82) 0%, rgba(3, 9, 13, 0.5) 42%, rgba(3, 9, 13, 0.08) 100%),
        linear-gradient(0deg, rgba(3, 9, 13, 0.64) 0%, rgba(3, 9, 13, 0) 48%) !important;
}

.relative.h-\[450px\].md\:h-\[650px\].w-full h1 {
    font-family: Georgia, "Times New Roman", serif !important;
    font-size: clamp(3.2rem, 6vw, 6.6rem) !important;
    line-height: 0.98 !important;
    letter-spacing: 0 !important;
    font-weight: 500 !important;
    margin-bottom: 22px !important;
}

.relative.h-\[450px\].md\:h-\[650px\].w-full h1 span {
    color: #00f2c3 !important;
    background: linear-gradient(90deg, #00e6df 0%, #70e07b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.relative.h-\[450px\].md\:h-\[650px\].w-full p {
    max-width: 520px;
    color: rgba(255, 255, 255, 0.82) !important;
    font-size: clamp(1rem, 1.5vw, 1.25rem) !important;
    line-height: 1.65 !important;
    margin-bottom: 26px !important;
}

.home-hero-proof {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 26px;
}

.home-proof-avatars {
    display: flex;
    align-items: center;
}

.home-proof-avatars span {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: -7px;
    border-radius: 999px;
    background: linear-gradient(135deg, #f9d99b, #1fbca1);
    border: 2px solid rgba(4, 11, 15, 0.9);
    color: #041016;
    font-size: 10px;
    font-weight: 900;
}

.home-proof-avatars span:first-child {
    margin-left: 0;
}

.home-hero-proof i {
    color: #f5b743;
}

.home-hero-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
}

.home-primary-btn,
.home-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 28px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 800;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.home-primary-btn {
    color: #ffffff;
    background: linear-gradient(135deg, #008eff 0%, #16c97d 100%);
    box-shadow: 0 14px 30px rgba(0, 142, 255, 0.25);
    gap: 10px;
}

.home-secondary-btn {
    color: #ffffff;
    border: 1px solid rgba(245, 183, 67, 0.75);
    background: rgba(5, 14, 19, 0.35);
}

.home-primary-btn:hover,
.home-secondary-btn:hover {
    transform: translateY(-2px);
}

.home-hero-toasts {
    position: absolute;
    top: 38%;
    right: clamp(34px, 7vw, 112px);
    z-index: 50;
    display: flex;
    width: min(28vw, 292px);
    min-width: 236px;
    flex-direction: column;
    gap: 16px;
    pointer-events: none;
}

.home-hero-toast {
    --toast-accent: #00f2c3;
    --toast-accent-rgb: 0, 242, 195;
    position: relative;
    display: flex;
    align-items: center;
    gap: 13px;
    min-height: 70px;
    padding: 13px 38px 13px 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    background:
        linear-gradient(135deg, rgba(21, 34, 34, 0.88), rgba(9, 12, 13, 0.78)),
        radial-gradient(circle at 8% 0%, rgba(var(--toast-accent-rgb), 0.16), transparent 42%);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    opacity: 0;
    overflow: hidden;
    pointer-events: auto;
    transform: translate3d(36px, 18px, 0) scale(0.96);
    transform-origin: center right;
    backface-visibility: hidden;
    will-change: transform, opacity;
}

.home-hero-toast:nth-child(2) {
    --toast-accent: #13d7f0;
    --toast-accent-rgb: 19, 215, 240;
    margin-left: 34px;
}

.home-hero-toast:nth-child(3) {
    --toast-accent: #f5b743;
    --toast-accent-rgb: 245, 183, 67;
    margin-left: 16px;
}

.home-toast-icon {
    position: relative;
    z-index: 1;
    display: grid;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    place-items: center;
    border: 1px solid rgba(var(--toast-accent-rgb), 0.34);
    border-radius: 12px;
    background: rgba(var(--toast-accent-rgb), 0.1);
    color: var(--toast-accent);
    font-size: 17px;
}

.home-toast-close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    display: grid;
    width: 20px;
    height: 20px;
    place-items: center;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #ffffff;
    cursor: pointer;
    font-size: 12px;
    line-height: 1;
}

.home-toast-copy {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 4px;
    min-width: 0;
}

.home-toast-copy strong {
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: 0;
}

.home-toast-copy small {
    color: rgba(255, 255, 255, 0.64);
    font-size: 8px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.absolute.bottom-16.left-1\/2 {
    bottom: -26px !important;
    max-width: 1320px !important;
    z-index: 70 !important;
}

.absolute.bottom-16.left-1\/2 > div {
    background: rgba(7, 22, 29, 0.96) !important;
    border: 1px solid rgba(123, 204, 207, 0.2) !important;
    border-radius: 18px !important;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.34) !important;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

#location-trigger,
#date-trigger,
#guest-trigger,
#date-trigger + div {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.12) !important;
}

#location-trigger:hover,
#date-trigger:hover,
#guest-trigger:hover,
#date-trigger + div:hover {
    background: rgba(255, 255, 255, 0.06) !important;
}

#location-trigger .uppercase,
#date-trigger .uppercase,
#guest-trigger .uppercase,
#date-trigger + div .uppercase {
    color: rgba(203, 225, 226, 0.68) !important;
}

#location-display,
#checkin-display,
#checkout-display,
#guest-display {
    color: #f7fffd !important;
    font-weight: 800 !important;
}

#location-display::placeholder {
    color: rgba(224, 239, 239, 0.7) !important;
}

#btn-search-main {
    width: auto !important;
    min-width: 148px;
    height: 56px !important;
    border-radius: 10px !important;
    background: linear-gradient(135deg, #008eff 0%, #16c97d 100%) !important;
    box-shadow: 0 12px 28px rgba(0, 142, 255, 0.25) !important;
    gap: 10px;
    padding: 0 28px;
}

#btn-search-main i::before {
    content: "\f061";
}

#btn-search-main::before {
    content: "Search";
    font-size: 13px;
    font-weight: 800;
}

#mobile-search-trigger {
    background: rgba(5, 16, 22, 0.96) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 18px !important;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.35) !important;
    color: #ffffff;
}

#mobile-search-trigger > div:first-child {
    background: rgba(0, 242, 195, 0.08) !important;
    color: #00f2c3 !important;
}

#mobile-search-trigger .text-gray-900 {
    color: #ffffff !important;
}

#mobile-search-trigger .text-gray-500 {
    color: rgba(255, 255, 255, 0.55) !important;
}

#mobile-search-trigger .text-gray-400 {
    color: rgba(255, 255, 255, 0.62) !important;
}

#location-dropdown,
#date-dropdown,
#guest-dropdown {
    background: rgba(7, 22, 29, 0.98) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 22px !important;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45) !important;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

#date-dropdown {
    z-index: 120 !important;
    margin-top: 18px !important;
    overflow: visible !important;
}

#date-dropdown::before {
    content: "";
    position: absolute;
    left: 24px;
    right: 24px;
    top: -12px;
    height: 12px;
}

#date-dropdown .flex.justify-center.border-b {
    background: rgba(255, 255, 255, 0.055) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 22px 22px 0 0;
}

#date-dropdown #tab-calendar,
#date-dropdown #tab-flexible {
    color: rgba(229, 245, 244, 0.64) !important;
    border: 1px solid transparent !important;
    background: transparent !important;
    box-shadow: none !important;
    opacity: 1 !important;
}

#date-dropdown #tab-calendar:hover,
#date-dropdown #tab-flexible:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.09) !important;
}

#date-dropdown #tab-calendar.border-b-2,
#date-dropdown #tab-flexible.border-b-2,
#date-dropdown #tab-calendar.bg-white,
#date-dropdown #tab-flexible.bg-white {
    color: #ffffff !important;
    background: rgba(0, 168, 132, 0.2) !important;
    border-color: rgba(0, 242, 195, 0.32) !important;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16) !important;
}

#date-dropdown #view-calendar,
#date-dropdown #view-flexible {
    background: rgba(255, 255, 255, 0.025) !important;
    color: #ffffff !important;
}

#date-dropdown #calendar-footer {
    background: rgba(255, 255, 255, 0.045) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 0 0 22px 22px;
}

#date-dropdown select,
#date-dropdown input,
#date-dropdown label,
#date-dropdown p,
#date-dropdown span,
#date-dropdown div {
    color: #ffffff;
}

#date-dropdown .text-gray-500,
#date-dropdown .text-gray-400 {
    color: rgba(229, 245, 244, 0.62) !important;
}

#date-dropdown .text-gray-800,
#date-dropdown .text-gray-900,
#date-dropdown .font-bold {
    color: #ffffff !important;
}

#date-dropdown #flex-state-empty,
#date-dropdown #flex-state-selected {
    background: rgba(255, 255, 255, 0.06) !important;
    border-color: rgba(255, 255, 255, 0.12) !important;
}

#date-dropdown select {
    background: rgba(255, 255, 255, 0.08) !important;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.14) !important;
}

#date-dropdown select option {
    color: #132126;
    background: #ffffff;
}

#date-dropdown #apply-dates,
#date-dropdown #apply-flex {
    color: #ffffff !important;
    background: #007a7a !important;
    border: 0 !important;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24), 0 0 0 1px rgba(0, 242, 195, 0.12) !important;
}

#date-dropdown #apply-dates:hover,
#date-dropdown #apply-flex:hover {
    background: #006666 !important;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(0, 242, 195, 0.18) !important;
}

#date-dropdown #apply-dates:focus-visible,
#date-dropdown #apply-flex:focus-visible {
    outline: 2px solid rgba(0, 242, 195, 0.62);
    outline-offset: 3px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.32), 0 0 0 4px rgba(0, 242, 195, 0.14) !important;
}

#location-dropdown .text-gray-400,
#guest-dropdown .text-gray-500 {
    color: rgba(255, 255, 255, 0.52) !important;
}

#location-dropdown .text-gray-800,
#guest-dropdown .text-gray-900,
#guest-dropdown .font-bold {
    color: #ffffff !important;
}

#location-list li:hover,
#guest-dropdown button:hover {
    background: rgba(255, 255, 255, 0.08) !important;
}

#date-dropdown .flatpickr-calendar {
    background: transparent !important;
    color: #ffffff !important;
}

#date-dropdown .flatpickr-current-month,
#date-dropdown .flatpickr-weekday,
#date-dropdown .flatpickr-day {
    color: #ffffff !important;
}

#date-dropdown .flatpickr-day.prevMonthDay,
#date-dropdown .flatpickr-day.nextMonthDay {
    color: rgba(255, 255, 255, 0.3) !important;
}

#date-dropdown .flatpickr-day:hover {
    background: rgba(0, 242, 195, 0.12) !important;
    border-color: rgba(0, 242, 195, 0.24) !important;
}

#date-dropdown .flatpickr-day.inRange,
#date-dropdown .flatpickr-day.prevMonthDay.inRange,
#date-dropdown .flatpickr-day.nextMonthDay.inRange {
    background: rgba(0, 242, 195, 0.16) !important;
    border-color: rgba(0, 242, 195, 0.04) !important;
    box-shadow: -5px 0 0 rgba(0, 242, 195, 0.16), 5px 0 0 rgba(0, 242, 195, 0.16) !important;
    color: rgba(255, 255, 255, 0.94) !important;
}

#date-dropdown .flatpickr-day.selected,
#date-dropdown .flatpickr-day.startRange,
#date-dropdown .flatpickr-day.endRange,
#date-dropdown .flatpickr-day.selected.inRange,
#date-dropdown .flatpickr-day.today.selected {
    background: rgba(0, 242, 195, 0.32) !important;
    border-color: rgba(0, 242, 195, 0.72) !important;
    box-shadow: 0 0 0 1px rgba(0, 242, 195, 0.36), 0 8px 18px rgba(0, 0, 0, 0.2) !important;
    color: #ffffff !important;
}

#date-dropdown .flatpickr-day.startRange {
    border-radius: 999px 0 0 999px !important;
}

#date-dropdown .flatpickr-day.endRange {
    border-radius: 0 999px 999px 0 !important;
}

#date-dropdown .flatpickr-day.startRange.endRange,
#date-dropdown .flatpickr-day.selected:not(.startRange):not(.endRange) {
    border-radius: 999px !important;
}

.relative.overflow-hidden.py-4 {
    background:
        radial-gradient(circle at 12% 0%, rgba(0, 242, 195, 0.14), transparent 34%),
        radial-gradient(circle at 88% 18%, rgba(245, 183, 67, 0.1), transparent 28%),
        linear-gradient(180deg, #061018 0%, #071b24 56%, #051017 100%) !important;
    padding: 42px 0 34px !important;
    border-top: 1px solid rgba(0, 242, 195, 0.1);
    border-bottom: 1px solid rgba(0, 242, 195, 0.14);
    z-index: 20;
}

.home-section-kicker {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    padding: 0 2px 18px;
}

.home-section-kicker span {
    color: rgba(0, 242, 195, 0.82);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.home-section-kicker strong {
    color: #ffffff;
    font-size: clamp(18px, 2.2vw, 28px);
    font-weight: 800;
    letter-spacing: 0;
}

.home-section-kicker-light span {
    color: rgba(0, 242, 195, 0.82);
}

.home-section-kicker-light strong {
    color: #ffffff;
}

.relative.overflow-hidden.py-4 .max-w-7xl > .flex {
    justify-content: space-between !important;
    gap: 16px !important;
    padding: 4px 8px 12px !important;
    border: 1px solid rgba(0, 242, 195, 0.12);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.055);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 22px 52px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.relative.overflow-hidden.py-4 .min-w-\[90px\] {
    --cat-accent: #00a7ff;
    --cat-accent-rgb: 0, 167, 255;
    min-width: 92px !important;
    padding: 10px 8px;
    border-radius: 16px;
}

.relative.overflow-hidden.py-4 .min-w-\[90px\]:nth-child(1) {
    --cat-accent: #6d5dfc;
    --cat-accent-rgb: 109, 93, 252;
}

.relative.overflow-hidden.py-4 .min-w-\[90px\]:nth-child(2) {
    --cat-accent: #0098d8;
    --cat-accent-rgb: 0, 152, 216;
}

.relative.overflow-hidden.py-4 .min-w-\[90px\]:nth-child(3) {
    --cat-accent: #00a878;
    --cat-accent-rgb: 0, 168, 120;
}

.relative.overflow-hidden.py-4 .min-w-\[90px\]:nth-child(4) {
    --cat-accent: #f59e0b;
    --cat-accent-rgb: 245, 158, 11;
}

.relative.overflow-hidden.py-4 .min-w-\[90px\]:nth-child(5) {
    --cat-accent: #e94f86;
    --cat-accent-rgb: 233, 79, 134;
}

.relative.overflow-hidden.py-4 .min-w-\[90px\]:nth-child(6) {
    --cat-accent: #0ea5e9;
    --cat-accent-rgb: 14, 165, 233;
}

.relative.overflow-hidden.py-4 .min-w-\[90px\]:nth-child(7) {
    --cat-accent: #10b981;
    --cat-accent-rgb: 16, 185, 129;
}

.relative.overflow-hidden.py-4 .min-w-\[90px\]:nth-child(8) {
    --cat-accent: #8b5cf6;
    --cat-accent-rgb: 139, 92, 246;
}

.relative.overflow-hidden.py-4 .min-w-\[90px\]:nth-child(9) {
    --cat-accent: #f97316;
    --cat-accent-rgb: 249, 115, 22;
}

.relative.overflow-hidden.py-4 .min-w-\[90px\] > div {
    width: 44px !important;
    height: 44px !important;
    border-radius: 999px !important;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(var(--cat-accent-rgb), 0.14)) !important;
    border: 1px solid rgba(var(--cat-accent-rgb), 0.34) !important;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22), 0 0 22px rgba(var(--cat-accent-rgb), 0.08) !important;
}

.relative.overflow-hidden.py-4 .min-w-\[90px\] i {
    color: var(--cat-accent) !important;
    font-size: 18px !important;
}

.relative.overflow-hidden.py-4 .min-w-\[90px\] span {
    color: rgba(235, 255, 250, 0.86) !important;
    text-transform: none !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 0 !important;
}

.relative.overflow-hidden.py-4 .min-w-\[90px\]:hover > div {
    border-color: rgba(var(--cat-accent-rgb), 0.58) !important;
    transform: translateY(-2px) !important;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(var(--cat-accent-rgb), 0.2)) !important;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.26), 0 0 28px rgba(var(--cat-accent-rgb), 0.16) !important;
}

.relative.overflow-hidden.py-4 .min-w-\[90px\]:hover i {
    color: var(--cat-accent) !important;
}

.relative.overflow-hidden.py-4 .min-w-\[90px\]:hover span {
    color: #ffffff !important;
}

.home-trust-strip {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    margin-top: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    overflow: visible;
}

.home-trust-wrap {
    background:
        radial-gradient(circle at 14% 0%, rgba(0, 242, 195, 0.1), transparent 30%),
        linear-gradient(180deg, #0b1d22 0%, #061018 100%);
    margin-top: -34px;
    padding: 106px 0 36px;
}

.home-trust-wrap .home-section-kicker span {
    color: rgba(0, 242, 195, 0.82);
}

.home-trust-wrap .home-section-kicker strong {
    color: #ffffff;
}

.home-trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    border: 1px solid rgba(0, 242, 195, 0.12);
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(7, 27, 36, 0.92), rgba(5, 16, 23, 0.82));
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.home-trust-item i {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #00f2c3;
    border: 1px solid rgba(0, 242, 195, 0.28);
    background: rgba(0, 242, 195, 0.08);
}

.home-trust-item.amber i {
    color: #f5b743;
    border-color: rgba(245, 183, 67, 0.3);
    background: rgba(245, 183, 67, 0.08);
}

.home-trust-item strong {
    display: block;
    color: #ffffff;
    font-size: 13px;
    line-height: 1.2;
}

.home-trust-item span {
    display: block;
    margin-top: 3px;
    color: rgba(235, 255, 250, 0.58);
    font-size: 11px;
}

.home-featured-section,
.home-best-section {
    position: relative;
    isolation: isolate;
}

.home-featured-section::before,
.home-best-section::before {
    content: "";
    position: absolute;
    top: -36px;
    bottom: -44px;
    left: 50%;
    z-index: -2;
    width: 100vw;
    max-width: 100vw;
    transform: translateX(-50%);
    background:
        radial-gradient(circle at 12% 0%, rgba(0, 242, 195, 0.14), transparent 34%),
        radial-gradient(circle at 88% 18%, rgba(245, 183, 67, 0.1), transparent 28%),
        linear-gradient(180deg, #061018 0%, #071b24 56%, #051017 100%);
}

.home-featured-section::after,
.home-best-section::after {
    content: "";
    position: absolute;
    top: -1px;
    right: 50%;
    z-index: -1;
    width: 100vw;
    height: 1px;
    transform: translateX(50%);
    background: linear-gradient(90deg, transparent, rgba(0, 242, 195, 0.26), transparent);
}

.home-best-section::after {
    display: none;
}

.home-featured-section h2,
.home-best-section h2 {
    color: #ffffff !important;
    text-shadow: 0 16px 38px rgba(0, 0, 0, 0.34);
}

.home-featured-section > .flex p,
.home-best-section > div:first-child p {
    color: rgba(235, 255, 250, 0.68) !important;
}

.home-featured-section > .grid > .group {
    border-color: rgba(0, 242, 195, 0.16) !important;
    background: rgba(255, 255, 255, 0.09) !important;
    box-shadow: 0 24px 52px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.home-featured-section > .grid > .group:hover {
    border-color: rgba(0, 242, 195, 0.26) !important;
    background: rgba(255, 255, 255, 0.13) !important;
    box-shadow: 0 30px 64px rgba(0, 0, 0, 0.3), 0 0 34px rgba(0, 242, 195, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}

.home-featured-section > .grid > .group h3,
.home-featured-section > .grid > .group .text-gray-900 {
    color: #ffffff !important;
}

.home-featured-section > .grid > .group p,
.home-featured-section > .grid > .group .text-gray-400,
.home-featured-section > .grid > .group .text-gray-500 {
    color: rgba(235, 255, 250, 0.66) !important;
}

.home-featured-section > .grid > .group .bg-gray-50 {
    background: rgba(255, 255, 255, 0.1) !important;
    color: rgba(255, 255, 255, 0.86);
}

.home-best-section #homes-carousel .item {
    color: #ffffff;
}

.home-best-section #homes-carousel h3,
.home-best-section #homes-carousel .font-bold:not(.neon-text-gradient) {
    color: #ffffff !important;
}

.home-best-section #homes-carousel p,
.home-best-section #homes-carousel .text-gray-500,
.home-best-section #homes-carousel .text-gray-700 {
    color: rgba(235, 255, 250, 0.68) !important;
}

.home-best-section #homes-carousel .item > .p-1 {
    padding: 12px 4px 4px;
}

.home-best-section #homes-carousel .item > .relative {
    border: 1px solid rgba(0, 242, 195, 0.12);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.28);
}

.home-deals-transition {
    position: relative;
    isolation: isolate;
    margin-top: 6rem !important;
    padding-top: 4px;
    padding-bottom: 112px;
}

.home-deals-transition::before {
    content: "";
    position: absolute;
    top: -64px;
    bottom: 0;
    left: 50%;
    width: 100vw;
    max-width: 100vw;
    transform: translateX(-50%);
    z-index: -2;
    background:
        radial-gradient(circle at 16% 10%, rgba(0, 242, 195, 0.12), transparent 30%),
        radial-gradient(circle at 84% 18%, rgba(245, 183, 67, 0.1), transparent 28%),
        linear-gradient(180deg,
            #071b24 0%,
            #0b2a2f 28%,
            #143a3d 52%,
            #10292e 76%,
            #061018 100%);
}

.home-deals-transition::after {
    content: "";
    position: absolute;
    left: 50%;
    width: 100vw;
    max-width: 100vw;
    transform: translateX(-50%);
    bottom: -1px;
    z-index: -1;
    height: 42%;
    background:
        linear-gradient(180deg, rgba(7, 27, 36, 0), rgba(0, 242, 195, 0.08) 44%, rgba(6, 16, 24, 0.72) 100%);
    pointer-events: none;
}

.home-deals-transition .section-header-mobile h2 {
    color: #ffffff;
    text-shadow: 0 16px 38px rgba(0, 0, 0, 0.34);
}

.home-deals-transition .section-header-mobile p {
    color: rgba(235, 255, 250, 0.68);
}

.home-deals-transition .masonry-deals {
    position: relative;
    z-index: 1;
}

.home-deals-transition .masonry-deals > div > div {
    box-shadow: 0 24px 52px rgba(5, 40, 42, 0.22);
}

.liv-ai-banner-section {
    background: #f7faf9;
    padding: 28px 0 42px;
}

.liv-ai-banner {
    position: relative;
    display: grid;
    grid-template-columns: 230px minmax(170px, 220px) minmax(0, 1fr);
    align-items: center;
    column-gap: clamp(20px, 2.2vw, 34px);
    row-gap: 18px;
    max-width: 1280px;
    min-height: 156px;
    margin: 0 auto;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    padding: 10px clamp(18px, 3vw, 34px) 10px 8px;
}

.liv-ai-banner::before,
.liv-ai-banner::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.liv-ai-banner::before {
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(0, 242, 195, 0.24) 1px, transparent 1.5px),
        linear-gradient(90deg, rgba(0, 242, 195, 0.08), transparent 34%);
    background-size: 22px 22px, 100% 100%;
    opacity: 0.35;
}

.liv-ai-banner::after {
    inset: 0;
    border-radius: inherit;
    box-shadow: none;
}

.liv-ai-visual {
    position: relative;
    z-index: 1;
    display: grid;
    width: 230px;
    height: 150px;
    place-items: center;
    overflow: hidden;
    border-radius: 18px;
}

.liv-ai-visual img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 0 16px rgba(0, 242, 195, 0.22));
}

.liv-ai-copy {
    position: relative;
    z-index: 1;
}

.liv-ai-copy h2 {
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(20px, 2.1vw, 30px);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: 0;
}

.liv-ai-copy h2 span {
    color: #00f2c3;
    font-family: 'Outfit', sans-serif;
    font-size: 0.82em;
    font-weight: 800;
}

.liv-ai-copy p {
    margin-top: 8px;
    max-width: 230px;
    color: rgba(235, 255, 250, 0.68);
    font-size: 12px;
    line-height: 1.45;
}

.liv-ai-features {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: nowrap;
    gap: clamp(14px, 1.5vw, 24px);
    align-items: center;
    justify-content: space-between;
    align-content: center;
    min-width: 0;
}

.liv-ai-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    width: max-content;
    max-width: min(100%, 220px);
    min-width: 0;
}

.liv-ai-feature i {
    display: inline-grid;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    place-items: center;
    border: 1px solid rgba(0, 242, 195, 0.18);
    border-radius: 12px;
    background: rgba(0, 242, 195, 0.07);
    color: #00f2c3;
    font-size: 21px;
}

.liv-ai-feature span,
.liv-ai-feature strong,
.liv-ai-feature small {
    display: block;
}

.liv-ai-feature strong {
    color: #ffffff;
    font-size: clamp(13px, 0.95vw, 15px);
    font-weight: 900;
    line-height: 1.25;
}

.liv-ai-feature small {
    margin-top: 5px;
    color: rgba(235, 255, 250, 0.66);
    font-size: clamp(10px, 0.75vw, 12px);
    font-weight: 700;
    line-height: 1.35;
}

.host-economy-section {
    background:
        radial-gradient(circle at 12% 0%, rgba(0, 242, 195, 0.14), transparent 34%),
        radial-gradient(circle at 88% 18%, rgba(245, 183, 67, 0.1), transparent 28%),
        linear-gradient(180deg, #061018 0%, #071b24 56%, #051017 100%);
    padding: 42px 0 44px;
}

.experience-host-shell {
    position: relative;
}

.experience-host-shell::before {
    content: "";
    position: absolute;
    inset: -42px 0 auto;
    height: 120px;
    background: linear-gradient(180deg, rgba(6, 16, 24, 0), rgba(6, 16, 24, 0.72));
    pointer-events: none;
}

.host-economy-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(360px, 1.18fr) minmax(260px, 1fr);
    gap: 14px;
}

.host-economy-grid::before {
    content: "";
    position: absolute;
    inset: 0 calc(33.333% + 7px) 0 0;
    border: 1px solid rgba(0, 242, 195, 0.14);
    border-radius: 18px;
    background:
        radial-gradient(circle at 14% 12%, rgba(0, 242, 195, 0.12), transparent 34%),
        linear-gradient(135deg, rgba(7, 27, 36, 0.94), rgba(5, 16, 23, 0.86));
    box-shadow: 0 22px 52px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.host-economy-panel {
    position: relative;
    min-height: 218px;
    overflow: hidden;
    border: 1px solid rgba(0, 242, 195, 0.12);
    border-radius: 14px;
    background:
        radial-gradient(circle at 8% 18%, rgba(0, 242, 195, 0.13), transparent 30%),
        linear-gradient(135deg, #061018 0%, #071b24 48%, #051017 100%);
    box-shadow: 0 18px 42px rgba(5, 16, 22, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.host-economy-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(0, 242, 195, 0.18) 1px, transparent 1.5px);
    background-size: 22px 22px;
    opacity: 0.14;
    pointer-events: none;
}

.host-economy-chart-card,
.host-onboarding-card {
    border-color: transparent;
    background: transparent;
    box-shadow: none;
}

.host-economy-chart-card {
    border-radius: 18px 0 0 18px;
}

.host-onboarding-card {
    border-radius: 0 18px 18px 0;
}

.host-onboarding-card::after {
    content: "";
    position: absolute;
    top: 24px;
    bottom: 24px;
    left: 0;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(0, 242, 195, 0.18), transparent);
}

.host-economy-chart-card {
    padding: 24px;
}

.host-economy-chart-copy {
    position: relative;
    z-index: 1;
    max-width: 230px;
}

.host-economy-chart-copy h2 {
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(24px, 2vw, 34px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0;
}

.host-economy-chart-copy h2 span {
    color: #00f2c3;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
}

.host-economy-chart-copy p,
.host-card-heading p,
.host-membership-copy p {
    color: rgba(235, 255, 250, 0.68);
    font-size: 12px;
    line-height: 1.45;
}

.host-economy-chart-copy p {
    margin-top: 12px;
}

.host-economy-chart {
    position: absolute;
    inset: 62px 20px 12px 18px;
}

.host-economy-chart svg {
    width: 100%;
    height: 100%;
}

.host-chart-grid path {
    fill: none;
    stroke: rgba(255, 255, 255, 0.05);
    stroke-width: 1;
}

.host-chart-line {
    fill: none;
    stroke: url(#hostChartLine);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 4;
    filter: drop-shadow(0 0 10px rgba(0, 242, 195, 0.34));
}

.host-chart-dots circle {
    fill: #00f2c3;
}

.host-growth-badge {
    position: absolute;
    top: 38px;
    right: 124px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 66px;
    min-height: 28px;
    border-radius: 8px;
    background: linear-gradient(135deg, #00a98d, #22d67b);
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 12px 24px rgba(0, 242, 195, 0.22);
}

.host-onboarding-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 24px 28px 20px;
    text-align: center;
}

.host-card-heading,
.host-steps,
.host-economy-btn,
.host-membership-copy,
.host-membership-card {
    position: relative;
    z-index: 1;
}

.host-card-heading h3,
.host-membership-title h3 {
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(20px, 1.7vw, 28px);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: 0;
}

.host-card-heading p,
.host-membership-copy p {
    margin-top: 8px;
}

.host-steps {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.host-steps div {
    min-width: 0;
}

.host-steps i {
    display: grid;
    width: 32px;
    height: 32px;
    margin: 0 auto 8px;
    place-items: center;
    border: 1px solid rgba(0, 242, 195, 0.2);
    border-radius: 10px;
    background: rgba(0, 242, 195, 0.08);
    color: #00f2c3;
    font-size: 14px;
}

.host-steps strong,
.host-steps small {
    display: block;
}

.host-steps strong {
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    line-height: 1.2;
}

.host-steps small {
    margin-top: 4px;
    color: rgba(235, 255, 250, 0.58);
    font-size: 8px;
    line-height: 1.25;
}

.host-economy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 154px;
    min-height: 34px;
    border-radius: 8px;
    background: linear-gradient(135deg, #008eff 0%, #16c97d 100%);
    color: #ffffff;
    font-size: 11px;
    font-weight: 900;
    box-shadow: 0 12px 26px rgba(0, 142, 255, 0.2);
}

.host-invest-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(132px, 42%);
    align-items: center;
    gap: 14px;
    min-height: 218px;
    padding: 24px 20px;
    background:
        radial-gradient(circle at 92% 22%, rgba(245, 183, 67, 0.16), transparent 32%),
        linear-gradient(135deg, #061018 0%, #071b24 48%, #051017 100%);
}

.host-invest-card::after {
    content: "";
    position: absolute;
    right: -42px;
    top: -18px;
    width: 220px;
    height: 220px;
    border-radius: 999px;
    background:
        repeating-radial-gradient(circle, rgba(245, 183, 67, 0.5) 0 1px, transparent 1px 8px);
    opacity: 0.42;
    pointer-events: none;
}

.host-membership-title {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.host-membership-title h3 {
    color: #f5d36b;
    font-size: clamp(18px, 1.45vw, 24px);
    white-space: nowrap;
}

.host-membership-title span {
    display: inline-flex;
    align-items: center;
    min-height: 20px;
    padding: 0 8px;
    border-radius: 4px;
    background: rgba(22, 201, 125, 0.18);
    color: #42e79b;
    font-size: 8px;
    font-weight: 900;
    white-space: nowrap;
}

.host-membership-list {
    display: grid;
    gap: 8px;
    margin: 16px 0 16px;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.25;
}

.host-membership-list li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.host-membership-list i {
    color: #f5b743;
    font-size: 10px;
}

.host-membership-btn {
    min-width: 160px;
}

.host-membership-card {
    display: grid;
    min-height: 118px;
    padding: 20px 18px;
    align-content: center;
    justify-items: center;
    border: 1px solid rgba(245, 183, 67, 0.28);
    border-radius: 14px;
    background: linear-gradient(145deg, #0b0f13 0%, #060708 100%);
    box-shadow: 0 22px 32px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transform: rotate(8deg);
}

.host-membership-card img {
    width: 52px;
    height: auto;
    margin-bottom: 8px;
    filter: drop-shadow(0 0 12px rgba(0, 242, 195, 0.44));
}

.host-membership-card strong {
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.host-membership-card small {
    margin-top: 3px;
    color: #f5b743;
    font-size: 8px;
    font-weight: 800;
}

.host-membership-card span {
    justify-self: end;
    margin-top: 10px;
    color: #f5b743;
    font-size: 7px;
    font-weight: 800;
    transform: rotate(-4deg);
}

.host-ai-banner-wrap {
    position: relative;
    isolation: isolate;
    box-sizing: border-box;
    width: 100%;
    margin-top: -34px;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 50%, rgba(0, 242, 195, 0.16), transparent 26%),
        linear-gradient(90deg, #061018 0%, #071b24 46%, #051017 100%);
    padding: 92px max(16px, calc((100vw - 1280px) / 2 + 16px)) 58px;
}

#membership-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        radial-gradient(circle, rgba(0, 242, 195, 0.24) 1px, transparent 1.5px),
        linear-gradient(90deg, rgba(0, 242, 195, 0.08), transparent 34%);
    background-size: 22px 22px, 100% 100%;
    opacity: 0.35;
}

#membership-banner .liv-ai-banner {
    z-index: 1;
}

#membership-banner .liv-ai-banner::before {
    display: none;
}

.experience-host-shell .home-trust-wrap {
    margin-top: 18px;
    padding: 22px 0 0;
    background: transparent;
}

.experience-host-shell .home-trust-wrap > .max-w-7xl {
    padding-right: 0;
    padding-left: 0;
}

.site-footer {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 4%, rgba(0, 242, 195, 0.14), transparent 28%),
        linear-gradient(90deg, #061018 0%, #071b24 46%, #051017 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(0, 242, 195, 0.12) 1px, transparent 1.5px);
    background-size: 24px 24px;
    opacity: 0.12;
    pointer-events: none;
}

.site-footer > div {
    position: relative;
    z-index: 1;
}

.footer-brand-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.site-footer .logo-img {
    height: 42px;
}

.footer-wordmark {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1;
}

.footer-wordmark-liv {
    background: linear-gradient(135deg, #00e6df 0%, #6fe36f 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-wordmark-asta {
    color: rgba(235, 255, 250, 0.92);
}

@media (max-width: 1024px) {
    .home-hero-toasts {
        top: 42%;
        right: 24px;
        width: 224px;
        min-width: 0;
        gap: 12px;
    }

    .home-hero-toast {
        min-height: 62px;
        padding: 11px 13px;
        border-radius: 12px;
    }

    .home-hero-toast:nth-child(2),
    .home-hero-toast:nth-child(3) {
        margin-left: 0;
    }

    .home-toast-icon {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
        border-radius: 10px;
        font-size: 15px;
    }

    .home-toast-copy strong {
        font-size: 13px;
    }

    .home-toast-copy small {
        font-size: 7.5px;
    }

    .home-trust-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-trust-item {
        border-bottom: 1px solid rgba(16, 39, 44, 0.08);
    }

    .liv-ai-banner {
        grid-template-columns: 190px minmax(0, 1fr);
        gap: 18px 20px;
        padding: 18px;
    }

    .liv-ai-visual {
        width: 190px;
        height: 124px;
    }

    .liv-ai-visual img {
        width: 100%;
    }

    .liv-ai-features {
        grid-column: 1 / -1;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 16px;
    }

    .liv-ai-feature {
        gap: 12px;
        flex: 0 1 calc(50% - 8px);
        width: auto;
        max-width: none;
    }

    .liv-ai-feature i {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
        font-size: 19px;
    }

    .host-economy-grid {
        grid-template-columns: 1fr 1fr;
    }

    .host-economy-grid::before {
        inset: 0 0 auto 0;
        height: 218px;
    }

    .host-onboarding-card {
        grid-column: auto;
    }

    .host-invest-card {
        grid-column: 1 / -1;
    }

    .host-steps {
        grid-template-columns: repeat(5, minmax(80px, 1fr));
        overflow-x: auto;
        padding-bottom: 2px;
    }

    .host-invest-card {
        grid-template-columns: minmax(0, 1fr) 160px;
    }

    .host-membership-card {
        min-height: 110px;
    }
}

@media (min-width: 1025px) and (max-width: 1180px) {
    .home-hero-toasts {
        right: 30px;
        width: 248px;
    }

    .home-wordmark {
        font-size: 15px;
        margin-left: 2px;
    }
}

@media (max-width: 768px) {
    .relative.w-full.z-30 {
        padding: 78px 0 74px;
    }

    .relative.h-\[450px\].md\:h-\[650px\].w-full {
        height: 480px !important;
        border-radius: 0 0 28px 28px;
        border-left: 0;
        border-right: 0;
    }

    .relative.h-\[450px\].md\:h-\[650px\].w-full h1 {
        font-size: 3.2rem !important;
    }

    .relative.h-\[450px\].md\:h-\[650px\].w-full p {
        font-size: 1rem !important;
        max-width: 320px;
    }

    .relative.overflow-hidden.py-4 {
        padding-top: 52px !important;
    }

    .home-wordmark {
        display: none;
    }

    .home-hero-toasts {
        display: none;
    }

    .home-section-kicker {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
        padding-bottom: 14px;
    }

    .home-section-kicker strong {
        font-size: 20px;
    }

    .home-trust-strip {
        grid-template-columns: 1fr;
    }

    .home-trust-item {
        border-right: 0;
        border-bottom: 0;
    }

    .liv-ai-banner-section {
        padding: 20px 0 34px;
    }

    .host-ai-banner-wrap {
        margin-top: -28px;
        padding: 70px 18px 42px;
    }

    .liv-ai-banner {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        border-radius: 18px;
        padding: 22px 18px 24px;
    }

    .liv-ai-visual {
        width: min(230px, 84vw);
        height: min(150px, 55vw);
    }

    .liv-ai-visual img {
        width: 100%;
    }

    .liv-ai-copy p {
        max-width: 280px;
    }

    .liv-ai-features {
        width: 100%;
        justify-content: stretch;
        gap: 12px;
    }

    .liv-ai-feature {
        flex: 1 1 100%;
        width: auto;
        max-width: none;
        justify-content: flex-start;
        text-align: left;
        border: 1px solid rgba(0, 242, 195, 0.1);
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.025);
        padding: 12px;
    }

    .liv-ai-feature i {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
        font-size: 18px;
    }

    .host-economy-section {
        padding: 34px 0 30px;
    }

    .host-economy-grid {
        grid-template-columns: 1fr;
    }

    .host-economy-grid::before {
        inset: 0 0 auto 0;
        height: 510px;
        border-radius: 18px;
    }

    .host-economy-panel {
        min-height: auto;
    }

    .host-economy-chart-card {
        min-height: 230px;
        padding: 22px;
        border-radius: 18px 18px 0 0;
    }

    .host-economy-chart {
        inset: 80px 16px 12px;
    }

    .host-growth-badge {
        top: 58px;
        right: 74px;
    }

    .host-onboarding-card {
        border-radius: 0 0 18px 18px;
        padding: 24px 18px;
    }

    .host-onboarding-card::after {
        top: 0;
        right: 18px;
        bottom: auto;
        left: 18px;
        width: auto;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(0, 242, 195, 0.18), transparent);
    }

    .host-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        overflow: visible;
    }

    .host-steps i {
        margin-bottom: 7px;
    }

    .host-economy-btn {
        width: 100%;
        max-width: 260px;
    }

    .host-invest-card {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 24px 18px;
        text-align: left;
    }

    .host-membership-title {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .host-membership-title h3 {
        white-space: normal;
    }

    .host-membership-card {
        width: min(260px, 86%);
        margin: 0 auto 4px;
        transform: rotate(3deg);
    }

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

    .footer-brand-link {
        justify-content: center;
    }

    .site-footer .logo-img {
        height: 36px;
    }

    .footer-wordmark {
        font-size: 16px;
    }
}

/* LIVASTA mobile search overlay theme */
@media (max-width: 767px) {
    #full-screen-search {
        position: fixed;
        inset: 0;
        z-index: 9999;
        display: none;
        flex-direction: column;
        overflow-y: auto;
        background:
            radial-gradient(circle at 14% 8%, rgba(21, 174, 176, 0.28), transparent 30%),
            radial-gradient(circle at 92% 18%, rgba(124, 58, 237, 0.22), transparent 32%),
            linear-gradient(145deg, #031015 0%, #07161d 46%, #0b1325 100%) !important;
        color: #f8ffff;
        -webkit-overflow-scrolling: touch;
    }

    #full-screen-search::before {
        content: "";
        position: fixed;
        inset: 0;
        pointer-events: none;
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 24%),
            radial-gradient(circle at 50% 105%, rgba(0, 242, 195, 0.12), transparent 40%);
        opacity: 0.9;
    }

    #full-screen-search .search-step-header,
    #full-screen-search > .flex-1,
    #full-screen-search .search-bottom-bar {
        position: relative;
        z-index: 1;
    }

    #full-screen-search .search-step-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 18px 12px;
        background: rgba(3, 16, 21, 0.72);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(22px);
        -webkit-backdrop-filter: blur(22px);
    }

    #close-search-overlay {
        background: rgba(255, 255, 255, 0.08) !important;
        border-color: rgba(255, 255, 255, 0.18) !important;
        color: #ffffff !important;
        box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
    }

    #full-screen-search .search-step-header a {
        color: rgba(235, 255, 252, 0.62) !important;
        border-color: transparent !important;
    }

    #full-screen-search .search-step-header a:first-child {
        color: #ffffff !important;
        border-bottom-color: #15AEB0 !important;
    }

    #full-screen-search > .flex-1 {
        padding: 16px 14px 112px;
    }

    #full-screen-search .search-step-card {
        margin: 0 0 12px;
        padding: 18px;
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.075) !important;
        border: 1px solid rgba(255, 255, 255, 0.12) !important;
        color: #f8ffff;
        box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        transition: transform 240ms ease, border-color 240ms ease, background 240ms ease, box-shadow 240ms ease;
    }

    #full-screen-search .search-step-card.active {
        background:
            linear-gradient(145deg, rgba(8, 31, 39, 0.96), rgba(13, 26, 47, 0.92)) !important;
        border-color: rgba(21, 174, 176, 0.55) !important;
        box-shadow:
            0 24px 70px rgba(0, 0, 0, 0.46),
            0 0 0 1px rgba(0, 242, 195, 0.08) inset,
            0 0 34px rgba(21, 174, 176, 0.18);
        transform: translateY(-1px);
    }

    #full-screen-search h3,
    #full-screen-search .font-bold,
    #full-screen-search .font-black,
    #full-screen-search #mobile-date-summary,
    #full-screen-search #mobile-guest-summary {
        color: #ffffff !important;
    }

    #full-screen-search .text-gray-800,
    #full-screen-search .text-gray-700,
    #full-screen-search .text-gray-600,
    #full-screen-search .text-gray-500,
    #full-screen-search .text-gray-400 {
        color: rgba(230, 249, 247, 0.72) !important;
    }

    #full-screen-search .uppercase,
    #full-screen-search label,
    #full-screen-search .text-xs {
        color: rgba(184, 221, 221, 0.78) !important;
    }

    #mobile-location-input,
    #mobile-time-checkin,
    #mobile-time-checkout {
        background: rgba(255, 255, 255, 0.08) !important;
        border: 1px solid rgba(255, 255, 255, 0.12) !important;
        color: #ffffff !important;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22) inset;
    }

    #mobile-location-input::placeholder {
        color: rgba(230, 249, 247, 0.52) !important;
    }

    #mobile-location-input:focus,
    #mobile-time-checkin:focus,
    #mobile-time-checkout:focus {
        border-color: rgba(21, 174, 176, 0.86) !important;
        box-shadow: 0 0 0 3px rgba(21, 174, 176, 0.16) !important;
    }

    #full-screen-search .fa-magnifying-glass {
        color: #00f2c3 !important;
        background: none !important;
        -webkit-text-fill-color: currentColor;
    }

    #full-screen-search img {
        border-color: rgba(255, 255, 255, 0.18) !important;
        box-shadow: 0 12px 26px rgba(0, 0, 0, 0.28);
    }

    #full-screen-search .cursor-pointer span {
        color: rgba(248, 255, 255, 0.9) !important;
    }

    #mobile-date-picker-container,
    #mobile-guest-picker-container {
        color: #f8ffff;
    }

    #mobile-date-picker-container .bg-gray-100,
    #mobile-view-flexible .bg-gray-100 {
        background: rgba(255, 255, 255, 0.08) !important;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    #mobile-tab-calendar,
    #mobile-tab-flexible {
        background: transparent !important;
        color: rgba(230, 249, 247, 0.72) !important;
        box-shadow: none !important;
        transition: 180ms ease;
    }

    #mobile-tab-calendar.bg-white,
    #mobile-tab-flexible.bg-white,
    #mobile-tab-calendar.font-bold,
    #mobile-tab-flexible.font-bold {
        background: linear-gradient(135deg, rgba(21, 174, 176, 0.95), rgba(0, 142, 255, 0.86)) !important;
        color: #ffffff !important;
        box-shadow: 0 10px 24px rgba(21, 174, 176, 0.24) !important;
    }

    #mobile-inline-calendar,
    #mobile-flexible-calendar,
    #mobile-inline-calendar .flatpickr-calendar,
    #mobile-flexible-calendar .flatpickr-calendar {
        background: transparent !important;
        color: #ffffff !important;
        box-shadow: none !important;
    }

    #full-screen-search .flatpickr-months,
    #full-screen-search .flatpickr-weekdays,
    #full-screen-search .flatpickr-current-month,
    #full-screen-search .flatpickr-monthDropdown-months,
    #full-screen-search .numInputWrapper span,
    #full-screen-search .flatpickr-weekday {
        color: rgba(235, 255, 252, 0.82) !important;
        fill: rgba(235, 255, 252, 0.82) !important;
    }

    #full-screen-search .flatpickr-day {
        color: rgba(248, 255, 255, 0.88) !important;
        border-color: transparent !important;
    }

    #full-screen-search .flatpickr-day:hover,
    #full-screen-search .flatpickr-day.inRange {
        background: rgba(21, 174, 176, 0.18) !important;
        border-color: rgba(21, 174, 176, 0.18) !important;
    }

    #full-screen-search .flatpickr-day.selected,
    #full-screen-search .flatpickr-day.startRange,
    #full-screen-search .flatpickr-day.endRange {
        background: linear-gradient(135deg, #15AEB0, #008eff) !important;
        border-color: #15AEB0 !important;
        color: #ffffff !important;
        box-shadow: 0 8px 18px rgba(21, 174, 176, 0.28);
    }

    #full-screen-search .flatpickr-day.disabled,
    #full-screen-search .flatpickr-day.prevMonthDay,
    #full-screen-search .flatpickr-day.nextMonthDay {
        color: rgba(230, 249, 247, 0.28) !important;
    }

    #full-screen-search button[onclick^="updateGuestHome"] {
        background: rgba(255, 255, 255, 0.07) !important;
        border-color: rgba(255, 255, 255, 0.16) !important;
        color: #dffbf8 !important;
    }

    #mobile-pet-toggle + div {
        background: rgba(255, 255, 255, 0.18) !important;
    }

    #mobile-pet-toggle:checked + div,
    #mobile-pet-toggle.peer:checked + div {
        background: linear-gradient(135deg, #15AEB0, #7c3aed) !important;
    }

    #full-screen-search .search-bottom-bar {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        padding: 14px 18px calc(14px + env(safe-area-inset-bottom));
        background: rgba(3, 16, 21, 0.86) !important;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        backdrop-filter: blur(22px);
        -webkit-backdrop-filter: blur(22px);
        box-shadow: 0 -18px 44px rgba(0, 0, 0, 0.3);
    }

    #clear-all-mobile {
        color: rgba(235, 255, 252, 0.78) !important;
        text-underline-offset: 4px;
    }

    #mobile-search-btn,
    #mobile-apply-flex {
        background: linear-gradient(135deg, #008eff 0%, #15AEB0 48%, #16c97d 100%) !important;
        color: #ffffff !important;
        box-shadow: 0 16px 34px rgba(0, 142, 255, 0.28) !important;
    }
}

/* Mobile calendar: match Home desktop date theme */
@media (max-width: 767px) {
    #full-screen-search #mobile-date-picker-container {
        margin-top: 18px;
        padding: 14px;
        border-radius: 22px;
        background:
            radial-gradient(circle at 12% 4%, rgba(0, 242, 195, 0.12), transparent 34%),
            radial-gradient(circle at 90% 20%, rgba(124, 58, 237, 0.12), transparent 30%),
            rgba(255, 255, 255, 0.045) !important;
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    }

    #full-screen-search #mobile-view-calendar,
    #full-screen-search #mobile-view-flexible {
        border-radius: 20px;
        background: rgba(3, 16, 21, 0.38);
        border: 1px solid rgba(255, 255, 255, 0.08);
        padding: 12px 8px;
    }

    #full-screen-search #mobile-inline-calendar,
    #full-screen-search #mobile-flexible-calendar {
        display: flex;
        justify-content: center;
        width: 100%;
        overflow: hidden;
    }

    #full-screen-search #mobile-inline-calendar .flatpickr-calendar,
    #full-screen-search #mobile-flexible-calendar .flatpickr-calendar {
        width: 100% !important;
        max-width: 336px !important;
        padding: 8px 0 4px;
        border: 0 !important;
        border-radius: 18px !important;
        background: transparent !important;
        box-shadow: none !important;
    }

    #full-screen-search #mobile-inline-calendar .flatpickr-rContainer,
    #full-screen-search #mobile-inline-calendar .flatpickr-days,
    #full-screen-search #mobile-inline-calendar .dayContainer,
    #full-screen-search #mobile-flexible-calendar .flatpickr-rContainer,
    #full-screen-search #mobile-flexible-calendar .flatpickr-days,
    #full-screen-search #mobile-flexible-calendar .dayContainer {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 336px !important;
    }

    #full-screen-search .flatpickr-months {
        align-items: center;
        margin-bottom: 12px !important;
        padding: 0 4px;
    }

    #full-screen-search .flatpickr-months .flatpickr-prev-month,
    #full-screen-search .flatpickr-months .flatpickr-next-month {
        top: 2px !important;
        width: 34px;
        height: 34px;
        padding: 9px !important;
        border-radius: 999px;
        color: rgba(235, 255, 252, 0.9) !important;
        fill: rgba(235, 255, 252, 0.9) !important;
        background: rgba(255, 255, 255, 0.075);
        transition: 180ms ease;
    }

    #full-screen-search .flatpickr-months .flatpickr-prev-month:hover,
    #full-screen-search .flatpickr-months .flatpickr-next-month:hover {
        background: rgba(0, 242, 195, 0.12) !important;
        color: #00f2c3 !important;
        fill: #00f2c3 !important;
    }

    #full-screen-search .flatpickr-current-month {
        color: #ffffff !important;
        font-size: 1rem !important;
        font-weight: 900 !important;
        text-shadow: 0 1px 14px rgba(0, 242, 195, 0.14);
    }

    #full-screen-search .flatpickr-current-month input.cur-year,
    #full-screen-search .flatpickr-current-month .cur-month,
    #full-screen-search .flatpickr-monthDropdown-months {
        color: #ffffff !important;
        font-weight: 900 !important;
        background: transparent !important;
    }

    #full-screen-search .flatpickr-weekdays {
        margin-bottom: 8px !important;
    }

    #full-screen-search .flatpickr-weekday {
        color: rgba(184, 221, 221, 0.74) !important;
        font-size: 10px !important;
        font-weight: 900 !important;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    #full-screen-search .flatpickr-day {
        height: 38px !important;
        line-height: 38px !important;
        margin: 1px 0 !important;
        color: rgba(248, 255, 255, 0.88) !important;
        font-weight: 800 !important;
        border: 1px solid transparent !important;
        border-radius: 999px !important;
        background: transparent !important;
    }

    #full-screen-search .flatpickr-day:hover,
    #full-screen-search .flatpickr-day.today:hover {
        background: rgba(0, 242, 195, 0.12) !important;
        border-color: rgba(0, 242, 195, 0.24) !important;
        color: #ffffff !important;
    }

    #full-screen-search .flatpickr-day.today:not(.selected):not(.startRange):not(.endRange) {
        border-color: rgba(0, 242, 195, 0.5) !important;
        color: #ffffff !important;
    }

    #full-screen-search .flatpickr-day.inRange,
    #full-screen-search .flatpickr-day.prevMonthDay.inRange,
    #full-screen-search .flatpickr-day.nextMonthDay.inRange {
        background: rgba(0, 242, 195, 0.14) !important;
        border-color: rgba(0, 242, 195, 0.04) !important;
        box-shadow: -5px 0 0 rgba(0, 242, 195, 0.14), 5px 0 0 rgba(0, 242, 195, 0.14) !important;
        color: rgba(255, 255, 255, 0.94) !important;
        border-radius: 0 !important;
    }

    #full-screen-search .flatpickr-day.selected,
    #full-screen-search .flatpickr-day.startRange,
    #full-screen-search .flatpickr-day.endRange,
    #full-screen-search .flatpickr-day.selected.inRange,
    #full-screen-search .flatpickr-day.today.selected {
        background: rgba(0, 242, 195, 0.26) !important;
        border-color: rgba(0, 242, 195, 0.68) !important;
        color: #ffffff !important;
        box-shadow: 0 0 0 1px rgba(0, 242, 195, 0.34), 0 8px 18px rgba(0, 0, 0, 0.22) !important;
    }

    #full-screen-search .flatpickr-day.startRange {
        border-radius: 999px 0 0 999px !important;
    }

    #full-screen-search .flatpickr-day.endRange {
        border-radius: 0 999px 999px 0 !important;
    }

    #full-screen-search .flatpickr-day.startRange.endRange,
    #full-screen-search .flatpickr-day.selected:not(.startRange):not(.endRange) {
        border-radius: 999px !important;
    }

    #full-screen-search .flatpickr-day.disabled,
    #full-screen-search .flatpickr-day.prevMonthDay,
    #full-screen-search .flatpickr-day.nextMonthDay,
    #full-screen-search .flatpickr-day.notAllowed {
        color: rgba(230, 249, 247, 0.26) !important;
        background: transparent !important;
        border-color: transparent !important;
    }

    #full-screen-search #mobile-apply-flex {
        border: 1px solid rgba(255, 255, 255, 0.14) !important;
        background: linear-gradient(135deg, #008eff 0%, #15AEB0 48%, #16c97d 100%) !important;
        box-shadow: 0 16px 34px rgba(0, 142, 255, 0.28), 0 0 0 1px rgba(0, 242, 195, 0.12) inset !important;
    }
}

/* Mobile calendar readability fix: force dark LIVASTA calendar internals */
@media (max-width: 767px) {
    #full-screen-search #mobile-inline-calendar .flatpickr-calendar,
    #full-screen-search #mobile-flexible-calendar .flatpickr-calendar,
    #full-screen-search #mobile-inline-calendar .flatpickr-calendar.inline,
    #full-screen-search #mobile-flexible-calendar .flatpickr-calendar.inline {
        background:
            radial-gradient(circle at 18% 0%, rgba(0, 242, 195, 0.16), transparent 36%),
            radial-gradient(circle at 90% 10%, rgba(124, 58, 237, 0.14), transparent 32%),
            linear-gradient(145deg, rgba(3, 16, 21, 0.98), rgba(7, 22, 29, 0.96) 54%, rgba(11, 19, 37, 0.96)) !important;
        border: 1px solid rgba(0, 242, 195, 0.16) !important;
        box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.07) !important;
        padding: 12px 8px 10px !important;
    }

    #full-screen-search #mobile-inline-calendar .flatpickr-innerContainer,
    #full-screen-search #mobile-flexible-calendar .flatpickr-innerContainer,
    #full-screen-search #mobile-inline-calendar .flatpickr-rContainer,
    #full-screen-search #mobile-flexible-calendar .flatpickr-rContainer,
    #full-screen-search #mobile-inline-calendar .flatpickr-days,
    #full-screen-search #mobile-flexible-calendar .flatpickr-days,
    #full-screen-search #mobile-inline-calendar .dayContainer,
    #full-screen-search #mobile-flexible-calendar .dayContainer {
        background: transparent !important;
        color: #f8ffff !important;
        border: 0 !important;
        box-shadow: none !important;
    }

    #full-screen-search #mobile-inline-calendar .flatpickr-months,
    #full-screen-search #mobile-flexible-calendar .flatpickr-months,
    #full-screen-search #mobile-inline-calendar .flatpickr-weekdays,
    #full-screen-search #mobile-flexible-calendar .flatpickr-weekdays,
    #full-screen-search #mobile-inline-calendar .flatpickr-weekdaycontainer,
    #full-screen-search #mobile-flexible-calendar .flatpickr-weekdaycontainer {
        background: transparent !important;
        color: #f8ffff !important;
    }

    #full-screen-search #mobile-inline-calendar .flatpickr-current-month,
    #full-screen-search #mobile-flexible-calendar .flatpickr-current-month,
    #full-screen-search #mobile-inline-calendar .flatpickr-current-month .cur-month,
    #full-screen-search #mobile-flexible-calendar .flatpickr-current-month .cur-month,
    #full-screen-search #mobile-inline-calendar .flatpickr-current-month input.cur-year,
    #full-screen-search #mobile-flexible-calendar .flatpickr-current-month input.cur-year,
    #full-screen-search #mobile-inline-calendar .flatpickr-monthDropdown-months,
    #full-screen-search #mobile-flexible-calendar .flatpickr-monthDropdown-months {
        color: #ffffff !important;
        -webkit-text-fill-color: #ffffff !important;
        text-shadow: 0 1px 12px rgba(0, 242, 195, 0.16);
    }

    #full-screen-search #mobile-inline-calendar .flatpickr-prev-month,
    #full-screen-search #mobile-inline-calendar .flatpickr-next-month,
    #full-screen-search #mobile-flexible-calendar .flatpickr-prev-month,
    #full-screen-search #mobile-flexible-calendar .flatpickr-next-month {
        color: rgba(255, 255, 255, 0.92) !important;
        fill: rgba(255, 255, 255, 0.92) !important;
        opacity: 1 !important;
    }

    #full-screen-search #mobile-inline-calendar .flatpickr-prev-month svg,
    #full-screen-search #mobile-inline-calendar .flatpickr-next-month svg,
    #full-screen-search #mobile-flexible-calendar .flatpickr-prev-month svg,
    #full-screen-search #mobile-flexible-calendar .flatpickr-next-month svg,
    #full-screen-search #mobile-inline-calendar .flatpickr-prev-month svg path,
    #full-screen-search #mobile-inline-calendar .flatpickr-next-month svg path,
    #full-screen-search #mobile-flexible-calendar .flatpickr-prev-month svg path,
    #full-screen-search #mobile-flexible-calendar .flatpickr-next-month svg path {
        fill: currentColor !important;
        stroke: currentColor !important;
    }

    #full-screen-search #mobile-inline-calendar span.flatpickr-weekday,
    #full-screen-search #mobile-flexible-calendar span.flatpickr-weekday {
        color: rgba(235, 255, 252, 0.82) !important;
        -webkit-text-fill-color: rgba(235, 255, 252, 0.82) !important;
        opacity: 1 !important;
    }

    #full-screen-search #mobile-inline-calendar .flatpickr-day,
    #full-screen-search #mobile-flexible-calendar .flatpickr-day {
        color: rgba(248, 255, 255, 0.94) !important;
        -webkit-text-fill-color: rgba(248, 255, 255, 0.94) !important;
        background: transparent !important;
        opacity: 1 !important;
    }

    #full-screen-search #mobile-inline-calendar .flatpickr-day.today:not(.selected):not(.startRange):not(.endRange),
    #full-screen-search #mobile-flexible-calendar .flatpickr-day.today:not(.selected):not(.startRange):not(.endRange) {
        color: #ffffff !important;
        -webkit-text-fill-color: #ffffff !important;
        border-color: rgba(0, 242, 195, 0.62) !important;
        background: rgba(0, 242, 195, 0.08) !important;
    }

    #full-screen-search #mobile-inline-calendar .flatpickr-day:hover,
    #full-screen-search #mobile-flexible-calendar .flatpickr-day:hover {
        color: #ffffff !important;
        -webkit-text-fill-color: #ffffff !important;
        background: rgba(0, 242, 195, 0.14) !important;
        border-color: rgba(0, 242, 195, 0.26) !important;
    }

    #full-screen-search #mobile-inline-calendar .flatpickr-day.inRange,
    #full-screen-search #mobile-inline-calendar .flatpickr-day.prevMonthDay.inRange,
    #full-screen-search #mobile-inline-calendar .flatpickr-day.nextMonthDay.inRange,
    #full-screen-search #mobile-flexible-calendar .flatpickr-day.inRange,
    #full-screen-search #mobile-flexible-calendar .flatpickr-day.prevMonthDay.inRange,
    #full-screen-search #mobile-flexible-calendar .flatpickr-day.nextMonthDay.inRange {
        background: rgba(0, 242, 195, 0.16) !important;
        border-color: rgba(0, 242, 195, 0.06) !important;
        box-shadow: -5px 0 0 rgba(0, 242, 195, 0.16), 5px 0 0 rgba(0, 242, 195, 0.16) !important;
        color: rgba(255, 255, 255, 0.96) !important;
        -webkit-text-fill-color: rgba(255, 255, 255, 0.96) !important;
    }

    #full-screen-search #mobile-inline-calendar .flatpickr-day.selected,
    #full-screen-search #mobile-inline-calendar .flatpickr-day.startRange,
    #full-screen-search #mobile-inline-calendar .flatpickr-day.endRange,
    #full-screen-search #mobile-inline-calendar .flatpickr-day.today.selected,
    #full-screen-search #mobile-flexible-calendar .flatpickr-day.selected,
    #full-screen-search #mobile-flexible-calendar .flatpickr-day.startRange,
    #full-screen-search #mobile-flexible-calendar .flatpickr-day.endRange,
    #full-screen-search #mobile-flexible-calendar .flatpickr-day.today.selected {
        background: rgba(0, 242, 195, 0.28) !important;
        border-color: rgba(0, 242, 195, 0.76) !important;
        color: #ffffff !important;
        -webkit-text-fill-color: #ffffff !important;
        box-shadow: 0 0 0 1px rgba(0, 242, 195, 0.38), 0 8px 18px rgba(0, 0, 0, 0.24) !important;
    }

    #full-screen-search #mobile-inline-calendar .flatpickr-day.disabled,
    #full-screen-search #mobile-inline-calendar .flatpickr-day.prevMonthDay,
    #full-screen-search #mobile-inline-calendar .flatpickr-day.nextMonthDay,
    #full-screen-search #mobile-inline-calendar .flatpickr-day.notAllowed,
    #full-screen-search #mobile-flexible-calendar .flatpickr-day.disabled,
    #full-screen-search #mobile-flexible-calendar .flatpickr-day.prevMonthDay,
    #full-screen-search #mobile-flexible-calendar .flatpickr-day.nextMonthDay,
    #full-screen-search #mobile-flexible-calendar .flatpickr-day.notAllowed {
        color: rgba(235, 255, 252, 0.28) !important;
        -webkit-text-fill-color: rgba(235, 255, 252, 0.28) !important;
        background: transparent !important;
        border-color: transparent !important;
    }
}

/* Mobile Home Flatpickr direct theme override */
@media (max-width: 767px) {
    #full-screen-search .flatpickr-calendar {
        background:
            radial-gradient(circle at 16% 0%, rgba(0, 242, 195, 0.18), transparent 34%),
            radial-gradient(circle at 92% 10%, rgba(124, 58, 237, 0.16), transparent 32%),
            linear-gradient(145deg, #031015 0%, #07161d 52%, #0b1325 100%) !important;
        border: 1px solid rgba(0, 242, 195, 0.16) !important;
        border-radius: 18px !important;
        color: #f8ffff !important;
        box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.07) !important;
    }

    #full-screen-search .flatpickr-calendar,
    #full-screen-search .flatpickr-calendar * {
        -webkit-font-smoothing: antialiased;
    }

    #full-screen-search .flatpickr-current-month,
    #full-screen-search .flatpickr-current-month .cur-month,
    #full-screen-search .flatpickr-current-month input.cur-year,
    #full-screen-search .flatpickr-monthDropdown-months,
    #full-screen-search .flatpickr-weekday,
    #full-screen-search .flatpickr-day,
    #full-screen-search .flatpickr-prev-month,
    #full-screen-search .flatpickr-next-month {
        color: rgba(248, 255, 255, 0.94) !important;
        -webkit-text-fill-color: rgba(248, 255, 255, 0.94) !important;
        fill: rgba(248, 255, 255, 0.94) !important;
    }

    #full-screen-search .flatpickr-prev-month svg,
    #full-screen-search .flatpickr-next-month svg,
    #full-screen-search .flatpickr-prev-month svg path,
    #full-screen-search .flatpickr-next-month svg path {
        fill: currentColor !important;
        stroke: currentColor !important;
    }

    #full-screen-search .flatpickr-day.inRange,
    #full-screen-search .flatpickr-day.prevMonthDay.inRange,
    #full-screen-search .flatpickr-day.nextMonthDay.inRange {
        background: rgba(0, 242, 195, 0.16) !important;
        border-color: rgba(0, 242, 195, 0.06) !important;
        box-shadow: -5px 0 0 rgba(0, 242, 195, 0.16), 5px 0 0 rgba(0, 242, 195, 0.16) !important;
        color: rgba(255, 255, 255, 0.96) !important;
        -webkit-text-fill-color: rgba(255, 255, 255, 0.96) !important;
    }

    #full-screen-search .flatpickr-day.selected,
    #full-screen-search .flatpickr-day.startRange,
    #full-screen-search .flatpickr-day.endRange,
    #full-screen-search .flatpickr-day.selected.inRange,
    #full-screen-search .flatpickr-day.today.selected {
        background: rgba(0, 242, 195, 0.28) !important;
        border-color: rgba(0, 242, 195, 0.76) !important;
        color: #ffffff !important;
        -webkit-text-fill-color: #ffffff !important;
        box-shadow: 0 0 0 1px rgba(0, 242, 195, 0.38), 0 8px 18px rgba(0, 0, 0, 0.24) !important;
    }

    #full-screen-search .flatpickr-day.disabled,
    #full-screen-search .flatpickr-day.prevMonthDay,
    #full-screen-search .flatpickr-day.nextMonthDay,
    #full-screen-search .flatpickr-day.notAllowed {
        color: rgba(235, 255, 252, 0.28) !important;
        -webkit-text-fill-color: rgba(235, 255, 252, 0.28) !important;
    }
}
