/* ============================================================
   HOTEL RK GALAXY — Premium Luxury Design System
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
    --color-bg: #050505;
    --color-bg-secondary: #0a0a0a;
    --color-bg-card: rgba(255, 255, 255, 0.03);
    --color-text-main: #e8e8e8;
    --color-text-muted: #b0b0b0;
    --color-text-bright: #ffffff;
    --color-border: rgba(255, 255, 255, 0.06);
    --color-border-hover: rgba(212, 175, 55, 0.35);

    /* Gold Palette */
    --gold-gradient: linear-gradient(135deg, #bf953f, #fcf6ba 45%, #b38728 55%, #fbf5b7, #aa771c);
    --gold-text-gradient: linear-gradient(to right, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    --color-gold-solid: #d4af37;
    --color-gold-glow: rgba(212, 175, 55, 0.15);
    --color-gold-glow-strong: rgba(212, 175, 55, 0.3);

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;

    /* Motion */
    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --section-padding: 12vh 0;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

::selection {
    background: var(--color-gold-solid);
    color: #000;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold-solid);
}

body {
    background-color: var(--color-bg);
    color: var(--color-text-main);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.8;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.loading {
    overflow: hidden;
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    letter-spacing: -0.02em;
    color: var(--color-text-bright);
}




p {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    margin-bottom: 1.8rem;
    max-width: 650px;
    line-height: 1.9;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.5s var(--ease-out-expo);
}

img {
    width: 100%;
    display: block;
    transition: transform 1.2s var(--ease-out-expo), filter 0.8s ease;
}

ul {
    list-style: none;
}

.container {
    width: 88%;
    max-width: 1440px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

/* ---------- Keyframe Animations ---------- */
@keyframes pulse {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.92);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes borderGlow {

    0%,
    100% {
        border-color: rgba(212, 175, 55, 0.15);
    }

    50% {
        border-color: rgba(212, 175, 55, 0.5);
    }
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100vh) translateX(20px);
        opacity: 0;
    }
}

@keyframes typeWriter {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes blinkCaret {
    50% {
        border-color: transparent;
    }
}

/* ---------- Scroll Reveal System ---------- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}

.reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

/* Force-show reveals on internal pages (no loader, no scroll animation needed) */
.hero-internal~* .reveal,
.hero-internal~* .reveal-left,
.hero-internal~* .reveal-right,
.hero-internal~* .reveal-scale {
    opacity: 1;
    transform: none;
}

/* Staggered delays for children */
.stagger-children>*:nth-child(1) {
    transition-delay: 0.05s;
}

.stagger-children>*:nth-child(2) {
    transition-delay: 0.15s;
}

.stagger-children>*:nth-child(3) {
    transition-delay: 0.25s;
}

.stagger-children>*:nth-child(4) {
    transition-delay: 0.35s;
}

.stagger-children>*:nth-child(5) {
    transition-delay: 0.45s;
}

.stagger-children>*:nth-child(6) {
    transition-delay: 0.55s;
}

/* ---------- Loader ---------- */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    flex-direction: column;
    gap: 1rem;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    letter-spacing: 0.25em;
    background: var(--gold-text-gradient);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: shimmer 3s linear infinite;
}

.loader-bar {
    width: 120px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    margin: 1.5rem auto 0;
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.loader-bar::after {
    content: '';
    position: absolute;
    left: -40%;
    width: 40%;
    height: 100%;
    background: var(--gold-gradient);
    animation: loaderSlide 1.2s ease-in-out infinite;
}

@keyframes loaderSlide {
    0% {
        left: -40%;
    }

    100% {
        left: 100%;
    }
}

/* ---------- Navbar ---------- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.5s var(--ease-smooth);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.85) 0%, rgba(5, 5, 5, 0.6) 100%);
    backdrop-filter: blur(16px) saturate(1.2);
    -webkit-backdrop-filter: blur(16px) saturate(1.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.08);
}

.navbar.scrolled {
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(25px) saturate(1.5);
    -webkit-backdrop-filter: blur(25px) saturate(1.5);
    padding: 0.9rem 5%;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--color-text-bright);
    z-index: 1001;
    position: relative;
}

.logo::after {
    content: '★';
    font-size: 0.55rem;
    color: var(--color-gold-solid);
    margin-left: 0.4rem;
    vertical-align: super;
}

.nav-links {
    display: flex;
    gap: 0.4rem;
    align-items: center;
}

.nav-links li {
    list-style: none;
}

.nav-links a {
    position: relative;
    font-size: 0.72rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.7);
    padding: 0.6rem 0.7rem;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: width 0.4s var(--ease-out-expo), left 0.4s var(--ease-out-expo);
    border-radius: 2px;
}

.nav-links a:hover {
    color: #fff;
}

.nav-links a.active {
    color: var(--color-gold-solid);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 60%;
    left: 20%;
}

.btn-book {
    padding: 0.55rem 1.4rem;
    border: 1.5px solid var(--color-gold-solid) !important;
    color: #000 !important;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: all 0.4s ease;
    background: var(--gold-gradient);
    white-space: nowrap;
    margin-left: 0.5rem;
}

/* Disable nav-link underline on Book Now */
.btn-book::after {
    display: none !important;
}

.btn-book:hover {
    color: #000 !important;
    border-color: var(--color-gold-solid) !important;
    background: var(--gold-gradient);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
    transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1002;
    padding: 5px;
}

.hamburger .line {
    width: 28px;
    height: 2px;
    background: var(--color-text-bright);
    margin: 6px 0;
    transition: all 0.4s var(--ease-out-expo);
    transform-origin: center;
}

.hamburger.toggle .line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.toggle .line:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.hamburger.toggle .line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ---------- Buttons ---------- */
.btn-gold {
    display: inline-block;
    padding: 1.1rem 3rem;
    background: var(--gold-gradient);
    color: #000;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.82rem;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--color-gold-glow-strong);
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fff, rgba(255, 255, 255, 0.5));
    z-index: -1;
    transform: translateX(-100%) skewX(-15deg);
    transition: transform 0.6s var(--ease-out-expo);
}

.btn-gold:hover::before {
    transform: translateX(0) skewX(-15deg);
}

.btn-outline {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 1px solid var(--color-border-hover);
    color: var(--color-gold-solid);
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.82rem;
    cursor: pointer;
    transition: all 0.4s ease;
    background: transparent;
}

.btn-outline:hover {
    background: var(--color-gold-glow);
    box-shadow: 0 0 30px var(--color-gold-glow);
    color: var(--color-text-bright);
}

/* ---------- Hero Section ---------- */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-internal {
    height: 65vh;
    display: flex;
    align-items: flex-end;
    padding-bottom: 8vh;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    filter: brightness(0.7) contrast(1.1);
}

.hero-overlay {
    position: absolute;
    background: linear-gradient(to top,
            rgba(5, 5, 5, 1) 0%,
            rgba(5, 5, 5, 0.6) 30%,
            rgba(5, 5, 5, 0.1) 60%,
            rgba(5, 5, 5, 0.5) 100%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    padding: 0 2rem;
}

.hero-title {
    font-size: clamp(3rem, 6.5vw, 7rem);
    line-height: 1.05;
    margin-bottom: 1.5rem;
    color: var(--color-text-bright);
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 0.85rem;
    letter-spacing: 0.5em;
    color: var(--color-gold-solid);
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-border-hover);
}

.hero-text {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 550px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

/* Hero Particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--color-gold-solid);
    border-radius: 50%;
    animation: particleFloat linear infinite;
    opacity: 0;
}

/* ---------- Sections ---------- */
.section {
    padding: var(--section-padding);
}

.section-dark {
    background: var(--color-bg-secondary);
}

.section-divider {
    width: 60px;
    height: 2px;
    background: var(--gold-gradient);
    margin: 0 auto 3rem;
    border-radius: 2px;
}

/* Section Headings */
.section-subtitle {
    display: block;
    width: 100%;
    max-width: none;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.4em;
    color: var(--color-gold-solid);
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--color-text-bright);
    text-align: center;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

/* ---------- Card Grid ---------- */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

/* ---------- Luxury Card ---------- */
.luxury-card {
    position: relative;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.6s var(--ease-out-expo);
}

.luxury-card:hover {
    border-color: var(--color-border-hover);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px var(--color-gold-glow);
    transform: translateY(-8px);
}

.luxury-card-img {
    height: 380px;
    overflow: hidden;
    position: relative;
}

.luxury-card-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(5, 5, 5, 0.8), transparent);
    pointer-events: none;
}

.luxury-card:hover .luxury-card-img img {
    transform: scale(1.08);
    filter: brightness(1.1);
}

.luxury-card-content {
    padding: 2rem 2rem 2.5rem;
}

.luxury-card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.luxury-card:hover .luxury-card-content h3 {
    color: var(--color-gold-solid);
}

.luxury-card-content .price {
    display: block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--color-gold-solid);
    margin-bottom: 1.2rem;
    letter-spacing: 0.12em;
    font-weight: 500;
}

.luxury-card-content p {
    font-size: 0.95rem;
    line-height: 1.7;
}

.luxury-card-content a {
    display: inline-block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 5px;
    margin-top: 0.5rem;
    transition: all 0.4s ease;
}

.luxury-card-content a:hover {
    color: var(--color-gold-solid);
    border-color: var(--color-gold-solid);
    padding-left: 8px;
}

/* Feature badges on cards */
.room-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 1rem 0;
}

.room-features span {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.4rem 0.8rem;
    border: 1px solid var(--color-border);
    border-radius: 2px;
    color: var(--color-text-muted);
    transition: all 0.3s ease;
}

.luxury-card:hover .room-features span {
    border-color: var(--color-border-hover);
    color: var(--color-gold-solid);
}

/* ---------- Stats Section ---------- */
.stats-section {
    padding: 8vh 0;
    background: var(--color-bg-secondary);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem 1rem;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: var(--color-border);
}

.stat-item:last-child::after {
    display: none;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--color-gold-solid);
    line-height: 1;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-text-muted);
}

/* ---------- Why Choose Section ---------- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.feature-item {
    padding: 2.5rem 2rem;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    text-align: center;
    transition: all 0.5s var(--ease-out-expo);
}

.feature-item:hover {
    border-color: var(--color-border-hover);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    font-size: 2rem;
    color: var(--color-gold-solid);
    margin-bottom: 1.5rem;
    display: block;
    transition: transform 0.4s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.15);
    animation: float 2s ease-in-out infinite;
}

.feature-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.feature-item p {
    font-size: 0.9rem;
    margin: 0 auto;
    max-width: 300px;
}

/* ---------- Testimonials ---------- */
.testimonials-section {
    position: relative;
    overflow: hidden;
}

.testimonial-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 2rem 0 3rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.testimonial-carousel::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    min-width: 400px;
    max-width: 450px;
    scroll-snap-align: center;
    padding: 2.5rem;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    flex-shrink: 0;
    transition: all 0.5s var(--ease-out-expo);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--color-gold-solid);
    opacity: 0.2;
    position: absolute;
    top: 0.5rem;
    left: 1.5rem;
    line-height: 1;
}

.testimonial-card:hover {
    border-color: var(--color-border-hover);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-text {
    font-style: italic;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text-main);
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--color-text-bright);
}

.testimonial-role {
    font-size: 0.75rem;
    color: var(--color-gold-solid);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.testimonial-stars {
    color: var(--color-gold-solid);
    margin-bottom: 1rem;
    font-size: 0.85rem;
    letter-spacing: 3px;
}

/* ---------- About / Timeline ---------- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 1px solid var(--color-border-hover);
    border-radius: 6px;
    z-index: -1;
}

.about-image-wrapper img {
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--color-gold-solid), transparent);
}

.timeline-item {
    padding-left: 2.5rem;
    margin-bottom: 2.5rem;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-gold-solid);
    border: 2px solid var(--color-bg);
    box-shadow: 0 0 15px var(--color-gold-glow-strong);
}

.timeline-year {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-gold-solid);
    margin-bottom: 0.3rem;
    font-weight: 500;
}

.timeline-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.timeline-item p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Values / Pillar cards */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.value-card {
    padding: 2.5rem 2rem;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    text-align: center;
    transition: all 0.5s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: transform 0.5s var(--ease-out-expo);
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover {
    border-color: var(--color-border-hover);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.value-card .value-icon {
    font-size: 2.2rem;
    color: var(--color-gold-solid);
    margin-bottom: 1.5rem;
    display: block;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.value-card p {
    font-size: 0.92rem;
    margin: 0 auto;
}

/* ---------- Gallery ---------- */
.gallery-filters {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.gallery-filter-btn {
    padding: 0.6rem 1.5rem;
    border: 1px solid var(--color-border);
    background: transparent;
    color: var(--color-text-muted);
    font-family: var(--font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: all 0.4s ease;
    border-radius: 2px;
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    border-color: var(--color-gold-solid);
    color: var(--color-gold-solid);
    background: var(--color-gold-glow);
}

.gallery-masonry {
    columns: 3;
    column-gap: 1.2rem;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 1.2rem;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
}

.gallery-item img {
    transition: transform 0.8s var(--ease-out-expo), filter 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
    filter: brightness(0.7);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-overlay i {
    font-size: 1.5rem;
    color: var(--color-gold-solid);
    margin-bottom: 0.5rem;
}

.gallery-item-overlay span {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-text-bright);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
}

.lightbox.active {
    display: flex;
    animation: scaleIn 0.3s ease;
}

.lightbox img {
    max-width: 85%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2rem;
    color: var(--color-text-bright);
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.5);
}

.lightbox-close:hover {
    border-color: var(--color-gold-solid);
    color: var(--color-gold-solid);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--color-text-bright);
    cursor: pointer;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.5);
}

.lightbox-nav:hover {
    border-color: var(--color-gold-solid);
    color: var(--color-gold-solid);
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

/* ---------- Contact Form ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-info-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    transition: all 0.4s ease;
}

.contact-info-card:hover {
    border-color: var(--color-border-hover);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-info-card i {
    font-size: 1.5rem;
    color: var(--color-gold-solid);
    margin-bottom: 1rem;
    display: block;
}

.contact-info-card h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.contact-info-card p {
    font-size: 0.88rem;
    margin: 0;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1.1rem 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    color: var(--color-text-bright);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 300;
    border-radius: 4px;
    transition: all 0.4s ease;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-muted);
    font-weight: 300;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--color-gold-solid);
    box-shadow: 0 0 20px var(--color-gold-glow), inset 0 0 10px rgba(212, 175, 55, 0.05);
    background: rgba(255, 255, 255, 0.05);
    outline: none;
}

.form-group select option {
    background: #111;
    color: #ddd;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.map-container {
    margin-top: 2rem;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.map-container iframe {
    display: block;
    filter: grayscale(0.8) invert(0.92) contrast(0.9);
}

/* ---------- Room Modal ---------- */
.room-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
}

.room-modal.active {
    display: flex;
    animation: scaleIn 0.3s ease;
}

.room-modal-content {
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    max-width: 700px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
}

.room-modal-content img {
    height: 300px;
    object-fit: cover;
}

.room-modal-body {
    padding: 2rem;
}

.close-modal {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2rem;
    color: var(--color-text-bright);
    cursor: pointer;
    z-index: 10001;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.close-modal:hover {
    border-color: var(--color-gold-solid);
    color: var(--color-gold-solid);
}

/* ---------- Footer ---------- */
.footer {
    padding: 5rem 5% 0;
    border-top: 1px solid var(--color-border);
    background: var(--color-bg-secondary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--color-gold-solid);
    letter-spacing: 0.05em;
}

.footer-col p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.8;
}

.footer-col .footer-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-text-bright);
    margin-bottom: 1rem;
    display: block;
}

.footer-col .footer-logo::after {
    content: '★';
    font-size: 0.5rem;
    color: var(--color-gold-solid);
    margin-left: 0.4rem;
    vertical-align: super;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: var(--color-text-muted);
    font-size: 0.88rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--color-gold-solid);
    transform: translateX(5px);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    transition: all 0.4s ease;
}

.footer-social a:hover {
    border-color: var(--color-gold-solid);
    color: var(--color-gold-solid);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px var(--color-gold-glow);
}

.footer-newsletter {
    display: flex;
    gap: 0;
    margin-top: 1rem;
}

.footer-newsletter input {
    flex: 1;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    color: var(--color-text-bright);
    font-family: var(--font-body);
    font-size: 0.85rem;
    outline: none;
    border-radius: 4px 0 0 4px;
    transition: border-color 0.3s ease;
}

.footer-newsletter input:focus {
    border-color: var(--color-gold-solid);
}

.footer-newsletter button {
    padding: 0.8rem 1.5rem;
    background: var(--gold-gradient);
    border: none;
    color: #000;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    border-radius: 0 4px 4px 0;
    transition: all 0.3s ease;
}

.footer-newsletter button:hover {
    box-shadow: 0 0 20px var(--color-gold-glow-strong);
}

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--color-gold-solid);
}

.footer-credit {
    width: 100%;
    text-align: center;
    padding-top: 1rem;
    font-size: 0.78rem;
    color: var(--color-text-muted);
}

.footer-credit a {
    color: var(--color-gold-solid);
    font-weight: 500;
    transition: color 0.3s ease, opacity 0.3s ease;
}

.footer-credit a:hover {
    color: #fcf6ba;
    opacity: 0.9;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
    padding: 10vh 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0c0c0c 0%, #1a1000 50%, #0c0c0c 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.08) 0%, transparent 65%);
    pointer-events: none;
}

.cta-banner::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 70% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 40%);
    pointer-events: none;
    animation: float 8s ease-in-out infinite;
}

.cta-banner h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 1rem;
    color: var(--color-text-bright);
    position: relative;
    z-index: 1;
}

.cta-banner p {
    margin: 0 auto 2.5rem;
    max-width: 550px;
    color: var(--color-text-main);
    font-size: 1.05rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.cta-banner .btn-gold {
    position: relative;
    z-index: 1;
}

/* Override reveal inside CTA — always visible */
.cta-banner .reveal {
    opacity: 1 !important;
    transform: none !important;
}

/* ---------- Back to Top Button ---------- */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: #000;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: all 0.4s var(--ease-smooth);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

/* ---------- Mobile Responsive ---------- */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-info-cards {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .gallery-masonry {
        columns: 2;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    :root {
        --section-padding: 8vh 0;
    }

    .section-title {
        font-size: clamp(1.8rem, 5vw, 2.8rem);
    }

    .hero-title {
        font-size: clamp(2.2rem, 8vw, 3.2rem);
    }

    .hero-internal {
        height: 55vh;
        padding-bottom: 6vh;
    }

    .card-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .luxury-card-img {
        height: 280px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-info-cards {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-item:nth-child(2)::after {
        display: none;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    /* Mobile Nav Drawer */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(5, 5, 5, 0.98);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
        transition: right 0.5s var(--ease-out-expo);
        z-index: 1000;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links li {
        opacity: 0;
        padding: 1.2rem 0;
    }

    .nav-links li a {
        font-size: 1.1rem;
        letter-spacing: 0.25em;
    }

    .hamburger {
        display: block;
    }

    .testimonial-card {
        min-width: 300px;
        padding: 2rem;
    }

    .timeline {
        padding-left: 0.5rem;
    }

    .btn-gold {
        padding: 1rem 2.2rem;
        font-size: 0.78rem;
    }

    .back-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 600px) {
    :root {
        --section-padding: 6vh 0;
    }

    .hero {
        height: 100svh;
    }

    .hero-internal {
        height: 50vh;
        padding-bottom: 4vh;
    }

    .hero-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }

    .hero-subtitle {
        font-size: 0.7rem;
        letter-spacing: 0.35em;
    }

    .hero-text {
        font-size: 0.95rem;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-item {
        padding: 1.2rem 0.5rem;
    }

    .stat-item::after {
        display: none;
    }

    .luxury-card-img {
        height: 220px;
    }

    .luxury-card-content {
        padding: 1.5rem;
    }

    .luxury-card-content h3 {
        font-size: 1.4rem;
    }

    .gallery-masonry {
        columns: 1;
    }

    .gallery-filters {
        gap: 0.5rem;
    }

    .gallery-filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.7rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer {
        padding: 3rem 5% 0;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .testimonial-card {
        min-width: 260px;
        padding: 1.5rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }

    .cta-banner {
        padding: 6vh 5%;
    }

    .cta-banner h2 {
        font-size: clamp(1.5rem, 5vw, 2.2rem);
    }

    .section-divider {
        margin-bottom: 2rem;
    }

    p {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }

    .feature-item {
        padding: 2rem 1.5rem;
    }

    .value-card {
        padding: 2rem 1.5rem;
    }

    .contact-info-card {
        padding: 1.5rem 1rem;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .lightbox-prev {
        left: 1rem;
    }

    .lightbox-next {
        right: 1rem;
    }

    .lightbox img {
        max-width: 95%;
        max-height: 80vh;
    }
}