:root {
    --scope-navy: #15254c;
    --scope-orange: #d97706;
    --scope-sky-glow: rgba(56, 189, 248, 0.25);
}

/* Hero Continuous Premium Zoom Animation */
.luxury-hero-container {
    position: relative;
    overflow: hidden;
    background-color: #0b1326;
}
.hero-bg-zoom-engine {
    animation: slowLuxuryScale 25s ease-in-out infinite alternate;
}
@keyframes slowLuxuryScale {
    0% { transform: scale(1); }
    100% { transform: scale(1.12); }
}

.wave-divider-wrapper {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 20;
}
.wave-divider-wrapper svg {
    position: relative;
    display: block;
    width: calc(150% + 1.3px);
    height: 60px;
}
.wave-moving-path {
    animation: driftInfiniteWaves 12s linear infinite;
    fill: #ffffff;
}
@keyframes driftInfiniteWaves {
    0% { transform: translateX(0); }
    100% { transform: translateX(-33.3%); }
}

/* Specification Badge Highlight Hover Engine */
.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(-6px);
    border-color: var(--scope-orange);
    box-shadow: 0 12px 30px rgba(21, 37, 76, 0.06);
}

/* Infinite Floating Info Grid Cards (Talk & Meet) */
.floating-contact-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    animation: calmFloatCard 6s ease-in-out infinite alternate;
}
.floating-contact-card:nth-child(2) {
    animation-delay: 2s;
}
@keyframes calmFloatCard {
    0% { transform: translateY(0px) scale(1); }
    100% { transform: translateY(-10px) scale(1.02); }
}

/* Reuse of Facilities Overlay from main bundle */
.luxury-photo-cell-facility {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    display: block;
}
.luxury-photo-cell-facility img {
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}
.luxury-photo-cell-facility:hover img {
    transform: scale(1.08);
}
.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;
    box-sizing: border-box;
}
.luxury-photo-cell-facility:hover .facility-detailed-overlay {
    opacity: 1;
    transform: translateY(0);
}
.facility-desc-content h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
    letter-spacing: 1px;
}
.facility-desc-content p {
    color: #f1f5f9;
    font-size: 0.85rem;
    line-height: 1.6;
    font-weight: 300;
}

/* Custom Calendar Layout overrides */
.premium-calendar-grid button {
    transition: all 0.2s ease;
}
.premium-calendar-grid button:hover:not(:disabled) {
    background-color: var(--scope-orange);
    color: white;
}

/* Heading effects matching rooms module */
.premium-headline-wrapper {
    position: relative;
    display: inline-block;
    overflow: hidden;
    padding-bottom: 8px;
}
.premium-headline-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--scope-navy), transparent);
    transition: width 1.2s ease;
}
.animate-on-scroll.active-reveal .premium-headline-wrapper::after {
    width: 100%;
}
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.8s ease;
}
.animate-on-scroll.active-reveal {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== SLEEK LINE CONTACT FORM SYSTEM ==================== */
.theme-contact-wrapper {
    position: relative;
    padding-top: 60px;
    padding-bottom: 60px;
}
.theme-contact-form-block {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.form-field-group-custom {
    position: relative;
    display: flex;
    flex-direction: column;
}
.form-field-group-custom label {
    font-size: 0.9rem;
    font-weight: 800;
    /* text-transform: uppercase; */
    letter-spacing: 0.15em;
    color: #0b1326;
    margin-bottom: 4px;
}
.form-field-group-custom input,
.form-field-group-custom textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #cbd5e1;
    padding: 8px 0;
    font-size: 0.95rem;
    color: #1e293b;
    background: transparent;
    outline: none;
    transition: border-color 0.3s ease;
}
.form-field-group-custom input:focus,
.form-field-group-custom textarea:focus {
    border-color: var(--scope-orange);
}
.form-field-group-custom textarea {
    resize: none;
}
.btn-submit-scope {
    background-color: var(--scope-navy);
    color: #ffffff;
    padding: 12px 36px;
    font-weight: 500;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.btn-submit-scope:hover {
    background-color: var(--scope-orange);
}


