:root {
    /* Colors */
    --arctic-blue: #3BA7FF;
    --ice-cyan: #66FFFF;
    --fire-amber: #FF6A00;
    --soft-flame-gold: #FFB347;
    --dark-base: #0B1426;
    --midnight-glass: rgba(255, 255, 255, 0.08);
    
    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    background-color: var(--dark-base);
    color: #fff;
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

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

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

.mt-4 {
    margin-top: 2rem;
}

/* Background Particles */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.particle {
    position: absolute;
    bottom: -10px;
    border-radius: 50%;
    opacity: 0.6;
    animation: floatUp linear infinite;
}

@keyframes floatUp {
    0% { transform: translateY(0) scale(1); opacity: 0; }
    10% { opacity: 0.8; }
    90% { opacity: 0.5; }
    100% { transform: translateY(-100vh) scale(0.5); opacity: 0; }
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
}

header.scrolled {
    padding: 15px 0;
    background: rgba(11, 20, 38, 0.7);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #fff;
    text-transform: uppercase;
}

.logo span {
    color: var(--arctic-blue);
    text-shadow: 0 0 10px var(--ice-cyan);
}

nav {
    display: flex;
    gap: 25px;
}

nav a {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 5px 0;
    transition: 0.3s;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, var(--ice-cyan), var(--fire-amber));
    transition: width 0.3s ease;
    box-shadow: 0 0 8px var(--ice-cyan);
}

nav a:hover::after, nav a.active::after {
    width: 100%;
}

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

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: 0.3s;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(45deg, var(--arctic-blue), var(--fire-amber));
    color: #fff;
    box-shadow: 0 0 15px rgba(255, 106, 0, 0.4);
}

.btn-primary:hover {
    box-shadow: 0 0 25px rgba(255, 106, 0, 0.7);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--midnight-glass);
    color: #fff;
    border: 1px solid var(--ice-cyan);
    backdrop-filter: blur(5px);
    box-shadow: 0 0 10px rgba(102, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(102, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(102, 255, 255, 0.5);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
    border-color: var(--fire-amber);
    color: var(--fire-amber);
    box-shadow: 0 0 15px rgba(255, 106, 0, 0.3);
}

.btn-full {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(11,20,38,0.3) 0%, rgba(11,20,38,0.9) 100%);
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
}

.blue-orb {
    width: 400px;
    height: 400px;
    background: var(--arctic-blue);
    top: -100px;
    left: -100px;
}

.orange-orb {
    width: 300px;
    height: 300px;
    background: var(--fire-amber);
    bottom: 10%;
    right: -50px;
}

.hero-content {
    text-align: center;
    z-index: 2;
    padding-top: 80px;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, var(--ice-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(102, 255, 255, 0.3);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Page Headers */
.page-header {
    padding: 150px 0 50px;
    text-align: center;
    background: radial-gradient(circle at top, rgba(59,167,255,0.1) 0%, transparent 70%);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: var(--ice-cyan);
}

/* Sections */
.section {
    padding: 80px 0;
    position: relative;
}

.section-title {
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-title p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
}

/* Grid System */
.grid {
    display: grid;
    gap: 30px;
}

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

/* Glass Cards */
.glass-card {
    background: var(--midnight-glass);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.glass-card:hover {
    border-color: rgba(102, 255, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), inset 0 0 20px rgba(255,106,0,0.1);
    transform: translateY(-5px);
}

/* Room Cards */
.room-card .card-img {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.price-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(11,20,38,0.8);
    backdrop-filter: blur(5px);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid var(--fire-amber);
    color: var(--soft-flame-gold);
}

.inline-price {
    position: static;
    display: inline-block;
    margin-bottom: 15px;
}

.card-content {
    padding: 25px;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.card-content p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
}

/* Split Layout */
.split-layout {
    display: flex;
    align-items: center;
    gap: 50px;
}

.split-layout.reverse {
    flex-direction: row-reverse;
}

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--soft-flame-gold);
}

.split-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
}

.feature-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.split-image {
    flex: 1;
}

.glass-img {
    width: 100%;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 0 30px rgba(255, 106, 0, 0.2);
}

/* Animations */
.float-animation {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Steps Section */
.steps-grid {
    position: relative;
}

.step-card {
    background: var(--midnight-glass);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 40px 20px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    transition: 0.3s;
}

.step-card:hover {
    border-color: var(--ice-cyan);
    box-shadow: 0 0 20px rgba(102, 255, 255, 0.1);
}

.step-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--arctic-blue), var(--ice-cyan));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 0 15px rgba(102, 255, 255, 0.4);
}

.step-card h3 {
    margin-bottom: 10px;
}

.step-card p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

/* Forms */
.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-card {
    padding: 40px;
}

.booking-form, .contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group-row {
    display: flex;
    gap: 20px;
}

.form-group-row .form-group {
    flex: 1;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
}

.glass-input {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    padding: 14px 15px;
    border-radius: 10px;
    width: 100%;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.glass-input::placeholder {
    color: rgba(255,255,255,0.3);
}

.glass-input:focus {
    outline: none;
    border-color: var(--fire-amber);
    box-shadow: 0 0 15px rgba(255, 106, 0, 0.3);
    background: rgba(255,255,255,0.1);
}

select.glass-input option {
    background: var(--dark-base);
    color: #fff;
}

/* Reviews */
.review-card {
    padding: 30px;
}

.stars {
    color: var(--soft-flame-gold);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.review-text {
    font-style: italic;
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
}

.reviewer {
    color: var(--ice-cyan);
    font-size: 1rem;
}

/* Map Section */
.map-container {
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
}

.map-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.map-marker {
    position: absolute;
    width: 15px;
    height: 15px;
    background: var(--fire-amber);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--fire-amber), 0 0 30px var(--fire-amber);
    animation: pulse 2s infinite;
}

.map-marker span {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(11,20,38,0.9);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    border: 1px solid var(--fire-amber);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 106, 0, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(255, 106, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 106, 0, 0); }
}

/* Footer */
.footer {
    background: rgba(0,0,0,0.4);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 60px 0 20px;
    margin-top: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    margin-top: 15px;
    font-size: 0.9rem;
}

.footer-links h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-links a {
    display: block;
    color: rgba(255,255,255,0.6);
    margin-bottom: 10px;
    font-size: 0.9rem;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--ice-cyan);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 992px) {
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .split-layout, .split-layout.reverse { flex-direction: column; }
    .hero-content h1 { font-size: 3rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .menu-toggle { display: flex; }
    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(11,20,38,0.95);
        backdrop-filter: blur(15px);
        flex-direction: column;
        padding: 20px;
        text-align: center;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        transform: translateY(-150%);
        opacity: 0;
        transition: 0.4s;
        z-index: -1;
    }
    nav.active {
        transform: translateY(0);
        opacity: 1;
    }
    .grid-2 { grid-template-columns: 1fr; }
    .grid-3 { grid-template-columns: 1fr; }
    .form-group-row { flex-direction: column; }
    .hero-content h1 { font-size: 2.2rem; }
    .footer-grid { grid-template-columns: 1fr; }
}