/* =========================================
   VARIABLES & DESIGN TOKENS (OPERA GX STYLE)
   ========================================= */
:root {
    --bg-dark: #0a0910;
    --bg-panel: #14121c;
    --bg-panel-light: #1c1928;
    --primary-red: #ff0040;
    --primary-red-glow: rgba(255, 0, 64, 0.4);
    --secondary-accent: #ff4070;
    --text-light: #ffffff;
    --text-gray: #a09eb0;

    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Inter', sans-serif;

    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =========================================
   RESET & BASE STYLES
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

/* Per-section background texture base */
.features,
.services,
.about,
footer {
    position: relative;
    overflow: hidden;
}

.features > .container,
.services > .container,
.about > .container,
footer > .footer-grid,
footer > .footer-bottom {
    position: relative;
    z-index: 2;
}

/* Section texture overlays */
.features::after,
.services::after,
.about::after,
footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 1;
}

.features::after {
    background-image: url('assets/images/bg-dots.jpg');
    opacity: 0.07;
}

.services::after {
    background-image: url('assets/images/bg-smoke.jpg');
    opacity: 0.12;
}

.about::after {
    background-image: url('assets/images/bg-texture.jpg');
    opacity: 0.08;
}

footer::after {
    background-image: url('assets/images/bg-dots.jpg');
    opacity: 0.05;
    transform: rotate(180deg);
}

/* Custom Magnetic Cursor */
.cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background-color: var(--primary-red);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

.cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 0, 60, 0.5);
    background: rgba(255, 0, 60, 0.05);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1), width 0.2s, height 0.2s, background 0.2s, border 0.2s;
}

.cursor.hovering {
    width: 0;
    height: 0;
    background-color: transparent;
}

.cursor-follower.hovering {
    width: 60px;
    height: 60px;
    background: rgba(255, 0, 60, 0.1);
    border: 2px solid var(--primary-red);
    box-shadow: 0 0 20px rgba(255, 0, 60, 0.4);
    mix-blend-mode: exclusion;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

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

.text-red {
    color: var(--primary-red);
    text-shadow: 0 0 15px var(--primary-red-glow), 0 0 30px var(--primary-red-glow);
}

/* =========================================
   TYPOGRAPHY & UTILITIES
   ========================================= */
.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    color: var(--text-light);
    position: relative;
    display: inline-block;
    letter-spacing: 2px;
}

.title-long {
    white-space: nowrap;
    font-size: clamp(1.5rem, 3.5vw, 2.5rem) !important;
}

.section-title h2::before {
    content: attr(data-text);
    position: absolute;
    left: -4px;
    top: -2px;
    color: var(--primary-red);
    opacity: 0.5;
    z-index: -1;
    filter: blur(4px);
}

.title-underline {
    height: 2px;
    width: 150px;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
    margin: 10px auto 0;
    position: relative;
}

.title-underline::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 6px;
    background: var(--primary-red);
    box-shadow: 0 0 10px var(--primary-red-glow);
}

.subtitle-text {
    color: var(--secondary-accent);
    font-family: 'Courier New', Courier, monospace;
    font-size: 1rem;
    max-width: 600px;
    margin: 15px auto 0;
}

/* =========================================
   HUD TECH BUTTONS (NO CLIPS)
   ========================================= */
.btn {
    display: inline-block;
    padding: 15px 35px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    background: rgba(255, 0, 60, 0.05);
    border: 1px solid rgba(255, 0, 60, 0.3);
    color: var(--text-light);
    z-index: 1;
}

/* Side brackets (Opera GX style subtle lines) */
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-red);
    transition: var(--transition-smooth);
}

.btn-primary:hover {
    background: rgba(255, 0, 64, 0.1);
    color: #fff;
    border-color: var(--primary-red);
}

.btn-outline:hover {
    background: rgba(255, 0, 60, 0.2);
    color: #fff;
    border-color: var(--primary-red);
    box-shadow: 0 0 15px rgba(255, 0, 60, 0.5);
}

.btn-primary:hover::before,
.btn-outline:hover::before {
    width: 100%;
    background: var(--primary-red);
    z-index: -1;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* =========================================
   NAVIGATION
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(3, 3, 5, 0.7);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 0, 60, 0.2);
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-fast);
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(3, 3, 5, 0.95);
    border-bottom: 1px solid var(--primary-red);
    box-shadow: 0 0 20px rgba(255, 0, 60, 0.3);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    color: var(--text-light);
}

.logo-highlight {
    color: var(--primary-red);
    text-shadow: 0 0 15px var(--primary-red-glow);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-gray);
    position: relative;
    padding: 5px 0;
    letter-spacing: 1px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-red);
    text-shadow: 0 0 10px var(--primary-red-glow);
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-red);
    cursor: pointer;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/images/hero-bg.png') no-repeat center center/cover;
    opacity: 0.7;
    z-index: 1;
    filter: contrast(120%) saturate(120%);
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(90deg, rgba(3, 3, 5, 1) 0%, rgba(3, 3, 5, 0.7) 40%, transparent 100%),
        repeating-linear-gradient(transparent, transparent 2px, rgba(0, 0, 0, 0.3) 2px, rgba(0, 0, 0, 0.3) 4px);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 700px;
}

.hud-data {
    font-family: 'Courier New', Courier, monospace;
    color: var(--secondary-accent);
    font-size: 0.8rem;
    margin-bottom: 10px;
    display: inline-block;
    padding: 4px 10px;
    border: 1px solid rgba(255, 0, 60, 0.3);
    border-radius: 2px;
    background: rgba(255, 0, 60, 0.1);
}

.glitch {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 10px;
    position: relative;
    color: #fff;
    text-transform: uppercase;
    white-space: nowrap;
}

.subtitle {
    font-size: 2.5rem;
    margin-bottom: 25px;
    letter-spacing: 4px;
    color: var(--text-gray);
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    border-left: 2px solid var(--primary-red);
    padding-left: 15px;
    background: linear-gradient(90deg, rgba(255, 0, 60, 0.1), transparent);
}

.hero-cta {
    display: flex;
    gap: 20px;
}

/* =========================================
   FEATURES SECTION (HUD TARGETING CARDS)
   ========================================= */
.features {
    padding: 120px 0;
    background: var(--bg-dark);
    border-top: 1px solid rgba(255, 0, 60, 0.3);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    background: var(--bg-panel);
    padding: 40px 30px;
    position: relative;
    border: 1px solid rgba(255, 0, 60, 0.1);
    transition: var(--transition-smooth);
}

/* Corner Reticles */
.feature-card::before,
.feature-card::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    border: 2px solid var(--primary-red);
    transition: var(--transition-smooth);
    opacity: 0.5;
}

.feature-card::before {
    top: -2px;
    left: -2px;
    border-right: none;
    border-bottom: none;
}

.feature-card::after {
    bottom: -2px;
    right: -2px;
    border-left: none;
    border-top: none;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 0, 60, 0.05);
    border-color: rgba(255, 0, 60, 0.4);
    box-shadow: 0 0 20px rgba(255, 0, 60, 0.15);
}

.feature-card:hover::before,
.feature-card:hover::after {
    width: 30px;
    height: 30px;
    opacity: 1;
    box-shadow: 0 0 10px var(--primary-red-glow);
    border-color: var(--secondary-accent);
}

.feature-icon {
    font-size: 3.5rem;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--primary-red);
    margin-bottom: 25px;
    display: inline-block;
    transition: var(--transition-fast);
}

.feature-card:hover .feature-icon {
    color: var(--primary-red);
    text-shadow: 0 0 20px var(--primary-red-glow);
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: var(--text-light);
}

.feature-card p {
    color: var(--text-gray);
    font-size: 1rem;
}

/* =========================================
   SERVICES SECTION & LAMP SECTION
   ========================================= */
.services {
    padding: 120px 0;
    background: #050008;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.service-card {
    background: var(--bg-panel);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 400px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 2px solid var(--primary-red);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: var(--transition-smooth);
}

/* Tech borders for service cards */
.service-card::before,
.service-card::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    border: 2px solid var(--secondary-accent);
    transition: var(--transition-smooth);
    z-index: 10;
    opacity: 0.3;
}

.service-card::before {
    top: 10px;
    left: 10px;
    border-right: none;
    border-bottom: none;
}

.service-card::after {
    bottom: 10px;
    right: 10px;
    border-left: none;
    border-top: none;
}

.service-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    transition: transform 0.5s ease;
    z-index: 0;
    filter: grayscale(80%) contrast(120%);
}

.service-card:hover {
    border-color: var(--primary-red);
}

.service-card:hover .service-image {
    transform: scale(1.1);
    filter: grayscale(0%) contrast(120%);
    opacity: 0.6;
}

.service-card:hover::before,
.service-card:hover::after {
    opacity: 1;
    border-color: var(--primary-red);
    width: 40px;
    height: 40px;
}

.service-content {
    padding: 40px;
    position: relative;
    z-index: 2;
    margin-top: auto;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.6) 60%, transparent 100%);
    border-top: 1px solid rgba(255, 0, 64, 0.1);
}

.service-content h3 {
    margin-bottom: 10px;
    font-size: 1.8rem;
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

.service-content p {
    color: #ddd;
    margin-bottom: 20px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--secondary-accent);
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.read-more i {
    transition: var(--transition-fast);
}

.read-more:hover i {
    transform: translateX(10px);
    color: var(--primary-red);
}

/* --- GAHAR LAMP GRID --- */
.lamp-services-container {
    margin-top: 40px;
}

.lamp-layout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.lamp-image-side {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.lamp-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

.lamp-image-side:hover .lamp-main-img {
    transform: scale(1.05);
}

.lamp-glow-box {
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.9);
    pointer-events: none;
}

.lamp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.lamp-item {
    background: var(--bg-panel);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 3px solid var(--primary-red);
    padding: 40px 30px;
    position: relative;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lamp-item::before {
    content: '01';
    position: absolute;
    top: 15px;
    left: 15px;
    font-family: var(--font-heading);
    color: rgba(255, 0, 64, 0.2);
    font-size: 1.5rem;
    font-weight: 900;
}

.lamp-item:nth-child(2)::before {
    content: '02';
}

.lamp-item:nth-child(3)::before {
    content: '03';
}

.lamp-item:nth-child(4)::before {
    content: '04';
}

.lamp-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    background: var(--bg-panel-light);
}

.lamp-item h4 {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    margin-top: 10px;
}

.lamp-item p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* =========================================
   ABOUT / MECHANIC SECTION
   ========================================= */
.about {
    padding: 120px 0;
    background: var(--bg-dark);
    border-top: 1px solid rgba(255, 0, 60, 0.3);
    border-bottom: 1px solid rgba(255, 0, 60, 0.3);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 30px;
}

.about-text p {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

.about-list li {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 1.1rem;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.about-list i {
    color: var(--primary-red);
    font-size: 1.5rem;
    text-shadow: 0 0 15px var(--primary-red-glow);
}

.about-image-wrapper {
    position: relative;
    padding: 0;
    background: var(--bg-dark);
}

/* Futuristic Corner Framing instead of solid boxes */
.about-image-wrapper::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: 40px;
    height: 40px;
    border-top: 2px solid var(--primary-red);
    border-left: 2px solid var(--primary-red);
    pointer-events: none;
    z-index: 20;
}

.about-img {
    width: 100%;
    display: block;
    filter: contrast(110%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    transition: var(--transition-smooth);
}

.about-image-wrapper:hover .about-img {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 30px rgba(255, 0, 64, 0.1);
}

/* Scanline effect on image */
.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-red);
    box-shadow: 0 0 15px var(--primary-red-glow);
    z-index: 10;
    animation: scanline 4s linear infinite;
    pointer-events: none;
    opacity: 0.8;
}

@keyframes scanline {
    0% {
        top: 0%;
    }

    100% {
        top: 100%;
    }
}

/* =========================================
   CTA SECTION
   ========================================= */
.cta-section {
    padding: 120px 0;
    background: url('assets/images/hero-bg.png') center/cover;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(3, 3, 5, 0.9);
    backdrop-filter: blur(5px);
}

.cta-container {
    max-width: 700px;
    position: relative;
    z-index: 2;
    text-align: center;
}

.booking-form {
    background: rgba(10, 10, 15, 0.8);
    padding: 50px;
    border: 1px solid rgba(255, 0, 60, 0.5);
    position: relative;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
}

/* Form brackets */
.booking-form::before,
.booking-form::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border: 3px solid var(--secondary-accent);
    opacity: 0.5;
}

.booking-form::before {
    top: -2px;
    left: -2px;
    border-right: none;
    border-bottom: none;
}

.booking-form::after {
    bottom: -2px;
    right: -2px;
    border-left: none;
    border-top: none;
}

.booking-form input,
.booking-form select {
    width: 100%;
    padding: 18px 20px;
    margin-bottom: 25px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--secondary-accent);
    font-family: 'Courier New', Courier, monospace;
    letter-spacing: 1px;
    outline: none;
    transition: var(--transition-fast);
}

.booking-form input:focus,
.booking-form select:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 15px rgba(255, 0, 60, 0.2);
    background: rgba(255, 0, 60, 0.05);
}

/* =========================================
   PROCESS TIMELINE SECTION
   ========================================= */
.process-section {
    padding: 120px 0;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 0, 60, 0.3);
}

.process-section > .container {
    position: relative;
    z-index: 2;
}

.process-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.process-step {
    text-align: center;
    flex: 1;
    max-width: 200px;
    position: relative;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    color: var(--primary-red);
    margin-bottom: 10px;
    letter-spacing: 2px;
    opacity: 0.5;
}

.step-icon {
    width: 70px;
    height: 70px;
    border: 2px solid var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--primary-red);
    background: rgba(255, 0, 60, 0.05);
    transition: var(--transition-smooth);
}

.process-step:hover .step-icon {
    background: var(--primary-red);
    color: #fff;
    box-shadow: 0 0 30px rgba(255, 0, 60, 0.4);
}

.process-step h4 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.process-step p {
    color: var(--text-gray);
    font-size: 0.85rem;
    line-height: 1.5;
}

.process-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-red), transparent);
    margin-top: 48px;
    flex-shrink: 0;
}

/* =========================================
   GALLERY SECTION
   ========================================= */
.gallery-section {
    padding: 120px 0;
    background: #050008;
    position: relative;
    overflow: hidden;
}

.gallery-section > .container {
    position: relative;
    z-index: 2;
}

/* Cyberpunk Bento Gallery Grid */
.cyber-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 280px) 280px;
    gap: 15px;
    width: 100%;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 0, 60, 0.2);
    border-radius: 4px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.5s ease;
}

.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 2; grid-row: span 1; }
.gallery-item:nth-child(3) { grid-column: span 1; grid-row: span 1; }
.gallery-item:nth-child(4) { grid-column: span 1; grid-row: span 1; }
.gallery-item:nth-child(5) { grid-column: span 2; grid-row: span 1; }
.gallery-item:nth-child(6) { grid-column: span 2; grid-row: span 1; }

.gallery-item:hover {
    border-color: var(--primary-red);
    box-shadow: 0 0 30px rgba(255, 0, 60, 0.2);
    transform: scale(0.98);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.8;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-overlay span {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--primary-red);
    letter-spacing: 2px;
    text-transform: uppercase;
}

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

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Responsive Bento Grid */
@media (max-width: 992px) {
    .cyber-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 250px;
        grid-template-rows: auto;
    }
    .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
    .gallery-item:nth-child(n+2) { grid-column: span 1; grid-row: span 1; }
}

@media (max-width: 576px) {
    .cyber-gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 300px;
    }
    .gallery-item { grid-column: span 1 !important; grid-row: span 1 !important; }
}
/* =========================================
   TESTIMONIAL SECTION (Marquee)
   ========================================= */
.testimonial-section {
    padding: 120px 0;
    background: #050008;
    position: relative;
    overflow: hidden;
}

.testimonial-section > .container {
    position: relative;
    z-index: 2;
    margin-bottom: 50px;
}

.marquee-container {
    width: 100vw;
    overflow: hidden;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 20px 0;
}

.marquee-track {
    display: flex;
    width: calc(400px * 6); /* Width of cards * number of items (original + duplicate) */
    animation: marquee 20s linear infinite;
    gap: 30px;
}

.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-400px * 3 - 90px)); } /* Scroll half */
}

.testimonial-glass-card {
    width: 400px;
    flex-shrink: 0;
    background: rgba(20, 0, 5, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 0, 60, 0.3);
    border-radius: 8px;
    padding: 40px 30px;
    position: relative;
    transition: var(--transition-smooth);
    box-shadow: inset 0 0 20px rgba(255, 0, 60, 0.05);
}

.testimonial-glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-red);
}

.testimonial-glass-card:hover {
    border-color: var(--primary-red);
    box-shadow: 0 0 30px rgba(255, 0, 60, 0.2), inset 0 0 20px rgba(255, 0, 60, 0.1);
    transform: translateY(-5px);
}

.testimonial-stars {
    margin-bottom: 20px;
}

.testimonial-stars i {
    color: #ffb800;
    font-size: 0.9rem;
    filter: drop-shadow(0 0 5px rgba(255, 184, 0, 0.5));
}

.testimonial-text {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
    font-weight: 300;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
}

.author-avatar i {
    font-size: 2.5rem;
    color: var(--primary-red);
}

.testimonial-author h5 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--primary-red);
    letter-spacing: 1px;
    margin-bottom: 3px;
    text-transform: uppercase;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-gray);
}

/* =========================================
   FAQ SECTION (Cyberpunk Split)
   ========================================= */
.faq-section {
    padding: 120px 0;
    background: #030005;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 0, 60, 0.3);
}

.faq-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 0, 60, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 0, 60, 0.02) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.cyber-faq-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
    margin-top: 40px;
}

.cyber-faq-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cyber-faq-btn {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 0, 60, 0.2);
    color: var(--text-gray);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    padding: 15px 20px;
    text-align: left;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    clip-path: polygon(0 0, 95% 0, 100% 50%, 95% 100%, 0 100%);
}

.cyber-faq-btn:hover {
    background: rgba(255, 0, 60, 0.1);
    color: var(--text-light);
}

.cyber-faq-btn.active {
    background: var(--primary-red);
    color: #fff;
    border-color: var(--primary-red);
    box-shadow: 0 0 15px rgba(255, 0, 60, 0.4);
}

.cyber-faq-display {
    background: rgba(5, 0, 10, 0.8);
    border: 1px solid var(--primary-red);
    position: relative;
    padding: 40px;
    min-height: 300px;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
}

.cyber-faq-display::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 2px;
    background: var(--primary-red);
    box-shadow: 0 0 10px var(--primary-red);
}

.cyber-scanline {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 10px;
    background: rgba(255, 0, 60, 0.2);
    opacity: 0.4;
    animation: scanline 4s linear infinite;
    pointer-events: none;
}

@keyframes scanline {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(300px); }
}

.cyber-faq-content {
    display: none;
}

.cyber-faq-content.active {
    display: block;
    animation: fadeInCyber 0.5s ease;
}

@keyframes fadeInCyber {
    0% { opacity: 0; transform: translateX(20px); filter: hue-rotate(90deg); }
    100% { opacity: 1; transform: translateX(0); filter: hue-rotate(0); }
}

.cyber-faq-content p:first-child {
    color: var(--primary-red);
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.cyber-faq-content p:last-child {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* =========================================
   BOOKING SECTION (Command Console)
   ========================================= */
.booking-section {
    padding: 120px 0;
    background: #010002;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 0, 60, 0.3);
}

.booking-console {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-top: 50px;
}

.console-sidebar h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.2;
}

.console-sidebar p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.console-status {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.02);
    padding: 15px 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 3px solid var(--primary-red);
}

.blinking-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-red);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-red);
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.status-indicator span {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: var(--text-light);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.console-main {
    background: rgba(10, 0, 5, 0.8);
    border: 1px solid rgba(255, 0, 60, 0.3);
    position: relative;
    box-shadow: 0 0 40px rgba(255, 0, 60, 0.1);
}

.console-header {
    background: rgba(255, 0, 60, 0.1);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 0, 60, 0.3);
}

.console-title {
    font-family: 'Courier New', Courier, monospace;
    color: var(--primary-red);
    font-size: 0.9rem;
}

.console-close {
    color: var(--primary-red);
    font-family: var(--font-heading);
    cursor: pointer;
}

.cyber-form {
    padding: 40px;
    display: grid;
    gap: 30px;
}

.input-group {
    position: relative;
}

.input-group input,
.input-group select {
    width: 100%;
    background: transparent;
    border: none;
    padding: 15px 0;
    color: var(--text-light);
    font-size: 1rem;
    outline: none;
}

.input-group label {
    position: absolute;
    top: 15px;
    left: 0;
    color: var(--text-gray);
    pointer-events: none;
    transition: 0.3s ease;
    font-size: 0.9rem;
}

.input-group input:focus ~ label,
.input-group input:not(:placeholder-shown) ~ label {
    top: -10px;
    font-size: 0.75rem;
    color: var(--primary-red);
}

.input-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.input-line::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--primary-red);
    transition: 0.3s ease;
    box-shadow: 0 0 10px var(--primary-red);
}

.input-group input:focus ~ .input-line::after,
.input-group select:focus ~ .input-line::after {
    width: 100%;
}

.input-group select {
    color: var(--text-gray);
}
.input-group select option {
    background: #000;
    color: #fff;
}

.date-group {
    margin-top: 10px;
}

.cyber-btn {
    background: transparent;
    border: 1px solid var(--primary-red);
    color: var(--primary-red);
    padding: 20px;
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 3px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
    margin-top: 20px;
}

.cyber-btn::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--primary-red);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
    z-index: 0;
}

.cyber-btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.cyber-btn:hover {
    color: #fff;
    box-shadow: 0 0 30px rgba(255, 0, 60, 0.4);
}

.cyber-btn-text {
    position: relative;
    z-index: 1;
}

/* =========================================
   FOOTER
   ========================================= */
footer {
    background: #000;
    padding: 80px 0 20px;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-red), var(--secondary-accent), var(--primary-red));
}

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

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 0, 60, 0.1);
    border: 1px solid rgba(255, 0, 60, 0.3);
    transition: var(--transition-fast);
}

.social-links a:hover {
    background: var(--primary-red);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 0, 60, 0.4);
    color: #fff;
}

.footer-links h3,
.footer-contact h3 {
    margin-bottom: 30px;
    color: var(--text-light);
    font-size: 1.3rem;
    position: relative;
    display: inline-block;
}

.footer-links h3::after,
.footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-red);
}

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links ul li a {
    color: var(--text-gray);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.footer-links ul li a:hover {
    color: var(--secondary-accent);
    padding-left: 10px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-gray);
    margin-bottom: 20px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
}

.footer-contact i {
    color: var(--primary-red);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-gray);
    font-family: 'Courier New', Courier, monospace;
}

/* =========================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================= */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

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

    .glitch {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-btn {
        display: none;
    }

    .hamburger {
        display: block;
    }

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

    .glitch {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.5rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links h3::after,
    .footer-contact h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links {
        justify-content: center;
    }

    .footer-contact p {
        justify-content: center;
    }
}
/* Custom Cyber Cursor */
.cyber-cursor {
    width: 8px;
    height: 8px;
    background-color: var(--primary-red);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s, width 0.2s, height 0.2s, background-color 0.2s;
}

.cyber-cursor-follower {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255, 0, 51, 0.5);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease-out, width 0.2s, height 0.2s, border-color 0.2s, background-color 0.2s;
}

.cyber-cursor.hover {
    width: 0;
    height: 0;
    background-color: transparent;
}

.cyber-cursor-follower.hover {
    width: 50px;
    height: 50px;
    border-color: var(--primary-red);
    background-color: rgba(255, 0, 51, 0.1);
}

/* Hide default cursor globally */
body, a, button, input, textarea {
    cursor: none !important;
}
