:root {
    --scope-navy: #15254c;
    --scope-orange: #d97706;
}

.zoom-heading-engine {
    animation: luxurySuiteTextBreathing 8s ease-in-out infinite alternate;
}
@keyframes luxurySuiteTextBreathing {
    0% { transform: scale(1); opacity: 0.9; }
    100% { transform: scale(1.06); opacity: 1; }
}

/* Auto Slide Image Zoom Engine */
.gallery-zoom-engine img {
    animation: galleryAutoZoom 10s ease-in-out infinite alternate;
    transition: all 0.5s ease-in-out;
}
@keyframes galleryAutoZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.12); }
}

/* Fluid Waves Engine */
.wave-divider-wrapper {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 20;
}
.wave-moving-path {
    animation: driftInfiniteWaves 12s linear infinite;
}
@keyframes driftInfiniteWaves {
    0% { transform: translateX(0); }
    100% { transform: translateX(-33.3%); }
}

/* Floating Grid Blocks Setup */
.floating-contact-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    transition: all 0.4s ease;
}
.floating-contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(21, 37, 76, 0.06);
}

/* Premium Specifications Box */
.spec-box-interactive {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.spec-box-interactive:hover {
    transform: translateY(-5px);
    border-color: var(--scope-orange);
    box-shadow: 0 10px 25px rgba(21, 37, 76, 0.05);
}

/* Hotel Standards Overlay Fix System */
.luxury-photo-cell-facility {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
}

.facility-detailed-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(21, 37, 76, 0.95) 20%, rgba(21, 37, 76, 0.4) 100%);
    opacity: 0;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
}

/* Hover over parent activates the overlay */
.luxury-photo-cell-facility:hover .facility-detailed-overlay {
    opacity: 1;
    transform: translateY(0);
}

/* Clean Input Border Lines */
.form-field-group-custom input, .form-field-group-custom textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #cbd5e1;
    padding: 10px 0;
    background: transparent;
    outline: none;
    transition: border-color 0.3s;
}
.form-field-group-custom input:focus { border-bottom-color: var(--scope-orange); }