.glass-panel {
    background: rgba(249, 249, 255, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}
.text-gradient {
    background: linear-gradient(to right, #031f41, #006877);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }

/* Hero Social Icons */
.hero-social-icon {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.08);
}
.hero-social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 104, 119, 0.35);
}

/* Hotel Feature List */
.hotel-features {
    list-style: none;
    padding: 0;
    margin: 0;
}
.hotel-features li {
    font-family: inherit;
    font-size: 0.8rem;
    color: #49454F;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
}
.hotel-features li i.fa-check {
    color: #006877;
    font-size: 0.65rem;
    margin-top: 5px;
    flex-shrink: 0;
}

/* ===== Lightbox ===== */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: lightbox-fade-in 0.3s ease;
}
.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.lightbox-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 900px;
    padding: 20px;
}
.lightbox-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 16px;
}
.lightbox-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 2.2rem;
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s, transform 0.2s;
    line-height: 1;
}
.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: scale(1.1);
}
.lightbox-body {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
}
.lightbox-img-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    max-height: 70vh;
    overflow: hidden;
    border-radius: 12px;
}
.lightbox-img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: opacity 0.3s ease;
}
.lightbox-arrow {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.25s ease;
    flex-shrink: 0;
}
.lightbox-arrow:hover {
    background: rgba(0, 104, 119, 0.6);
    border-color: rgba(0, 104, 119, 0.8);
    transform: scale(1.1);
}
.lightbox-counter {
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
}

@keyframes lightbox-fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Mobile lightbox adjustments */
@media (max-width: 640px) {
    .lightbox-content { padding: 12px; }
    .lightbox-arrow {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    .lightbox-body { gap: 8px; }
    .lightbox-img { max-height: 55vh; }
}
