/* Responsive About Images */
.about-img-lg {
    display: block;
}
.about-img-sm {
    display: none;
}
@media (max-width: 768px) {
    .about-img-lg {
        display: none;
    }
    .about-img-sm {
        display: block;
        width: 100%;
        height: auto;
    }
}

:root {
    --gold: #FFDF00;
    --dark-gold: #B8860B;
    --dark: #020335;
    --light-dark: #1a1a2e;
    --white: #ffffff;
    --light-gray: #f8f8f8;
    --transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.83, 0, 0.17, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    width: 100vw;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 400;
    color: var(--dark);
    background: var(--light-gray);
    line-height: 1.6;
    overflow-x: hidden;
    z-index: 10;
}

h1, h2, h3, h4, h5, h6, .logo {
    font-family: 'Marcellus', serif;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: var(--gold);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.2;
}

h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    margin-bottom: 25px;
    text-align: center;
    width: 100%;
}

h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 220px;
    height: 2px;
    background: var(--gold);
}

.no-line::after {
    display: none;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Luxury Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, var(--light-dark) 0%, var(--dark) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    overflow: hidden;
}

.preloader-content {
    text-align: center;
    color: var(--gold);
    z-index: 10001;
    position: relative;
}

.luxury-logo-container {
    position: relative;
    margin-bottom: 2rem;
}

.luxury-crown {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 30px;
    animation: crownFloat 3s ease-in-out infinite;
}

.crown-base {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 8px;
    background: var(--gold);
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(255, 223, 0, 0.5);
}

.crown-jewel {
    position: absolute;
    width: 8px;
    height: 20px;
    background: var(--gold);
    border-radius: 4px 4px 0 0;
    box-shadow: 0 0 15px rgba(255, 223, 0, 0.8);
}

.crown-jewel-1 {
    left: 50%;
    transform: translateX(-50%);
    height: 25px;
    animation: jewelTwinkle 2s ease-in-out infinite;
}

.crown-jewel-2 {
    left: 15px;
    height: 18px;
    animation: jewelTwinkle 2s ease-in-out infinite 0.5s;
}

.crown-jewel-3 {
    right: 15px;
    height: 18px;
    animation: jewelTwinkle 2s ease-in-out infinite 1s;
}

.preloader-logo {
    font-size: clamp(3rem, 8vw, 5rem);
    font-family: 'Marcellus', serif;
    margin-bottom: 0.5rem;
    animation: luxuryGlow 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(255, 223, 0, 0.5);
    background: linear-gradient(45deg, var(--gold), #FFF8DC, var(--gold));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: luxuryShimmer 3s ease-in-out infinite, luxuryFloat 4s ease-in-out infinite;
}

.luxury-tagline {
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 2rem;
    opacity: 0.9;
    letter-spacing: 2px;
    animation: fadeInOut 2s ease-in-out infinite alternate;
}

.luxury-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.loading-diamonds {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.diamond {
    width: 20px;
    height: 20px;
    background: var(--gold);
    transform: rotate(45deg);
    border-radius: 3px;
    box-shadow: 0 0 20px rgba(255, 223, 0, 0.8);
    animation: diamondSpin 1.5s ease-in-out infinite;
}

.diamond:nth-child(2) {
    animation-delay: 0.3s;
}

.diamond:nth-child(3) {
    animation-delay: 0.6s;
}

.loading-text {
    color: var(--gold);
    font-size: 1rem;
    opacity: 0.8;
    letter-spacing: 1px;
    animation: textPulse 2s ease-in-out infinite;
}

.preloader-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 223, 0, 0.8);
    animation: particleFloat 8s linear infinite;
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.particle:nth-child(2) {
    left: 25%;
    animation-delay: 2s;
    animation-duration: 10s;
}

.particle:nth-child(3) {
    left: 50%;
    animation-delay: 4s;
    animation-duration: 12s;
}

.particle:nth-child(4) {
    left: 75%;
    animation-delay: 1s;
    animation-duration: 9s;
}

.particle:nth-child(5) {
    left: 90%;
    animation-delay: 3s;
    animation-duration: 11s;
}

@keyframes crownFloat {
    0%, 100% { transform: translateX(-50%) translateY(0px); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes jewelTwinkle {
    0%, 100% { box-shadow: 0 0 15px rgba(255, 223, 0, 0.8); }
    50% { box-shadow: 0 0 25px rgba(255, 223, 0, 1), 0 0 35px rgba(255, 223, 0, 0.5); }
}

@keyframes luxuryShimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes luxuryFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

@keyframes luxuryGlow {
    0%, 100% { text-shadow: 0 0 30px rgba(255, 223, 0, 0.5); }
    50% { text-shadow: 0 0 40px rgba(255, 223, 0, 0.8), 0 0 60px rgba(255, 223, 0, 0.3); }
}

@keyframes fadeInOut {
    0% { opacity: 0.7; }
    100% { opacity: 1; }
}

@keyframes diamondSpin {
    0% { transform: rotate(45deg) scale(1); }
    50% { transform: rotate(225deg) scale(1.2); }
    100% { transform: rotate(405deg) scale(1); }
}

@keyframes textPulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 0;
    background: transparent;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(4, 4, 54, 0.212);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 30px rgba(5, 2, 48, 0.1);
    padding: 15px 0;
}

header.scrolled .logo {
    color: var(--gold);
}

header.scrolled nav ul li a {
    color: var(--dark);
    font-weight: 600;
}

header.scrolled nav ul li a:hover {
    color: var(--gold);
}

header.scrolled nav ul li a::after {
    background: var(--gold);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    text-decoration: none;
    color: var(--white);
    transition: var(--transition);
    animation: floatText 6s ease-in-out infinite;
}

.logo:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

/* Navigation */
nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

nav ul li a.active {
    color: var(--gold);
}

nav ul li a:hover {
    color: var(--gold);
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--gold);
    bottom: -5px;
    left: 0;
    transition: var(--transition);
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    position: relative;
    width: 40px;
    height: 40px;
}

.menu-bar {
    position: absolute;
    width: 30px;
    height: 3px;
    background-color: var(--gold);
    transition: var(--transition);
    left: 5px;
}

.top-bar { top: 10px; }
.middle-bar { top: 50%; transform: translateY(-50%); }
.bottom-bar { bottom: 10px; }

.menu-toggle.active .top-bar {
    transform: translateY(10px) rotate(45deg);
}

.menu-toggle.active .middle-bar {
    opacity: 0;
}

.menu-toggle.active .bottom-bar {
    transform: translateY(-10px) rotate(-45deg);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
}

.hero-placeholder {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.hero-img-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-video.playing ~ .hero-placeholder {
    display: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
    z-index: -1;
}

.hero-content {
    text-align: center;
    justify-content: center;
    color: var(--white);
    z-index: 1;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: 20px;
    color: var(--gold);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.05rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Rooms Hero Section */
.rooms-hero {
    position: relative;
    height: 70vh;
    min-height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rooms-hero img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.rooms-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
    z-index: -1;
}

.rooms-hero-content {
    text-align: center;
    color: var(--white);
    z-index: 1;
    padding: 0 20px;
}

.rooms-hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
    color: var(--gold);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.rooms-hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.about-text {
    font-size: 1rem;
    line-height: 1.8;
    text-align: justify;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--dark);
    opacity: 0.9;
}

.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--light-gray);
    border-radius: 10px;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.stat-number {
    font-size: 3rem;
    font-family: 'Marcellus', serif;
    color: var(--gold);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--dark);
    opacity: 0.8;
}

/* Services Grid */
.services-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: var(--gold);
}

.section-title p {
    font-size: 1rem;
    color: var(--dark);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    position: relative;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.8));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    color: var(--white);
}

.service-overlay h3 {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.service-overlay p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    background: var(--gold);
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    border-radius: 25px;
    transition: var(--transition);
    border: 2px solid var(--gold);
    text-align: center;
    cursor: pointer;
}

.btn:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--dark);
}

.btn-primary {
    background: var(--gold);
    color: var(--dark);
    border: 2px solid var(--gold);
}

.btn-primary:hover {
    background: var(--dark);
    color: var(--gold);
    border-color: var(--gold);
}

/* Room Cards */
.rooms-preview {
    padding: 100px 0;
    background: var(--white);
}

.section-subtitle {
    text-align: center;
    margin-bottom: 40px;
    color: var(--dark);
    opacity: 0.8;
    font-size: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.snap-carousel-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.snap-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 20px 0;
    margin: 0 -15px;
    scrollbar-width: none;
}

.snap-carousel::-webkit-scrollbar {
    display: none;
}

.room-card {
    scroll-snap-align: start;
    flex: 0 0 calc(350px - 30px);
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: var(--transition);
    margin: 0 15px;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.room-image {
    height: 300px;
    background-size: cover;
    background-position: center;
    transition: var(--transition);
}

.room-card:hover .room-image {
    transform: scale(1.05);
}

.room-info {
    padding: 25px;
}

.room-info h3 {
    color: var(--gold);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 15px 0;
}

.room-features span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    color: var(--dark);
}

.room-features i {
    color: var(--gold);
}

.room-price {
    font-weight: 600;
    color: var(--dark-gold);
    margin: 15px 0;
    font-size: 1.1rem;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    transition: var(--transition);
}

.carousel-nav:hover {
    background: var(--gold);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
    left: -10px;
}

.carousel-nav.next {
    right: -10px;
}

.rooms-preview-cta {
    text-align: center;
    margin-top: 40px;
}

.cta-subtext {
    margin-top: 15px;
    color: var(--dark);
    opacity: 0.8;
}

/* Experience Cards */
.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.experience-card {
    position: relative;
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.experience-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.experience-images {
    position: relative;
    width: 100%;
    height: 100%;
}

.experience-images img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease;
    opacity: 0;
}

.experience-images img.active {
    opacity: 1;
}

.experience-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--white);
    opacity: 0;
    transition: var(--transition);
}

.experience-card:hover .experience-overlay {
    opacity: 1;
}

.experience-overlay h3 {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.experience-nav {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.experience-nav button {
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    color: var(--gold);
    cursor: pointer;
    transition: var(--transition);
}

.experience-nav button:hover {
    background: var(--gold);
    color: var(--dark);
}

/* Slideshow Section */
.slideshow-section {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
}

.slideshow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slideshow {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.slide.active {
    opacity: 1;
}

.slideshow-content {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    text-align: center;
    color: var(--white);
    z-index: 10;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    padding: 40px;
}

.slideshow-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.slideshow-content p {
    font-size: 1.2rem;
}

/* Virtual Tour */
.virtual-tour-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.virtual-tour-overlay.active {
    display: flex;
}

.virtual-tour-container {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.tour-image {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
}

.tour-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(0,0,0,0.5);
    padding: 10px 20px;
    border-radius: 30px;
}

.tour-controls button {
    background: var(--gold);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--dark);
    cursor: pointer;
    transition: var(--transition);
}

.tour-controls button:hover {
    transform: scale(1.1);
}

.tour-progress {
    color: white;
    font-weight: 600;
}

.close-tour {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: var(--dark);
    cursor: pointer;
    font-size: 1.5rem;
    transition: var(--transition);
}

.close-tour:hover {
    transform: scale(1.1);
}

/* Booking Form */
.booking-form-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.form-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 40px;
    position: relative;
}

.form-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gold);
}

.booking-form {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row .form-group {
    flex: 1;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
}

.form-group label i {
    color: var(--gold);
    margin-right: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(255,223,0,0.1);
}

.error-message {
    color: #e74c3c;
    font-size: 0.9rem;
    margin-top: 5px;
}

.form-group input.error,
.form-group select.error {
    border-color: #e74c3c;
}

.form-success {
    display: none;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 10px;
    color: #155724;
    margin-top: 20px;
}

/* Date Picker Styling */
.date-picker-group {
    position: relative;
    flex: 1;
}

.flatpickr-wrapper {
    position: relative;
}

.flatpickr-input {
    width: 100%;
    padding: 12px 15px;
    padding-left: 40px;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: white;
    cursor: pointer;
}

.flatpickr-input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(255, 223, 0, 0.1);
    outline: none;
}

.flatpickr-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--dark-gold);
    pointer-events: none;
    z-index: 2;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    text-decoration: none;
    z-index: 1000;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.6);
}

/* Map Section */
.map-section {
    padding: 4rem 0;
    background: rgba(34, 34, 59, 0.5);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1rem;
    opacity: 0.8;
}

.map-container {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 223, 0, 0.2);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    filter: grayscale(20%) sepia(10%) hue-rotate(15deg);
}

/* Footer */
footer {
    background: var(--dark);
    padding: 60px 0 30px;
    color: var(--white);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    text-align: center;
}

.footer-section h3 {
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-section p,
.footer-section a {
    color: var(--white);
    text-decoration: none;
    line-height: 1.8;
}

.footer-section a:hover {
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    justify-content: center;
}

.social-links i {
    font-size: 1.4rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    color: var(--dark);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--white);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
}

/* Animations */
@keyframes floatText {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(2, 3, 53, 0.98);
        backdrop-filter: blur(10px);
        transition: var(--transition);
        z-index: 999;
        padding-top: 100px;
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        padding: 0 30px;
    }

    nav ul li {
        margin: 20px 0;
    }

    header.scrolled nav ul li a {
    color: var(--light-gray);
    font-weight: 600;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .room-card {
        flex: 0 0 85vw;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .experience-overlay {
        opacity: 1;
        pointer-events: auto;
    }

    .experience-overlay h3,
    .experience-overlay p {
        transform: translateY(0);
        opacity: 1;
    }

    .preloader-logo {
        font-size: 3rem;
    }

    .luxury-tagline {
        font-size: 1rem;
    }

    .loading-diamonds {
        gap: 0.5rem;
    }

    .diamond {
        width: 15px;
        height: 15px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .booking-form {
        padding: 20px;
    }

    .room-card {
        flex: 0 0 90vw;
    }

    .preloader-logo {
        font-size: 2.5rem;
    }
}