/* Root Variables */
:root {
    --gold-primary: #D4AF37;
    --gold-light: #F3E5AB;
    --gold-dark: #AA8C2C;
    --black-deep: #050505;
    --black-soft: #121212;
    --black-card: #1E1E1E;
}

/* Base Styles */
html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: 'Oswald', sans-serif;
    background-color: var(--black-deep);
    color: #f5f5f5;
    -webkit-tap-highlight-color: transparent;
    padding-bottom: 80px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Oswald', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Color Utility Classes */
.text-gold {
    color: var(--gold-primary) !important;
}

.text-gold-light {
    color: var(--gold-light) !important;
}

.bg-gold {
    background-color: var(--gold-primary) !important;
}

.bg-black-soft {
    background-color: var(--black-soft) !important;
}

.bg-black-card {
    background-color: var(--black-card) !important;
}

.bg-black-deep {
    background-color: var(--black-deep) !important;
}

.border-gold {
    border-color: var(--gold-primary) !important;
}

/* Gradient Classes */
.gold-gradient-text {
    background: linear-gradient(to right, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.gold-gradient-bg {
    background: linear-gradient(to right, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
}

/* Helper Classes */
.tracking-widest {
    letter-spacing: 0.2em;
}

.object-cover {
    object-fit: cover;
}

.backdrop-blur {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.cursor-pointer {
    cursor: pointer;
}

/* Hide Scrollbar */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Navbar */
.navbar-custom {
    background-color: rgba(0, 0, 0, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.navbar-custom.scrolled {
    background-color: rgba(0, 0, 0, 0.95);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.nav-link {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold-primary) !important;
}

/* Buttons */
.btn-gold-gradient {
    background: linear-gradient(to right, #bfa34a, #d4af37);
    color: #000;
    border: none;
    font-weight: bold;
    letter-spacing: 0.1em;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    transition: all 0.3s;
}

.btn-gold-gradient:hover {
    background: linear-gradient(to right, #d4af37, #f3e5ab);
    color: #000;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
}

.btn-outline-gold {
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    font-weight: bold;
    letter-spacing: 0.1em;
    transition: all 0.3s;
}

.btn-outline-gold:hover {
    background-color: var(--gold-primary);
    color: #000;
}

/* Cards */
.app-card {
    border: 1px solid rgba(212, 175, 55, 0.1);
    background-color: var(--black-card);
    transition: transform 0.2s, box-shadow 0.2s;
}

.app-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.app-card:active {
    transform: scale(0.98);
}

/* Animations */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Search Bar */
.mobile-search-bar {
    background-color: var(--black-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

/* Horizontal Scroll */
.scrolling-wrapper {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.card-scroll-item {
    flex: 0 0 auto;
    margin-right: 1rem;
}

/* Mobile Bottom Nav */
.mobile-bottom-nav {
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    overflow: visible;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    z-index: 999;
    padding-top: 45px;
    margin-top: -45px;
}

.mobile-bottom-nav > div {
    overflow: visible;
    width: 100%;
    box-sizing: border-box;
}

.nav-icon-link {
    color: #888;
    font-size: 0.65rem;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: color 0.3s;
    min-width: 0;
    flex: 1;
    text-align: center;
}

.nav-icon-link i {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.nav-icon-link:hover,
.nav-icon-link.active {
    color: var(--gold-primary);
}

.floating-btn-container {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
}

.floating-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #D4AF37, #AA8C2C);
    border: 4px solid #050505;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    font-size: 1.25rem;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

/* Form Inputs */
.form-control-dark {
    background-color: var(--black-soft);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.form-control-dark:focus {
    background-color: var(--black-soft);
    border-color: var(--gold-primary);
    color: #fff;
    box-shadow: none;
}

.form-select-dark {
    background-color: var(--black-soft);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23D4AF37' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

.form-select-dark:focus {
    background-color: var(--black-soft);
    border-color: var(--gold-primary);
    color: #fff;
    box-shadow: none;
}

/* Page Header */
.page-header {
    height: 50vh;
    min-height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Gallery Items */
.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Stat Card */
.stat-card {
    background-color: var(--black-card);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
}

/* Room Card */
.room-card {
    background-color: var(--black-card);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s;
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

/* Offer Card */
.offer-card {
    background-color: var(--black-card);
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.offer-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
}

.offer-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, #D4AF37, #AA8C2C);
    color: #000;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-weight: bold;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Amenity Icon Box */
.amenity-icon-box {
    background-color: var(--black-card);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s;
}

.amenity-icon-box:hover {
    background-color: rgba(212, 175, 55, 0.05);
    border-color: var(--gold-primary);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form {
    background-color: rgba(30, 30, 30, 0.5);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.25);
}

/* Map Container */
.map-container {
    border: 2px solid rgba(212, 175, 55, 0.2);
    overflow: hidden;
}

/* Transport Card */
.transport-card {
    background-color: var(--black-card);
    border-left: 3px solid var(--gold-primary);
    transition: all 0.3s;
}

.transport-card:hover {
    background-color: rgba(212, 175, 55, 0.05);
    transform: translateX(5px);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0;
    background: none;
    border: none;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--gold-primary);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    transition: left 0.3s ease;
    z-index: 1050;
    overflow-y: auto;
    border-right: 1px solid rgba(212, 175, 55, 0.2);
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1040;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-menu-list a {
    display: block;
    padding: 1rem 1.5rem;
    color: #f5f5f5;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
}

.mobile-menu-list a:hover,
.mobile-menu-list a.active {
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--gold-primary);
    padding-left: 2rem;
}

.mobile-menu-list i {
    margin-right: 0.75rem;
    width: 20px;
    text-align: center;
}

@media (max-width: 767px) {
    .hamburger {
        display: flex;
    }
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    position: relative;
    animation: zoomIn 0.3s ease;
}

.lightbox-content img {
    width: 100%;
    height: auto;
    max-height: 90vh;
    object-fit: contain;
    border: 2px solid var(--gold-primary);
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: var(--gold-primary);
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    background: none;
    border: none;
    transition: color 0.3s;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    color: #fff;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold-primary);
    font-size: 30px;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--gold-primary);
    padding: 10px 15px;
    transition: all 0.3s;
    border-radius: 4px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: var(--gold-primary);
    color: #000;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* ============================================
   HERO SLIDER
   ============================================ */

/* Section wrapper — full viewport height */
.hero-slider-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 500px;
    overflow: hidden;
    background: #000;
}

/* Slides container */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Individual slide */
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
}

/* Background image + overlay */
.hero-slide-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.06);
    transition: transform 6s ease-out;
}

.hero-slide.active .hero-slide-bg img {
    transform: scale(1);
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.55) 0%,
            rgba(0, 0, 0, 0.15) 40%,
            rgba(0, 0, 0, 0.85) 100%);
}

/* Slide text content — centred */
.hero-slide-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1.5rem;
    padding-top: 80px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease 0.4s, transform 0.8s ease 0.4s;
}

.hero-slide.active .hero-slide-content {
    opacity: 1;
    transform: translateY(0);
}

/* Tag line */
.hero-tag {
    color: var(--gold-primary);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

/* Main title */
.hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    font-weight: 400;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    max-width: 860px;
}

/* Subtitle */
.hero-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-weight: 300;
    margin-bottom: 2rem;
    max-width: 600px;
}

/* CTA buttons row */
.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* ---- Arrow Buttons ---- */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(212, 175, 55, 0.45);
    color: var(--gold-primary);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s, border-color 0.3s, transform 0.2s;
    backdrop-filter: blur(6px);
}

.hero-arrow:hover {
    background: var(--gold-primary);
    border-color: var(--gold-primary);
    color: #000;
    transform: translateY(-50%) scale(1.08);
}

.hero-arrow-prev {
    left: 1.25rem;
}

.hero-arrow-next {
    right: 1.25rem;
}

/* ---- Dot Indicators ---- */
.hero-dots {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 0.6rem;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.4);
    cursor: pointer;
    transition: all 0.35s;
    padding: 0;
}

.hero-dot.active {
    background: var(--gold-primary);
    border-color: var(--gold-primary);
    width: 30px;
    border-radius: 5px;
}

/* ---- Slide Counter ---- */
.hero-counter {
    position: absolute;
    bottom: 3.25rem;
    right: 1.5rem;
    z-index: 20;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
}

.hero-counter #heroCurrentSlide {
    color: var(--gold-primary);
    font-size: 1.1rem;
    font-weight: 700;
}

.hero-counter-sep {
    margin: 0 0.15rem;
}

/* ---- Progress Bar ---- */
.hero-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 100vw;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 20;
    overflow: hidden;
}

.hero-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(to right, var(--gold-dark), var(--gold-primary));
    transition: width linear;
}

/* ---- Responsive ---- */
@media (max-width: 767px) {
    .hero-slider-section {
        height: 100svh;
        overflow-x: hidden;
    }

    .hero-slide-content {
        padding-top: 70px;
    }

    .hero-progress-bar {
        width: 100vw;
        left: 0;
        right: 0;
    }

    .hero-arrow {
        width: 40px;
        height: 40px;
        font-size: 0.85rem;
    }

    .hero-arrow-prev {
        left: 0.6rem;
    }

    .hero-arrow-next {
        right: 0.6rem;
    }

    .hero-dots {
        bottom: 5.5rem;
    }

    .hero-counter {
        display: none;
    }

    .mobile-bottom-nav {
        padding-bottom: env(safe-area-inset-bottom, 8px);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-btns .btn {
        font-size: 0.75rem;
        padding: 0.65rem 1.5rem;
    }

    .nav-icon-link {
        font-size: 1rem;
    }

    .nav-icon-link i {
        font-size: 1.1rem;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .fade-in-up {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

/* Ensure gallery images are always visible on mobile */
@media (max-width: 767px) {
    .gallery-item,
    .gallery-item img {
        opacity: 1 !important;
        visibility: visible !important;
    }

    section .container {
        opacity: 1 !important;
        transform: none !important;
    }
}

footer {
    background-color: #121212 !important;
}