/* THE LAST WAVE - PREMIUM LUXURY EDITION */
:root {
    --primary-blue: #0a4d68;
    --secondary-blue: #088395;
    --accent-teal: #05bfdb;
    --accent-coral: #ff6969;
    --accent-purple: #667eea;
    --accent-gold: #d4af37;
    --dark: #1a1a2e;
    --light: #f8f9fa;
    --white: #ffffff;

    --gradient-ocean: linear-gradient(
        135deg,
        #0a4d68 0%,
        #088395 50%,
        #05bfdb 100%
    );
    --gradient-sunset: linear-gradient(
        135deg,
        #ff6969 0%,
        #ff8c42 50%,
        #ffa07a 100%
    );
    --gradient-aurora: linear-gradient(
        135deg,
        #667eea 0%,
        #764ba2 50%,
        #f093fb 100%
    );
    --gradient-cosmic: linear-gradient(
        135deg,
        #1a1a2e 0%,
        #2d3561 50%,
        #543a80 100%
    );
    --gradient-amenity: linear-gradient(
        180deg,
        #0a7c99 0%,
        #0a7c99 50%,
        #6dd5db 50%,
        #6dd5db 100%
    );
    --gradient-amenity-hover: linear-gradient(
        180deg,
        #ff6969 0%,
        #ff6969 50%,
        #ffa07a 50%,
        #ffa07a 100%
    );
    --gradient-premium: linear-gradient(
        135deg,
        #0a4d68 0%,
        #d4af37 50%,
        #05bfdb 100%
    );
    --gradient-mesh:
        radial-gradient(
            at 40% 20%,
            rgba(255, 105, 105, 0.3) 0px,
            transparent 50%
        ),
        radial-gradient(at 80% 0%, rgba(5, 191, 219, 0.3) 0px, transparent 50%),
        radial-gradient(
            at 0% 50%,
            rgba(255, 140, 66, 0.2) 0px,
            transparent 50%
        ),
        radial-gradient(
            at 80% 50%,
            rgba(102, 126, 234, 0.3) 0px,
            transparent 50%
        ),
        radial-gradient(
            at 0% 100%,
            rgba(8, 131, 149, 0.2) 0px,
            transparent 50%
        ),
        radial-gradient(
            at 80% 100%,
            rgba(118, 75, 162, 0.3) 0px,
            transparent 50%
        );

    --shadow-lg: 0 20px 60px rgba(10, 77, 104, 0.15);
    --shadow-xl: 0 30px 90px rgba(10, 77, 104, 0.25);
    --shadow-neon:
        0 0 20px rgba(5, 191, 219, 0.6), 0 0 40px rgba(5, 191, 219, 0.4),
        0 0 60px rgba(5, 191, 219, 0.2);
    --shadow-glow:
        0 0 30px rgba(255, 105, 105, 0.5), 0 0 60px rgba(255, 105, 105, 0.3);
    --shadow-premium:
        0 20px 80px rgba(212, 175, 55, 0.25), 0 0 40px rgba(5, 191, 219, 0.15);
    --shadow-deep: 0 30px 120px rgba(10, 77, 104, 0.4);

    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition-elastic: all 0.7s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Outfit", sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--light);
    position: relative;
}
img {
    max-width: 100%;
    height: auto;
}
a {
    text-decoration: none;
    color: inherit;
}

/* PREMIUM ANIMATIONS */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes floatPremium {
    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(2deg);
    }
    50% {
        transform: translateY(-10px) rotate(0deg);
    }
    75% {
        transform: translateY(-15px) rotate(-2deg);
    }
}

@keyframes glowPulse {
    0%,
    100% {
        box-shadow:
            0 0 20px rgba(212, 175, 55, 0.5),
            0 0 40px rgba(5, 191, 219, 0.3);
    }
    50% {
        box-shadow:
            0 0 40px rgba(212, 175, 55, 0.8),
            0 0 80px rgba(5, 191, 219, 0.5);
    }
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(30px) scale(0.5);
        opacity: 0;
    }
}

@keyframes luxuryReveal {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes goldShine {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

@keyframes staggerFade {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* NAVBAR */
.navbar-ultra {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    padding: 18px 0;
    transition: var(--transition-smooth);
}

.navbar-ultra.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(30px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    padding: 12px 0;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 35px;
}

.brand-ultra {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
}

.brand-ultra img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.brand-text {
    display: flex;
    flex-direction: column;
}
.brand-name {
    font-family: "Bebas Neue";
    font-size: 28px;
    letter-spacing: 2px;
    background: var(--gradient-sunset);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.brand-tagline {
    font-size: 10px;
    letter-spacing: 1.5px;
    opacity: 0.9;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}
.nav-item {
    color: var(--white);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}
.navbar-ultra.scrolled .nav-item {
    color: var(--dark);
}
.nav-item::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-sunset);
    transition: var(--transition-smooth);
}
.nav-item:hover::before,
.nav-item.active::before {
    width: 100%;
}

.btn-reserve {
    background: var(--gradient-sunset);
    color: var(--white);
    padding: 11px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-bounce);
    box-shadow: 0 10px 40px rgba(255, 105, 105, 0.4);
}

.btn-reserve:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 50px rgba(255, 105, 105, 0.5);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.nav-toggle span {
    width: 28px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

/* HERO SECTION */
.hero-fullscreen {
    height: 100vh;
    position: relative;
    overflow: visible;
}
.hero-slider {
    height: 100%;
    position: relative;
    overflow: hidden;
}
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s;
}
.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.1) contrast(1.05);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(10, 77, 104, 0.45) 0%,
        rgba(8, 131, 149, 0.35) 50%,
        rgba(102, 126, 234, 0.25) 100%
    );
    z-index: 2;
}

.hero-content-wrapper {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 10;
}

.hero-content {
    color: var(--white);
    max-width: 700px;
}

.hero-label {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-heading {
    font-family: "Bebas Neue";
    font-size: 85px;
    line-height: 0.9;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-heading .highlight {
    background: var(--gradient-sunset);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.btn-primary-large {
    background: var(--gradient-sunset);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition-elastic);
    box-shadow:
        0 15px 40px rgba(255, 105, 105, 0.4),
        0 0 20px rgba(255, 105, 105, 0.2);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary-large::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

.btn-primary-large:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow:
        0 25px 60px rgba(255, 105, 105, 0.6),
        0 0 40px rgba(255, 105, 105, 0.4);
}

.btn-play {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
}

.play-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.btn-play:hover .play-icon {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(255, 105, 105, 0.5);
}

.hero-info-cards {
    position: absolute;
    bottom: 60px;
    right: 50px;
    display: flex;
    gap: 18px;
    z-index: 20;
}

.info-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 18px 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.15),
        inset 0 0 20px rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: var(--transition-elastic);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle,
        rgba(212, 175, 55, 0.3) 0%,
        transparent 70%
    );
    opacity: 0;
    transition: var(--transition-smooth);
}

.info-card:hover::before {
    opacity: 1;
}

.info-card:hover {
    transform: translateY(-12px) rotateY(5deg);
    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.25),
        0 0 30px rgba(212, 175, 55, 0.2);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-ocean);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    flex-shrink: 0;
}

.info-text h4 {
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 2px;
    color: var(--dark);
}
.info-text p {
    font-size: 12px;
    color: var(--primary-blue);
    margin: 0;
}

.slider-nav {
    position: absolute;
    bottom: 40px;
    left: 50px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 999;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 1);
    border: none;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-bounce);
    font-size: 18px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.slider-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 12px 35px rgba(255, 105, 105, 0.5);
}

.slider-dots {
    display: flex;
    gap: 12px;
}
.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.7);
}
.dot:hover {
    transform: scale(1.2);
}
.dot.active {
    width: 40px;
    border-radius: 10px;
    background: var(--gradient-sunset);
    box-shadow: 0 6px 20px rgba(255, 105, 105, 0.5);
}

.scroll-down {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
}

.scroll-icon {
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 20px;
    position: relative;
}
.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0%,
    100% {
        top: 8px;
        opacity: 1;
    }
    50% {
        top: 30px;
        opacity: 0.3;
    }
}

/* BOOKING WIDGET */
.booking-widget {
    padding: 50px 0;
    position: relative;
    z-index: 20;
    margin-top: -40px;
}

.booking-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(40px);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.booking-card h3 {
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 25px;
    color: var(--dark);
}

.form-group-inline {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 15px;
    align-items: end;
}

/* CUSTOM DATE PICKER */
.date-picker-wrapper {
    position: relative;
}

.date-picker-wrapper label {
    font-size: 12px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.date-picker-input {
    position: relative;
    display: flex;
    align-items: center;
}

.date-picker-input input.date-field {
    width: 100%;
    padding: 12px 35px 12px 14px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    font-family: "Outfit", sans-serif;
    transition: var(--transition);
    background: var(--white);
    color: var(--dark);
    cursor: pointer;
}

.date-picker-input input.date-field:focus {
    outline: none;
    border-color: var(--accent-coral);
    box-shadow: 0 0 0 3px rgba(255, 105, 105, 0.1);
    transform: translateY(-1px);
}

.date-picker-input input.date-field::placeholder {
    color: #9ca3af;
}

.date-picker-input i {
    position: absolute;
    right: 12px;
    color: var(--primary-blue);
    font-size: 16px;
    pointer-events: none;
}

.calendar-popup {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 100;
    display: none;
    padding: 15px;
    min-width: 280px;
    border: 1px solid #e5e7eb;
    margin-top: 8px;
}

.calendar-popup.active {
    display: block;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e5e7eb;
}

.calendar-header button {
    background: transparent;
    border: none;
    color: var(--primary-blue);
    cursor: pointer;
    font-size: 18px;
    padding: 5px 10px;
    transition: var(--transition);
}

.calendar-header button:hover {
    color: var(--accent-coral);
    transform: scale(1.1);
}

.calendar-month {
    font-weight: 800;
    color: var(--dark);
    font-size: 14px;
    text-align: center;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    margin-bottom: 10px;
}

.calendar-day-header {
    text-align: center;
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 11px;
    padding: 8px 0;
    text-transform: uppercase;
}

.calendar-day {
    text-align: center;
    padding: 8px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    background: transparent;
    border: 1px solid transparent;
    transition: var(--transition);
    color: var(--dark);
}

.calendar-day:not(.empty):hover {
    background: rgba(10, 77, 104, 0.08);
    border-color: var(--primary-blue);
}

.calendar-day.selected {
    background: var(--gradient-sunset);
    color: var(--white);
    font-weight: 800;
}

.calendar-day.empty {
    color: #d1d5db;
    cursor: default;
}

.btn-search {
    background: var(--gradient-ocean);
    color: var(--white);
    border: none;
    padding: 12px 35px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition-bounce);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(10, 77, 104, 0.3);
}

.btn-search:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(10, 77, 104, 0.4);
}

/* SECTIONS */
.experience-section {
    padding: 80px 0;
    position: relative;
}
.experience-image {
    position: relative;
    height: 550px;
    border-radius: 25px;
    overflow: hidden;
}
.experience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
    filter: brightness(1.05);
}
.experience-image:hover img {
    transform: scale(1.1);
}

.experience-badge {
    position: absolute;
    bottom: 40px;
    left: 40px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 28px;
    border-radius: 18px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    text-align: center;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.badge-number {
    display: block;
    font-size: 48px;
    font-weight: 900;
    background: var(--gradient-sunset);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}
.badge-text {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
}

.experience-content {
    padding: 0 50px;
}
.section-label {
    display: inline-block;
    color: var(--accent-coral);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 22px;
    position: relative;
    padding-left: 50px;
}

.section-label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 2px;
    background: var(--gradient-sunset);
    border-radius: 10px;
}

.section-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--dark);
}

.text-highlight {
    background: var(--gradient-sunset);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 16px;
    line-height: 1.8;
    color: #6b7280;
    margin-bottom: 35px;
}

.section-description.light {
    color: rgba(255, 255, 255, 0.95);
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 35px;
}

.feature-item {
    display: flex;
    gap: 18px;
    padding: 18px;
    border-radius: 15px;
    transition: var(--transition);
}

.feature-item:hover {
    background: rgba(10, 77, 104, 0.05);
    transform: translateX(8px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-ocean);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
    font-size: 20px;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(360deg);
    transition: transform 0.8s;
}

.feature-text h4 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 5px;
    color: var(--dark);
}
.feature-text p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

.btn-explore {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gradient-ocean);
    color: var(--white);
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 14px;
    transition: var(--transition-bounce);
    box-shadow: 0 10px 30px rgba(10, 77, 104, 0.3);
}

.btn-explore:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 45px rgba(10, 77, 104, 0.4);
}

/* ROOMS SECTION */
.rooms-section {
    padding: 80px 0;
    background: var(--light);
    position: relative;
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-title-large {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
    letter-spacing: -0.5px;
}

.section-title-large::after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-premium);
    border-radius: 10px;
    opacity: 0;
    animation: slideIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.3s;
}

@keyframes slideIn {
    0% {
        width: 0;
        opacity: 0;
    }
    100% {
        width: 100%;
        opacity: 1;
    }
}

.section-subtitle {
    font-size: 18px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    animation: luxuryReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    animation-delay: 0.2s;
    line-height: 1.8;
    font-weight: 400;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.room-card-modern {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    position: relative;
    animation: luxuryReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.room-card-modern::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(212, 175, 55, 0.05) 0%,
        rgba(5, 191, 219, 0.05) 100%
    );
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 1;
    pointer-events: none;
}

.room-card-modern:hover::before {
    opacity: 1;
}

.room-card-modern:hover {
    transform: translateY(-15px) rotateX(2deg);
    box-shadow: var(--shadow-deep);
    z-index: 10;
}

.room-image-container {
    position: relative;
    height: 280px;
    overflow: hidden;
}
.room-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}
.room-card-modern:hover .room-image-container img {
    transform: scale(1.15);
}

.room-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(10, 77, 104, 0.9) 0%,
        rgba(102, 126, 234, 0.85) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 50;
}

.room-card-modern:hover .room-overlay {
    opacity: 1;
}

.btn-view {
    background: var(--white);
    color: var(--primary-blue);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 800;
    transform: translateY(20px) scale(0.8);
    transition: var(--transition-bounce);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.room-card-modern:hover .btn-view {
    transform: translateY(0) scale(1);
}

.room-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-coral);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    z-index: 100;
    box-shadow: 0 8px 25px rgba(255, 105, 105, 0.4);
}

.room-details {
    padding: 25px;
}
.room-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 15px;
    gap: 15px;
}
.room-header h3 {
    font-size: 22px;
    font-weight: 900;
    color: var(--dark);
}

.room-price {
    text-align: right;
    flex-shrink: 0;
}
.price-amount {
    display: block;
    font-size: 26px;
    font-weight: 900;
    background: var(--gradient-sunset);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.price-period {
    font-size: 12px;
    color: #6b7280;
}

.room-desc {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 18px;
    line-height: 1.6;
}

.room-features-inline {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.room-features-inline span {
    font-size: 12px;
    color: var(--primary-blue);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: rgba(10, 77, 104, 0.08);
    border-radius: 15px;
    transition: var(--transition);
}

.room-features-inline span:hover {
    background: var(--gradient-ocean);
    color: var(--white);
}

.btn-book-room {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: var(--gradient-ocean);
    color: var(--white);
    padding: 13px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 14px;
    transition: var(--transition-bounce);
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(10, 77, 104, 0.25);
}

.btn-book-room:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(10, 77, 104, 0.35);
}

.btn-all-rooms {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 14px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-all-rooms:hover {
    color: var(--white);
    transform: translateY(-3px);
}

/* DINING SECTION */
.dining-section {
    padding: 80px 0;
    background: var(--primary-blue);
    position: relative;
    overflow: hidden;
}

.dining-content {
    color: var(--white);
    padding-right: 40px;
}

.dining-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 35px 0;
}

.dining-feature {
    padding: 22px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition);
}

.dining-feature:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(12px);
}

.dining-feature h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
}
.dining-feature p {
    font-size: 15px;
    opacity: 0.9;
    margin: 0;
}

.btn-outline-light {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 14px;
    transition: var(--transition-smooth);
    background: transparent;
    position: relative;
    overflow: hidden;
}

.btn-outline-light:hover {
    color: var(--primary-blue);
    transform: translateY(-3px);
}

.dining-images {
    position: relative;
    height: 450px;
    margin-top: 35px;
}

.dining-img-large,
.dining-img-small {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: var(--transition-smooth);
}

.dining-img-large {
    top: 0;
    right: 0;
    width: 70%;
    height: 70%;
}
.dining-img-small {
    bottom: 0;
    left: 0;
    width: 50%;
    height: 50%;
    z-index: 2;
}

.dining-img-large img,
.dining-img-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* AMENITIES SECTION */
.amenities-section {
    padding: 80px 0;
    background: var(--white);
    position: relative;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 35px;
    margin-top: 60px;
}

.amenity-item {
    text-align: center;
    padding: 35px 25px;
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.5) 0%,
        rgba(212, 175, 55, 0.05) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.amenity-item::before {
    content: "";
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(212, 175, 55, 0.4) 0%,
        transparent 70%
    );
    transition: var(--transition-smooth);
    pointer-events: none;
}

.amenity-item:hover::before {
    width: 200px;
    height: 200px;
}

.amenity-item:hover {
    transform: translateY(-20px) scale(1.08) rotateX(-5deg);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.2),
        0 0 40px rgba(212, 175, 55, 0.3);
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.8) 0%,
        rgba(212, 175, 55, 0.15) 100%
    );
}

.amenity-icon-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 42px;
    transition: all 0.6s;
    box-shadow: 0 12px 35px rgba(10, 77, 104, 0.2);
    background: var(--gradient-amenity);
}

.amenity-item:hover .amenity-icon-circle {
    transform: rotateY(360deg) scale(1.1);
    background: var(--gradient-amenity-hover);
    box-shadow: 0 15px 45px rgba(255, 105, 105, 0.3);
}

.amenity-item h4 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--dark);
    transition: var(--transition);
}

.amenity-item:hover h4 {
    color: var(--primary-blue);
}

.amenity-item p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

/* GALLERY SECTION */
.gallery-section {
    padding: 80px 0;
    background: var(--light);
    position: relative;
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    grid-auto-rows: 250px;
    gap: 18px;
    margin-top: 60px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    cursor: pointer;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
}

.gallery-item.tall {
    grid-row: span 2;
}
.gallery-item.wide {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.gallery-item:hover img {
    transform: scale(1.2);
}

.gallery-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(10, 77, 104, 0.9) 0%,
        rgba(102, 126, 234, 0.85) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 2;
}

.gallery-item:hover .gallery-hover {
    opacity: 1;
}

.gallery-hover i {
    color: var(--white);
    font-size: 40px;
    transform: scale(0) rotate(180deg);
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.gallery-item:hover .gallery-hover i {
    transform: scale(1) rotate(0);
}

/* CONTACT SECTION */
.contact-section {
    padding: 80px 0;
    background: var(--white);
    position: relative;
}

.contact-info-modern {
    padding-right: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 35px 0;
}

.contact-detail-item {
    display: flex;
    gap: 18px;
    align-items: start;
    padding: 18px;
    background: rgba(10, 77, 104, 0.05);
    border-radius: 15px;
    transition: var(--transition);
}

.contact-detail-item:hover {
    background: rgba(10, 77, 104, 0.08);
    transform: translateX(8px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-ocean);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(10, 77, 104, 0.25);
    transition: var(--transition-bounce);
}

.contact-detail-item:hover .contact-icon {
    transform: scale(1.1) rotate(360deg);
}

.contact-detail-item h4 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 5px;
    color: var(--dark);
}
.contact-detail-item p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

.social-links-contact {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.social-links-contact a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    transition: var(--transition-bounce);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.social-links-contact a:hover {
    transform: translateY(-6px) scale(1.1);
    box-shadow: 0 10px 30px rgba(10, 77, 104, 0.3);
    background: var(--gradient-ocean);
    color: var(--white);
}

.contact-form-modern {
    background: var(--light);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.form-floating-custom {
    position: relative;
    margin-bottom: 20px;
}

.form-floating-custom input,
.form-floating-custom select,
.form-floating-custom textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
    background: var(--white);
    box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.03);
}

.form-floating-custom input:focus,
.form-floating-custom select:focus,
.form-floating-custom textarea:focus {
    outline: none;
    border-color: var(--accent-coral);
    box-shadow: 0 0 0 3px rgba(255, 105, 105, 0.1);
    transform: translateY(-2px);
}

.form-floating-custom label {
    position: absolute;
    top: -10px;
    left: 16px;
    background: var(--light);
    padding: 0 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-blue);
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.btn-submit-modern {
    width: 100%;
    background: var(--gradient-ocean);
    color: var(--white);
    padding: 14px;
    border-radius: 12px;
    border: none;
    font-weight: 800;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: var(--transition-bounce);
    box-shadow: 0 10px 30px rgba(10, 77, 104, 0.3);
    margin-top: 10px;
}

.btn-submit-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(10, 77, 104, 0.4);
}

/* FOOTER */
.footer-modern {
    background: var(--dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.footer-top {
    padding: 70px 0 35px;
    position: relative;
    z-index: 1;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-brand img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--accent-coral);
}

.footer-brand h3 {
    font-family: "Bebas Neue";
    font-size: 26px;
    letter-spacing: 2px;
    margin: 0;
    background: var(--gradient-sunset);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 13px;
}

.footer-modern h4 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 18px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    transition: var(--transition);
}
.footer-links a:hover {
    color: var(--accent-coral);
    padding-left: 15px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 11px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-size: 13px;
    transition: var(--transition);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent-coral);
    background: rgba(255, 255, 255, 0.12);
}

.newsletter-form button {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--gradient-sunset);
    border: none;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition-bounce);
    font-size: 16px;
    box-shadow: 0 8px 25px rgba(255, 105, 105, 0.3);
}

.newsletter-form button:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 35px rgba(255, 105, 105, 0.4);
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}
.footer-bottom a {
    color: var(--accent-coral);
    font-weight: 700;
}

/* BACK TO TOP */
.back-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-sunset);
    color: var(--white);
    border: none;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 998;
    box-shadow: 0 10px 30px rgba(255, 105, 105, 0.4);
    transition: var(--transition-bounce);
    font-size: 18px;
}

.back-to-top:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 105, 105, 0.5);
}

.back-to-top.show {
    display: flex;
}

/* SOCIAL SIDEBAR */
.social-sidebar {
    position: fixed;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-item {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    transition: var(--transition-bounce);
    cursor: pointer;
}

.social-item:hover {
    transform: translateX(8px) scale(1.1);
    box-shadow: 0 10px 35px rgba(255, 105, 105, 0.4);
    background: var(--gradient-sunset);
    color: var(--white);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .nav-toggle {
        display: flex;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 80px 30px 30px;
        transition: var(--transition-smooth);
        z-index: 9999;
    }
    .nav-menu.active {
        right: 0;
    }
    .social-sidebar {
        display: none;
    }
    .hero-heading {
        font-size: 55px;
    }
    .hero-info-cards {
        display: none;
    }
    .experience-content,
    .dining-content {
        padding-right: 15px;
        margin-bottom: 35px;
    }
    .section-title-large {
        font-size: 50px;
        line-height: 1.2;
    }
    .section-label {
        font-size: 13px;
    }
    .section-subtitle {
        font-size: 17px;
    }
    .slider-nav {
        left: 15px;
        bottom: 20px;
    }
}

@media (max-width: 768px) {
    .hero-heading {
        font-size: 40px;
    }
    .hero-text {
        font-size: 15px;
    }
    .form-group-inline {
        grid-template-columns: 1fr;
    }
    .rooms-grid {
        grid-template-columns: 1fr;
    }
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .amenity-icon-circle {
        width: 80px;
        height: 80px;
        font-size: 32px;
    }
    .gallery-masonry {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
        gap: 12px;
    }
    .gallery-item.wide,
    .gallery-item.tall {
        grid-column: span 1;
        grid-row: span 1;
    }
    .slider-btn {
        width: 45px !important;
        height: 45px !important;
        font-size: 16px !important;
    }
    .section-title {
        font-size: 38px;
    }
    .section-title-large {
        font-size: 42px;
        line-height: 1.2;
    }
    .section-label {
        font-size: 13px;
    }
    .section-subtitle {
        font-size: 16px;
    }
    .booking-card {
        padding: 25px;
    }
    .contact-form-modern {
        padding: 25px;
    }
    .experience-image {
        height: 380px;
    }
    .dining-images {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .hero-heading {
        font-size: 32px;
    }
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    .btn-primary-large {
        width: 100%;
    }
    .section-title {
        font-size: 28px;
    }
    .section-title-large {
        font-size: 32px;
        line-height: 1.25;
    }
    .section-label {
        font-size: 12px;
        margin-bottom: 16px;
    }
    .section-subtitle {
        font-size: 15px;
    }
    .nav-content {
        padding: 0 15px;
    }
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    .amenity-icon-circle {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
    .rooms-grid {
        gap: 20px;
    }
    .booking-card h3 {
        font-size: 20px;
    }
    .feature-text h4 {
        font-size: 16px;
    }
}

/* ========================================
   NAVBAR ADDITIONAL STYLES
   Add this to your style.css
======================================== */

/* Mobile Menu Toggle Animation */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 10001;
    position: relative;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
}

/* Scrolled state - dark hamburger */
.navbar-ultra.scrolled .nav-toggle span {
    background: var(--dark);
}

/* Active state - X animation */
.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: var(--accent-coral);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background: var(--accent-coral);
}

/* Nav Items - Proper styling for scrolled state */
.navbar-ultra .nav-item {
    color: var(--white);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
}

.navbar-ultra.scrolled .nav-item {
    color: var(--dark);
}

.navbar-ultra.scrolled .nav-item:hover {
    color: var(--accent-coral);
}

.navbar-ultra.scrolled .brand-tagline {
    color: var(--dark);
    opacity: 0.7;
}

/* Mobile Menu Styles */
@media (max-width: 992px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 100px 40px 40px;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 10000;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
        gap: 0;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu .nav-item {
        color: var(--dark) !important;
        font-size: 16px;
        padding: 18px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        width: 100%;
        display: block;
    }

    .nav-menu .nav-item:hover {
        color: var(--accent-coral) !important;
        padding-left: 15px;
    }

    .nav-menu .nav-item.active {
        color: var(--accent-coral) !important;
    }

    .nav-menu .btn-reserve {
        margin-top: 25px;
        width: 100%;
        justify-content: center;
    }

    /* Overlay when menu is open */
    .nav-menu.active::before {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        right: 320px;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }
}

/* Header Other Page - Add top padding to body */
.page-other {
    padding-top: 80px;
}

/* Social Sidebar for Other Pages */
.social-sidebar {
    position: fixed;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, var(--accent-coral), transparent);
    margin: 10px auto 0;
}

@media (max-width: 992px) {
    .social-sidebar {
        display: none;
    }
}
