/* ═══════════════════════════════════════════════════════
   PC DATA - Internet & Gaming | Retro-Modern CSS
   ═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=Share+Tech+Mono&family=Rajdhani:wght@400;500;600;700&display=swap');

/* ── CSS Variables ── */
:root {
    --bg-primary: #080810;
    --bg-secondary: #0e0e1a;
    --bg-card: #0d0d1f;
    --neon-green: #00ff41;
    --neon-cyan: #00ffff;
    --neon-pink: #ff00ff;
    --neon-yellow: #ffff00;
    --neon-orange: #ff6600;
    --neon-red: #ff0040;
    --text-primary: #e0e0ff;
    --text-muted: #6060a0;
    --border-glow: rgba(0, 255, 65, 0.3);
    --font-pixel: 'Press Start 2P', monospace;
    --font-mono: 'Share Tech Mono', monospace;
    --font-body: 'Rajdhani', sans-serif;
    --scanline-opacity: 0.04;
    --glow-sm: 0 0 10px;
    --glow-md: 0 0 20px;
    --glow-lg: 0 0 40px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

/* ── Custom Cursor ── */
.cursor {
    width: 12px; height: 12px;
    background: var(--neon-green);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    transition: transform 0.15s ease, width 0.2s, height 0.2s;
    mix-blend-mode: screen;
    box-shadow: 0 0 10px var(--neon-green), 0 0 30px rgba(0,255,65,0.5);
}
.cursor-ring {
    width: 40px; height: 40px;
    border: 1px solid rgba(0,255,65,0.5);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99998;
    transition: transform 0.4s ease, width 0.3s, height 0.3s, border-color 0.3s;
}
.cursor.hover { width: 20px; height: 20px; background: var(--neon-cyan); }
.cursor-ring.hover { width: 60px; height: 60px; border-color: var(--neon-cyan); }

/* ── Scanlines Overlay ── */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0,0,0,var(--scanline-opacity)) 2px,
        rgba(0,0,0,var(--scanline-opacity)) 4px
    );
    pointer-events: none;
    z-index: 9999;
}

/* ── Particle Canvas ── */
#particleCanvas {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
}

/* ── Glitch Animation ── */
@keyframes glitch {
    0%, 100% { text-shadow: -2px 0 var(--neon-pink), 2px 0 var(--neon-cyan); transform: none; }
    20% { text-shadow: -3px 0 var(--neon-pink), 3px 0 var(--neon-cyan); transform: skewX(-1deg); }
    40% { text-shadow: 3px 0 var(--neon-pink), -3px 0 var(--neon-cyan); transform: skewX(1deg); }
    60% { text-shadow: -2px 0 var(--neon-yellow), 2px 0 var(--neon-pink); transform: none; }
}

@keyframes flicker {
    0%, 95%, 100% { opacity: 1; }
    96%, 99% { opacity: 0.8; }
    97%, 98% { opacity: 0.95; }
}

@keyframes scanMove {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100vh); }
}

@keyframes neonPulse {
    0%, 100% { box-shadow: var(--glow-sm) var(--neon-green), var(--glow-md) rgba(0,255,65,0.3); }
    50% { box-shadow: var(--glow-md) var(--neon-green), var(--glow-lg) rgba(0,255,65,0.5); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

@keyframes rotateGlow {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink {
    0%, 100% { border-color: var(--neon-green); }
    50% { border-color: transparent; }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-60px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(60px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes borderRun {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes matrixRain { 0% { opacity:1; } 100% { opacity:0; } }

/* ── Navigation ── */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(8, 8, 16, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,255,65,0.2);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 10px 30px;
    border-bottom-color: rgba(0,255,65,0.5);
    box-shadow: 0 0 30px rgba(0,255,65,0.1);
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 45px; height: 45px;
    background: linear-gradient(135deg, var(--neon-green), var(--neon-cyan));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 0 20px rgba(0,255,65,0.5);
    animation: neonPulse 2s ease-in-out infinite;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: var(--font-pixel);
    font-size: 11px;
    color: var(--neon-green);
    letter-spacing: 1px;
}

.logo-sub {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--neon-cyan);
    opacity: 0.7;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 5px;
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-family: var(--font-mono);
    font-size: 16px;
    padding: 8px 15px;
    border: 1px solid transparent;
    border-radius: 4px;
    transition: var(--transition);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    width: 0; height: 2px;
    background: var(--neon-green);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-links a:hover, .nav-links a.active {
    color: var(--neon-green);
    border-color: rgba(0,255,65,0.3);
    text-shadow: 0 0 10px var(--neon-green);
    background: rgba(0,255,65,0.05);
}

.nav-links a:hover::before, .nav-links a.active::before {
    width: 80%;
}

.nav-book-btn {
    background: transparent !important;
    border: 2px solid var(--neon-green) !important;
    color: var(--neon-green) !important;
    padding: 8px 20px !important;
    font-family: var(--font-pixel) !important;
    font-size: 9px !important;
    letter-spacing: 1px !important;
    animation: neonPulse 2s ease-in-out infinite;
}

.nav-book-btn:hover {
    background: var(--neon-green) !important;
    color: var(--bg-primary) !important;
    box-shadow: 0 0 30px var(--neon-green) !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    display: block;
    width: 28px; height: 2px;
    background: var(--neon-green);
    transition: var(--transition);
    box-shadow: 0 0 8px var(--neon-green);
}

/* ── Hero Section ── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 30px 60px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 60% at 20% 50%, rgba(0,255,65,0.06) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 80% 30%, rgba(0,255,255,0.05) 0%, transparent 60%),
        radial-gradient(ellipse 60% 60% at 50% 80%, rgba(255,0,255,0.04) 0%, transparent 60%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(0,255,65,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,255,65,0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    perspective: 500px;
    transform-style: preserve-3d;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { background-position: 0 0; }
    100% { background-position: 60px 60px; }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,255,65,0.1);
    border: 1px solid rgba(0,255,65,0.4);
    padding: 8px 20px;
    border-radius: 50px;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--neon-green);
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease forwards;
}

.badge-dot {
    width: 8px; height: 8px;
    background: var(--neon-green);
    border-radius: 50%;
    animation: blink 1s ease-in-out infinite;
}

.hero-title {
    font-family: var(--font-pixel);
    font-size: clamp(22px, 5vw, 52px);
    line-height: 1.4;
    color: var(--neon-green);
    text-shadow: 
        0 0 20px var(--neon-green),
        0 0 60px rgba(0,255,65,0.3);
    animation: glitch 8s ease-in-out infinite, fadeInUp 1s ease 0.2s both;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-family: var(--font-mono);
    font-size: clamp(16px, 2.5vw, 22px);
    color: var(--neon-cyan);
    text-shadow: 0 0 15px var(--neon-cyan);
    animation: fadeInUp 1s ease 0.4s both;
    margin-bottom: 15px;
}

.hero-typing {
    font-family: var(--font-mono);
    font-size: 15px;
    color: var(--text-muted);
    animation: fadeInUp 1s ease 0.6s both;
    margin-bottom: 40px;
    min-height: 25px;
}

.typing-cursor {
    display: inline-block;
    width: 3px; height: 18px;
    background: var(--neon-green);
    vertical-align: middle;
    animation: blink 0.7s ease-in-out infinite;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.8s both;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    background: transparent;
    border: 2px solid var(--neon-green);
    color: var(--neon-green);
    font-family: var(--font-pixel);
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    letter-spacing: 2px;
    transition: var(--transition);
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--neon-green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: -1;
}

.btn-primary:hover { color: var(--bg-primary); box-shadow: 0 0 40px var(--neon-green); }
.btn-primary:hover::before { transform: scaleX(1); }

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    background: transparent;
    border: 2px solid rgba(0,255,255,0.5);
    color: var(--neon-cyan);
    font-family: var(--font-pixel);
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    letter-spacing: 2px;
    transition: var(--transition);
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
}

.btn-secondary:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 30px var(--neon-cyan);
    background: rgba(0,255,255,0.05);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 1s both;
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: -20px; top: 50%;
    transform: translateY(-50%);
    width: 1px; height: 40px;
    background: rgba(0,255,65,0.2);
}

.stat-item:last-child::after { display: none; }

.stat-num {
    font-family: var(--font-pixel);
    font-size: 26px;
    color: var(--neon-green);
    text-shadow: 0 0 20px var(--neon-green);
    display: block;
}

.stat-label {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ── Section Base ── */
.section {
    padding: 100px 0;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--neon-green);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
    padding: 5px 15px;
    border: 1px solid rgba(0,255,65,0.3);
    border-radius: 2px;
}

.section-title {
    font-family: var(--font-pixel);
    font-size: clamp(16px, 3vw, 28px);
    color: var(--text-primary);
    text-shadow: 0 0 30px rgba(255,255,255,0.1);
    line-height: 1.5;
    margin-bottom: 15px;
}

.section-title span {
    color: var(--neon-green);
    text-shadow: 0 0 20px var(--neon-green);
}

.section-line {
    width: 80px; height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-green), transparent);
    margin: 0 auto;
}

/* ── Services Grid ── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid rgba(0,255,65,0.15);
    padding: 35px 30px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0,255,65,0.05), transparent);
    transition: left 0.5s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 0; height: 0;
    border-top: 20px solid rgba(0,255,65,0.3);
    border-left: 20px solid transparent;
}

.service-card:hover {
    border-color: rgba(0,255,65,0.5);
    box-shadow: 0 0 30px rgba(0,255,65,0.1), inset 0 0 30px rgba(0,255,65,0.03);
    transform: translateY(-5px);
}

.service-card:hover::before { left: 0; }

.service-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(0,255,65,0.5));
    animation: float 4s ease-in-out infinite;
}

.service-card:nth-child(even) .service-icon {
    animation-delay: -2s;
}

.service-name {
    font-family: var(--font-pixel);
    font-size: 16px;
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green);
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.service-desc {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.price-amount {
    font-family: var(--font-pixel);
    font-size: 18px;
    color: var(--neon-cyan);
    text-shadow: 0 0 15px var(--neon-cyan);
}

.price-unit {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-muted);
}

.price-free {
    font-family: var(--font-pixel);
    font-size: 12px;
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green);
}

/* ── About Section ── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-terminal {
    background: var(--bg-card);
    border: 1px solid rgba(0,255,65,0.3);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(0,255,65,0.1);
}

.terminal-header {
    background: rgba(0,255,65,0.1);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(0,255,65,0.2);
}

.terminal-dots {
    display: flex;
    gap: 7px;
}

.dot {
    width: 12px; height: 12px;
    border-radius: 50%;
}

.dot-red { background: var(--neon-red); box-shadow: 0 0 8px var(--neon-red); }
.dot-yellow { background: var(--neon-yellow); box-shadow: 0 0 8px var(--neon-yellow); }
.dot-green { background: var(--neon-green); box-shadow: 0 0 8px var(--neon-green); }

.terminal-title {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-muted);
    margin: 0 auto;
}

.terminal-body {
    padding: 25px;
    font-family: var(--font-mono);
    font-size: 13px;
    line-height: 2;
}

.terminal-line {
    display: flex;
    gap: 10px;
    margin: 5px 0;
}

.terminal-prompt { color: var(--neon-green); }
.terminal-cmd { color: var(--neon-cyan); }
.terminal-out { color: var(--text-muted); padding-left: 20px; }
.terminal-success { color: var(--neon-green); padding-left: 20px; }
.terminal-data { color: var(--neon-yellow); padding-left: 20px; }
.terminal-error { color: var(--neon-red); padding-left: 20px; }
.terminal-warn  { color: #ffc800; padding-left: 20px; }

.about-content h2 {
    font-family: var(--font-pixel);
    font-size: 16px;
    color: var(--neon-green);
    text-shadow: 0 0 15px var(--neon-green);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-text {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--text-primary);
}

.about-features li::before {
    content: '▸';
    color: var(--neon-green);
    text-shadow: 0 0 8px var(--neon-green);
    flex-shrink: 0;
}

/* ── Schedule / Hours ── */
.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.schedule-card {
    background: var(--bg-card);
    border: 1px solid rgba(0,255,65,0.15);
    padding: 25px;
    text-align: center;
    transition: var(--transition);
}

.schedule-card.today {
    border-color: var(--neon-green);
    box-shadow: 0 0 20px rgba(0,255,65,0.2);
}

.schedule-day {
    font-family: var(--font-pixel);
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.schedule-card.today .schedule-day { color: var(--neon-green); }

.schedule-hours {
    font-family: var(--font-mono);
    font-size: 16px;
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
}

/* ── Gallery ── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    aspect-ratio: 16/10;
    background: var(--bg-card);
    border: 1px solid rgba(0,255,65,0.15);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item:hover {
    border-color: rgba(0,255,65,0.5);
    box-shadow: 0 0 25px rgba(0,255,65,0.15);
}

.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: saturate(0.8) brightness(0.9);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: saturate(1.2) brightness(1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,255,65,0.3), transparent);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 15px;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-caption {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--bg-primary);
    font-weight: bold;
}

/* ── Booking Section ── */
.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
}

.booking-info {
    position: sticky;
    top: 120px;
}

.info-card {
    background: var(--bg-card);
    border: 1px solid rgba(0,255,65,0.2);
    padding: 30px;
    margin-bottom: 20px;
}

.info-card h3 {
    font-family: var(--font-pixel);
    font-size: 11px;
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0,255,65,0.2);
}

.info-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.info-row:last-child { border-bottom: none; }

.info-icon { font-size: 18px; width: 24px; text-align: center; }

.info-text {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--text-muted);
}

.info-text strong { color: var(--text-primary); display: block; font-size: 14px; }

/* ── Booking Form ── */
.booking-form {
    background: var(--bg-card);
    border: 1px solid rgba(0,255,65,0.2);
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.booking-form::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-green), var(--neon-cyan), var(--neon-pink), var(--neon-green));
    background-size: 200% 100%;
    animation: borderRun 4s linear infinite;
}

.form-title {
    font-family: var(--font-pixel);
    font-size: 12px;
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green);
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--neon-cyan);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-control {
    width: 100%;
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(0,255,65,0.2);
    color: var(--text-primary);
    padding: 12px 15px;
    font-family: var(--font-mono);
    font-size: 14px;
    outline: none;
    transition: var(--transition);
    border-radius: 0;
    appearance: none;
    -webkit-appearance: none;
}

.form-control:focus {
    border-color: var(--neon-green);
    box-shadow: 0 0 15px rgba(0,255,65,0.2);
    background: rgba(0,255,65,0.03);
}

.form-control option {
    background: var(--bg-secondary);
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.package-option {
    border: 1px solid rgba(0,255,65,0.2);
    padding: 12px 10px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.package-option input {
    position: absolute;
    opacity: 0;
}

.package-option label {
    cursor: pointer;
    display: block;
}

.package-option .pkg-icon { font-size: 22px; display: block; margin-bottom: 6px; }
.package-option .pkg-name { font-family: var(--font-pixel); font-size: 8px; color: var(--text-muted); }
.package-option .pkg-price { font-family: var(--font-mono); font-size: 11px; color: var(--neon-cyan); margin-top: 4px; display: block; }

.package-option:hover, .package-option.selected {
    border-color: var(--neon-green);
    background: rgba(0,255,65,0.05);
    box-shadow: 0 0 15px rgba(0,255,65,0.1);
}

.package-option.selected .pkg-name { color: var(--neon-green); }

.submit-btn {
    width: 100%;
    padding: 18px;
    background: transparent;
    border: 2px solid var(--neon-green);
    color: var(--neon-green);
    font-family: var(--font-pixel);
    font-size: 11px;
    cursor: pointer;
    letter-spacing: 3px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    margin-top: 10px;
}

.submit-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--neon-green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: -1;
}

.submit-btn:hover { color: var(--bg-primary); box-shadow: 0 0 40px var(--neon-green); }
.submit-btn:hover::before { transform: scaleX(1); }

/* ── Contact Section ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid rgba(0,255,65,0.15);
    padding: 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: var(--transition);
    margin-bottom: 15px;
}

.contact-card:hover {
    border-color: rgba(0,255,65,0.4);
    transform: translateX(10px);
    box-shadow: 0 0 20px rgba(0,255,65,0.1);
}

.contact-icon-box {
    width: 50px; height: 50px;
    background: rgba(0,255,65,0.1);
    border: 1px solid rgba(0,255,65,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.contact-card-title {
    font-family: var(--font-pixel);
    font-size: 14px;
    color: var(--neon-green);
    margin-bottom: 8px;
}

.contact-card-value {
    font-family: var(--font-mono);
    font-size: 15px;
    color: var(--text-primary);
}

.map-placeholder {
    background: var(--bg-card);
    border: 1px solid rgba(0,255,65,0.2);
    height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.map-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,255,65,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,255,65,0.08) 1px, transparent 1px);
    background-size: 30px 30px;
}

.map-pin {
    font-size: 50px;
    z-index: 1;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 0 15px var(--neon-green));
}

.map-label {
    font-family: var(--font-pixel);
    font-size: 14px;
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green);
    z-index: 1;
    margin-top: 15px;
    text-align: center;
    line-height: 1.8;
}

/* ── Social Links ── */
.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-link {
    width: 44px; height: 44px;
    border: 1px solid rgba(0,255,65,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    text-decoration: none;
    transition: var(--transition);
    color: var(--text-muted);
}

.social-link:hover {
    border-color: var(--neon-green);
    background: rgba(0,255,65,0.1);
    box-shadow: 0 0 15px rgba(0,255,65,0.3);
    color: var(--neon-green);
    transform: translateY(-3px);
}

/* ── Footer ── */
footer {
    background: var(--bg-secondary);
    border-top: 1px solid rgba(0,255,65,0.2);
    padding: 50px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-top: 15px;
}

.footer-title {
    font-family: var(--font-pixel);
    font-size: 14px;
    color: var(--neon-cyan);
    margin-bottom: 20px;
    text-shadow: 0 0 8px var(--neon-cyan);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before { content: '▸'; color: var(--neon-green); }
.footer-links a:hover { color: var(--neon-green); padding-left: 5px; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-copy {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-muted);
}

.footer-copy span { color: var(--neon-green); }

/* ── Notification Toast ── */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--bg-card);
    border: 1px solid var(--neon-green);
    padding: 15px 25px;
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--neon-green);
    box-shadow: 0 0 30px rgba(0,255,65,0.3);
    z-index: 10000;
    transform: translateX(200px);
    opacity: 0;
    transition: all 0.4s ease;
    max-width: 320px;
}

.toast.show { transform: translateX(0); opacity: 1; }
.toast.error { border-color: var(--neon-red); color: var(--neon-red); box-shadow: 0 0 30px rgba(255,0,64,0.3); }

/* ── Scroll Reveal ── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Page Header ── */
.page-header {
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 100% at 50% 0%, rgba(0,255,65,0.08), transparent);
}

.page-header h1 {
    font-family: var(--font-pixel);
    font-size: clamp(16px, 4vw, 36px);
    color: var(--neon-green);
    text-shadow: 0 0 30px var(--neon-green);
    position: relative;
    z-index: 1;
    margin-bottom: 15px;
}

.page-header p {
    font-family: var(--font-mono);
    font-size: 15px;
    color: var(--text-muted);
    position: relative;
    z-index: 1;
}

/* ── Alert Messages ── */
.alert {
    padding: 15px 20px;
    margin-bottom: 20px;
    font-family: var(--font-mono);
    font-size: 13px;
    border-left: 4px solid;
}

.alert-success { border-color: var(--neon-green); background: rgba(0,255,65,0.08); color: var(--neon-green); }
.alert-error { border-color: var(--neon-red); background: rgba(255,0,64,0.08); color: var(--neon-red); }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--neon-green); box-shadow: 0 0 10px var(--neon-green); }

/* ── Responsive ── */
@media (max-width: 900px) {
    .about-grid, .booking-wrapper, .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .package-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-links { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(8,8,16,0.97); flex-direction: column; justify-content: center; align-items: center; gap: 20px; }
    .nav-links.open { display: flex;min-height:1024px !important;background-color:#0E0F21; }
    .hamburger { display: flex; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-stats { gap: 25px; }
    .stat-item::after { display: none; }
    .hero-buttons { flex-direction: column; align-items: center; }
}

/* ── Loading Screen ── */
#loading-screen {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    z-index: 100000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
}

.loading-logo {
    font-family: var(--font-pixel);
    font-size: 20px;
    color: var(--neon-green);
    text-shadow: 0 0 30px var(--neon-green);
    animation: glitch 2s ease-in-out infinite;
    margin-bottom: 30px;
}

.loading-bar-wrapper {
    width: 300px;
    height: 4px;
    background: rgba(0,255,65,0.15);
    border: 1px solid rgba(0,255,65,0.3);
    overflow: hidden;
}

.loading-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--neon-green), var(--neon-cyan));
    width: 0%;
    box-shadow: 0 0 15px var(--neon-green);
    transition: width 0.1s;
}

.loading-text {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 15px;
    letter-spacing: 2px;
}
