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

/* Hero Zoom Heading Animation */
.zoom-heading-engine {
    animation: luxuryTextBreathing 8s ease-in-out infinite alternate;
}
@keyframes luxuryTextBreathing {
    0% { transform: scale(1); opacity: 0.9; }
    100% { transform: scale(1.08); opacity: 1; }
}

/* Image Gallery Zoom-In/Out Loop */
.gallery-zoom-engine img {
    animation: galleryAutoZoom 10s ease-in-out infinite alternate;
}
@keyframes galleryAutoZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}

/* Moving 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;
    fill: #ffffff;
}
@keyframes driftInfiniteWaves {
    0% { transform: translateX(0); }
    100% { transform: translateX(-33.3%); }
}

/* Floating Contact Cards Animation */
.floating-contact-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    animation: calmFloatCard 6s ease-in-out infinite alternate;
}
@keyframes calmFloatCard {
    0% { transform: translateY(0px) scale(1); }
    100% { transform: translateY(-12px) scale(1.03); }
}

/* Specification Interactive Blocks */
.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);
}

/* Reuse Facilities Overlay Styles */
.luxury-photo-cell-facility {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    display: block;
}
.facility-detailed-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(21, 37, 76, 0.95) 20%, rgba(21, 37, 76, 0.5) 100%);
    opacity: 0;
    transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
}
.luxury-photo-cell-facility:hover .facility-detailed-overlay {
    opacity: 1;
    transform: translateY(0);
}

/* Minimalist Form 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-color: var(--scope-orange); }