:focus-visible { outline: 3px solid #007BFF; outline-offset: 2px; }
      
.glass-card {
background: linear-gradient(226deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.06) 100%);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-card-light {
background: linear-gradient(226deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.02) 100%);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border: 1px solid rgba(255, 255, 255, 0.05);
}

.glass-card-ultra {
background: linear-gradient(226deg, rgba(255,255,255,0.015) 0%, rgba(255,255,255,0.01) 100%);
backdrop-filter: blur(30px);
-webkit-backdrop-filter: blur(30px);
border: 1px solid rgba(255, 255, 255, 0.03);
}

.glass-nav {
background: linear-gradient(213.59deg, rgba(255,255,255,0.08) 2.93%, rgba(255,255,255,0.06) 98.41%);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
}

html {
scroll-behavior: smooth;
}

@keyframes float {
0%, 100% { transform: translateY(0) rotate(0deg); }
50% { transform: translateY(-20px) rotate(5deg); }
}

.animate-float {
animation: float 8s ease-in-out infinite;
}

.animate-float-slow {
animation: float 12s ease-in-out infinite;
}

@keyframes pulse-glow {
0%, 100% { opacity: 0.3; transform: scale(1); }
50% { opacity: 0.6; transform: scale(1.05); }
}

.animate-pulse-glow {
animation: pulse-glow 4s ease-in-out infinite;
}

.custom-scrollbar::-webkit-scrollbar {
width: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
background: rgba(255, 255, 255, 0.05);
border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
background: rgba(0, 123, 255, 0.5);
border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
background: rgba(0, 123, 255, 0.7);
}

.gallery-main .swiper-slide {
height: 500px;
}

.gallery-thumbs .swiper-slide {
height: 100px;
opacity: 0.4;
cursor: pointer;
transition: opacity 0.3s;
}

.gallery-thumbs .swiper-slide-thumb-active {
opacity: 1;
}

.gallery-main .swiper-button-prev,
.gallery-main .swiper-button-next {
background: linear-gradient(226deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.06) 100%);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.1);
width: 48px;
height: 48px;
border-radius: 50%;
color: white;
}

.gallery-main .swiper-button-prev::after,
.gallery-main .swiper-button-next::after {
font-size: 20px;
}

.sticky-booking {
overflow-y: auto;
}

input[type="checkbox"]:checked {
background-color: #007BFF;
border-color: #007BFF;
}

.tab-active {
border-bottom: 2px solid #007BFF;
color: white;
}

.progress-bar {
height: 4px;
background: rgba(255, 255, 255, 0.1);
border-radius: 2px;
overflow: hidden;
}

.progress-bar-fill {
height: 100%;
background: linear-gradient(90deg, #007BFF, #003FFF);
transition: width 0.3s ease;
}

.toast-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 9999;
    animation: slideInRight 0.3s ease-out;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.toast-notification.success {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.toast-notification.error {
    background: linear-gradient(135deg, #eb3349 0%, #f45c43 100%);
}

.toast-notification svg {
    flex-shrink: 0;
}

.toast-notification .toast-content {
    flex: 1;
}

.toast-notification .toast-title {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 2px;
}

.toast-notification .toast-message {
    font-size: 13px;
    opacity: 0.9;
}

.toast-notification .toast-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
}

.toast-notification .toast-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

@keyframes slideInRight {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

.toast-notification.hiding {
    animation: slideOutRight 0.3s ease-in forwards;
}

.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.5);
    animation: progressBar 3s linear;
}

@keyframes progressBar {
    from {
        width: 100%;
    }
    to {
        width: 0%;
    }
}

@media (max-width: 640px) {
    .toast-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: calc(100% - 20px);
    }
}

.flatpickr-calendar {
    background: rgba(17, 24, 39, 0.95) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 16px !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5) !important;
}

.flatpickr-months {
    background: transparent !important;
}

.flatpickr-month {
    color: white !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
    background: rgba(17, 24, 39, 0.9) !important;
    color: white !important;
}

.flatpickr-weekday {
    color: rgba(255, 255, 255, 0.6) !important;
}

.flatpickr-day {
    color: white !important;
    border: none !important;
}

.flatpickr-day:hover {
    background: rgba(99, 102, 241, 0.3) !important;
    border-color: transparent !important;
}

.flatpickr-day.selected {
    background: #6366f1 !important;
    border-color: #6366f1 !important;
}

.flatpickr-day.disabled {
    color: rgba(255, 255, 255, 0.2) !important;
    background: rgba(239, 68, 68, 0.1) !important;
    text-decoration: line-through !important;
    cursor: not-allowed !important;
}

.flatpickr-day.today {
    border-color: #6366f1 !important;
}

.flatpickr-time {
    background: rgba(17, 24, 39, 0.9) !important;
}