/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Enhanced Color System */
    --primary-50: #fef7ee;
    --primary-100: #fdedd3;
    --primary-200: #fbd7a5;
    --primary-300: #f8bc6d;
    --primary-400: #f59e42;
    --primary-500: #f97316;
    --primary-600: #ea580c;
    --primary-700: #c2410c;
    --primary-800: #9a3412;
    --primary-900: #7c2d12;
    
    --secondary-50: #f0f9ff;
    --secondary-100: #e0f2fe;
    --secondary-200: #bae6fd;
    --secondary-300: #7dd3fc;
    --secondary-400: #38bdf8;
    --secondary-500: #0ea5e9;
    --secondary-600: #0284c7;
    --secondary-700: #0369a1;
    --secondary-800: #075985;
    --secondary-900: #0c4a6e;
    
    --neutral-50: #fafafa;
    --neutral-100: #f5f5f5;
    --neutral-200: #e5e5e5;
    --neutral-300: #d4d4d4;
    --neutral-400: #a3a3a3;
    --neutral-500: #737373;
    --neutral-600: #525252;
    --neutral-700: #404040;
    --neutral-800: #262626;
    --neutral-900: #171717;
    
    --success-500: #10b981;
    --warning-500: #f59e0b;
    --error-500: #ef4444;
    
    /* Enhanced Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-accent: 'Crimson Text', Georgia, serif;
    
    /* Spacing System */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;
    
    /* Enhanced Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --shadow-glow: 0 0 20px rgb(249 115 22 / 0.3);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-3xl: 2rem;
    
    /* Enhanced Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--neutral-800);
    background-color: var(--neutral-50);
    overflow-x: hidden;
    cursor: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

/* Custom Cursor */
.cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background: var(--primary-500);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
    mix-blend-mode: difference;
    opacity: 0;
}

body:hover .cursor-follower {
    opacity: 1;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--secondary-600) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    color: white;
}

.loading-logo {
    margin-bottom: var(--space-6);
}

.logo-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.loading-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--space-8);
    opacity: 0.9;
}

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

.loading-progress {
    height: 100%;
    background: white;
    border-radius: 2px;
    animation: loading 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

@keyframes loading {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

/* Enhanced Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    line-height: 1.2;
    font-weight: 600;
    color: var(--neutral-900);
    letter-spacing: -0.025em;
}

.section-badge {
    display: inline-block;
    padding: var(--space-2) var(--space-4);
    background: linear-gradient(135deg, var(--primary-100) 0%, var(--primary-200) 100%);
    color: var(--primary-800);
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-4);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: var(--space-4);
    color: var(--neutral-900);
    background: linear-gradient(135deg, var(--neutral-900) 0%, var(--neutral-700) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.125rem;
    text-align: center;
    color: var(--neutral-600);
    max-width: 600px;
    margin: 0 auto var(--space-16);
    line-height: 1.7;
}

.highlight {
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-500) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Enhanced Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-lg);
}

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

.nav-logo {
    text-decoration: none;
    color: var(--neutral-900);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.logo-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    transition: var(--transition-normal);
}

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

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
    color: var(--neutral-900);
}

.logo-sub {
    font-size: 0.75rem;
    color: var(--neutral-600);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: var(--space-8);
}

.nav-link {
    text-decoration: none;
    color: var(--neutral-700);
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
    padding: var(--space-2) 0;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-500) 100%);
    transition: width var(--transition-normal);
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--primary-600);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.reservation-btn {
    position: relative;
    padding: var(--space-3) var(--space-6);
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-500) 100%);
    color: white;
    border: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    transition: var(--transition-normal);
}

.reservation-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

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

.reservation-btn:hover .btn-glow {
    left: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-2);
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--neutral-700);
    transition: var(--transition-fast);
    border-radius: 1px;
}

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

.page-hero {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
}

.hero-video-container,
.hero-background {
    width: 100%;
    height: 100%;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 20s ease-out;
}

.hero:hover .hero-image {
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.4) 100%);
    z-index: -1;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(249, 115, 22, 0.1) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(14, 165, 233, 0.1) 0%, transparent 50%);
    z-index: -1;
    animation: float 6s ease-in-out infinite;
}

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

.hero-content {
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 0 var(--space-6);
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--space-6);
    transition: var(--transition-normal);
}

.hero-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.badge-icon {
    font-size: 1.2em;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    margin-bottom: var(--space-6);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
}

.title-line {
    display: block;
}

.title-highlight {
    display: block;
    background: linear-gradient(135deg, var(--primary-400) 0%, var(--primary-300) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: var(--space-8);
    opacity: 0.95;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-12);
}

.hero-stats {
    display: flex;
    gap: var(--space-8);
    justify-content: center;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--primary-300);
    display: block;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

/* Enhanced Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-8);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-normal);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-500) 100%);
    color: white;
    box-shadow: var(--shadow-lg);
}

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

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.btn-large {
    padding: var(--space-5) var(--space-10);
    font-size: 1.125rem;
}

.btn-ripple {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn:hover .btn-ripple {
    left: 100%;
}

/* Enhanced Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
    color: white;
    opacity: 0.8;
    text-align: center;
}

.scroll-text {
    font-size: 0.875rem;
    margin-bottom: var(--space-2);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.scroll-arrow {
    position: relative;
    width: 24px;
    height: 24px;
    margin: 0 auto;
}

.arrow-line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 16px;
    background: currentColor;
    transform: translate(-50%, -50%);
    animation: bounce 2s infinite;
}

.arrow-head {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateX(-50%) rotate(45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* Enhanced Sections */
.features-section,
.gallery-section,
.restaurant-hours,
.drinks-menu,
.services-section,
.location-info,
.hotel-rules {
    padding: var(--space-32) 0;
}

.gallery-section {
    background: linear-gradient(135deg, var(--neutral-50) 0%, var(--neutral-100) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-16);
}

/* Enhanced Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-8);
    margin-top: var(--space-16);
}

.feature-card {
    position: relative;
    background: white;
    padding: var(--space-8);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition-normal);
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-2xl);
}

.feature-icon {
    position: relative;
    color: var(--primary-600);
    margin-bottom: var(--space-6);
    display: inline-block;
}

.icon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-100) 0%, var(--primary-200) 100%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    transition: var(--transition-normal);
}

.feature-card:hover .icon-bg {
    transform: translate(-50%, -50%) scale(1.1);
    background: linear-gradient(135deg, var(--primary-200) 0%, var(--primary-300) 100%);
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: var(--space-4);
    color: var(--neutral-900);
}

.feature-description {
    color: var(--neutral-600);
    line-height: 1.7;
}

.feature-hover-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.1), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover .feature-hover-effect {
    left: 100%;
}

/* Enhanced Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-6);
    margin-top: var(--space-16);
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-lg);
}

.gallery-large {
    grid-column: span 2;
}

.gallery-wide {
    grid-column: span 2;
    aspect-ratio: 16/9;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: var(--space-6);
    transform: translateY(100%);
    transition: var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

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

.gallery-content h4 {
    font-size: 1.25rem;
    color: white;
    margin-bottom: var(--space-1);
}

.gallery-content p {
    font-size: 0.875rem;
    opacity: 0.9;
}

.gallery-icon {
    opacity: 0.8;
    transition: var(--transition-fast);
}

.gallery-item:hover .gallery-icon {
    opacity: 1;
    transform: scale(1.1);
}

/* Enhanced Restaurant Hours */
.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-6);
    margin-top: var(--space-16);
}

.hours-card {
    position: relative;
    background: white;
    padding: var(--space-6);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition-normal);
    overflow: hidden;
}

.hours-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.hours-icon {
    position: relative;
    color: var(--primary-600);
    margin-bottom: var(--space-4);
    display: inline-block;
}

.hours-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-2);
    color: var(--neutral-900);
}

.time {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-600);
    margin-bottom: var(--space-2);
}

.hours-description {
    font-size: 0.875rem;
    color: var(--neutral-500);
}

/* Enhanced Drinks Menu */
.drinks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-8);
    margin-top: var(--space-16);
}

.drink-card {
    position: relative;
    background: white;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.drink-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-2xl);
}

.drink-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.drink-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.drink-card:hover .drink-image img {
    transform: scale(1.1);
}

.drink-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: var(--transition-normal);
}

.drink-card:hover .drink-overlay {
    opacity: 1;
}

.price-badge {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: var(--space-1);
    backdrop-filter: blur(10px);
}

.free-badge {
    background: rgba(16, 185, 129, 0.9);
    color: white;
}

.paid-badge {
    background: rgba(245, 158, 11, 0.9);
    color: white;
}

.drink-content {
    padding: var(--space-6);
}

.drink-content h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-3);
    color: var(--neutral-900);
}

.drink-description {
    color: var(--neutral-600);
    margin-bottom: var(--space-4);
    line-height: 1.6;
}

.price-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-weight: 600;
    font-size: 1.125rem;
}

.free-price {
    color: var(--success-500);
}

.paid-price {
    color: var(--warning-500);
}

/* Enhanced Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: var(--space-12);
    margin-top: var(--space-16);
}

.service-category {
    position: relative;
    background: white;
    border-radius: var(--radius-3xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.category-header {
    text-align: center;
    margin-bottom: var(--space-8);
}

.category-icon {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-4);
    color: white;
}

.category-icon.free {
    background: linear-gradient(135deg, var(--success-500) 0%, #059669 100%);
}

.category-icon.paid {
    background: linear-gradient(135deg, var(--warning-500) 0%, #d97706 100%);
}

.category-title {
    font-size: 1.75rem;
    margin-bottom: var(--space-3);
    color: var(--neutral-900);
}

.category-subtitle {
    color: var(--neutral-600);
    line-height: 1.6;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.service-item {
    position: relative;
    display: flex;
    gap: var(--space-4);
    padding: var(--space-4);
    border-radius: var(--radius-lg);
    transition: var(--transition-fast);
    overflow: hidden;
}

.service-item:hover {
    background: var(--neutral-50);
    transform: translateX(8px);
}

.service-icon {
    color: var(--primary-600);
    flex-shrink: 0;
    margin-top: var(--space-1);
}

.service-content h4 {
    font-size: 1.125rem;
    margin-bottom: var(--space-2);
    color: var(--neutral-900);
}

.service-content p {
    color: var(--neutral-600);
    line-height: 1.6;
}

.service-hover-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.05), transparent);
    transition: left 0.5s ease;
}

.service-item:hover .service-hover-effect {
    left: 100%;
}

/* Enhanced Location Section */
.map-section {
    padding: var(--space-16) 0;
}

.map-container {
    position: relative;
    border-radius: var(--radius-3xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.map-overlay {
    position: absolute;
    top: var(--space-6);
    left: var(--space-6);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: var(--space-4);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.map-info h3 {
    font-size: 1.125rem;
    margin-bottom: var(--space-2);
    color: var(--neutral-900);
}

.map-info p {
    color: var(--neutral-600);
    font-size: 0.875rem;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-8);
    margin-top: var(--space-16);
}

.location-card {
    position: relative;
    background: white;
    padding: var(--space-8);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    overflow: hidden;
}

.location-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.location-card.primary {
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-700) 100%);
    color: white;
}

.location-icon {
    position: relative;
    color: var(--primary-600);
    margin-bottom: var(--space-6);
    display: inline-block;
}

.location-card.primary .location-icon {
    color: white;
}

.location-content h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-4);
}

.location-card.primary h3 {
    color: white;
}

.address {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: var(--space-4);
    line-height: 1.6;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-weight: 500;
}

.parking-options,
.airport-options {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.parking-option,
.airport-option {
    padding: var(--space-4);
    border-radius: var(--radius-lg);
    background: var(--neutral-50);
    transition: var(--transition-fast);
}

.parking-option:hover,
.airport-option:hover {
    background: var(--neutral-100);
    transform: translateY(-2px);
}

.parking-badge {
    display: inline-block;
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: var(--space-2);
}

.parking-badge.free {
    background: var(--success-500);
    color: white;
}

.parking-badge.paid {
    background: var(--warning-500);
    color: white;
}

.distance-info {
    display: flex;
    gap: var(--space-4);
    margin: var(--space-2) 0;
}

.distance,
.duration {
    padding: var(--space-1) var(--space-3);
    background: var(--primary-100);
    color: var(--primary-800);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
}

.transport-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    margin-top: var(--space-4);
}

.transport-feature {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--neutral-600);
    font-size: 0.875rem;
}

.transport-feature svg {
    color: var(--success-500);
}

.card-glow {
    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.8s ease;
}

.location-card:hover .card-glow {
    left: 100%;
}

/* Enhanced Hotel Rules */
.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-8);
    margin-top: var(--space-16);
}

.rule-card {
    position: relative;
    background: white;
    padding: var(--space-8);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    overflow: hidden;
}

.rule-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.rule-icon {
    position: relative;
    color: var(--primary-600);
    margin-bottom: var(--space-6);
    display: inline-block;
}

.rule-content h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-4);
    color: var(--neutral-900);
}

.rule-content p {
    color: var(--neutral-600);
    line-height: 1.7;
}

.rule-hover-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.05), transparent);
    transition: left 0.6s ease;
}

.rule-card:hover .rule-hover-effect {
    left: 100%;
}

.important-notice {
    position: relative;
    background: linear-gradient(135deg, var(--primary-50) 0%, var(--primary-100) 100%);
    border: 1px solid var(--primary-200);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    margin-top: var(--space-12);
    display: flex;
    gap: var(--space-4);
    overflow: hidden;
}

.notice-icon {
    color: var(--primary-600);
    flex-shrink: 0;
    margin-top: var(--space-1);
}

.notice-content h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-3);
    color: var(--primary-800);
}

.notice-content p {
    color: var(--primary-700);
    line-height: 1.7;
}

.notice-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.1), transparent);
    transition: left 1s ease;
}

.important-notice:hover .notice-glow {
    left: 100%;
}

/* Enhanced Location CTA */
.location-cta {
    position: relative;
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-700) 100%);
    color: white;
    padding: var(--space-32) 0;
    text-align: center;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.cta-pattern {
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                      radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: float 8s ease-in-out infinite;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-icon {
    margin-bottom: var(--space-6);
    opacity: 0.9;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: var(--space-4);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-description {
    font-size: 1.125rem;
    margin-bottom: var(--space-8);
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* Enhanced Footer */
.footer {
    position: relative;
    background: var(--neutral-900);
    color: var(--neutral-300);
    padding: var(--space-32) 0 var(--space-8);
    overflow: hidden;
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.footer-pattern {
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 20%, rgba(249, 115, 22, 0.05) 0%, transparent 50%),
                      radial-gradient(circle at 80% 80%, rgba(14, 165, 233, 0.05) 0%, transparent 50%);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-12);
    margin-bottom: var(--space-12);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
}

.footer-logo-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
}

.footer-logo-main {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.footer-logo-sub {
    font-size: 0.75rem;
    color: var(--neutral-400);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-description {
    line-height: 1.7;
    color: var(--neutral-400);
    margin-bottom: var(--space-6);
}

.footer-social {
    display: flex;
    gap: var(--space-3);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--neutral-800);
    color: var(--neutral-400);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition-normal);
}

.social-link:hover {
    background: var(--primary-600);
    color: white;
    transform: translateY(-2px);
}

.footer-section h4 {
    color: white;
    font-size: 1.125rem;
    margin-bottom: var(--space-4);
    font-weight: 600;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    color: var(--neutral-400);
}

.contact-item svg {
    color: var(--primary-500);
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.footer-links a {
    color: var(--neutral-400);
    text-decoration: none;
    transition: var(--transition-fast);
    padding: var(--space-1) 0;
}

.footer-links a:hover {
    color: var(--primary-500);
    transform: translateX(4px);
}

.footer-bottom {
    border-top: 1px solid var(--neutral-800);
    padding-top: var(--space-8);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-4);
}

.footer-bottom-links {
    display: flex;
    gap: var(--space-6);
}

.footer-bottom-links a {
    color: var(--neutral-500);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: var(--primary-500);
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        gap: var(--space-6);
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid,
    .gallery-grid,
    .hours-grid,
    .drinks-grid,
    .services-grid,
    .location-grid,
    .rules-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-large,
    .gallery-wide {
        grid-column: span 1;
    }
    
    .services-grid {
        gap: var(--space-8);
    }
    
    .container {
        padding: 0 var(--space-4);
    }
    
    .hero-content {
        padding: 0 var(--space-4);
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    body {
        cursor: auto;
    }
    
    .cursor-follower {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 80vh;
    }
    
    .page-hero {
        height: 60vh;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .btn {
        padding: var(--space-3) var(--space-6);
        font-size: 0.875rem;
    }
    
    .feature-card,
    .hours-card,
    .drink-card,
    .service-category,
    .location-card,
    .rule-card {
        padding: var(--space-6);
    }
    
    .hero-stats {
        flex-direction: column;
        gap: var(--space-4);
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Enhanced Animation Utilities */
@media (prefers-reduced-motion: no-preference) {
    .feature-card,
    .gallery-item,
    .hours-card,
    .drink-card,
    .location-card,
    .rule-card,
    .service-item {
        transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    }
    
    .nav-link::before {
        transition: width var(--transition-normal);
    }
    
    .btn {
        transition: all var(--transition-normal);
    }
    
    .hero-particles {
        animation: float 6s ease-in-out infinite;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .scroll-indicator,
    .footer,
    .loading-screen,
    .cursor-follower {
        display: none;
    }
    
    .hero,
    .page-hero {
        height: auto;
        padding: var(--space-8) 0;
    }
    
    .hero-background {
        display: none;
    }
    
    .hero-content {
        color: var(--neutral-900);
    }
    
    .hero-title,
    .hero-subtitle {
        color: var(--neutral-900);
    }
}
/* --- Logo Bozulmasını Engelleme Kodu --- */

/* Yükleme ekranı, navigasyon ve footer'daki logolar için ortak stil */
.logo-placeholder,
.logo-img,
.footer-logo-img {
    /* Görselin en-boy oranını koruyarak kutuya sığmasını sağlar. */
    object-fit: contain; 
    
    /* Genişliği sabit tutarken yüksekliğin otomatik ayarlanmasını sağlar. */
    /* Eğer CSS'inizde zaten bir height değeri varsa bu satır onu ezecektir. */
    height: auto; 

    /* Görselin kalitesini artırmak için tarayıcıya ipucu verir (tüm tarayıcılarda çalışmayabilir) */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Navigasyon barındaki logoya özel boyutlandırma (Örnek değerler) */
.nav-container .logo-img {
    width: 60px; /* Logonuzun genişliğini buradan ayarlayabilirsiniz */
}

/* Footer'daki logoya özel boyutlandırma (Örnek değerler) */
.footer-logo .footer-logo-img {
     width: 50px; /* Footer logosunun genişliğini buradan ayarlayabilirsiniz */
}