* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Exo 2', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #000;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000 0%, #0a0a2e 50%, #1a1a3a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeOut 1s ease-out 3s forwards;
}

.loading-content {
    text-align: center;
    color: #00ffff;
}

.holographic-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 2rem;
    animation: holographicPulse 2s ease-in-out infinite;
}

.holographic-logo i {
    margin-right: 1rem;
    animation: rotate3D 3s linear infinite;
}

.loading-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.loading-bar {
    width: 300px;
    height: 4px;
    background: rgba(0, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, #00ffff, #ff00ff, #ffff00);
    width: 0%;
    animation: loadingProgress 3s ease-out forwards;
}

@keyframes loadingProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes holographicPulse {
    0%, 100% { 
        text-shadow: 0 0 20px #00ffff, 0 0 40px #00ffff, 0 0 60px #00ffff;
        filter: brightness(1);
    }
    50% { 
        text-shadow: 0 0 30px #ff00ff, 0 0 50px #ff00ff, 0 0 70px #ff00ff;
        filter: brightness(1.5);
    }
}

@keyframes rotate3D {
    from { transform: rotateY(0deg) rotateX(0deg); }
    to { transform: rotateY(360deg) rotateX(360deg); }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 5px 30px rgba(0, 255, 255, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.nav-logo .logo-glow {
    display: flex;
    align-items: center;
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 1.8rem;
    color: #00ffff;
    text-shadow: 0 0 20px #00ffff;
}

.nav-logo i {
    margin-right: 0.8rem;
    animation: holographicFloat 4s ease-in-out infinite;
}

@keyframes holographicFloat {
    0%, 100% { 
        transform: translateY(0px) rotateZ(0deg);
        filter: drop-shadow(0 0 10px #00ffff);
    }
    50% { 
        transform: translateY(-10px) rotateZ(5deg);
        filter: drop-shadow(0 0 20px #ff00ff);
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00ffff, #ff00ff);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff;
}

.nav-link:hover::before {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.holographic-bar {
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, #00ffff, #ff00ff);
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #000 0%, #0a0a2e 30%, #1a1a3a 70%, #2a2a4a 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-element {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #00ffff;
    border-radius: 50%;
    animation: floatParticle 8s linear infinite;
}

.element-1 {
    top: 20%;
    left: 10%;
    animation-delay: -1s;
    box-shadow: 0 0 20px #00ffff;
}

.element-2 {
    top: 60%;
    right: 15%;
    animation-delay: -3s;
    background: #ff00ff;
    box-shadow: 0 0 20px #ff00ff;
}

.element-3 {
    top: 80%;
    left: 30%;
    animation-delay: -5s;
    background: #ffff00;
    box-shadow: 0 0 20px #ffff00;
}

.element-4 {
    top: 40%;
    left: 70%;
    animation-delay: -7s;
    background: #00ff00;
    box-shadow: 0 0 20px #00ff00;
}

.element-5 {
    top: 10%;
    left: 50%;
    animation-delay: -2s;
    background: #ff6600;
    box-shadow: 0 0 20px #ff6600;
}

@keyframes floatParticle {
    0% {
        transform: translateY(0px) translateX(0px) scale(1);
        opacity: 1;
    }
    25% {
        transform: translateY(-30px) translateX(20px) scale(1.2);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-60px) translateX(-10px) scale(0.8);
        opacity: 0.6;
    }
    75% {
        transform: translateY(-30px) translateX(-30px) scale(1.1);
        opacity: 0.4;
    }
    100% {
        transform: translateY(0px) translateX(0px) scale(1);
        opacity: 1;
    }
}

.holographic-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridPulse 4s ease-in-out infinite;
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.hero-content {
    text-align: center;
    z-index: 2;
    animation: heroEntrance 1.5s ease-out;
    max-width: 1000px;
}

@keyframes heroEntrance {
    from {
        opacity: 0;
        transform: translateY(100px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-title {
    font-family: 'Orbitron', monospace;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.holographic-text {
    display: block;
    font-size: 1.8rem;
    font-weight: 300;
    color: #00ffff;
    text-shadow: 0 0 20px #00ffff;
    margin-bottom: 0.5rem;
    animation: holographicShimmer 3s ease-in-out infinite;
}

.main-title {
    display: block;
    font-size: 4.5rem;
    font-weight: 900;
    background: linear-gradient(45deg, #00ffff, #ff00ff, #ffff00, #00ffff);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientFlow 4s ease-in-out infinite;
}

@keyframes holographicShimmer {
    0%, 100% { 
        text-shadow: 0 0 20px #00ffff, 0 0 40px #00ffff;
        opacity: 1;
    }
    50% { 
        text-shadow: 0 0 30px #ff00ff, 0 0 50px #ff00ff;
        opacity: 0.8;
    }
}

@keyframes gradientFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    color: #cccccc;
    font-weight: 300;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    min-width: 150px;
}

.stat-number {
    display: block;
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: #00ffff;
    text-shadow: 0 0 20px #00ffff;
}

.stat-label {
    font-size: 0.9rem;
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    font-family: 'Exo 2', sans-serif;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    color: #000;
    box-shadow: 0 5px 20px rgba(0, 255, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #00ffff;
    border: 2px solid #00ffff;
    box-shadow: 0 5px 20px rgba(0, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(0, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.4);
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #00ffff;
    color: #00ffff;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.holographic-arrow {
    width: 30px;
    height: 30px;
    border-right: 3px solid #00ffff;
    border-bottom: 3px solid #00ffff;
    transform: rotate(45deg);
    animation: arrowBounce 2s infinite;
    filter: drop-shadow(0 0 10px #00ffff);
}

@keyframes arrowBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) rotate(45deg); }
    40% { transform: translateY(-15px) rotate(45deg); }
    60% { transform: translateY(-8px) rotate(45deg); }
}

/* Section Styles */
section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.section-subtitle {
    font-size: 1.3rem;
    color: #cccccc;
    font-weight: 300;
}

/* About Section */
.about {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #2a2a4a 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(0,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-text h3 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #00ffff;
    font-family: 'Orbitron', monospace;
    text-shadow: 0 0 20px #00ffff;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: #cccccc;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.feature-item {
    background: rgba(0, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(0, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

.feature-item i {
    font-size: 2.5rem;
    color: #00ffff;
    margin-bottom: 1rem;
    display: block;
}

.feature-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.feature-item p {
    font-size: 0.9rem;
    color: #cccccc;
    margin: 0;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.holographic-display {
    width: 400px;
    height: 400px;
    border: 2px solid #00ffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: holographicRotate 20s linear infinite;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.1) 0%, transparent 70%);
}

.rotating-logo {
    font-size: 4rem;
    color: #00ffff;
    animation: counterRotate 20s linear infinite;
    text-shadow: 0 0 30px #00ffff;
}

.data-streams {
    position: absolute;
    width: 100%;
    height: 100%;
}

.data-stream {
    position: absolute;
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, #00ffff, transparent);
    animation: dataFlow 3s ease-in-out infinite;
}

.stream-1 {
    top: 10%;
    left: 20%;
    animation-delay: -1s;
}

.stream-2 {
    top: 30%;
    right: 15%;
    animation-delay: -2s;
    background: linear-gradient(to bottom, #ff00ff, transparent);
}

.stream-3 {
    bottom: 20%;
    left: 40%;
    animation-delay: -0.5s;
    background: linear-gradient(to bottom, #ffff00, transparent);
}

@keyframes holographicRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes counterRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

@keyframes dataFlow {
    0%, 100% {
        opacity: 0;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateY(-20px);
    }
}

/* Rooms Section */
.rooms {
    background: #000;
    position: relative;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.room-card {
    background: linear-gradient(145deg, #1a1a2e, #2a2a4a);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 255, 255, 0.2);
    position: relative;
}

.room-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

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

.room-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 255, 255, 0.3);
    border-color: #00ffff;
}

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

.room-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.2), rgba(255, 0, 255, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #00ffff;
    position: relative;
}

.holographic-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 255, 0.3), transparent);
    animation: holographicSweep 4s ease-in-out infinite;
}

@keyframes holographicSweep {
    0%, 100% {
        transform: translateX(-100%);
        opacity: 0;
    }
    50% {
        transform: translateX(100%);
        opacity: 1;
    }
}

.room-price {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: #00ffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-family: 'Orbitron', monospace;
    border: 1px solid #00ffff;
}

.room-info {
    padding: 2rem;
}

.room-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #00ffff;
    font-family: 'Orbitron', monospace;
}

.room-info p {
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.room-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.room-features span {
    font-size: 0.9rem;
    color: #cccccc;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.room-features i {
    color: #00ffff;
}

.room-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    background: transparent;
    border: 2px solid #00ffff;
    border-radius: 30px;
    color: #00ffff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.filter-btn.active,
.filter-btn:hover {
    background: #00ffff;
    color: #000;
    box-shadow: 0 5px 20px rgba(0, 255, 255, 0.4);
}

/* Amenities Section */
.amenities {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #2a2a4a 100%);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.amenity-card {
    background: rgba(0, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.amenity-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(0, 255, 255, 0.1), transparent);
    animation: conicSpin 4s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

@keyframes conicSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.amenity-card:hover {
    transform: translateY(-10px);
    background: rgba(0, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.3);
}

.amenity-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    color: #000;
    position: relative;
    z-index: 2;
}

.amenity-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #00ffff;
    text-align: center;
    position: relative;
    z-index: 2;
}

.amenity-card p {
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.amenity-card ul {
    list-style: none;
    position: relative;
    z-index: 2;
}

.amenity-card li {
    color: #cccccc;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.amenity-card li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #00ffff;
}

/* Dining Section */
.dining {
    background: #000;
}

.restaurant-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.restaurant-card {
    background: linear-gradient(145deg, #1a1a2e, #2a2a4a);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 0, 255, 0.2);
}

.restaurant-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 0, 255, 0.3);
    border-color: #ff00ff;
}

.restaurant-image {
    height: 200px;
    background: linear-gradient(45deg, rgba(255, 0, 255, 0.2), rgba(255, 255, 0, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-content {
    font-size: 4rem;
    color: #ff00ff;
    text-shadow: 0 0 20px #ff00ff;
}

.restaurant-info {
    padding: 2rem;
}

.restaurant-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #ff00ff;
    font-family: 'Orbitron', monospace;
}

.restaurant-info p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.cuisine-type {
    display: inline-block;
    background: rgba(255, 0, 255, 0.2);
    color: #ff00ff;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 0, 255, 0.3);
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffff00;
}

.rating i {
    font-size: 1.2rem;
}

.rating span {
    color: #cccccc;
    margin-left: 0.5rem;
}

/* Experiences Section */
.experiences {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #2a2a4a 100%);
}

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.experience-card {
    background: rgba(255, 255, 0, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 0, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-align: center;
}

.experience-card:hover {
    transform: translateY(-10px) rotateY(5deg);
    background: rgba(255, 255, 0, 0.1);
    box-shadow: 0 15px 30px rgba(255, 255, 0, 0.3);
}

.experience-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ffff00, #ff6600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #000;
    animation: experienceFloat 3s ease-in-out infinite;
}

@keyframes experienceFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.experience-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffff00;
    font-family: 'Orbitron', monospace;
}

.experience-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Gallery Section */
.gallery {
    background: #000;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    aspect-ratio: 16/10;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(45deg, #1a1a2e, #2a2a4a);
    transition: all 0.4s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.05) rotateZ(2deg);
    box-shadow: 0 15px 30px rgba(0, 255, 255, 0.4);
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #00ffff;
    transition: all 0.3s ease;
}

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

.gallery-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px currentColor;
}

.gallery-placeholder span {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #2a2a4a 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h4 {
    color: #00ffff;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    font-family: 'Orbitron', monospace;
}

.contact-details p {
    color: #cccccc;
    margin-bottom: 0.3rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 255, 255, 0.4);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 18px 20px;
    background: rgba(0, 255, 255, 0.1);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Exo 2', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #00ffff;
    background: rgba(0, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.form-group label {
    position: absolute;
    top: 18px;
    left: 20px;
    color: #cccccc;
    transition: all 0.3s ease;
    pointer-events: none;
    font-size: 1rem;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label,
.form-group select:focus + label,
.form-group select:valid + label {
    top: -12px;
    left: 15px;
    font-size: 0.8rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #2a2a4a 100%);
    padding: 0 8px;
    color: #00ffff;
    border-radius: 5px;
}

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

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: #1a1a2e;
    color: #ffffff;
}

.input-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.form-group input:focus ~ .input-glow,
.form-group textarea:focus ~ .input-glow,
.form-group select:focus ~ .input-glow {
    opacity: 1;
}

/* Footer */
.footer {
    background: #000;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(0, 255, 255, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 1.8rem;
    color: #00ffff;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px #00ffff;
}

.footer-logo i {
    margin-right: 1rem;
    animation: holographicFloat 4s ease-in-out infinite;
}

.footer-section p {
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.footer-section h4 {
    color: #00ffff;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-family: 'Orbitron', monospace;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-section ul li a:hover {
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff;
    padding-left: 10px;
}

.awards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.award {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #ffff00;
    font-size: 0.9rem;
}

.award i {
    color: #ffff00;
    text-shadow: 0 0 10px #ffff00;
}

.newsletter {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.newsletter input {
    flex: 1;
    padding: 12px 15px;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 10px;
    color: #ffffff;
    font-family: 'Exo 2', sans-serif;
}

.newsletter input::placeholder {
    color: #cccccc;
}

.newsletter input:focus {
    outline: none;
    border-color: #00ffff;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.newsletter .btn {
    padding: 12px 20px;
    font-size: 0.9rem;
}

.certifications {
    margin-top: 1.5rem;
}

.certifications span {
    display: block;
    color: #cccccc;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.cert-icons {
    display: flex;
    gap: 1rem;
}

.cert-icons i {
    font-size: 1.5rem;
    color: #00ffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cert-icons i:hover {
    color: #ff00ff;
    transform: scale(1.2);
    text-shadow: 0 0 15px currentColor;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 255, 255, 0.2);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #cccccc;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #00ffff;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-stats {
        gap: 2rem;
    }
    
    .stat-item {
        min-width: 120px;
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .holographic-display {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        backdrop-filter: blur(20px);
        padding: 2rem 0;
        border-top: 1px solid rgba(0, 255, 255, 0.2);
    }

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

    .nav-toggle {
        display: flex;
    }

    .main-title {
        font-size: 3rem;
    }
    
    .holographic-text {
        font-size: 1.4rem;
    }

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

    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .rooms-grid,
    .amenities-grid,
    .restaurant-grid,
    .experiences-grid {
        grid-template-columns: 1fr;
    }
    
    .room-features {
        grid-template-columns: 1fr;
    }
    
    .newsletter {
        flex-direction: column;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 1rem 1.5rem;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .amenity-card,
    .experience-card {
        padding: 2rem;
    }
    
    .contact-info {
        gap: 2rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.hidden {
    display: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #00ffff, #ff00ff);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #00cccc, #cc00cc);
}