/* ===== CSS Variables ===== */
:root {
    --gold: #D4AF37;
    --gold-light: #E8CC6E;
    --gold-dark: #B8952F;
    --navy: #0F0F0F;
    --navy-light: #1A1A1A;
    --navy-lighter: #2A2A2A;
    --white: #FFFFFF;
    --off-white: #F5F5F5;
    --cream: #FAFAFA;
    --gray-100: #F0F0F0;
    --gray-200: #E0E0E0;
    --gray-300: #C0C0C0;
    --gray-400: #8A8A8A;
    --gray-500: #6E6E6E;
    --gray-600: #4A4A4A;
    --gray-700: #2D2D2D;
    --rose: #D4AF37;
    --rose-light: #FDF6E3;
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #E8CC6E 50%, #D4AF37 100%);
    --gradient-dark: linear-gradient(135deg, #0F0F0F 0%, #1A1A1A 100%);
    --gradient-hero: linear-gradient(135deg, #0F0F0F 0%, #141414 40%, #1A1A1A 70%, #111111 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.2);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.3);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-700);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--navy);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
    position: relative;
}

/* ===== Text Utilities ===== */
.text-gradient {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-light {
    background: linear-gradient(135deg, #E8CC6E 0%, #FFFFFF 50%, #E8CC6E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-tag {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--gray-500);
    max-width: 560px;
    margin: 0 auto;
}

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

/* ===== Preloader ===== */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
}

.preloader-logo {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.preloader-logo img {
    height: 170px;
    width: auto;
    display: block;
    filter: brightness(1.1);
}

.preloader-bar {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.preloader-fill {
    width: 0;
    height: 100%;
    background: var(--gradient-gold);
    border-radius: 2px;
    animation: preloaderFill 1.5s ease forwards;
}

@keyframes preloaderFill {
    to { width: 100%; }
}

/* ===== Navbar ===== */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

#navbar.scrolled {
    padding: 12px 0;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 2px;
    line-height: 0;
}

.nav-logo img {
    height: 120px;
    width: auto;
    display: block;
    filter: brightness(1.25) contrast(1.1) drop-shadow(0 2px 12px rgba(0, 0, 0, 0.45));
    transition: opacity 0.25s ease;
}

#navbar.scrolled .nav-logo img {
    height: 90px;
}

.nav-logo:hover img {
    opacity: 0.85;
}

#navbar:not(.scrolled) .nav-logo img {
    /* On dark transparent navbar, keep the logo visible — slight brightness boost already */
}

.logo-text {
    font-family: 'Bodoni Moda', serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 5px;
}

.logo-sub {
    font-family: 'Bodoni Moda', serif;
    font-size: 0.55rem;
    font-weight: 400;
    color: var(--gold-light);
    letter-spacing: 4px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links li a {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.5px;
    position: relative;
    padding: 4px 0;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.3s ease;
}

.nav-links li a:hover {
    color: var(--white);
}

.nav-links li a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--gradient-gold) !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: var(--navy) !important;
    background-clip: unset !important;
    color: var(--navy) !important;
    padding: 10px 24px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 24px 80px;
    background: var(--navy);
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide picture,
.hero-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(10, 15, 30, 0.55) 0%, rgba(10, 15, 30, 0.45) 45%, rgba(10, 15, 30, 0.75) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50px;
    padding: 10px 28px;
    margin-bottom: 36px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gold-light);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.hero-badge::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.15), transparent);
    animation: badgeShimmer 3s ease-in-out infinite;
}

@keyframes badgeShimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: #4ADE80;
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes dotPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.4); }
    50% { box-shadow: 0 0 0 6px rgba(74, 222, 128, 0); }
}

.hero-badge i {
    color: var(--gold);
    font-size: 0.75rem;
    position: relative;
    z-index: 1;
}

.hero-badge span {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: clamp(2.8rem, 6.5vw, 5rem);
    color: var(--white);
    margin-bottom: 28px;
    letter-spacing: -1px;
    line-height: 1.1;
}

.hero-line-1 {
    display: block;
    opacity: 0;
    animation: heroLineIn 0.8s ease forwards 0.5s;
}

.hero-line-2 {
    display: block;
    opacity: 0;
    animation: heroLineIn 0.8s ease forwards 0.8s;
}

@keyframes heroLineIn {
    from { opacity: 0; transform: translateY(20px); filter: blur(4px); }
    to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

.hero-script {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 1.2em;
    position: relative;
}

.hero-script::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-gold);
    opacity: 0.4;
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 580px;
    margin: 0 auto 36px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.btn-glow {
    position: relative;
}

.btn-glow::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50px;
    background: var(--gradient-gold);
    opacity: 0;
    z-index: -1;
    filter: blur(12px);
    transition: opacity 0.3s ease;
}

.btn-glow:hover::after {
    opacity: 0.6;
}

/* Hero Feature Pills */
.hero-pills {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(4px);
    transition: var(--transition);
}

.hero-pill i {
    color: var(--gold);
    font-size: 0.7rem;
}

.hero-pill:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.2);
    color: rgba(255, 255, 255, 0.8);
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--navy);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.btn-primary i {
    transition: transform 0.3s ease;
}

.btn-primary:hover i {
    transform: translateX(4px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
}

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

.btn-white {
    background: var(--white);
    color: var(--navy);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-3px);
}

/* ===== Hero Stats ===== */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-plus, .stat-slash {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-number-static {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

/* ===== Scroll Indicator ===== */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-dot {
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 4px;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(12px); opacity: 0.3; }
}

/* ===== About Section ===== */
.about {
    background: var(--off-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 55%;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 5px solid var(--off-white);
    box-shadow: var(--shadow-lg);
}

.about-experience-badge {
    position: absolute;
    top: -20px;
    right: 40px;
    background: var(--gradient-gold);
    color: var(--navy);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-gold);
}

.exp-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
}

.exp-text {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
}

.about-lead {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-content p {
    color: var(--gray-500);
    margin-bottom: 32px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-feature {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px;
    background: var(--white);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.about-feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
}

.about-feature h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.about-feature p {
    font-size: 0.8rem !important;
    color: var(--gray-400) !important;
    margin-bottom: 0 !important;
}

/* ===== Image Placeholders ===== */
.img-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 500;
}

.img-placeholder i {
    font-size: 2.5rem;
    opacity: 0.8;
}

.img-placeholder-1 {
    background: linear-gradient(135deg, #2A2A2A, #1A1A1A);
    aspect-ratio: 4/5;
}

.img-placeholder-2 {
    background: linear-gradient(135deg, #D4AF37, #B8952F);
    aspect-ratio: 1/1;
}

.img-placeholder-room {
    background: linear-gradient(135deg, #1A1A1A, #2A2A2A);
    aspect-ratio: 16/10;
}

.img-placeholder-room-2 {
    background: linear-gradient(135deg, #D4AF37, #B8952F);
    aspect-ratio: 16/10;
}

.img-placeholder-room-3 {
    background: linear-gradient(135deg, #2A2A2A, #333333);
    aspect-ratio: 16/10;
}

.img-placeholder-room-4 {
    background: linear-gradient(135deg, #1A1A1A, #0F0F0F);
    aspect-ratio: 16/10;
}

.gallery-item .img-placeholder {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
.gallery-item .img-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 15, 30, 0.05) 0%, rgba(10, 15, 30, 0.35) 55%, rgba(10, 15, 30, 0.75) 100%);
    transition: opacity 0.4s ease;
    pointer-events: none;
}
.gallery-item .img-placeholder i,
.gallery-item .img-placeholder span {
    position: relative;
    z-index: 1;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
.gallery-item:hover .img-placeholder::after {
    opacity: 0.35;
}

.img-gallery-1 {
    background-image: url('images/aura-36/wb2.webp');
    aspect-ratio: auto;
    height: 100%;
}

.img-gallery-2 {
    background-image: url('images/aura-36/wb17.webp');
    aspect-ratio: auto;
    height: 100%;
}

.img-gallery-3 {
    background-image: url('images/aura-36/wb7.webp');
    aspect-ratio: auto;
    height: 100%;
}

.img-gallery-4 {
    background-image: url('images/aura-36/wb12.webp');
    aspect-ratio: auto;
    height: 100%;
}

.img-gallery-5 {
    background-image: url('images/aura-36/wb9.webp');
    aspect-ratio: auto;
    height: 100%;
}

.img-gallery-6 {
    background-image: url('images/aura-36/wb18.webp');
    aspect-ratio: auto;
    height: 100%;
}

/* ===== Amenities Section ===== */
.amenities {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.amenities-bg {
    position: absolute;
    top: 0;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.amenities-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border: 1.5px solid var(--gray-200);
    border-radius: 50px;
    background: transparent;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-500);
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.tab-btn.active {
    background: var(--gradient-gold);
    border-color: transparent;
    color: var(--navy);
    font-weight: 600;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeInTab 0.5s ease;
}

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

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.amenity-card {
    text-align: center;
    padding: 32px 20px;
    border-radius: var(--radius-md);
    background: var(--gray-100);
    transition: var(--transition);
    border: 1px solid transparent;
}

.amenity-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    background: var(--white);
    border-color: rgba(212, 175, 55, 0.2);
}

.amenity-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--gold-dark);
    transition: var(--transition);
}

.amenity-card:hover .amenity-icon {
    background: var(--gradient-gold);
    color: var(--navy);
    transform: scale(1.1);
}

.amenity-card h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.amenity-card p {
    font-size: 0.8rem;
    color: var(--gray-400);
}

/* ===== Rooms Section ===== */
.rooms {
    background: var(--off-white);
}

/* Property Selector Tabs */
.property-selector {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.property-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 0;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    overflow: hidden;
}

.property-tab:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.property-tab.active {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.property-tab-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.property-tab-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.property-tab:hover .property-tab-image img {
    transform: scale(1.05);
}

.property-tab h3 {
    font-size: 1.5rem;
    margin: 0;
    padding: 20px 24px 14px;
}

.property-tab .property-view-btn {
    margin: 0 auto 22px;
}

.property-arrow {
    display: none;
}

/* Property Rooms Container */
.property-rooms {
    display: block;
    margin-top: 40px;
    margin-bottom: 20px;
}

.property-rooms.active {
    display: block;
}

@keyframes fadeSlideDown {
    from {
        opacity: 0;
        transform: translateY(-16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.room-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(212, 175, 55, 0.3);
}

.room-card.featured {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.room-card.featured:hover {
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.25);
}

.room-image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.room-card:hover .room-image img {
    transform: scale(1.05);
}

.room-image .img-placeholder {
    transition: transform 0.6s ease;
}

.room-card:hover .room-image .img-placeholder {
    transform: scale(1.05);
}

.room-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--white);
    color: var(--navy);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    z-index: 2;
}

.room-badge.premium {
    background: var(--gradient-gold);
    color: var(--navy);
}

.room-content {
    padding: 28px;
}

.room-type {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.room-content h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.room-content > p {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 20px;
    line-height: 1.6;
}

.room-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 24px;
}

.room-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--gray-600);
}

.room-features li i {
    color: var(--gold);
    font-size: 0.7rem;
}

.btn-room {
    width: 100%;
    justify-content: center;
    padding: 12px 24px;
}

/* ===== Gallery Section ===== */
.gallery {
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.gallery-bg {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: radial-gradient(circle at 2px 2px, var(--gold) 1px, transparent 0);
    background-size: 40px 40px;
}

.gallery .section-tag {
    color: var(--gold-light);
}

.gallery .section-title {
    color: var(--white);
}

.gallery .section-desc {
    color: rgba(255, 255, 255, 0.5);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 240px;
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 15, 15, 0.9) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition);
}

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

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

.gallery-item .img-placeholder {
    transition: transform 0.6s ease;
}

.gallery-overlay h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

/* ===== Community Section ===== */
.community {
    background: var(--white);
    position: relative;
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.community-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.community-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(212, 175, 55, 0.2);
}

.community-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold-dark);
    transition: var(--transition);
}

.community-card:hover .community-icon {
    background: var(--gradient-gold);
    color: var(--navy);
    transform: scale(1.1);
}

.community-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.community-card p {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ===== Testimonials ===== */
.testimonials {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.testimonial-card {
    display: none;
    padding: 40px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}

.testimonial-card.active {
    display: block;
    animation: fadeInTab 0.5s ease;
}

.testimonial-stars {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 0.9rem;
    display: flex;
    justify-content: center;
    gap: 4px;
}

.testimonial-card > p {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
}

.testimonial-author strong {
    display: block;
    font-size: 0.95rem;
    color: var(--navy);
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--gray-400);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: var(--gray-300);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--gold);
    width: 28px;
    border-radius: 5px;
}

/* ===== Location Section ===== */
.location {
    background: var(--white);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.location-highlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.location-item {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 16px 20px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.location-item:hover {
    background: var(--cream);
    transform: translateX(8px);
}

.location-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
    font-size: 1.1rem;
}

.location-item h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.location-item p {
    font-size: 0.82rem;
    color: var(--gray-400);
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

.map-address {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding: 14px 20px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    font-size: 0.88rem;
    color: var(--gray-600);
}

.map-address i {
    color: var(--gold);
    font-size: 1rem;
}

/* ===== FAQ Section ===== */
.faq {
    background: var(--off-white);
}

.faq-grid {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.faq-item.active {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy);
    text-align: left;
    transition: var(--transition);
}

.faq-question i {
    color: var(--gold);
    transition: transform 0.3s ease;
    font-size: 0.85rem;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 24px 20px;
}

.faq-answer p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ===== CTA Section ===== */
.cta-section {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.cta-bg {
    position: absolute;
    inset: 0;
}

.cta-gradient {
    position: absolute;
    inset: 0;
    background: var(--gradient-dark);
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 32px;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ===== Contact Section ===== */
.contact {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 50px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.contact-card:hover {
    background: var(--cream);
}

.contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
    font-size: 1.1rem;
}

.contact-card h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-card p {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.6;
}

.contact-card a {
    color: var(--gold-dark);
    font-weight: 500;
}

.contact-card a:hover {
    color: var(--gold);
}

.contact-socials {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.contact-socials a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    font-size: 1.1rem;
    transition: var(--transition);
}

.contact-socials a:hover {
    background: var(--gradient-gold);
    color: var(--navy);
    transform: translateY(-3px);
}

/* ===== Contact Form ===== */
.contact-form-wrapper {
    background: var(--gray-100);
    padding: 36px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gray-600);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--gray-700);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238A8A8A' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    width: 100%;
    justify-content: center;
    padding: 14px 32px;
    font-size: 0.95rem;
    margin-top: 8px;
}

/* ===== Footer ===== */
.footer {
    background: var(--navy);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 16px;
    line-height: 0;
}

.footer-logo img {
    height: 96px;
    width: auto;
    display: block;
    filter: brightness(1.1);
}

.footer-brand p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--gradient-gold);
    color: var(--navy);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold-light);
    padding-left: 6px;
}

.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
}

.footer-contact li i {
    color: var(--gold);
    margin-top: 3px;
    min-width: 16px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.45);
}

.footer-contact a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

.footer-bottom i {
    color: var(--rose);
}

/* ===== WhatsApp Float ===== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.6rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6); }
}

/* ===== Back to Top ===== */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 90px;
    width: 44px;
    height: 44px;
    background: var(--navy);
    color: var(--gold);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--gradient-gold);
    color: var(--navy);
    transform: translateY(-3px);
    border-color: transparent;
}

/* ===== Animations ===== */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-animate="fade-right"] {
    transform: translateX(-30px);
}

[data-animate="fade-left"] {
    transform: translateX(30px);
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

/* ===== Mobile Responsive ===== */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-images {
        max-width: 500px;
        margin: 0 auto;
    }

    .amenities-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .property-selector {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .property-tab {
        padding: 30px 16px;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 200px;
    }


    .community-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .location-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 70px 0;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(15, 15, 15, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 24px;
        z-index: 998;
        backdrop-filter: blur(20px);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links li a {
        font-size: 1.2rem;
        color: var(--white);
    }

    .hamburger {
        display: flex;
        z-index: 999;
    }

    .hero {
        padding: 100px 24px 60px;
    }

    .hero h1 {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-stats {
        gap: 24px;
    }

    .stat-number, .stat-number-static {
        font-size: 2rem;
    }

    .stat-divider {
        height: 30px;
    }

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .amenity-card {
        padding: 24px 16px;
    }

    .property-selector {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        max-width: 360px;
        margin: 0 auto 40px;
        padding: 0;
    }

    .property-selector .property-tab {
        width: 100%;
    }

    .property-tab {
        padding: 0;
        border-radius: 14px;
        border-width: 1px;
    }

    .property-tab-image {
        border-radius: 12px 12px 0 0;
    }

    .property-tab h3 {
        font-size: 1.25rem;
    }

    .property-tab-icon {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
    }

    .rooms-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }

    .hero-pills {
        gap: 8px;
    }

    .hero-pill {
        font-size: 0.68rem;
        padding: 5px 12px;
    }

    .community-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 60px;
    }

    .testimonial-card {
        padding: 28px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 24px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .map-container {
        height: 280px;
    }
}

@media (max-width: 480px) {
    .hero-badge {
        font-size: 0.65rem;
        padding: 6px 16px;
        letter-spacing: 1px;
    }

    .hero-pills {
        flex-direction: column;
        align-items: center;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 160px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

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

    .amenities-tabs {
        gap: 6px;
    }

    .tab-btn {
        padding: 10px 18px;
        font-size: 0.78rem;
    }

    .amenities-grid {
        grid-template-columns: 1fr 1fr;
    }

    .room-features {
        grid-template-columns: 1fr;
    }
}

/* ===== Property Link (Aura 36 redirect tab) ===== */
a.property-tab.property-link {
    text-decoration: none;
    color: inherit;
    display: block;
}
.property-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 10px 22px;
    background: var(--gold-light, #d4af37);
    color: #0a0f1e;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
a.property-tab.property-link:hover .property-view-btn {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(212, 175, 55, 0.35);
}

/* ===== AURA 36 Page ===== */
.aura36-page { background: var(--off-white, #fafafa); }
.aura36-header {
    position: relative;
    padding: 130px 24px 60px;
    color: #fff;
    overflow: hidden;
    isolation: isolate;
    text-align: center;
}
.aura36-header-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}
.aura36-header-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.85) brightness(0.55);
}
.aura36-header-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(5, 8, 18, 0.7) 0%, rgba(10, 15, 30, 0.55) 50%, rgba(5, 8, 18, 0.85) 100%);
}
.aura36-header .container {
    position: relative;
    z-index: 2;
    width: 100%;
}
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 32px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
}
.breadcrumb a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.2s ease;
}
.breadcrumb a:hover { color: var(--gold, #d4af37); }
.breadcrumb i { font-size: 0.5rem; opacity: 0.5; }

.aura36-header-inner {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.aura36-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold, #d4af37);
    margin: 0;
}

.aura36-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.8rem, 7vw, 5rem);
    font-weight: 600;
    line-height: 1.05;
    margin: 0;
    letter-spacing: -1.5px;
    color: #fff;
}
.aura36-title-word {
    display: inline;
    color: #fff;
}
.aura36-title-num {
    display: inline;
    background: linear-gradient(135deg, #E8CC6E 0%, #D4AF37 50%, #B8941F 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-left: 6px;
}

.aura36-lead {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.95rem, 1.3vw, 1.05rem);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.78);
    margin: 0;
    max-width: 560px;
    font-weight: 400;
}

@media (max-width: 768px) {
    .aura36-header { padding: 110px 20px 50px; }
    .breadcrumb { margin-bottom: 24px; }
    .aura36-header-inner { gap: 14px; }
}
.aura36-listings {
    padding: 80px 24px;
    background: var(--off-white, #fafafa);
}
.aura36-listings .rooms-grid { margin-top: 0; }

/* ===== Quickview Modal ===== */
.quickview {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.quickview.open { display: flex; }
.quickview-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 8, 18, 0.88);
    backdrop-filter: blur(6px);
    animation: qvFade 0.25s ease;
}
.quickview-dialog {
    position: relative;
    width: min(1200px, 96vw);
    max-height: 94vh;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.45);
    animation: qvPop 0.3s ease;
    display: flex;
    flex-direction: column;
}
@keyframes qvFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes qvPop {
    from { opacity: 0; transform: scale(0.96) translateY(10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}
.quickview-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(10, 15, 30, 0.85);
    color: #fff;
    cursor: pointer;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: background 0.2s ease, transform 0.2s ease;
}
.quickview-close:hover {
    background: #0a0f1e;
    transform: rotate(90deg);
}
.quickview-body {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    min-height: 0;
    overflow: hidden;
}
.quickview-media {
    background: #0a0f1e;
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 0;
}
.qv-stage {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
    background: #0a0f1e;
    overflow: hidden;
}
.qv-main {
    max-width: 100%;
    max-height: 68vh;
    width: 100%;
    height: 100%;
    object-fit: cover;
    user-select: none;
    -webkit-user-drag: none;
    display: block;
}
.qv-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(10, 15, 30, 0.65);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: background 0.2s ease;
}
.qv-nav.prev { left: 14px; }
.qv-nav.next { right: 14px; }
.qv-nav:hover { background: var(--gold-light, #d4af37); color: #0a0f1e; }
.qv-counter {
    position: absolute;
    bottom: 14px;
    right: 14px;
    padding: 6px 12px;
    background: rgba(10, 15, 30, 0.75);
    color: #fff;
    border-radius: 50px;
    font-size: 0.78rem;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.5px;
}
.qv-thumbs {
    display: flex;
    gap: 8px;
    padding: 12px;
    background: #0f1528;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.25) transparent;
}
.qv-thumbs::-webkit-scrollbar { height: 6px; }
.qv-thumbs::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.25); border-radius: 3px; }
.qv-thumb {
    flex: 0 0 auto;
    width: 84px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    padding: 0;
    background: #000;
    opacity: 0.55;
    transition: opacity 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.qv-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.qv-thumb:hover { opacity: 0.85; }
.qv-thumb.active {
    opacity: 1;
    border-color: var(--gold-light, #d4af37);
    transform: translateY(-2px);
}
.quickview-details {
    padding: 40px 36px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: #fff;
}
.quickview-details::-webkit-scrollbar { width: 6px; }
.quickview-details::-webkit-scrollbar-thumb { background: rgba(0, 0, 0, 0.18); border-radius: 3px; }
.qv-tag {
    display: inline-block;
    align-self: flex-start;
    padding: 5px 14px;
    background: rgba(212, 175, 55, 0.12);
    color: var(--gold-dark, #a8871e);
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.quickview-details h2 {
    font-family: var(--font-display, 'Bodoni Moda', serif);
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    font-weight: 500;
    color: #0a0f1e;
    margin: 0;
    line-height: 1.15;
    letter-spacing: -0.5px;
}
.qv-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #4a4f5c;
    margin: 0;
}
.qv-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 18px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.qv-spec {
    display: flex;
    gap: 12px;
    align-items: center;
}
.qv-spec i {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(212, 175, 55, 0.12);
    color: var(--gold-dark, #a8871e);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex: 0 0 auto;
}
.qv-spec-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #8a8f9c;
    margin-bottom: 2px;
}
.qv-spec strong {
    font-size: 0.9rem;
    color: #0a0f1e;
    font-weight: 600;
}
.qv-features-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #8a8f9c;
    margin: 4px 0 0;
    font-weight: 600;
}
.qv-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 18px;
}
.qv-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: #2c3142;
    line-height: 1.4;
}
.qv-features li i {
    color: var(--gold-dark, #a8871e);
    font-size: 0.75rem;
}
.qv-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 8px;
}
.qv-cta .btn-outline {
    background: transparent;
    color: #0a0f1e;
    border: 1.5px solid rgba(10, 15, 30, 0.15);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.5px;
    transition: all 0.25s ease;
}
.qv-cta .btn-outline:hover {
    border-color: #25d366;
    color: #25d366;
    transform: translateY(-2px);
}
body.quickview-open { overflow: hidden; }

@media (max-width: 900px) {
    .quickview-body {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
        max-height: 94vh;
    }
    .quickview-dialog { max-height: 94vh; }
    .qv-main { max-height: 45vh; }
    .quickview-details { padding: 28px 22px; }
    .qv-features { grid-template-columns: 1fr; }
    .qv-specs { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
    .quickview { padding: 0; }
    .quickview-dialog {
        width: 100vw;
        max-width: 100vw;
        max-height: 100vh;
        border-radius: 0;
    }
    .qv-main { max-height: 38vh; }
    .qv-nav { width: 38px; height: 38px; }
    .qv-specs { grid-template-columns: 1fr; }
    .qv-thumb { width: 68px; height: 50px; }
    .quickview-details h2 { font-size: 1.5rem; }
}

/* ===== Room Card Gallery Hover Overlay ===== */
.aura36-room { cursor: pointer; }
.aura36-room .room-image { position: relative; }
.room-view-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(10, 15, 30, 0.55);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 3;
}
.room-view-overlay i {
    font-size: 1.6rem;
    color: var(--gold-light, #d4af37);
}
.aura36-room:hover .room-view-overlay {
    opacity: 1;
}

/* ===== Gallery Lightbox ===== */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}
.gallery-lightbox.open {
    display: flex;
}
.gallery-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 8, 18, 0.92);
    backdrop-filter: blur(6px);
    animation: galleryFade 0.25s ease;
}
.gallery-dialog {
    position: relative;
    width: min(1100px, 94vw);
    max-height: 92vh;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 20px 20px 16px;
    animation: galleryPop 0.3s ease;
}
@keyframes galleryFade {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes galleryPop {
    from { opacity: 0; transform: scale(0.96); }
    to { opacity: 1; transform: scale(1); }
}
.gallery-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    padding: 0 6px;
}
.gallery-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin: 0;
}
.gallery-counter {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    font-variant-numeric: tabular-nums;
}
.gallery-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
    z-index: 5;
}
.gallery-close:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: rotate(90deg);
}
.gallery-stage {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
    background: rgba(0, 0, 0, 0.35);
    border-radius: 12px;
    overflow: hidden;
}
.gallery-main {
    max-width: 100%;
    max-height: 62vh;
    object-fit: contain;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
}
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(10, 15, 30, 0.6);
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
}
.gallery-nav:hover {
    background: rgba(212, 175, 55, 0.85);
}
.gallery-nav.prev { left: 14px; }
.gallery-nav.next { right: 14px; }
.gallery-thumbs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 4px 2px 8px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.25) transparent;
}
.gallery-thumbs::-webkit-scrollbar { height: 6px; }
.gallery-thumbs::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.25); border-radius: 3px; }
.gallery-thumb {
    flex: 0 0 auto;
    width: 92px;
    height: 68px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.55;
    transition: opacity 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    background: #000;
}
.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.gallery-thumb:hover {
    opacity: 0.85;
}
.gallery-thumb.active {
    opacity: 1;
    border-color: var(--gold-light, #d4af37);
    transform: translateY(-2px);
}

body.gallery-open {
    overflow: hidden;
}

@media (max-width: 768px) {
    .gallery-dialog { padding: 14px 10px 10px; }
    .gallery-main { max-height: 50vh; }
    .gallery-nav { width: 40px; height: 40px; }
    .gallery-nav.prev { left: 6px; }
    .gallery-nav.next { right: 6px; }
    .gallery-thumb { width: 72px; height: 54px; }
    .gallery-header h3 { font-size: 0.95rem; }
}
