:root {
    --primary-color: #00f3ff;
    --secondary-color: #0066ff;
    --accent-color: #ff00c1;
    --bg-color: #050510;
    --bg-dark: #020205;
    --text-color: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(0, 243, 255, 0.2);
    --glass-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    --neon-glow: 0 0 10px #00f3ff, 0 0 20px #00f3ff, 0 0 40px #00f3ff;
    --neon-border: 0 0 5px #00f3ff, inset 0 0 5px #00f3ff;
    --font-main: 'Rajdhani', sans-serif;
    --font-title: 'Orbitron', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    overflow: hidden; /* Hide default scroll */
    line-height: 1.6;
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(0, 243, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 102, 255, 0.05) 0%, transparent 40%);
    height: 100vh;
}

/* Scroll Container */
.scroll-container {
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
}

/* Hide Scrollbar for container but keep functionality */
.scroll-container::-webkit-scrollbar {
    display: none;
}
.scroll-container {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

canvas#webgl-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: transparent;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-title);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

/* Glassmorphism Utility */
.glass {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--glass-shadow);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: 0.5s;
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    background: transparent;
    backdrop-filter: blur(5px);
    z-index: 1000;
    transition: 0.3s;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 50px;
}

.nav-logo {
    text-decoration: none;
    font-family: var(--font-title);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.logo-text {
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--primary-color);
}

.logo-highlight {
    color: #fff;
    text-shadow: 0 0 10px #fff;
}

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

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: 0.3s;
    position: relative;
    opacity: 0.8;
}

.nav-links a:hover {
    color: var(--primary-color);
    opacity: 1;
    text-shadow: 0 0 8px var(--primary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--primary-color);
    transition: 0.3s;
    box-shadow: 0 0 5px var(--primary-color);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Nav Controls & Auth */
.nav-controls {
    display: flex;
    gap: 20px;
    align-items: center;
}

/* Custom Dropdown */
.custom-dropdown {
    position: relative;
    cursor: pointer;
}

.dd-selected {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    border: 1px solid rgba(0, 243, 255, 0.3);
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.3);
    color: var(--primary-color);
    transition: 0.3s;
}

.dd-selected:hover {
    background: rgba(0, 243, 255, 0.1);
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.2);
}

.dd-options {
    position: absolute;
    top: 120%;
    right: 0;
    background: rgba(5, 5, 16, 0.95);
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    list-style: none;
    padding: 10px 0;
    min-width: 120px;
    display: none;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

.custom-dropdown:hover .dd-options {
    display: block;
    animation: fadeIn 0.3s ease;
}

.dd-options li {
    padding: 10px 20px;
    color: #fff;
    transition: 0.2s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dd-options li:hover {
    background: rgba(0, 243, 255, 0.2);
    color: var(--primary-color);
}

/* Auth Buttons */
.auth-buttons {
    display: flex;
    gap: 15px;
}

.btn-login, .btn-register {
    text-decoration: none;
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 8px 20px;
    border-radius: 20px;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-login {
    color: #fff;
    border: 1px solid transparent;
}

.btn-login:hover {
    color: var(--primary-color);
    text-shadow: 0 0 8px var(--primary-color);
}

.btn-register {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.2);
}

.btn-register:hover {
    background: var(--primary-color);
    color: #000;
    box-shadow: 0 0 20px var(--primary-color);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Remove old selector styles */
.selector-wrapper, .modern-select, .selector-arrow {
    display: none;
}

/* Hero Section - Specific Override if needed, but user asked for Fondo.png */
.hero-section {
    /* Using the global .section style now */
}

.hero-section::before {
    /* Global .section::before handles the overlay */
}

.hero-content {
    position: relative;
    z-index: 10;
}

.logo-3d-container {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.h-logo-wrapper {
    width: 120px;
    height: 120px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.h-logo {
    font-size: 5rem;
    font-weight: 900;
    font-family: var(--font-title);
    color: var(--primary-color);
    text-shadow: var(--neon-glow);
    z-index: 2;
}

.orbit-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(0, 243, 255, 0.3);
    border-radius: 50%;
    animation: orbit 4s linear infinite;
}

.ring-2 {
    width: 140%;
    height: 140%;
    border: 1px dashed rgba(0, 102, 255, 0.4);
    animation: orbit 8s reverse linear infinite;
}

@keyframes orbit {
    from { transform: rotate(0deg) rotateX(60deg); }
    to { transform: rotate(360deg) rotateX(60deg); }
}

h1.glitch {
    font-size: 4rem;
    margin-bottom: 1rem;
    position: relative;
}

h1.glitch::before, h1.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

h1.glitch::before {
    left: 2px;
    text-shadow: -1px 0 #ff00c1;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

h1.glitch::after {
    left: -2px;
    text-shadow: -1px 0 #00fff9;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim2 5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% { clip: rect(31px, 9999px, 9px, 0); }
    5% { clip: rect(70px, 9999px, 76px, 0); }
    10% { clip: rect(24px, 9999px, 98px, 0); }
    100% { clip: rect(81px, 9999px, 4px, 0); }
}

.subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    font-weight: 300;
}

.domain-search-hero {
    display: flex;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    background: var(--glass-bg);
    padding: 10px;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(5px);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.1);
}

.domain-search-hero input {
    flex: 1;
    background: transparent;
    border: none;
    color: white;
    padding: 15px 20px;
    font-size: 1.1rem;
    font-family: var(--font-main);
    outline: none;
}

.btn-neon {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 12px 30px;
    font-family: var(--font-title);
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 30px;
    transition: all 0.3s;
    font-weight: 600;
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.2);
}

.btn-neon:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    box-shadow: 0 0 20px var(--primary-color);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.feature-pill {
    background: rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.3);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #aaddff;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: white;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { top: 8px; opacity: 1; }
    100% { top: 30px; opacity: 0; }
}

/* Sections */
.section {
    min-height: 100vh;
    height: 100vh;
    padding: 0;
    position: relative;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    background-image: url('../img/Fondo.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Ensure Hero uses Fondo.png if it was using slider.png, or keep slider.png if specific */
/* The user requested Fondo.png for EACH section */
.hero-section {
    /* Overwrite previous slider.png if present */
    background-image: url('../img/Fondo.png');
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Subtle overlay for text readability */
    z-index: 1;
}

/* Ensure content sits above the overlay */
.container {
    position: relative;
    z-index: 2;
}

/* Hero Slider */
.hero-container {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between; /* Space out content and 3D area */
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 50px;
}

/* Hero Slider Wrapper */
.hero-slider-wrapper {
    position: relative;
    width: 100%; /* Changed to 100% to allow full width for text container if needed, but we limit content */
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 10;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s ease-in-out;
    display: flex;
    align-items: center;
    padding: 0;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-content {
    max-width: 50%; /* Limit text content to left half */
    text-align: left;
    transform: translateY(30px);
    transition: transform 0.8s ease-out;
}

.slide-content h1.glitch {
    font-size: 3.5rem; /* Reduced from 4rem to prevent overflow */
    line-height: 1.1;
    margin-bottom: 20px;
}

/* 3D Scene Container (Right Side) */
.scene-3d-container {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    height: 60vh;
    /* Border for debugging/visual guide (can remove later) */
    /* border: 1px dashed rgba(0, 243, 255, 0.3); */
    z-index: 5;
    pointer-events: none; /* Let clicks pass through */
}

/* Canvas needs to target this area now */
canvas#webgl-canvas {
    position: absolute; /* Changed from fixed */
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    z-index: 1;
}

/* Background Architecture Refactor */
.hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; /* Behind Canvas (z-1) */
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-bg.active {
    opacity: 1;
}

/* Move gradients to .hero-bg */
.hero-bg[data-slide="0"] {
    background: 
        radial-gradient(circle at 80% 20%, rgba(0, 243, 255, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(0, 102, 255, 0.1) 0%, transparent 40%),
        linear-gradient(135deg, #020205 0%, #050a15 100%);
}

.hero-bg[data-slide="1"] {
    background: 
        radial-gradient(circle at 50% 50%, rgba(0, 255, 136, 0.08) 0%, transparent 60%),
        linear-gradient(0deg, rgba(0,0,0,0.8), rgba(0,0,0,0)),
        linear-gradient(45deg, #051510 0%, #000 100%);
}

.hero-bg[data-slide="2"] {
    background: 
        radial-gradient(circle at 70% 30%, rgba(255, 0, 193, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 30% 70%, rgba(111, 0, 255, 0.1) 0%, transparent 50%),
        linear-gradient(to bottom, #0f0515 0%, #000 100%);
}

.hero-bg[data-slide="3"] {
    background: 
        radial-gradient(ellipse at center, rgba(0, 243, 255, 0.1) 0%, transparent 70%),
        repeating-linear-gradient(90deg, transparent 0, transparent 50px, rgba(0, 243, 255, 0.02) 50px, rgba(0, 243, 255, 0.02) 51px),
        linear-gradient(180deg, #020a10 0%, #000 100%);
}

/* Remove old pseudo-element backgrounds */
.hero-slide::before {
    display: none;
}

.hero-slide.active .slide-content {
    transform: translateY(0);
}

.hero-list {
    list-style: none;
    margin: 30px 0;
}

.hero-list li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    text-shadow: 0 0 5px rgba(0, 243, 255, 0.5);
}

.hero-list li i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.radio-features, .vps-specs {
    display: flex;
    gap: 30px;
    margin: 30px 0;
}

.feature-box {
    background: rgba(0, 243, 255, 0.1);
    border: 1px solid var(--primary-color);
    padding: 15px 25px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
}

.feature-box i {
    font-size: 1.5rem;
}

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

.spec-val {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-title);
    text-shadow: 0 0 10px var(--primary-color);
}

.spec-label {
    font-size: 0.9rem;
    color: #aaa;
    text-transform: uppercase;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 100px; /* Positioned above scroll indicator */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 20;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
    background: transparent;
}

.slider-dot.active {
    background: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-color);
}

/* Ensure Logo 3D is hidden as it's replaced */
.logo-3d-container {
    display: none;
}

/* Side Navigation */
.side-nav {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nav-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s;
    cursor: pointer;
    border: 1px solid transparent;
}

.nav-dot:hover {
    background: rgba(0, 243, 255, 0.5);
    transform: scale(1.2);
}

.nav-dot.active {
    background: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-color);
    transform: scale(1.3);
}

/* Navbar Update for Fixed Position inside container if needed, but fixed works on body */

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: white;
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 40px 30px;
    border-radius: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
    backdrop-filter: blur(10px);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 243, 255, 0.1);
}

.card-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.service-card p {
    color: #ccc;
    font-size: 0.95rem;
}

/* HUD Card Style (Shared for Services, Pricing, Portfolio) */
.hud-card {
    background: rgba(5, 10, 30, 0.4);
    border: 1px solid rgba(0, 243, 255, 0.3);
    border-radius: 15px;
    padding: 30px;
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(0, 243, 255, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;
}

/* Glowing Border Effect */
.hud-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    padding: 1px;
    background: linear-gradient(180deg, rgba(0, 243, 255, 0.8), rgba(0, 102, 255, 0.1), rgba(0, 243, 255, 0.8));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.7;
}

.hud-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.2), inset 0 0 30px rgba(0, 243, 255, 0.1);
    border-color: rgba(0, 243, 255, 0.8);
}

.hud-card:hover::before {
    opacity: 1;
    background: linear-gradient(180deg, #00f3ff, #0066ff, #00f3ff);
}

/* Service Card Specifics */
.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
}

.service-card .card-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-shadow: 0 0 15px var(--primary-color);
    transition: transform 0.3s;
}

.service-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Pricing Card Specifics */
.pricing-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card .plan-name {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.pricing-card .plan-price {
    font-size: 3.5rem;
    color: var(--primary-color);
    font-weight: 700;
    margin: 20px 0;
    text-shadow: 0 0 15px var(--primary-color);
}

.pricing-card .plan-features {
    flex-grow: 1;
    text-align: left;
    margin-bottom: 30px;
}

.pricing-card .plan-features li {
    padding-left: 20px;
    margin-bottom: 12px;
    color: #ccc;
    font-size: 0.95rem;
}

.pricing-card .plan-features li::before {
    content: '▶';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-size: 0.7rem;
    top: 4px;
}

/* Portfolio Item Specifics */
.portfolio-item {
    padding: 0; /* Remove padding for image */
    height: 250px;
}

.portfolio-item .placeholder-img {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #0a1a3a, #000);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.portfolio-item h3 {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 0;
    backdrop-filter: blur(5px);
    margin: 0;
    font-size: 1.1rem;
    border-top: 1px solid rgba(0, 243, 255, 0.3);
}

/* Buttons */
.btn-hud {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 10px 25px;
    border-radius: 25px;
    font-family: var(--font-title);
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.1);
    margin-top: auto; /* Push to bottom */
}

.btn-hud:hover {
    background: var(--primary-color);
    color: #000;
    box-shadow: 0 0 20px var(--primary-color);
}

/* Map */
.map-container {
    height: 400px;
    background: url('https://upload.wikimedia.org/wikipedia/commons/e/ec/World_map_blank_without_borders.svg') no-repeat center center;
    background-size: contain;
    position: relative;
    opacity: 0.3;
    filter: invert(1);
}

.map-point {
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
    position: absolute;
    box-shadow: 0 0 10px var(--primary-color);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 243, 255, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(0, 243, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 243, 255, 0); }
}

/* Portfolio Hover */
.portfolio-item:hover .overlay {
    opacity: 1 !important;
}

.portfolio-item:hover img {
    transform: scale(1.1);
    transition: transform 0.3s;
}

/* Footer */
.footer-section {
    background: #020205;
    padding: 80px 0 20px;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #888;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

.social-links a {
    color: white;
    font-size: 1.2rem;
    margin-right: 15px;
    transition: 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #666;
    font-size: 0.9rem;
}

/* Responsive & Grid Layouts */
@media (min-width: 1024px) {
    .services-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 20px;
    }
    
    .pricing-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 30px;
    }

    .portfolio-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 25px;
    }

    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 30px;
    }
}

/* 3D Tilt & Float Effects */
.service-card, .pricing-card, .portfolio-item, .testimonial-card {
    transition: transform 0.1s ease-out, box-shadow 0.3s;
    transform-style: preserve-3d;
    perspective: 1000px;
    /* Initial subtle float */
    animation: float 6s ease-in-out infinite;
}

/* Floating Animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Enhanced Neon Hover */
.service-card:hover, .pricing-card:hover, .portfolio-item:hover, .testimonial-card:hover {
    box-shadow: 0 0 30px var(--primary-color), inset 0 0 20px rgba(0, 243, 255, 0.2);
    border-color: var(--primary-color);
    z-index: 10;
    /* Stop float on hover to prevent conflict with tilt */
    animation-play-state: paused;
}

/* Specific delays for float to look organic */
.service-card:nth-child(1) { animation-delay: 0s; }
.service-card:nth-child(2) { animation-delay: 1s; }
.service-card:nth-child(3) { animation-delay: 2s; }
.service-card:nth-child(4) { animation-delay: 3s; }

.pricing-card:nth-child(1) { animation-delay: 0.5s; }
.pricing-card:nth-child(2) { animation-delay: 1.5s; }
.pricing-card:nth-child(3) { animation-delay: 2.5s; }

.mobile-menu-btn { display: none; }
