:root {
    --primary: #d4af37;
    --primary-dark: #b8941f;
    --secondary: #1a1a1a;
    --accent: #f4e4bc;
    --dark: #0a0a0a;
    --light: #fefcf7;
    --gray-100: #f8f6f0;
    --gray-200: #f0ede3;
    --gray-600: #6b5b47;
    --gray-800: #2d2520;
    --gradient-primary: linear-gradient(135deg, #d4af37 0%, #f4e4bc 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #2d2520 100%);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.3);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--light);
    overflow-x: hidden;
}

/* Loading Animation */
.fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

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

/* Header */
.header {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 2px solid var(--primary);
}

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

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--light);
    font-weight: 500;
    transition: color 0.3s;
}

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

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--dark);
    box-shadow: var(--shadow-gold);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
    background: var(--gradient-dark);
    color: var(--primary);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(26, 26, 26, 0.5);
    color: var(--primary);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--dark);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

.btn-outline.active {
    background: var(--primary);
    color: var(--dark);
}

.btn:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

@media (max-width: 768px) {
    .btn:focus {
        outline: 3px solid var(--primary);
        outline-offset: 3px;
    }
}

/* Animated Background */
.bg-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

/* Hero Section */
.hero {
    background: var(--gradient-dark);
    color: var(--light);
    padding: 8rem 0 4rem;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/banner-01.jpg') center/cover;
    opacity: 0.2;
    animation: parallax 30s ease-in-out infinite;
}

@keyframes parallax {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

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

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--primary), var(--accent), var(--primary));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

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

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 175, 55, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid var(--primary);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

.hero-feature:nth-child(1) { animation-delay: 0.2s; }
.hero-feature:nth-child(2) { animation-delay: 0.4s; }
.hero-feature:nth-child(3) { animation-delay: 0.6s; }
.hero-feature:nth-child(4) { animation-delay: 0.8s; }
.hero-feature:nth-child(5) { animation-delay: 1.0s; }
.hero-feature:nth-child(6) { animation-delay: 1.2s; }

.hero-feature:hover {
    background: rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.stars {
    color: var(--primary);
    font-size: 1.5rem;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1); filter: brightness(1); }
    50% { transform: scale(1.1); filter: brightness(1.2); }
}

/* Urgency Banner */
.urgency-banner {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(45deg, #ff4757, #ff3742);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    animation: urgencyPulse 2s infinite;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(255, 71, 87, 0.4);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.urgency-banner:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 71, 87, 0.6);
    color: white;
}

.urgency-banner:visited {
    color: white;
}

.urgency-banner:focus {
    outline: 2px solid white;
    outline-offset: 2px;
    color: white;
}

@keyframes urgencyPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Offer Badge */
.offer-badge {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    background: var(--gradient-primary);
    color: var(--dark);
    padding: 1rem 2rem;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    animation: bounceIn 3s infinite;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.offer-badge:hover {
    transform: translateY(-55%) scale(1.05);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
    color: var(--dark);
}

.offer-badge:visited {
    color: var(--dark);
}

.offer-badge:focus {
    outline: 2px solid var(--dark);
    outline-offset: 2px;
    color: var(--dark);
}

@keyframes bounceIn {
    0%, 20%, 50%, 80%, 100% { transform: translateY(-50%); }
    40% { transform: translateY(-60%); }
    60% { transform: translateY(-55%); }
}

/* Cards */
.card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
    border: 1px solid var(--gray-200);
    position: relative;
}

.card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.4);
    border-color: var(--primary);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s ease;
}

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

.card-icon {
    width: 3rem;
    height: 3rem;
    background: var(--gradient-primary);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Sections */
.section {
    padding: 5rem 0;
}

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

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: 2rem;
}

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

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Horizontal Scroll Gallery */
.gallery-container {
    position: relative;
    margin-bottom: 2rem;
}

.gallery-scroll {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.gallery-scroll::-webkit-scrollbar {
    display: none;
}

.gallery-card {
    flex: 0 0 400px;
    height: 280px;
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-card.featured {
    flex: 0 0 400px;
    height: 280px;
}

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

.gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
}

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

.gallery-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-card:hover .gallery-info {
    transform: translateY(0);
}

.gallery-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.gallery-info p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

.gallery-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-btn {
    background: var(--gradient-primary);
    border: none;
    color: var(--dark);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.gallery-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.gallery-counter {
    background: rgba(212, 175, 55, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-weight: 600;
    color: var(--primary);
    border: 1px solid var(--primary);
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 0.5rem;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: var(--primary);
    border: none;
    color: var(--dark);
    font-size: 1.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    transform: scale(1.1);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary);
    border: none;
    color: var(--dark);
    font-size: 1.5rem;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox-prev {
    left: -70px;
}

.lightbox-next {
    right: -70px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    transform: translateY(-50%) scale(1.1);
}

/* Testimonials */
.testimonial {
    background: var(--gray-100);
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
    border-left: 4px solid var(--primary);
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: -1rem;
    left: 1rem;
    font-size: 4rem;
    color: var(--primary);
    font-family: 'Playfair Display', serif;
}

/* Pricing */
.pricing-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    border: 2px solid var(--gray-200);
    position: relative;
    transition: all 0.3s;
}

.pricing-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-gold);
}

.pricing-card.popular {
    border-color: var(--primary);
    transform: scale(1.05);
    background: linear-gradient(135deg, var(--light) 0%, var(--accent) 100%);
}

.pricing-card.popular::before {
    content: 'Most Popular';
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--dark);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin: 1rem 0;
}

/* Contact */
.contact-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    margin-bottom: 2rem;
    border: 2px solid var(--primary);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.contact-item {
    padding: 1.5rem;
    border-radius: 0.75rem;
    background: var(--gray-100);
    border: 1px solid var(--primary);
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 1.25rem;
    margin: 0 auto 1rem;
}

/* Footer */
.footer {
    background: var(--gradient-dark);
    color: var(--light);
    padding: 3rem 0;
    text-align: center;
}

/* Floating Elements */
.floating-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.floating-availability {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 999;
}

.floating-btn {
    background: var(--gradient-primary);
    color: var(--dark);
    padding: 1rem 1.5rem;
    border-radius: 3rem;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: pulse 2s infinite;
    position: relative;
    overflow: hidden;
}

.floating-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shine 3s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6); }
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes gamesPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 15px rgba(0, 255, 136, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 6px 20px rgba(0, 255, 136, 0.6); }
}

.floating-btn-secondary {
    background: var(--gradient-primary);
    color: var(--dark);
}

.floating-btn-secondary::before {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--light);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Responsive Tablet */
@media (max-width: 1024px) {
    .container { padding: 0 1.5rem; }
    .hero { padding: 7rem 0 3rem; }
    .hero h1 { font-size: clamp(2rem, 6vw, 3.5rem); }
    .section { padding: 4rem 0; }
    .hero-features { gap: 1rem; }
    .hero-feature { padding: 0.4rem 0.8rem; font-size: 0.85rem; }
    .hero-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    .btn {
        min-width: 140px;
        max-width: 200px;
        font-size: 0.85rem;
    }
    .pricing-card.popular { transform: scale(1.02); }
}

/* Header Icons */
.nav-links a i {
    font-size: 1.2rem;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.nav-links a i:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: scale(1.1);
}

/* Responsive Mobile */
@media (max-width: 768px) {
    .nav-links { 
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(26, 26, 26, 0.98);
        flex-direction: column;
        padding: 1rem 0;
        border-top: 1px solid var(--primary);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        z-index: 1002;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        max-height: 500px;
    }
    
    .nav-links li {
        margin: 0.5rem 0;
        text-align: center;
    }
    
    .menu-toggle { display: block; }
    .menu-toggle.active i {
        transform: rotate(90deg);
    }
    .container { padding: 0 1rem; }
    
    .hero { padding: 6rem 0 3rem; margin-top: 3.5rem; }
    .hero h1 { font-size: clamp(1.8rem, 8vw, 2.5rem); }
    .hero-subtitle { font-size: 1rem; }
    
    .hero-features { flex-direction: column; align-items: center; gap: 0.8rem; }
    .hero-feature { width: 100%; max-width: 280px; justify-content: center; font-size: 0.8rem; }
    
    .hero-buttons { 
        flex-direction: column; 
        align-items: center; 
        gap: 0.8rem;
        max-width: 320px;
        margin: 0 auto;
    }
    .btn { 
        width: 100%; 
        max-width: 280px; 
        justify-content: center; 
        font-size: 0.9rem;
        padding: 0.8rem 1rem;
    }
    .btn.active {
        background: var(--primary);
        color: var(--dark);
    }
    
    .rating { flex-direction: column; gap: 0.5rem; }
    .section { padding: 3rem 0; }
    .section-title { font-size: clamp(1.5rem, 6vw, 2rem); }
    
    .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; gap: 1.5rem; }
    .card { padding: 1.5rem; }
    
    /* Gallery Mobile */
    .gallery-card { flex: 0 0 350px; height: 250px; }
    .gallery-card.featured { flex: 0 0 350px; height: 250px; }
    .gallery-info { padding: 1.5rem 1rem 1rem; }
    .gallery-info h3 { font-size: 1.1rem; }
    .gallery-info p { font-size: 0.85rem; }
    .gallery-btn { width: 45px; height: 45px; }
    .gallery-nav { gap: 1.5rem; }
    .testimonial { padding: 1.5rem; }
    .pricing-card { padding: 1.5rem; }
    .pricing-card.popular { transform: none; }
    .contact-card { padding: 1.5rem; }
    .contact-grid { grid-template-columns: 1fr; }
    
    .floating-cta { bottom: 5rem; right: 1rem; }
    .floating-availability { bottom: 1rem; left: 1rem; }
    .floating-checkin { bottom: 8rem !important; right: 1rem !important; }
    .floating-btn { padding: 0.8rem 1.2rem; font-size: 0.85rem; }
    .urgency-banner { 
        top: 60px; 
        right: 10px; 
        font-size: 0.75rem; 
        padding: 0.5rem 0.8rem;
        position: fixed;
        z-index: 1001;
    }
    .urgency-banner:hover {
        transform: scale(1.02);
    }
    .offer-badge { display: none; }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero h1 { font-size: clamp(1.5rem, 9vw, 2rem); }
    .hero-feature { font-size: 0.75rem; }
    .btn { 
        font-size: 0.85rem; 
        max-width: 260px;
        padding: 0.7rem 0.9rem;
    }
    .hero-buttons {
        max-width: 280px;
    }
    .section-title { font-size: clamp(1.3rem, 7vw, 1.8rem); }
    .card { padding: 1.2rem; }
    
    /* Small Mobile Gallery */
    .gallery-card { flex: 0 0 320px; height: 220px; }
    .gallery-card.featured { flex: 0 0 320px; height: 220px; }
    .gallery-info h3 { font-size: 1rem; }
    .gallery-info p { font-size: 0.8rem; }
    .gallery-btn { width: 40px; height: 40px; }
    .gallery-nav { gap: 1rem; }
    
    .urgency-banner {
        font-size: 0.7rem;
        padding: 0.4rem 0.6rem;
        top: 55px;
        right: 5px;
    }
    
    .floating-cta { 
        bottom: 6rem; 
        right: 0.5rem !important; 
        left: auto !important;
    }
    .floating-availability { 
        bottom: 1rem; 
        right: 0.5rem !important;
        left: auto !important;
    }
    .floating-checkin {
        bottom: 11rem !important;
        right: 0.5rem !important;
        left: auto !important;
    }
    .floating-btn,
    .floating-btn-secondary {
        width: 140px !important;
        min-width: 140px;
        max-width: 140px;
        padding: 0.8rem 1rem !important;
        font-size: 0.8rem !important;
        white-space: nowrap;
        text-align: center;
        justify-content: center;
    }
    
    /* Guest Check-in Section Mobile */
    #guest-checkin .grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    #guest-checkin .card {
        padding: 1.5rem !important;
    }
    
    #guest-checkin .btn {
        width: 100% !important;
        max-width: 280px !important;
        margin: 0.5rem 0 !important;
    }
}

/* Fix for guest check-in card hover animations */
#guest-checkin .card {
    transform: none !important;
}

#guest-checkin .card:hover {
    transform: translateY(-2px) !important;
    transition: transform 0.2s ease !important;
}

#guest-checkin .card::before {
    display: none !important;
}

/* Utility Classes */
.text-center { text-align: center; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mt-4 { margin-top: 1rem; }
.rounded { border-radius: 0.5rem; }
.shadow { box-shadow: var(--shadow-md); }