/* ================================================== */
/* OMBARA */
/* created by On3step */
/* ================================================== */
/* @charset "utf-8"; */
/* ================================================== */
/* TABLE OF CONTENTS
   ==================================================
   Tip: pakai Ctrl+F dengan class prefix buat loncat cepat.
      GOOGLE FONTS                | find: @import url
   1. CSS VARIABLES & ROOT        | find: :root, --color-, --font-, --spacing-, --transition-
   2. BASE STYLES                 | find: body, p, html, section, .preloader
   2.1 Preloader                  | find: .preloader-lines, .preloader-brand, .preloader-logo
   2.2 Typography & Section Base  | find: h1-h6, .section-padding, .section-title, .section-subtitle, .accent-text
   2.3 V4 UTILITY CLASSES         | find: .hover-scale, .ticker-, .bg-gradient-, .hero-mini-card, .map-marker, .text-shadow-, .max-w-
   3. HEADER & NAVIGATION         | find: .header, .header-nav, .header-link, .dropdown-, .header-register-btn, .header-toggler
   4. HERO SECTION                | find: .hero-wrapper, .hero-mask, .hero-topbar, .hero-menu, .hero-swiper, .hero-img, .hero-slide-title, .hero-nav-
   5. ABOUT SECTION               | find: .about, .about-grid, .about-item, .about-img
   6. USP HIGHLIGHTS              | find: .usp-highlights
   7. FACILITIES SECTION          | find: .facilities-split, .facilities-image-pane, .fac-tabs-, .fac-tab-pane
   7-1. ROOMS SECTION               | find: .rooms, .room-card, .room-img, .room-info
   8. IMAGE REVEAL (SHARED)       | find: .reveal .about-img-wrapper::before, .col-md-6.reveal .room-card::before, .image-reveal-scale
   9. REGISTER PARALLAX SECTION   | find: .register-parallax-section, .register-parallax-bg, .register-parallax-content
   10. TESTIMONIALS PAGINATION    | find: .testimonials-swiper
   11. ROOM SHOWCASE              | find: .room-showcase, .room-showcase-panel, .room-showcase-media, .room-showcase-play
   12. GALLERY SCROLL             | find: .gallery-scroll, .gallery-scroll-card, .gallery-scroll-media
   13. FEATURE GALLERY SCROLL     | find: .feature-gallery-section, .feature-gallery-scroll__sticky, .feature-gallery-scroll__card, @keyframes featureGallery
   14. REGISTER SECTION (FORM)    | find: .register-section, .register-form, .form-group, .custom-checkbox, .register-submit-btn, .register-form-status
   15. INNER PAGES: HERO/INTRO    | find: .page-hero, .page-breadcrumb, .page-overview, .page-intro, .page-info-grid
   16. INNER PAGES: CARDS/PANELS  | find: .offer-card, .contact-detail-card, .page-detail-list, .reservation-panel, .room-page-grid
   17. INNER PAGES: JOURNAL/BLOG  | find: .journal-section, .journal-card, .blog-detail-hero, .blog-detail-layout, .blog-detail-sidebar
   18. FOOTER                     | find: .footer, .footer-shell, .footer-links-, .to-top
   19. ANIMATIONS & INTERACTIVITY | find: .delay-, .reveal, [data-reveal=, @keyframes
   20. RESPONSIVE ADJUSTMENTS     | find: @media (max-width: 991px), @media (min-width: 992px), 1440px, 1800px, prefers-reduced-motion
================================================== */

/* =========================================
   GoogleFonts
   ========================================= */
@import url('https://fonts.googleapis.com/css2?family=Allura&family=Inter:wght@300;400;500;600&family=Cormorant+Garamond:wght@400;500;600;700&display=swap');

/* =========================================
   1. CSS Variables & Root Setup
   ========================================= */
:root {
    /* Colors (Ombara Theme) */
    --color-primary: #0b2d4b;     
    --color-secondary: #c5a880;   
    --color-light: #fbfbf8;       
    --color-dark: #0e263a;        
    --color-white: #ffffff;
    --color-black: #000000;
    
    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Allura', cursive;
    
    /* Spacing */
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;
    
    /* Transitions */
    --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-medium: 0.4s ease;
    --transition-fast: 0.2s ease;
}

/* =========================================
   2. Base Styles
   ========================================= */
body {
    font-family: var(--font-body);
    color: var(--color-primary);
    background-color: var(--color-light);
    -webkit-font-smoothing: antialiased;
}

p {
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 300; 
}

html {
    scroll-behavior: initial; 
}

/* Fix global horizontal scroll */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/* Allow sticky to work by making overflow-x clip instead of hidden */
@supports (overflow-x: clip) {
    html, body {
        overflow-x: clip;
    }
}

/* Fix mobile overflow without breaking sticky */
@media (max-width: 991px) {
    html, body {
        width: 100%;
    }
    
    .row {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }
}

section{
    position: relative;
    z-index: 1;
}

.preloader {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-dark);
    overflow: hidden;
    z-index: 99999;
    transition: opacity 0.7s ease, visibility 0.7s ease;
}

.preloader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-lines {
    position: relative;
    width: min(22vw, 160px);
    height: 1px;
    background: rgba(255, 255, 255, 0.14);
    overflow: hidden;
}

.preloader-lines::before,
.preloader-lines::after {
    content: '';
    position: absolute;
    inset: 0;
}

.preloader-lines::before {
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(251, 251, 248, 0.85) 18%,
        rgba(255, 255, 255, 1) 50%,
        rgba(251, 251, 248, 0.85) 82%,
        rgba(255, 255, 255, 0) 100%
    );
    transform-origin: center center;
    animation: preloader-bar-open 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.preloader-lines::after {
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.32) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    filter: blur(6px);
    opacity: 0;
    transform-origin: center center;
    animation: preloader-bar-glow 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.preloader-brand {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

.preloader-logo {
    width: min(240px, 58vw);
    height: auto;
    animation: preloader-logo-float 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes preloader-bar-open {
    0% {
        transform: scaleX(0);
        opacity: 0;
    }
    18% {
        opacity: 0.55;
    }
    55% {
        transform: scaleX(1);
        opacity: 1;
    }
    100% {
        transform: scaleX(1);
        opacity: 0.85;
    }
}

@keyframes preloader-bar-glow {
    0% {
        transform: scaleX(0);
        opacity: 0;
    }
    50% {
        transform: scaleX(0.72);
        opacity: 0.6;
    }
    100% {
        transform: scaleX(1);
        opacity: 0.32;
    }
}

@keyframes preloader-logo-float {
    0% {
        transform: translateY(16px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--color-primary);
}

.section-padding {
    padding-top: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1rem;
    line-height: 1.1;
    display: block;
}

.section-subtitle {
    
    color: var(--color-primary);
    opacity: 0.8;
    margin: 45px 0 20px;
    
    letter-spacing: 0.05em;
}

.accent-text {
    font-family: var(--font-accent);
    color: var(--color-secondary);
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0rem;
}

/* =========================================
   11. Version 4 (Elrune Style) Utility Classes
   ========================================= */
.backdrop-blur { backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.hover-scale { transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); }
.hover-scale:hover { transform: scale(1.05); }
.hover-zoom { transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1); }
.hero-mini-card:hover .hover-zoom { transform: scale(1.1); }
.hero-mini-card { box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.border-white-25 { border-color: rgba(255,255,255,0.25) !important; }
.cross-fade-img { transition: opacity 1s ease-in-out !important; }
.bg-gradient-elrune { background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.7) 100%); }
.bg-gradient-tulum { background: linear-gradient(0deg, rgba(18,18,18,1) 0%, rgba(18,18,18,0.7) 40%, rgba(18,18,18,0) 100%); }
.lh-1-1 { line-height: 1.1; }
.max-w-500 { max-width: 500px; }
.hero-mini-card-size { width: 120px; height: 160px; border-width: 2px !important; }

/* Scroll Down Button (Tulum Style) */
.scroll-down-btn { width: 50px; height: 50px; border-radius: 50%; background: rgba(255,255,255,0.1); backdrop-filter: blur(5px); display: flex; align-items: center; justify-content: center; color: white; transition: all 0.3s ease; text-decoration: none; }
.scroll-down-btn:hover { background: rgba(255,255,255,0.2); color: white; }

/* Infinite Scroll Ticker */
.ticker-container {
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 15%, rgb(0, 0, 0) 85%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 15%, rgb(0, 0, 0) 85%, rgba(0, 0, 0, 0) 100%);
}

.ticker-track {
    display: flex;
    gap: 15px;
    width: max-content;
    animation: scroll-ticker 30s linear infinite;
}

.ticker-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 7.5px)); }
}
.hero-wrapper-v2 { height: 100vh; overflow: hidden; position: relative; background: #fff; }
.hero-wrapper-v3 { height: 100vh; overflow: hidden; position: relative; }
.bg-navy { background-color: #0c1d2e; }
.hero-text-container { max-width: 500px; padding: 0 2rem; }
.hero-logo-large { height: 60px; }
.btn-glass { background: rgba(255,255,255,0.1); backdrop-filter: blur(5px); }
.object-fit-cover { object-fit: cover; }
.bg-gradient-dark-bottom { background: linear-gradient(transparent, rgba(0,0,0,0.7)); }
.bg-gradient-v3 { background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 50%, transparent 100%); }
.hero-nav-line-v2 { width: 60px; height: 1px; background: rgba(255,255,255,0.3); position: relative; }
.hero-nav-progress-v2 { position: absolute; top: 0; left: 0; height: 100%; width: 0%; background: var(--color-secondary); transition: width 0.3s ease; }
.font-playfair { font-family: 'Playfair Display', serif; }
.font-playfair-light { font-weight: 300; font-family: 'Playfair Display', serif; }
.text-muted-dark { color: #666; }
.max-w-800 { max-width: 800px; }
.max-w-600 { max-width: 600px; }
.min-vh-50 { min-height: 50vh; }
.img-tall { height: 500px; object-fit: cover; }
.img-medium { height: 280px; object-fit: cover; }
.img-min-vh-50 { object-fit: cover; min-height: 50vh; }
.bg-parallax-sustainability { background-image: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('../assets/version-2/image\ \(10\).jpg'); background-size: cover; background-attachment: fixed; }
.w-80px { width: 80px; }
.text-xs { font-size: 0.8rem; }
.text-shadow-strong { text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
.text-shadow-light { text-shadow: 0 2px 4px rgba(0,0,0,0.8); }
.border-left-gold { border-left: 3px solid var(--color-secondary); padding-left: 2rem; }
.letter-spacing-3 { letter-spacing: 3px; }
.brightness-70 { filter: brightness(0.7); }
.text-theme-primary { color: var(--color-primary); }

.avatar-50 { width: 50px; height: 50px; }

.map-marker {
    font-size: .85rem;
    position: absolute;
    background-color: rgba(197, 168, 128, 0.94);
    border-radius: 50%;
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 10;
}

.map-marker-1 {
    top: 35%;
    left: 40%;
}

.map-marker-2 {
    top: 65%;
    right: 25%;
}

.map-marker-3 {
    bottom: 20%;
    left: 60%;
}

/* =========================================
   3. Header & Navigation
   ========================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-medium);
}

.header.is-hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-18px);
    pointer-events: none;
}

body.always-show-header .header.is-hidden:not(.gallery-hidden) {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
}

body.always-show-header .header {
    z-index: 9999 !important;
}

.header-nav {
    background: rgba(255, 255, 255, 0);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    border-bottom: 1px solid rgba(255, 255, 255, 0);
    padding: 1rem 2rem;
    transition: var(--transition-medium);
}

.header-shell {
    position: relative;
    align-items: center;
}

/* When scrolled */
.header.scrolled .header-nav {
    background: rgba(251, 251, 248, 1);
    border-color: rgba(11, 45, 75, 0.1);
    padding: 0.8rem 2rem;
}

/* Logo image source switching */
.header .navbar-brand img.logo-dark {
    display: none;
}
.header .navbar-brand img.logo-light {
    display: inline-block;
}

.header.scrolled .navbar-brand img.logo-dark {
    display: inline-block;
}
.header.scrolled .navbar-brand img.logo-light {
    display: none;
}

.header-link {
    color: var(--color-white) !important;
    font-weight: 500;
    margin: 0 15px;
    position: relative;
    font-size: 1rem;
    letter-spacing: 0.035em;
    transition: var(--transition-medium);
}

.header.scrolled .header-link {
    color: var(--color-primary) !important;
}

.header-collapse {
    align-items: center;
    flex: 1 1 auto;
}

.header-menu {
    margin-bottom: 0;
}

/* Dropdown Menu Customization */
.header .dropdown-menu {
    background-color: var(--color-white);
    border: none;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-top: 0; /* Removed margin to prevent hover gap issue */
    padding: 10px 0;
}

.header .dropdown-item {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 10px 20px;
    color: var(--color-dark);
    transition: all 0.3s ease;
    position: relative;
}

/* Disable the animated underline for dropdown toggle and items */
.header-link.dropdown-toggle::after,
.header .dropdown-item::after {
    display: none !important;
}

.header .dropdown-item:hover, .header .dropdown-item:focus {
    background-color: var(--color-sand);
    color: var(--color-primary);
}

/* Dark Theme Adjustments for Dropdown (Applies always in dark mode, not just when scrolled) */
[data-bs-theme="dark"] .header .dropdown-menu {
    background-color: var(--color-black);
    border: 1px solid rgba(255,255,255,0);
}
[data-bs-theme="dark"] .header .dropdown-item {
    color: var(--color-white);
}
[data-bs-theme="dark"] .header .dropdown-item:hover,
[data-bs-theme="dark"] .header .dropdown-item:focus {
    background-color: rgba(255,255,255,0.05);
    color: var(--color-primary);
}

@media (min-width: 992px) {
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
    }
}

.header-link::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0px;
    left: 0;
    background-color: var(--color-secondary);
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform var(--transition-medium);
}

.header-link:hover::after {
    transform: scaleX(1);
    transform-origin: left center;
}

.header-register-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.62rem 1.55rem;
    margin-left: 18px;
    background: #f2c94c;
    color: #0b2d4b !important;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.015em;
    border: none;
    border-radius: 999px;
    text-decoration: none;
    transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.header-register-btn:hover {
    background: #f6d66f;
    transform: translateY(-1px);
}

.header.scrolled .header-register-btn {
    background: #f2c94c;
}

.header.scrolled .header-register-btn:hover {
    background: #f6d66f;
}


.header-toggler {
    border: none !important;
    padding: 0;
}

.header.scrolled .header-toggler-icon {
    filter: invert(1);
}

@media (max-width: 991px) {
    .header-nav {
        padding: 1rem;
        background: var(--color-light);
    }
    
    .header-link {
        color: var(--color-primary) !important;
    }
    
    .header .navbar-brand img.logo-dark {
        display: inline-block !important;
    }
    .header .navbar-brand img.logo-light {
        display: none !important;
    }
    
    .header-collapse {
        position: absolute;
        top: 100%;
        left: 5%;
        width: 90%;
        background: var(--color-light);
        padding: 2rem;
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        border-top: 1px solid rgba(0,0,0,0.05);
    }
    
    .header-menu {
        flex-direction: column;
        align-items: center;
        gap: .3rem;
        margin-bottom: 2rem;
    }
    
    .navbar-nav {
        margin: 0 auto;
    }

    .header .nav-item.dropdown {
        width: 100%;
    }

    .header .dropdown-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        min-height: 44px;
        cursor: pointer;
    }

    .header .dropdown-menu {
        position: static !important;
        width: 100%;
        min-width: 100%;
        padding: 0.75rem 0;
        margin-top: 0;
        text-align: center;
        box-shadow: none;
        border-top: 1px solid rgba(11, 45, 75, 0.08);
    }

    .header .dropdown-item {
        padding: 0.7rem 1rem;
    }
    
    .header-register-btn {
        margin-left: 0;
        display: flex;
        width: fit-content;
        margin: 0 auto;
    }
}

/* =========================================
   4. Hero Section
   ========================================= */
.hero-wrapper {
    height: 100vh;
    position: relative;
    background-color: var(--color-light);
    z-index: 1;
}

.hero {
    height: 100vh;
    position: relative;
    top: 0;
    overflow: hidden;
    background-color: var(--color-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.hero-mask {
    position: absolute;
    inset: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    clip-path: inset(0% 0% 0% 0%);
}

.hero-topbar {
    position: absolute;
    top: 18px;
    left: 0;
    width: 100%;
    z-index: 5;
    padding: 15px 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

/* Hide header topbar inside hero mask for index_1 since we use main header */
.hero-wrapper .header {
    z-index: 9999;
}

.hero-menu {
    display: flex;
    align-items: center;
    gap: 14px;
}

.hero-menu-link {
    color: var(--color-white);
    text-decoration: none;
    
    letter-spacing: 0.14em;
    text-transform: none;
    opacity: 0.92;
    transition: opacity var(--transition-fast);
}

.hero-menu-link:hover {
    opacity: 1;
}

.hero-menu-divider {
    width: 1px;
    height: 12px;
    background: rgba(255, 255, 255, 0.45);
}

.hero-menu-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--color-white);
    /*border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);*/
    transition: background var(--transition-fast), border-color var(--transition-fast), opacity var(--transition-fast);
}

.hero-action:hover {
    color: var(--color-white);
    /*background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.45);*/
}

.hero-action-icon {
    width: 30px;
}

.hero-action-icon i {
    
    line-height: 1;
}

.hero-action-pill {
    min-height: 38px;
    padding: 0;
    border-radius: 20px;
    
    letter-spacing: 0.035em;
    font-weight: 500;
}

.hero-media-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.hero-swiper .swiper-slide {
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 6s ease;
    will-change: transform, clip-path, opacity;
    clip-path: inset(0 0 0 0);
}

.swiper-slide-active .hero-img {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(11, 45, 75, 0.2) 0%, rgba(11, 45, 75, 0.4) 50%, rgba(11, 45, 75, 0.6) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-center-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 20px;
    margin-top: -5vh; /* adjust visual center slightly upwards */
}

.hero-logo-wrapper {
    margin-bottom: 2rem;
}

.hero-main-logo {
    max-width: 320px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0px 4px 10px rgba(0,0,0,0.3));
}

.hero-main-subtitle {
    color: var(--color-white);
    
    
    letter-spacing: 0.02em;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.95rem;
    color: var(--color-white);
    
    font-weight: 500;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.28);
    opacity: 0.92;
}

.hero-badge-item {
    font-size: .75rem;
    color: #f2c94c;
    position: relative;
    display: inline-flex;
    align-items: center;
}

.hero-badge-item:not(:last-child)::after {
    content: "";
    width: 28px;
    height: 1px;
    margin-left: 0.95rem;
    background: rgba(255, 255, 255, 0.42);
}

.hero-bottom-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 40px;
    z-index: 4;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.hero-scroll-indicator {
    color: var(--color-white);
    display: flex;
    align-items: center;
    gap: 8px;
    
    letter-spacing: 0.15em;
    opacity: 0.8;
    cursor: pointer;
    transition: opacity var(--transition-fast);
}

.hero-scroll-indicator:hover {
    opacity: 1;
}

.hero-slider-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--color-white);
}

.hero-slide-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 10px;
    font-style: italic;
    color: #f2c94c;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0.16em 0.12em 0.22em;
    min-height: calc(1.15em + 0.38em);
    clip-path: polygon(0 -100%, 100% -100%, 100% 200%, 0 200%);
    transition: clip-path 1.05s cubic-bezier(0.19, 1, 0.22, 1);
    will-change: clip-path;
}

.hero-slide-title-text {
    display: inline-block;
    line-height: 1.15;
    padding: 0 0.03em;
    transform: translate3d(0, 0, 0);
    opacity: 1;
    will-change: transform, opacity;
    transition: transform 1.05s cubic-bezier(0.19, 1, 0.22, 1), opacity 1.05s cubic-bezier(0.19, 1, 0.22, 1);
}

.hero-slide-title.is-exiting {
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
}

.hero-slide-title.is-exiting .hero-slide-title-text {
    transform: translate3d(0, 28px, 0);
    opacity: 0;
}

.hero-slide-title.is-entering {
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
}

.hero-slide-title.is-entering .hero-slide-title-text {
    transform: translate3d(0, 28px, 0);
    opacity: 0;
}

.hero-slide-title.is-visible {
    clip-path: polygon(0 -100%, 100% -100%, 100% 200%, 0 200%);
}

.hero-slide-title.is-visible .hero-slide-title-text {
    transform: translate3d(0, 0, 0);
    opacity: 1;
}

.hero-nav-controls {
    display: flex;
    align-items: center;
    gap: 15px;
    
    letter-spacing: 0.015em;
}

.hero-nav-btn {
    font-size: .75rem;
    cursor: pointer;
    font-weight: 500;
    opacity: 0.7;
    transition: opacity var(--transition-fast);
}

.hero-nav-btn:hover {
    opacity: 1;
}

.hero-nav-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.9;
}

.hero-nav-line {
    width: 80px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    position: relative;
}

.hero-nav-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: var(--color-white);
    transition: width 0.3s ease;
    width: 33.33%; /* Default for slide 1/3 */
}

/* =========================================
   5. About Section
   ========================================= */
.about {
    background-color: var(--color-light);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
}

.about-item {
    text-align: center;
}

.about-img-wrapper {
    height: 480px;
    margin-bottom: 2rem;
    overflow: hidden;
    position: relative;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate3d(0, var(--parallax-offset, 0px), 0) scale(calc(var(--parallax-scale, 1.12) + var(--image-reveal-scale, 0)));
    transform-origin: center center;
    will-change: transform;
}

.about-text h3 {
    margin-bottom: 1rem;
    font-size: 2rem;
}

.about-text p {
    line-height: 1.6;
    max-width: 300px;
    margin: 0 auto;
}

/* =========================================
   6. USP Highlights
   ========================================= */
.usp-highlights {
    background: #f5f3ef;
}

.usp-highlights-head {
    width: min(100%, 720px);
    margin: 0 auto clamp(3rem, 6vw, 4.5rem);
}

.usp-highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(2rem, 4vw, 3.4rem) clamp(1.25rem, 4vw, 4rem);
    width: min(100%, 920px);
    margin: 0 auto;
}

.usp-highlights-item {
    display: grid;
    justify-items: center;
    align-content: start;
    gap: 1rem;
    text-align: center;
}

.usp-highlights-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    color: rgba(107, 89, 74, 0.92);
    font-size: 2rem;
}

.usp-highlights-item p {
    font-weight: 500;
    line-height: 1.65;
}

/* =========================================
   7. Facilities Section (Split-screen)
   ========================================= */
.facilities {
    background-color: var(--color-white);
}

.facilities-split {
    display: flex;
    flex-wrap: wrap;
    min-height: 100vh;
    align-items: stretch;
}

.facilities-image-pane {
    flex: 1 1 50%;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.facilities-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate3d(0, var(--parallax-offset, 0px), 0) scale(calc(var(--parallax-scale, 1.12) + var(--image-reveal-scale, 0)));
    transform-origin: center center;
    will-change: transform;
}

.facilities-content-pane {
    flex: 1 1 50%;
    min-height: 100vh;
    padding: var(--spacing-xl) var(--spacing-lg);
    display: flex;
    align-items: center;
}

.facilities-inner {
    max-width: 600px;
    width: 100%;
}

/* Tabs Styling */
.fac-tabs-nav {
    list-style: none;
    padding: 0;
    margin: 0 0 3rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    border-bottom: 1px solid rgba(11, 45, 75, 0.1);
}

.fac-tabs-item {
    padding: 0.5rem 0 1rem;
    cursor: pointer;
    font-weight: 500;
    
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-primary);
    opacity: 0.5;
    position: relative;
    transition: var(--transition-medium);
}

.fac-tabs-item.active {
    opacity: 1;
}

.fac-tabs-item::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--transition-medium);
}

.fac-tabs-item.active::after {
    width: 100%;
}

.fac-tab-pane {
    display: none;
    animation: fadeIn 0.5s ease forwards;
}

.fac-tab-pane.active {
    display: block;
}

.fac-tab-pane h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.fac-tab-pane p {
    line-height: 1.7;
    opacity: 0.8;
    margin-bottom: 2rem;
}

.fac-tab-pane img {
    border-radius: 0;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =========================================
   7.1 ROOMS SECTION
   ========================================= */
.rooms {
    background-color: var(--color-light);
}

.room-card {
    position: relative;
    background: var(--color-primary);
    height: 550px;
    overflow: hidden;
    isolation: isolate;
}

.room-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 45, 75, 0.72) 0%, rgba(11, 45, 75, 0.16) 38%, rgba(11, 45, 75, 0.08) 100%);
    z-index: 1;
    pointer-events: none;
}

.room-card h3{
    color: white;
}

.about-item.reveal .about-img-wrapper::before,
.col-md-6.reveal .room-card::before,
.facilities-image-pane.reveal::before,
.room-showcase-media.reveal::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 4;
    background: var(--color-light);
    transform-origin: bottom center;
    transform: scaleY(1);
    transition: transform 1.25s cubic-bezier(0.77, 0, 0.175, 1) var(--reveal-delay, 0s);
    pointer-events: none;
}

/*.facilities-image-pane.reveal::before {
    background: var(--color-white);
}*/

.room-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.88;
    transition: var(--transition-slow);
    transform: translate3d(0, var(--parallax-offset, 0px), 0) scale(calc(var(--parallax-scale, 1.12) + var(--image-reveal-scale, 0)));
    transform-origin: center center;
    will-change: transform;
}

.room-card:hover .room-img {
    opacity: 0.94;
    transform: translate3d(0, var(--parallax-offset, 0px), 0) scale(calc(var(--parallax-scale, 1.12) + 0.04));
}

.about-item.reveal .about-img,
.col-md-6.reveal .room-img,
.facilities-image-pane.reveal .facilities-img {
    opacity: 0.01;
    filter: blur(5px);
    --image-reveal-scale: 0.08;
    transition: transform 1.7s cubic-bezier(0.19, 1, 0.22, 1) calc(var(--reveal-delay, 0s) + 0.6s),
                opacity 1.15s cubic-bezier(0.19, 1, 0.22, 1) calc(var(--reveal-delay, 0s) + 0.6s),
                filter 1.15s cubic-bezier(0.19, 1, 0.22, 1) calc(var(--reveal-delay, 0s) + 0.6s);
}

.room-showcase-media.reveal .room-showcase-image {
    opacity: 0.01;
    filter: blur(5px);
    --image-reveal-scale: 0.08;
    transition: transform 1.7s cubic-bezier(0.19, 1, 0.22, 1) calc(var(--reveal-delay, 0s) + 0.6s),
                opacity 1.15s cubic-bezier(0.19, 1, 0.22, 1) calc(var(--reveal-delay, 0s) + 0.6s),
                filter 1.15s cubic-bezier(0.19, 1, 0.22, 1) calc(var(--reveal-delay, 0s) + 0.6s);
}

.about-item.reveal.is-visible .about-img-wrapper::before,
.col-md-6.reveal.is-visible .room-card::before,
.facilities-image-pane.reveal.is-visible::before,
.room-showcase-media.reveal.is-visible::before {
    transform: scaleY(0);
}

.about-item.reveal.is-visible .about-img,
.col-md-6.reveal.is-visible .room-img,
.facilities-image-pane.reveal.is-visible .facilities-img {
    opacity: 1;
    filter: blur(0);
    --image-reveal-scale: 0;
}

.room-showcase-media.reveal.is-visible .room-showcase-image {
    opacity: 1;
    filter: blur(0);
    --image-reveal-scale: 0;
}

/* =========================================
   Contact Register Parallax Section
   ========================================= */
.register-parallax-section {
    padding: 90px 0;
    position: relative;
    height: 100svh;
    min-height: 900px;
    background: var(--color-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.register-parallax-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.5);
}

.register-parallax-content {
    position: relative;
    z-index: 2;
    background: rgba(249, 248, 246, 0.95);
    backdrop-filter: blur(10px);
    padding: 3rem;
    width: min(90%, 550px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .register-parallax-content {
        padding: 2rem 1.5rem;
    }
}

/* =========================================
   Testimonials Custom Pagination
   ========================================= */
.testimonials-swiper {
    padding-bottom: 3rem !important; /* Space for pagination */
}
.testimonials-swiper .swiper-pagination-bullet {
    background: var(--color-primary);
    opacity: 0.2;
    width: 10px;
    height: 10px;
    transition: all 0.3s ease;
}
.testimonials-swiper .swiper-pagination-bullet-active {
    background: var(--color-secondary);
    opacity: 1;
    transform: scale(1.3);
}

.room-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem 2rem;
    color: var(--color-white);
    background: linear-gradient(to top, rgba(11, 45, 75, 0.9), transparent);
    z-index: 2;
}

.room-info h4 {
    color: var(--color-white);
    margin-bottom: 0.5rem;
    font-size: 2.2rem;
}

.room-info p {
    opacity: 0.8;
    
}

.room-showcase-section {
    background: var(--color-white);
}

.room-showcase-wrap {
    display: flex;
    justify-content: center;
}

.room-showcase {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
}

.room-showcase-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(11, 45, 75, 0.03);
    pointer-events: none;
}

.room-showcase-panel {
    opacity: 1 !important;
    position: relative;
    z-index: 3;
    width: 75%;
    margin-left: 0px;
    padding: 3.4rem 2.7rem;
    background: #f6f3ec;
    box-shadow: 0 24px 60px rgba(11, 45, 75, 0.08);
}

.room-showcase-kicker {
    display: inline-block;
    margin-bottom: 1rem;
    color: rgba(197, 168, 128, 0.98);
    text-transform: uppercase;
    letter-spacing: 0.28em;
    
}

.room-showcase-title {
    margin-bottom: 1.4rem;
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    line-height: 0.94;
    text-transform: uppercase;
}

.room-showcase-text {
}

.room-showcase-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 1.8rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(11, 45, 75, 0.08);
}

.room-showcase-spec {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(11, 45, 75, 0.56);
    
}

.room-showcase-spec::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(197, 168, 128, 0.92);
}

.room-showcase-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 1.4rem;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
}

.room-showcase-media {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 430px;
    overflow: hidden;
    isolation: isolate;
    background: #1a1d22;
    box-shadow: 0 18px 48px rgba(11, 45, 75, 0.08);
}

.room-showcase-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 15, 24, 0.2), rgba(8, 15, 24, 0.06));
    pointer-events: none;
    z-index: 1;
}

.room-showcase-trigger {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    padding: 0;
    background: transparent;
    cursor: pointer;
}

.room-showcase-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: translate3d(0, var(--parallax-offset, 0px), 0) scale(calc(var(--parallax-scale, 1.08) + var(--image-reveal-scale, 0)));
    transform-origin: center center;
    will-change: transform;
}

.room-showcase-frame {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    opacity: 0;
    pointer-events: none;
    background: #0b2d4b;
    transition: opacity 0.45s ease;
}

.room-showcase-play {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    width: 102px;
    height: 102px;
    border-radius: 50%;
    background: rgba(197, 168, 128, 0.94);
    box-shadow: 0 0 0 14px rgba(255, 255, 255, 0.08);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.room-showcase-media:hover .room-showcase-image {
    transform: translate3d(0, var(--parallax-offset, 0px), 0) scale(calc(var(--parallax-scale, 1.08) + 0.03));
}

.room-showcase-media.is-loaded .room-showcase-trigger {
    opacity: 0;
    pointer-events: none;
}

.room-showcase-media.is-loaded .room-showcase-frame {
    opacity: 1;
    pointer-events: auto;
}

.room-showcase-play::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 18px solid var(--color-white);
    transform: translate(-34%, -50%);
}

.gallery-scroll {
    position: relative;
    background:
        linear-gradient(180deg, rgba(11, 45, 75, 0.03), rgba(11, 45, 75, 0)),
        var(--color-light);
}

.gallery-scroll-shell {
    display: grid;
    grid-template-columns: minmax(260px, 0.88fr) minmax(0, 1.12fr);
    gap: clamp(2.4rem, 5vw, 5.5rem);
    align-items: start;
}

.gallery-scroll-intro {
    position: -webkit-sticky;
    position: sticky;
    top: 108px;
    padding-right: 1rem;
    z-index: 5;
}

.gallery-scroll-intro .accent-text{
    margin-bottom: 0px;
}

.gallery-scroll-copy {
    max-width: 420px;
    margin-top: 2rem;
    color: rgba(11, 45, 75, 0.64);
}

.gallery-scroll-copy p {
    font-weight: 300; /* Set all paragraph weight to light/thin consistently */
}

.gallery-scroll-track {
    display: grid;
    gap: 32px;
}

.gallery-scroll-card {
    position: relative;
    width: min(100%, 760px);
    justify-self: start;
    overflow: hidden;
    background: var(--color-white);
}

.gallery-scroll-card:nth-child(2),
.gallery-scroll-card:nth-child(4) {
    justify-self: end;
}

.gallery-scroll-media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    min-height: clamp(340px, 42vw, 520px);
    background: #d7dde2;
}

.gallery-scroll-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 15, 24, 0.26), rgba(8, 15, 24, 0.05));
    pointer-events: none;
}

.gallery-scroll-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: translate3d(0, var(--parallax-offset, 0px), 0) scale(var(--parallax-scale, 1.08));
    transform-origin: center center;
    will-change: transform;
}

.gallery-scroll-content {
    display: grid;
    gap: 10px;
    padding: 1.7rem 1.8rem 1.85rem;
}

.gallery-scroll-kicker {
    color: rgba(197, 168, 128, 0.98);
    text-transform: uppercase;
    letter-spacing: 0.24em;
    
}

.gallery-scroll-title {
    margin: 0;
    font-size: clamp(2rem, 3.2vw, 3rem);
    line-height: 0.96;
    text-transform: uppercase;
}

.gallery-scroll-text {
    margin: 0;
    color: rgba(11, 45, 75, 0.62);
    line-height: 1.85;
    
}

.gallery-scroll-card.reveal {
    clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 100%);
    transform: translateY(54px);
    opacity: 0;
}

.gallery-scroll-card.reveal.is-visible {
    clip-path: polygon(0 -100%, 100% -100%, 100% 200%, 0 200%) !important;
    transform: translateY(0) !important;
    opacity: 1 !important;
}

.feature-gallery-section {
    position: relative;
    min-height: 500vh;
    background: #0b243b;
}

.feature-gallery-scroll__sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100svh;
    overflow: hidden; /* This is fine here, it's the sticky element itself */
    z-index: 10;
}

.feature-gallery-scroll__slides {
    position: absolute;
    inset: 0;
}

.feature-gallery-section.is-out-of-view .feature-gallery-scroll__slides {
    display: none;
}

.feature-gallery-scroll__slide {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition: opacity 0.8s ease, visibility 0s linear 0.8s; /* visibility delay sesuai durasi fade */
}

.feature-gallery-scroll__slide.is-active {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.8s ease, visibility 0s linear 0s; /* langsung visible saat masuk */
}

.feature-gallery-scroll__slide.is-leaving {
    opacity: 0;
    visibility: visible; /* tetap visible saat fade out */
    transition: opacity 0.8s ease, visibility 0s linear 0.8s;
}

.feature-gallery-scroll__slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(8, 17, 28, 0.18) 0%, rgba(8, 17, 28, 0.1) 30%, rgba(8, 17, 28, 0.46) 100%),
        linear-gradient(180deg, rgba(8, 17, 28, 0.14), rgba(8, 17, 28, 0.16));
}

.feature-gallery-scroll__slide.is-active {
    opacity: 1;
    visibility: visible;
}

.feature-gallery-scroll__slide img,
.feature-gallery-scroll__card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-gallery-scroll__slide img {
    display: block;
    transform: none;
}

.feature-gallery-scroll__overlay {
    position: relative;
    z-index: 2;
    width: min(1480px, calc(100vw - 72px));
    height: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 392px) minmax(0, 1fr);
    align-items: center;
    gap: 30px;
}

.feature-gallery-scroll__meta {
    color: rgba(255, 255, 255, 0.92);
    align-self: center;
    justify-self: start;
    display: grid;
    align-content: end;
    justify-items: start;
    gap: 16px;
}

.feature-gallery-scroll__overlay > .feature-gallery-scroll__meta:last-of-type {
    justify-self: end;
    text-align: right;
    justify-items: end;
}

.feature-gallery-scroll__card-kicker,
.feature-gallery-scroll__hint,
.feature-gallery-scroll__count {
    margin: 0;
}

.feature-gallery-scroll__card-kicker {
    
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.feature-gallery-scroll__count {
    font-size: .75rem;
    margin-top: 14px;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.76);
}

.feature-gallery-scroll__card {
    grid-column: 2;
    align-self: center;
    justify-self: center;
    width: min(100%, 392px);
    padding: 30px 28px 36px;
    background: #efebdf;
    color: var(--color-primary);
    text-align: center;
    box-shadow: 0 26px 72px rgba(0, 0, 0, 0.16);
    overflow: hidden;
    transition: height 0.48s ease, box-shadow 0.4s ease, transform 0.4s ease;
    will-change: height;
}

.feature-gallery-scroll__title {
    margin: 18px 0 20px;
    font-size: clamp(2.3rem, 4vw, 3.5rem);
    line-height: 0.98;
}

.feature-gallery-scroll__card-kicker,
.feature-gallery-scroll__card-text {
    position: relative;
    overflow: hidden;
}

.feature-gallery-scroll__card-media {
    aspect-ratio: 1.48;
    overflow: hidden;
    position: relative;
    border-radius: 2px;
}

.feature-gallery-scroll__card-media img {
    display: block;
}

.feature-gallery-scroll__card-text {
    margin-top: 15px;
    line-height: 1.72;
    color: rgba(14, 38, 58, 0.8);
}

.feature-gallery-scroll__card.is-content-revealing {
    transform: translate3d(0, -3px, 0);
    box-shadow: 0 32px 82px rgba(0, 0, 0, 0.17);
}

.feature-gallery-scroll__card.is-content-revealing .feature-gallery-scroll__card-kicker,
.feature-gallery-scroll__card.is-content-revealing .feature-gallery-scroll__title,
.feature-gallery-scroll__card.is-content-revealing .feature-gallery-scroll__card-text {
    animation: featureGalleryCardMaskReveal 0.72s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.feature-gallery-scroll__card.is-content-revealing .feature-gallery-scroll__card-kicker {
    animation-delay: 0ms;
}

.feature-gallery-scroll__card.is-content-revealing .feature-gallery-scroll__title {
    animation-delay: 60ms;
}

.feature-gallery-scroll__card.is-content-revealing .feature-gallery-scroll__card-media {
    animation: featureGalleryCardMediaReveal 0.82s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: 120ms;
}

.feature-gallery-scroll__card.is-content-revealing .feature-gallery-scroll__card-media img {
    animation: featureGalleryCardImageReveal 1.2s cubic-bezier(0.2, 0.7, 0, 1) both;
    animation-delay: 160ms;
}

.feature-gallery-scroll__card.is-content-revealing .feature-gallery-scroll__card-text {
    animation-delay: 220ms;
}

.feature-gallery-scroll__skip {
    font-size: .75rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: 0;
    transition: color 0.2s ease;
    cursor: pointer;
    margin-left: auto;
    padding: 8px 0;
    min-height: auto;
}

.feature-gallery-scroll__skip:hover {
    color: #fff;
}

.feature-gallery-scroll__progress {
    position: absolute;
    left: 50%;
    bottom: 20px;
    z-index: 2;
    width: min(560px, calc(100vw - 80px));
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.feature-gallery-scroll__nav-button {
    font-size: .75rem;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 4px 0;
    transition: color 0.22s ease;
    border: 0;
    cursor: pointer;
}

.feature-gallery-scroll__nav-button:hover {
    color: #fff;
}

.feature-gallery-scroll__progress-track {
    position: relative;
    flex: 1;
    height: 2px;
}

.feature-gallery-scroll__progress-line,
.feature-gallery-scroll__progress-fill {
    position: absolute;
    inset: 0;
    height: 100%;
}

.feature-gallery-scroll__progress-line {
    width: 100%;
    background: rgba(255, 255, 255, 0.26);
}

.feature-gallery-scroll__progress-fill {
    width: 100%;
    background: var(--color-secondary);
    transform: scaleX(0);
    transform-origin: left center;
    will-change: transform;
}

@keyframes featureGalleryCardMaskReveal {
    0% {
        opacity: 0;
        transform: translate3d(0, 10px, 0);
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes featureGalleryCardMediaReveal {
    0% {
        opacity: 0;
        transform: translate3d(0, 14px, 0);
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes featureGalleryCardImageReveal {
    0% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1);
    }
}

/* =========================================
   7.5 Register Section
   ========================================= */
.register-section {
    background-color: rgba(239, 235, 223, 0.9);
    color: #4a5d4e;
}

.register-split {
    display: flex;
    flex-wrap: wrap;
    min-height: 100vh;
    align-items: stretch;
}

.register-image-pane {
    flex: 1 1 50%;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.register-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate3d(0, var(--parallax-offset, 0px), 0) scale(calc(var(--parallax-scale, 1.12) + var(--image-reveal-scale, 0)));
    transform-origin: center center;
    will-change: transform;
}

.register-form-pane {
    flex: 1 1 50%;
    min-height: 100vh;
    padding: clamp(4rem, 8vw, 8rem) clamp(2rem, 6vw, 6rem);
    display: flex;
    align-items: center;
    justify-content: center;
}

.register-inner {
    width: 100%;
    max-width: 580px;
}

.register-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    
    color: #2c3a2f;
    margin-bottom: 1.5rem;
}

.register-desc {
    color: #4a5d4e;
    margin-bottom: 3rem;
}

/* Form Styles */
.register-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group label {
    display: block;
    
    margin-bottom: 0.5rem;
    color: #6b7a6f;
}

.checkbox-label{
    padding-left: 5px;
}

.register-form input[type="text"],
.register-form input[type="email"],
.register-form input[type="tel"],
.register-form select {
    width: 100%;
    padding: .85rem 1rem;
    background-color: rgba(0, 0, 0, 0.04);
    border: 1px solid transparent;
    border-radius: 4px;
    font-family: inherit;
    color: #2c3a2f;
    transition: all 0.3s ease;
}

.register-form input::placeholder {
    color: #8c9a90;
}

.register-form input:focus,
.register-form select:focus {
    outline: none;
    border-color: rgba(44, 58, 47, 0.3);
    background-color: rgba(0, 0, 0, 0.02);
}

.phone-input-wrap {
    display: flex;
    gap: 0.5rem;
}

.phone-input-wrap select {
    width: auto;
    min-width: 90px;
    padding-right: 2rem;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%236b7a6f' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.select-wrap {
    position: relative;
}

.select-wrap select {
    padding-right: 3rem;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%236b7a6f' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.2rem center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.checkbox-group-title {
    
    color: #2c3a2f;
    margin-bottom: 1rem;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
}

.custom-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    cursor: pointer;
    
    color: #4a5d4e;
    user-select: none;
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.custom-checkbox .checkmark {
    position: relative;
    top: 3px;
    display: inline-block;
    width: 16px;
    height: 16px;
    background-color: transparent;
    border: 1px solid #8c9a90;
    border-radius: 2px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.2s ease;
}

.custom-checkbox:hover input ~ .checkmark {
    border-color: #2c3a2f;
}

.custom-checkbox input:checked ~ .checkmark {
    background-color: #2c3a2f;
    border-color: #2c3a2f;
}

.custom-checkbox .checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.custom-checkbox input:checked ~ .checkmark:after {
    display: block;
}

.custom-checkbox a {
    color: #2c3a2f;
    text-decoration: underline;
}

.terms-group {
    margin-top: 1rem;
}

.register-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    min-height: 46px;
    padding: 0.78rem 1.5rem;
    margin-top: 1.15rem;
    color: #0b2d4b;
    background: #f2c94c;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.015em;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.register-submit-btn:hover {
    background: #f6d66f;
    transform: translateY(-1px);
}

.register-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.register-form-status {
    display: none;
    margin-top: 1rem;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(11, 45, 75, 0.1);
    font-size: 0.95rem;
    line-height: 1.7;
}

.register-form-status.is-visible {
    display: block;
}

.register-form-status.is-loading {
    background: rgba(11, 45, 75, 0.04);
    color: rgba(11, 45, 75, 0.75);
}

.register-form-status.is-success {
    background: rgba(40, 167, 69, 0.08);
    border-color: rgba(40, 167, 69, 0.18);
    color: #1f6f3a;
}

.register-form-status.is-error {
    background: rgba(220, 53, 69, 0.08);
    border-color: rgba(220, 53, 69, 0.18);
    color: #9f2332;
}

/* =========================================
   7.8 Inner Pages
   ========================================= */
.page-hero {
    position: relative;
    min-height: 62vh;
    display: flex;
    align-items: flex-end;
    padding: 150px 0 70px;
    overflow: hidden;
    background: var(--color-primary);
}

.page-hero-media,
.page-hero-overlay {
    position: absolute;
    inset: 0;
}

.page-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-overlay {
    background: linear-gradient(180deg, rgba(11, 45, 75, 0.3) 0%, rgba(11, 45, 75, 0.55) 42%, rgba(11, 45, 75, 0.84) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    color: var(--color-white);
}

.page-hero-kicker {
    display: inline-block;
    margin-bottom: 1rem;
    color: rgba(242, 201, 76, 0.96);
    text-transform: uppercase;
    letter-spacing: 0.24em;
}

.page-hero-title {
    margin: 0;
    color: var(--color-white);
    font-size: clamp(3rem, 8vw, 5.6rem);
    line-height: 0.92;
    text-transform: uppercase;
}

.page-hero-text {
    margin: 1.4rem 0 0;
    max-width: 640px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.85;
}

.page-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 0 0 1.25rem;
    padding: 0;
    list-style: none;
    justify-content: center;
}

.page-breadcrumb a,
.page-breadcrumb span {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.page-breadcrumb .is-current {
    color: rgba(242, 201, 76, 0.98);
}

.page-breadcrumb li + li::before {
    content: "/";
    margin-right: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
}

.page-overview {
    background: linear-gradient(180deg, rgba(11, 45, 75, 0.03), rgba(11, 45, 75, 0));
}

.page-intro {
    width: min(100%, 760px);
    margin: 0 auto clamp(2rem, 5vw, 3rem);
    text-align: center;
}

.page-intro.text-start {
    margin-left: 0;
    margin-right: 0;
    text-align: left;
}

.page-info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.page-info-card,
.offer-card,
.contact-detail-card {
    height: 100%;
    padding: 2rem;
    background: var(--color-white);
}

.page-info-card h3,
.offer-card h3,
.contact-detail-card h3 {
    margin-bottom: 0.8rem;
    font-size: 2rem;
}

.page-info-card p,
.offer-card p,
.contact-detail-card p {
    margin-bottom: 0;
    color: rgba(11, 45, 75, 0.68);
}

.page-detail-list,
.offer-feature-list,
.reservation-step-list {
    display: grid;
    gap: 0.8rem;
    margin: 1.35rem 0 0;
    padding: 0;
    list-style: none;
}

.page-detail-list li,
.offer-feature-list li,
.reservation-step-list li {
    position: relative;
    padding-left: 1.2rem;
    color: rgba(11, 45, 75, 0.7);
}

.page-detail-list li::before,
.offer-feature-list li::before,
.reservation-step-list li::before {
    content: "";
    position: absolute;
    top: 0.72rem;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(197, 168, 128, 0.96);
}

.page-inline-stat {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.page-inline-stat span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0.55rem 1rem;
    border: 1px solid rgba(11, 45, 75, 0.1);
    color: rgba(11, 45, 75, 0.78);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.room-page-grid {
    row-gap: 1.5rem;
}

.offer-card {
    position: relative;
    overflow: hidden;
}

.offer-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, rgba(242, 201, 76, 0.95), rgba(197, 168, 128, 0.65));
}

.offer-card-price {
    margin: 1.2rem 0 0;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--color-primary);
}

.offer-card-note {
    display: inline-block;
    margin-top: 0.25rem;
    color: rgba(11, 45, 75, 0.48);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.offer-card-cta,
.page-primary-link {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    margin-top: 1.5rem;
    color: var(--color-primary);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 600;
}

.page-primary-link{
    font-size: .85rem;
}

.reservation-panel {
    padding: clamp(2rem, 4vw, 3rem);
    background: #f6f3ec;
    box-shadow: 0 18px 48px rgba(11, 45, 75, 0.08);
    height: 100%;
}

.reservation-panel h3 {
    margin-bottom: 0.9rem;
    font-size: 2rem;
}

.reservation-step-number {
    font-size: .75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin-bottom: 1rem;
    border-radius: 50%;
    background: rgba(197, 168, 128, 0.18);
    color: var(--color-primary);
    font-weight: 600;
}

body.page-static .header.is-hidden {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
}

.journal-section {
    background: linear-gradient(180deg, rgba(11, 45, 75, 0.04), rgba(11, 45, 75, 0));
}

.journal-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.journal-card,
.blog-detail-sidebar,
.blog-detail-panel {
    background: var(--color-white);
    box-shadow: 0 18px 48px rgba(11, 45, 75, 0.08);
}

.journal-card {
    overflow: hidden;
}

.journal-card-media {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.journal-card-media img,
.blog-detail-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.journal-card-body {
    padding: 1.6rem 1.5rem 1.8rem;
}

.journal-card-meta,
.blog-detail-meta {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: rgba(11, 45, 75, 0.46);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.journal-card-meta{
    font-size: .85rem;
}

.journal-card-title {
    margin: 0.9rem 0 0.7rem;
    font-size: 2rem;
    line-height: 0.98;
}

.journal-card-text {
    margin: 0;
    color: rgba(11, 45, 75, 0.68);
    line-height: 1.8;
}

.journal-card-link {
    font-size: .85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    margin-top: 1.4rem;
    color: var(--color-primary);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 600;
}

.blog-detail-hero {
    position: relative;
    padding: 150px 0 70px;
    background: var(--color-primary);
}

.blog-detail-hero-shell {
    position: relative;
    z-index: 2;
}

.blog-detail-hero-media {
    overflow: hidden;
    margin-top: 2rem;
    min-height: 46vh;
}

.blog-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.75fr);
    gap: 2rem;
}

.blog-detail-panel {
    padding: clamp(2rem, 4vw, 3rem);
}

.blog-detail-content p {
    margin-bottom: 1.2rem;
    color: rgba(11, 45, 75, 0.74);
    line-height: 1.95;
}

.blog-detail-content h2 {
    margin: 2.2rem 0 1rem;
    font-size: clamp(2rem, 4vw, 2.8rem);
}

.blog-detail-media-block {
    margin: 2rem 0;
}

.blog-detail-media-label {
    display: inline-flex;
    margin-bottom: 1rem;
    color: rgba(11, 45, 75, 0.5);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.blog-detail-video,
.blog-detail-gallery {
    overflow: hidden;
    background: #f6f3ec;
    box-shadow: 0 18px 48px rgba(11, 45, 75, 0.08);
}

.blog-detail-video-frame {
    position: relative;
    aspect-ratio: 16 / 9;
}

.blog-detail-video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.blog-detail-gallery {
    position: relative;
}

.blog-detail-swiper {
    overflow: hidden;
}

.blog-detail-slide {
    aspect-ratio: 16 / 10;
}

.blog-detail-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-detail-gallery .swiper-button-next,
.blog-detail-gallery .swiper-button-prev {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.35);
    color: var(--color-white);
}

.blog-detail-gallery .swiper-button-next::after,
.blog-detail-gallery .swiper-button-prev::after {
    font-size: 14px;
    font-weight: 700;
}

.blog-detail-gallery .swiper-pagination {
    position: absolute;
    bottom: 16px !important;
}

.blog-detail-gallery .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.65);
    opacity: 1;
}

.blog-detail-gallery .swiper-pagination-bullet-active {
    background: rgba(0, 0, 0, 0.25);
}

.blog-detail-sidebar {
    padding: 1.8rem;
    position: sticky;
    top: 110px;
    align-self: start;
}

.blog-detail-sidebar-title {
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.blog-detail-list {
    display: grid;
    gap: 1rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.blog-detail-list a {
    display: block;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(11, 45, 75, 0.08);
    color: var(--color-primary);
    text-decoration: none;
}

.blog-detail-list span {
    font-size: .85rem;
    display: block;
    margin-top: 0.35rem;
    color: rgba(11, 45, 75, 0.52);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* =========================================
   8. Footer
   ========================================= */
.footer {
    position: relative;
    padding: clamp(4.5rem, 8vw, 7rem) 0 1.8rem;
    background:
        radial-gradient(circle at top left, rgba(242, 201, 76, 0.12), transparent 28%),
        linear-gradient(180deg, #0e304f 0%, #0b2d4b 55%, #08233a 100%);
    color: var(--color-white);
    overflow: hidden;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: min(1120px, calc(100% - 48px));
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0));
    transform: translateX(-50%);
}

.footer-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: clamp(2.2rem, 6vw, 7rem);
    align-items: start;
}

.footer-brand {
    max-width: 520px;
}

.footer-kicker {
    display: inline-block;
    margin-bottom: 0.8rem;
    color: rgba(242, 201, 76, 0.95);
    text-transform: uppercase;
    letter-spacing: 0.26em;
    
}

.footer-title {
    margin: 0 0 1rem;
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 5vw, 4.6rem);
    line-height: 0.92;
    color: var(--color-white);
    text-transform: uppercase;
}

.footer-text {
    line-height: 1.95;
}

.footer-links-wrap {
    display: grid;
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    gap: 1.5rem 2rem;
}

.footer-links-group {
    display: grid;
    align-content: start;
    gap: 0.72rem;
}

.footer-label {
    font-size: .85rem;
    margin-bottom: 0.15rem;
    color: rgba(255, 255, 255, 0.42);
    text-transform: uppercase;
    letter-spacing: 0.22em;
    
}

.footer-link {
    font-size: .85rem;
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: color var(--transition-fast), transform var(--transition-fast);
}

.footer-link:hover {
    color: rgba(242, 201, 76, 0.98);
    transform: translateX(3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem 2rem;
    margin-top: clamp(2.8rem, 6vw, 4rem);
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-meta {
    font-weight: 400;
    font-size: .75rem;
    color: rgba(255, 255, 255, 0.58);
    letter-spacing: 0.08em;
}

.to-top {
    position: fixed;
    right: 22px;
    bottom: 26px;
    z-index: 60;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    border: 0;
    padding: 0;
    background: transparent;
    color: rgba(11, 45, 75, 0.74);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: opacity var(--transition-medium), transform var(--transition-medium), visibility var(--transition-medium), color var(--transition-fast);
}

.to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.to-top:hover {
    color: var(--color-primary);
}

.to-top.on-footer,
.to-top.on-gallery {
    color: rgba(255, 255, 255, 0.84);
}

.to-top.on-footer:hover,
.to-top.on-gallery:hover {
    color: var(--color-white);
}

.to-top-line {
    position: relative;
    width: 1px;
    height: 70px;
    background: rgba(11, 45, 75, 0.16);
    overflow: hidden;
}

.to-top.on-footer .to-top-line,
.to-top.on-gallery .to-top-line {
    background: rgba(255, 255, 255, 0.28);
}

.to-top-line-progress {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0%;
    background: var(--color-primary);
    transition: height 0.18s ease-out;
}

.to-top.on-footer .to-top-line-progress,
.to-top.on-gallery .to-top-line-progress {
    background: var(--color-white);
}

.to-top-label {
    font-size: .75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.to-top-label i {
    display: block;
}

/* =========================================
   9. Animations & Interactivity
   ========================================= */
.delay-1 { --reveal-delay: 0.1s; }
.delay-2 { --reveal-delay: 0.2s; }
.delay-3 { --reveal-delay: 0.3s; }
.delay-4 { --reveal-delay: 0.4s; }
.delay-06 { --reveal-delay: 0.06s; }
.delay-08 { --reveal-delay: 0.08s; }
.delay-12 { --reveal-delay: 0.12s; }
.delay-16 { --reveal-delay: 0.16s; }
.delay-18 { --reveal-delay: 0.18s; }
.delay-24 { --reveal-delay: 0.24s; }
.delay-36 { --reveal-delay: 0.36s; }
.delay-42 { --reveal-delay: 0.42s; }
.delay-48 { --reveal-delay: 0.48s; }

.reveal {
    transition: clip-path 3s cubic-bezier(0.19, 1, 0.22, 1) var(--reveal-delay, 0s), 
                transform 3s cubic-bezier(0.19, 1, 0.22, 1) var(--reveal-delay, 0s), 
                opacity 3s cubic-bezier(0.19, 1, 0.22, 1) var(--reveal-delay, 0s);
}

.about-item.reveal,
.col-md-6.reveal {
    transition: clip-path 3s cubic-bezier(0.19, 1, 0.22, 1) var(--reveal-delay, 0s),
                transform 3s cubic-bezier(0.19, 1, 0.22, 1) var(--reveal-delay, 0s),
                opacity 3s cubic-bezier(0.19, 1, 0.22, 1) var(--reveal-delay, 0s);
}

.reveal .section-title {
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
    transform: translateY(28px);
    opacity: 0;
    transition: clip-path 1.05s cubic-bezier(0.19, 1, 0.22, 1) calc(var(--reveal-delay, 0s) + 0.08s),
                transform 1.05s cubic-bezier(0.19, 1, 0.22, 1) calc(var(--reveal-delay, 0s) + 0.08s),
                opacity 1.05s cubic-bezier(0.19, 1, 0.22, 1) calc(var(--reveal-delay, 0s) + 0.08s);
    will-change: clip-path, transform, opacity;
}

.reveal[data-reveal="fade-up"] {
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
    transform: translateY(60px);
    opacity: 0;
}

.reveal[data-reveal="fade-left"] {
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
    transform: translateX(60px);
    opacity: 0;
}

.reveal[data-reveal="fade-right"] {
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    transform: translateX(-60px);
    opacity: 0;
}

.reveal.is-visible {
    /* Extending clip-path beyond 100% so box-shadows or overflowing elements aren't cut off */
    clip-path: polygon(0 -100%, 100% -100%, 100% 200%, 0 200%) !important;
    transform: translate(0) !important;
    opacity: 1 !important;
}

.reveal.is-visible .section-title {
    clip-path: polygon(0 -20%, 100% -20%, 100% 140%, 0 140%);
    transform: translateY(0);
    opacity: 1;
}

/* Remove masking for gallery card to improve performance */
.feature-gallery-scroll__card.reveal,
.feature-gallery-scroll__card.reveal[data-reveal="fade-up"],
.feature-gallery-scroll__card.reveal.is-visible {
    clip-path: none !important;
}
.feature-gallery-scroll__card.reveal {
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1) var(--reveal-delay, 0s), 
                opacity 1.2s cubic-bezier(0.19, 1, 0.22, 1) var(--reveal-delay, 0s) !important;
}

/* =========================================
   10. Responsive Adjustments
   ========================================= */
@media (max-width: 991px) {
    .navbar-toggler:focus{
        box-shadow: 0 0 0 0px;
    }
    .header.scrolled .header-nav{
        padding: 0.8rem .5rem;
    }
    .register-image-pane,
    .register-form-pane {
        flex: 1 1 100%;
        min-height: auto;
    }
    
    .register-image-pane {
        height: 50vh;
    }

    .header-nav {
        background: rgba(251, 251, 248, 0.95);
        border-color: rgba(11, 45, 75, 0.1);
    }
    .header-link {
        color: var(--color-primary) !important;
        margin: 10px 0;
        display: inline-block;
    }

    .header-register-btn {
        margin: 12px auto;
        width: max-content;
        min-width: 130px;
        justify-content: center;
    }

    .header-register-btn:hover {
        background: #f6d66f;
    }

    .header-toggler-icon {
        filter: invert(1);
    }
    
    .hero-bottom-controls {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 20px;
    }

    .hero-topbar {
        justify-content: center;
        padding: 0 16px;
        top: 16px;
        flex-wrap: wrap;
    }

    .hero-menu {
        gap: 10px;
    }

    .hero-menu-link {
        font-size: .75rem;
        letter-spacing: 0.1em;
    }

    .hero-menu-actions {
        width: 100%;
        justify-content: center;
    }

    .hero-badge-item{
        font-size: .75rem;
    }

    .hero-badge-item:not(:last-child)::after{
        content: unset;
    }

    .hero-slider-nav {
        align-items: center;
    }

    .usp-highlights-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: min(100%, 760px);
    }
    
    .facilities-split {
        flex-direction: column;
    }
    .facilities-image-pane, .facilities-content-pane {
        flex: 1 1 100%;
        min-height: auto;
    }
    .facilities-content-pane {
        padding: var(--spacing-lg) var(--spacing-md);
    }
    .fac-tabs-nav {
        gap: 1rem;
    }

    .room-showcase {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        padding: 1.5rem 0 0;
    }

    .room-showcase-panel {
        order: 2;
        width: min(92%, 440px);
        max-width: none;
        margin: -34px auto 0;
        padding: 2.4rem 2rem;
    }

    .room-showcase-media {
        order: 1;
        width: 100%;
        min-height: 460px;
    }

    .room-showcase-play {
        width: 82px;
        height: 82px;
    }

    .room-showcase-play::before {
        border-top-width: 10px;
        border-bottom-width: 10px;
        border-left-width: 16px;
    }

    .gallery-scroll-shell {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .gallery-scroll-intro {
        position: static;
        top: auto;
        padding-right: 0;
    }

    .gallery-scroll-copy {
        max-width: none;
    }

    .gallery-scroll-track {
        gap: 24px;
    }

    .gallery-scroll-card:nth-child(2),
    .gallery-scroll-card:nth-child(4) {
        justify-self: stretch;
    }

    .gallery-scroll-media {
        min-height: 300px;
    }

    .gallery-scroll-content {
        padding: 1.4rem 1.25rem 1.5rem;
    }

    .feature-gallery-section {
        min-height: 420vh;
    }

    .feature-gallery-scroll__sticky {
        height: 100svh;
    }

    .feature-gallery-scroll__overlay {
        display: block;
        padding: 1.5rem 0 5rem;
    }

    .feature-gallery-scroll__meta {
        justify-self: center;
        justify-items: center;
        text-align: center;
    }

    .feature-gallery-scroll__overlay > .feature-gallery-scroll__meta:last-of-type {
        justify-self: center;
        justify-items: center;
        text-align: center;
        margin-top: 30px;
    }

    .feature-gallery-scroll__skip{
        margin: 0 auto;
    }

    .feature-gallery-scroll__count {
        margin: 0 0 30px;
    }

    .feature-gallery-scroll__card {
        margin: 0 auto;
        width: min(100%, 420px);
        padding: 1.6rem 1.3rem 1.8rem;
    }

    .feature-gallery-scroll__title {
        font-size: clamp(2rem, 9vw, 3rem);
    }

    /* Hint removed */

    .feature-gallery-scroll__progress {
        width: min(100vw - 32px, 560px);
        bottom: 16px;
    }

    .page-hero {
        min-height: 54vh;
        padding: 130px 0 56px;
    }

    .page-hero-title {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }

    .page-info-grid {
        grid-template-columns: 1fr;
    }

    .journal-grid,
    .blog-detail-layout {
        grid-template-columns: 1fr;
    }

    .blog-detail-sidebar {
        position: static;
        top: auto;
    }

    .usp-highlights-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .usp-highlights-item h3 {
        max-width: 260px;
    }

    .footer-shell,
    .footer-links-wrap {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .to-top {
        right: 15px;
        bottom: 45px;
        gap: 10px;
    }

    .to-top-line {
        height: 74px;
    }

    .to-top-label {
        
    }
}

@media (min-width: 992px) {
    .header-shell {
        display: flex !important;
        align-items: center;
        min-height: 56px;
    }

    .header-logo {
        margin-right: 0;
    }

    .header-toggler {
        display: none;
    }

    .header-collapse {
        position: static;
        display: flex !important;
        flex: 1 1 auto;
        align-items: center;
        justify-content: flex-end;
    }

    .header-menu {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        align-items: center;
        justify-content: center;
        white-space: nowrap;
    }

    .header-register-btn {
        margin-left: auto;
    }
}

@media (min-width: 1440px) {
    .header-nav {
        padding: 1.1rem 2.5rem;
    }

    .header.scrolled .header-nav {
        padding: 0.65rem 2.5rem;
    }

    .hero-menu-link {
        
        letter-spacing: 0.12em;
    }

    .hero-menu-divider {
        height: 14px;
    }

    .hero-main-subtitle {
        
    }

    .hero-slide-title {
        font-size: 2.4rem;
    }

    .hero-nav-controls {
        
    }
}

@media (min-width: 1800px) {
    .header-link {
        
        margin: 0 20px;
    }

    .header-register-btn {
        min-height: 40px;
        padding: 0 24px;
        
    }

    .hero-menu-link {
        
    }

    .hero-main-subtitle {
        
    }

    .hero-slide-title {
        font-size: 2.6rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}
