/* NeonSG Tours — Cyberpunk Singapore Night Theme */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Rajdhani:wght@400;600;700&display=swap');

:root {
    --bg-deep: #08080f;
    --bg-card: #13131f;
    --neon-pink: #ff0080;
    --neon-cyan: #00ffff;
    --neon-purple: #6e00ff;
    --grey-dark: #13131f;
    --text-dim: #8888aa;
    --text-light: #ccccee;
    --white: #ffffff;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-deep);
    color: var(--text-light);
    font-family: 'Rajdhani', 'Arial', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 59px,
            rgba(0, 255, 255, 0.03) 59px,
            rgba(0, 255, 255, 0.03) 60px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 59px,
            rgba(110, 0, 255, 0.03) 59px,
            rgba(110, 0, 255, 0.03) 60px
        );
}

/* ─── TYPOGRAPHY ─────────────────────────────────────────── */

h1, h2, h3, h4 {
    font-family: 'Orbitron', 'Courier New', monospace;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.15;
}

.mono {
    font-family: 'Courier New', monospace;
    letter-spacing: 0.08em;
}

/* ─── NEON TEXT EFFECTS ───────────────────────────────────── */

.glow-cyan {
    color: var(--neon-cyan);
    text-shadow: 0 0 8px var(--neon-cyan), 0 0 20px var(--neon-cyan), 0 0 40px var(--neon-cyan);
}

.glow-pink {
    color: var(--neon-pink);
    text-shadow: 0 0 8px var(--neon-pink), 0 0 20px var(--neon-pink), 0 0 40px var(--neon-pink);
}

.glow-purple {
    color: var(--neon-purple);
    text-shadow: 0 0 8px var(--neon-purple), 0 0 20px var(--neon-purple);
}

.gradient-text {
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ─── NEON DIVIDER ────────────────────────────────────────── */

.neon-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), var(--neon-pink), var(--neon-purple), transparent);
    box-shadow: 0 0 8px var(--neon-cyan), 0 0 16px var(--neon-pink);
    margin: 0;
    border: none;
}

/* ─── NAVIGATION ──────────────────────────────────────────── */

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(8, 8, 15, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 255, 255, 0.15);
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.nav-logo {
    font-family: 'Orbitron', monospace;
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan), 0 0 25px var(--neon-cyan);
    text-decoration: none;
    letter-spacing: 0.1em;
}

.nav-logo span {
    color: var(--neon-pink);
    text-shadow: 0 0 10px var(--neon-pink), 0 0 25px var(--neon-pink);
}

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

.nav-links a {
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    color: var(--text-light);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.3s, text-shadow 0.3s;
}

.nav-links a:hover {
    color: var(--neon-pink);
    text-shadow: 0 0 8px var(--neon-pink), 0 0 16px var(--neon-pink);
}

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

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--neon-cyan);
    box-shadow: 0 0 6px var(--neon-cyan);
    display: block;
    transition: all 0.3s;
}

/* ─── BUTTONS ─────────────────────────────────────────────── */

.btn-neon-pink {
    display: inline-block;
    background: var(--neon-pink);
    color: var(--bg-deep);
    font-family: 'Orbitron', monospace;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.85rem 2rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 0 15px var(--neon-pink), 0 0 30px rgba(255, 0, 128, 0.4);
    transition: box-shadow 0.3s, transform 0.2s;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.btn-neon-pink:hover {
    box-shadow: 0 0 25px var(--neon-pink), 0 0 60px rgba(255, 0, 128, 0.6);
    transform: translateY(-2px);
}

.btn-neon-cyan {
    display: inline-block;
    background: transparent;
    color: var(--neon-cyan);
    font-family: 'Orbitron', monospace;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.85rem 2rem;
    border: 1px solid var(--neon-cyan);
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3), inset 0 0 10px rgba(0, 255, 255, 0.05);
    transition: box-shadow 0.3s, background 0.3s, transform 0.2s;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.btn-neon-cyan:hover {
    background: rgba(0, 255, 255, 0.1);
    box-shadow: 0 0 20px var(--neon-cyan), 0 0 40px rgba(0, 255, 255, 0.4);
    transform: translateY(-2px);
}

/* ─── CARDS ───────────────────────────────────────────────── */

.neon-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 255, 255, 0.25);
    padding: 2rem;
    position: relative;
    transition: box-shadow 0.3s, border-color 0.3s, transform 0.3s;
}

.neon-card:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2), 0 0 40px rgba(0, 255, 255, 0.1), inset 0 0 20px rgba(0, 255, 255, 0.03);
    transform: translateY(-4px);
}

.neon-card-pink {
    background: var(--bg-card);
    border: 1px solid rgba(255, 0, 128, 0.25);
    padding: 2rem;
    transition: box-shadow 0.3s, border-color 0.3s, transform 0.3s;
}

.neon-card-pink:hover {
    border-color: var(--neon-pink);
    box-shadow: 0 0 20px rgba(255, 0, 128, 0.2), 0 0 40px rgba(255, 0, 128, 0.1);
    transform: translateY(-4px);
}

/* ─── HERO ────────────────────────────────────────────────── */

.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 2rem 4rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1551918120-9739cb430c6d?w=1600&q=80');
    background-size: cover;
    background-position: center;
    filter: brightness(0.25) saturate(1.5);
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(8,8,15,0.7) 0%, rgba(110,0,255,0.15) 50%, rgba(8,8,15,0.8) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    width: 100%;
}

.hero-text .label {
    font-family: 'Courier New', monospace;
    font-size: 0.75rem;
    color: var(--neon-pink);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 1rem;
    text-shadow: 0 0 8px var(--neon-pink);
}

.hero-text h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--white);
}

.hero-text h1 .line-cyan {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan), 0 0 30px var(--neon-cyan), 0 0 60px rgba(0,255,255,0.5);
    display: block;
}

.hero-text h1 .line-pink {
    color: var(--neon-pink);
    text-shadow: 0 0 10px var(--neon-pink), 0 0 30px var(--neon-pink);
    display: block;
}

.hero-text .sub {
    font-size: 1.1rem;
    color: var(--text-dim);
    margin-bottom: 2rem;
    font-family: 'Courier New', monospace;
    letter-spacing: 0.05em;
}

/* ─── FORM ────────────────────────────────────────────────── */

.hero-form {
    background: rgba(19, 19, 31, 0.95);
    border: 1px solid var(--neon-cyan);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.15), 0 0 60px rgba(0, 255, 255, 0.05);
    padding: 2.5rem;
    backdrop-filter: blur(10px);
}

.hero-form h3 {
    font-size: 1rem;
    color: var(--neon-cyan);
    text-shadow: 0 0 8px var(--neon-cyan);
    margin-bottom: 0.4rem;
}

.hero-form p.form-sub {
    font-family: 'Courier New', monospace;
    font-size: 0.75rem;
    color: var(--text-dim);
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-family: 'Courier New', monospace;
    font-size: 0.7rem;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.35rem;
}

.form-group input {
    width: 100%;
    background: rgba(8, 8, 15, 0.8);
    border: 1px solid rgba(0, 255, 255, 0.3);
    color: var(--text-light);
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    padding: 0.65rem 0.9rem;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
}

.form-group input::placeholder {
    color: rgba(136, 136, 170, 0.5);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.form-submit {
    width: 100%;
    margin-top: 0.5rem;
    background: var(--neon-pink);
    color: var(--bg-deep);
    font-family: 'Orbitron', monospace;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.9rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 15px var(--neon-pink), 0 0 30px rgba(255, 0, 128, 0.3);
    transition: box-shadow 0.3s, transform 0.2s;
}

.form-submit:hover {
    box-shadow: 0 0 25px var(--neon-pink), 0 0 60px rgba(255, 0, 128, 0.5);
    transform: translateY(-2px);
}

#form-success {
    display: none;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid var(--neon-cyan);
    color: var(--neon-cyan);
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    padding: 1rem;
    margin-top: 1rem;
    text-align: center;
    text-shadow: 0 0 6px var(--neon-cyan);
}

/* ─── SECTION BASE ────────────────────────────────────────── */

section {
    padding: 5rem 2rem;
}

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

.section-label {
    font-family: 'Courier New', monospace;
    font-size: 0.7rem;
    color: var(--neon-pink);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 0.6rem;
    text-shadow: 0 0 6px var(--neon-pink);
}

.section-title {
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    color: var(--white);
    margin-bottom: 1rem;
}

.section-sub {
    font-size: 1rem;
    color: var(--text-dim);
    max-width: 600px;
    margin-bottom: 3rem;
}

/* ─── STATS ───────────────────────────────────────────────── */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid rgba(110, 0, 255, 0.4);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.stat-card:hover {
    border-color: var(--neon-purple);
    box-shadow: 0 0 20px rgba(110, 0, 255, 0.25);
}

.stat-number {
    font-family: 'Orbitron', monospace;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan), 0 0 25px var(--neon-cyan);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: 'Courier New', monospace;
    font-size: 0.7rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* ─── TOUR MODULES ────────────────────────────────────────── */

.tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.tour-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 255, 255, 0.2);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.tour-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink));
    opacity: 0;
    transition: opacity 0.3s;
}

.tour-card:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.15), 0 0 50px rgba(0, 255, 255, 0.05);
    transform: translateY(-5px);
}

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

.tour-icon {
    font-family: 'Courier New', monospace;
    font-size: 0.7rem;
    color: var(--neon-pink);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 0.75rem;
    text-shadow: 0 0 6px var(--neon-pink);
}

.tour-card h3 {
    font-size: 1rem;
    color: var(--neon-cyan);
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.5);
    margin-bottom: 0.75rem;
}

.tour-card p {
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.6;
}

.tour-tag {
    display: inline-block;
    margin-top: 1rem;
    font-family: 'Courier New', monospace;
    font-size: 0.65rem;
    color: var(--neon-purple);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border: 1px solid rgba(110, 0, 255, 0.4);
    padding: 0.2rem 0.5rem;
}

/* ─── GALLERY ─────────────────────────────────────────────── */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 255, 0.2);
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) saturate(1.3);
    transition: transform 0.4s, filter 0.4s;
}

.gallery-item:hover img {
    transform: scale(1.05);
    filter: brightness(0.9) saturate(1.6);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(8, 8, 15, 0.9));
    padding: 1.5rem 1rem 0.75rem;
    border-top: 1px solid rgba(0, 255, 255, 0.3);
}

.gallery-caption span {
    font-family: 'Courier New', monospace;
    font-size: 0.75rem;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 0 0 6px var(--neon-cyan);
}

/* ─── PRICING ─────────────────────────────────────────────── */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 255, 255, 0.2);
    padding: 2.5rem 2rem;
    position: relative;
    transition: all 0.3s;
}

.pricing-card.featured {
    border-color: var(--neon-pink);
    box-shadow: 0 0 30px rgba(255, 0, 128, 0.15), 0 0 60px rgba(255, 0, 128, 0.05);
    transform: scale(1.03);
}

.pricing-card:hover {
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.2);
    transform: translateY(-5px);
}

.pricing-card.featured:hover {
    transform: scale(1.03) translateY(-5px);
}

.pricing-badge {
    position: absolute;
    top: -1px;
    right: 1.5rem;
    background: var(--neon-pink);
    color: var(--bg-deep);
    font-family: 'Courier New', monospace;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.25rem 0.6rem;
    box-shadow: 0 0 10px var(--neon-pink);
}

.pricing-level {
    font-family: 'Courier New', monospace;
    font-size: 0.7rem;
    color: var(--neon-pink);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 6px var(--neon-pink);
}

.pricing-name {
    font-size: 1.1rem;
    color: var(--neon-cyan);
    text-shadow: 0 0 8px rgba(0,255,255,0.5);
    margin-bottom: 1rem;
}

.pricing-price {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 0.25rem;
    line-height: 1;
}

.pricing-price span {
    font-size: 0.9rem;
    color: var(--text-dim);
    font-weight: 400;
}

.pricing-desc {
    font-family: 'Courier New', monospace;
    font-size: 0.75rem;
    color: var(--neon-pink);
    text-shadow: 0 0 6px rgba(255,0,128,0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0,255,255,0.1);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    font-size: 0.9rem;
    color: var(--text-light);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.pricing-features li::before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--neon-cyan);
    font-family: 'Courier New', monospace;
    font-weight: 700;
    text-shadow: 0 0 6px var(--neon-cyan);
}

.pricing-btn {
    width: 100%;
    display: block;
    text-align: center;
    background: transparent;
    color: var(--neon-cyan);
    font-family: 'Orbitron', monospace;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.9rem;
    border: 1px solid var(--neon-cyan);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 0 10px rgba(0,255,255,0.15);
}

.pricing-btn:hover {
    background: rgba(0,255,255,0.1);
    box-shadow: 0 0 20px rgba(0,255,255,0.35);
}

.pricing-card.featured .pricing-btn {
    background: var(--neon-pink);
    color: var(--bg-deep);
    border-color: var(--neon-pink);
    box-shadow: 0 0 15px var(--neon-pink), 0 0 30px rgba(255,0,128,0.3);
}

.pricing-card.featured .pricing-btn:hover {
    box-shadow: 0 0 25px var(--neon-pink), 0 0 60px rgba(255,0,128,0.5);
}

/* ─── CTA SECTION ─────────────────────────────────────────── */

.cta-section {
    background: linear-gradient(135deg, rgba(110,0,255,0.1), rgba(255,0,128,0.05));
    border-top: 1px solid rgba(110,0,255,0.3);
    border-bottom: 1px solid rgba(0,255,255,0.3);
    text-align: center;
    padding: 6rem 2rem;
}

.cta-section h2 {
    font-size: clamp(1.8rem, 3vw, 3rem);
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-section p {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: var(--text-dim);
    margin-bottom: 2.5rem;
    letter-spacing: 0.05em;
}

/* ─── FOOTER ──────────────────────────────────────────────── */

footer {
    background: rgba(8, 8, 15, 0.98);
    border-top: 1px solid rgba(0, 255, 255, 0.1);
    padding: 3rem 2rem 2rem;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-brand .logo {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
    margin-bottom: 1rem;
    display: block;
}

.footer-brand p {
    font-size: 0.85rem;
    color: var(--text-dim);
    line-height: 1.7;
    margin-bottom: 0.4rem;
}

.footer-col h4 {
    font-family: 'Courier New', monospace;
    font-size: 0.75rem;
    color: var(--neon-pink);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    text-shadow: 0 0 6px var(--neon-pink);
}

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

.footer-col ul li {
    margin-bottom: 0.6rem;
}

.footer-col ul li a {
    font-size: 0.85rem;
    color: var(--text-dim);
    text-decoration: none;
    font-family: 'Courier New', monospace;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 6px var(--neon-cyan);
}

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

.footer-bottom p {
    font-family: 'Courier New', monospace;
    font-size: 0.75rem;
    color: var(--text-dim);
}

/* ─── DISCLAIMER ──────────────────────────────────────────── */

.disclaimer {
    background: var(--bg-deep);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 1rem 2rem;
    text-align: center;
}

.disclaimer p {
    font-family: 'Courier New', monospace;
    font-size: 0.7rem;
    color: rgba(136, 136, 170, 0.5);
    letter-spacing: 0.03em;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
}

/* ─── COOKIE BANNER ───────────────────────────────────────── */

#cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(19, 19, 31, 0.98);
    border-top: 1px solid rgba(0, 255, 255, 0.3);
    box-shadow: 0 -4px 30px rgba(0, 255, 255, 0.1);
    padding: 1.25rem 2rem;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    backdrop-filter: blur(10px);
}

#cookie-banner p {
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    color: var(--text-dim);
    flex: 1;
    min-width: 250px;
}

#cookie-banner a {
    color: var(--neon-cyan);
    text-decoration: none;
}

#cookie-banner a:hover {
    text-shadow: 0 0 6px var(--neon-cyan);
}

#cookie-accept {
    background: var(--neon-pink);
    color: var(--bg-deep);
    font-family: 'Orbitron', monospace;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.65rem 1.5rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 12px var(--neon-pink), 0 0 25px rgba(255, 0, 128, 0.3);
    white-space: nowrap;
    transition: box-shadow 0.3s;
}

#cookie-accept:hover {
    box-shadow: 0 0 20px var(--neon-pink), 0 0 50px rgba(255, 0, 128, 0.5);
}

/* ─── WHATSAPP FLOAT ──────────────────────────────────────── */

.whatsapp-float {
    position: fixed;
    bottom: 5rem;
    right: 1.5rem;
    z-index: 9998;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.7);
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
    fill: #ffffff;
}

/* ─── INNER PAGE STYLES ───────────────────────────────────── */

.page-hero {
    padding: 120px 2rem 4rem;
    background: linear-gradient(135deg, rgba(110,0,255,0.08), rgba(255,0,128,0.04));
    border-bottom: 1px solid rgba(0,255,255,0.15);
    text-align: center;
}

.page-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan), 0 0 30px var(--neon-cyan);
    margin-bottom: 0.75rem;
}

.page-hero p {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: var(--text-dim);
}

.page-content {
    max-width: 860px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.page-content h2 {
    font-size: 1.2rem;
    color: var(--neon-pink);
    text-shadow: 0 0 8px rgba(255,0,128,0.5);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255,0,128,0.2);
}

.page-content h2:first-child {
    margin-top: 0;
}

.page-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.page-content ul, .page-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.page-content li {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.page-content a {
    color: var(--neon-cyan);
    text-decoration: none;
}

.page-content a:hover {
    text-shadow: 0 0 6px var(--neon-cyan);
}

/* ─── CONTACT PAGE ────────────────────────────────────────── */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.company-card {
    background: var(--bg-card);
    border: 1px solid rgba(0,255,255,0.3);
    box-shadow: 0 0 30px rgba(0,255,255,0.08);
    padding: 2.5rem;
}

.company-card h2 {
    font-size: 1rem;
    color: var(--neon-cyan);
    text-shadow: 0 0 8px var(--neon-cyan);
    margin-bottom: 1.5rem;
}

.company-detail {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.company-detail .detail-row {
    display: flex;
    gap: 0.75rem;
}

.detail-label {
    font-family: 'Courier New', monospace;
    font-size: 0.7rem;
    color: var(--neon-pink);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    min-width: 80px;
    padding-top: 0.1rem;
}

.detail-value {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

.contact-form-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,0,128,0.25);
    padding: 2.5rem;
}

.contact-form-card h2 {
    font-size: 1rem;
    color: var(--neon-pink);
    text-shadow: 0 0 8px rgba(255,0,128,0.5);
    margin-bottom: 1.5rem;
}

.contact-form-card .form-group label {
    color: var(--neon-pink);
}

.contact-form-card .form-group input,
.contact-form-card .form-group textarea {
    width: 100%;
    background: rgba(8, 8, 15, 0.8);
    border: 1px solid rgba(255, 0, 128, 0.3);
    color: var(--text-light);
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    padding: 0.65rem 0.9rem;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
    resize: vertical;
}

.contact-form-card .form-group input:focus,
.contact-form-card .form-group textarea:focus {
    border-color: var(--neon-pink);
    box-shadow: 0 0 10px rgba(255, 0, 128, 0.2);
}

.contact-form-card .form-group input::placeholder,
.contact-form-card .form-group textarea::placeholder {
    color: rgba(136, 136, 170, 0.5);
}

/* ─── RESPONSIVE ──────────────────────────────────────────── */

@media (max-width: 1024px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .tours-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .pricing-card.featured { transform: scale(1); }
    .pricing-card.featured:hover { transform: translateY(-5px); }
    .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    nav { padding: 0 1.25rem; }

    .nav-toggle { display: flex; }

    .nav-links {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: rgba(8, 8, 15, 0.98);
        border-bottom: 1px solid rgba(0,255,255,0.2);
        flex-direction: column;
        padding: 1.5rem;
        gap: 1.25rem;
    }

    .nav-links.open { display: flex; }

    .hero-content { grid-template-columns: 1fr; gap: 2.5rem; }
    .hero-text h1 { font-size: 2rem; }

    .form-row { grid-template-columns: 1fr; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .tours-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }

    .contact-grid { grid-template-columns: 1fr; }

    .footer-top { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
    section { padding: 3.5rem 1.25rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─── ANIMATIONS ──────────────────────────────────────────── */

@keyframes neon-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes flicker {
    0%, 95%, 100% { opacity: 1; }
    96%, 98% { opacity: 0.8; }
    97%, 99% { opacity: 0.95; }
}

.hero-text h1 { animation: flicker 8s infinite; }
