/* ===== BGDCC SCI-FI V2 - Cyberpunk Edition ===== */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Rajdhani:wght@300;400;500;600;700&family=Noto+Sans+SC:wght@300;400;500;700&display=swap');

:root {
    --neon-cyan: #00f0ff;
    --neon-blue: #0080ff;
    --neon-purple: #b829dd;
    --neon-pink: #ff00a0;
    --neon-green: #00ff88;
    --dark-0: #000000;
    --dark-1: #050508;
    --dark-2: #0a0a12;
    --dark-3: #11111a;
    --dark-4: #1a1a2e;
    --text-bright: #ffffff;
    --text-primary: #e0e6ed;
    --text-secondary: #8b9bb4;
    --text-dim: #4a5568;
}

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

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

body {
    font-family: 'Noto Sans SC', 'Rajdhani', sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--dark-0);
    overflow-x: hidden;
    min-height: 100vh;
}

/* ===== PARTICLE CANVAS BACKGROUND ===== */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
}

/* ===== SCANLINE OVERLAY ===== */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 240, 255, 0.015) 0px,
        rgba(0, 240, 255, 0.015) 1px,
        transparent 1px,
        transparent 4px
    );
    pointer-events: none;
    z-index: 9999;
    animation: scanline 8s linear infinite;
}

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

/* ===== NOISE TEXTURE ===== */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ===== NAVBAR ===== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    height: 72px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0, 240, 255, 0.08);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s;
}

.navbar.scrolled {
    background: rgba(5, 5, 8, 0.95);
    border-bottom-color: rgba(0, 240, 255, 0.15);
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text-bright);
    letter-spacing: 4px;
    position: relative;
    text-decoration: none;
}

.logo::after {
    content: 'BGDCC';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    color: var(--neon-cyan);
    clip-path: inset(0 100% 0 0);
    animation: glitch-reveal 3s ease-in-out infinite;
}

@keyframes glitch-reveal {
    0%, 90%, 100% { clip-path: inset(0 100% 0 0); }
    92% { clip-path: inset(0 0 0 0); }
    94% { clip-path: inset(0 100% 0 0); }
    96% { clip-path: inset(0 0 0 0); }
}

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

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.85rem;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    letter-spacing: 1px;
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
    transition: width 0.3s;
    border-radius: 1px;
}

.nav-links a:hover {
    color: var(--neon-cyan);
    background: rgba(0, 240, 255, 0.05);
}

.nav-links a:hover::before {
    width: 60%;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--neon-cyan);
    padding: 0.5rem;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at 50% 50%, rgba(0, 128, 255, 0.06) 0%, transparent 60%);
}

.hero-grid {
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background-image: 
        linear-gradient(rgba(0, 240, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    transform: perspective(500px) rotateX(60deg);
    animation: grid-move 20s linear infinite;
    pointer-events: none;
}

@keyframes grid-move {
    0% { transform: perspective(500px) rotateX(60deg) translateY(0); }
    100% { transform: perspective(500px) rotateX(60deg) translateY(60px); }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 2rem;
    max-width: 900px;
}

.hero-badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 100px;
    font-size: 0.8rem;
    color: var(--neon-cyan);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 2rem;
    background: rgba(0, 240, 255, 0.05);
    animation: pulse-border 2s ease-in-out infinite;
}

@keyframes pulse-border {
    0%, 100% { border-color: rgba(0, 240, 255, 0.3); box-shadow: 0 0 10px rgba(0, 240, 255, 0.1); }
    50% { border-color: rgba(0, 240, 255, 0.6); box-shadow: 0 0 20px rgba(0, 240, 255, 0.2); }
}

.hero-content h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--text-bright);
    letter-spacing: 8px;
    line-height: 1.1;
    text-shadow: 
        0 0 20px rgba(0, 240, 255, 0.5),
        0 0 40px rgba(0, 240, 255, 0.3),
        0 0 80px rgba(0, 240, 255, 0.1);
    animation: title-glow 3s ease-in-out infinite alternate;
}

@keyframes title-glow {
    from { text-shadow: 0 0 20px rgba(0, 240, 255, 0.5), 0 0 40px rgba(0, 240, 255, 0.3); }
    to { text-shadow: 0 0 30px rgba(184, 41, 221, 0.5), 0 0 60px rgba(184, 41, 221, 0.3), 0 0 100px rgba(184, 41, 221, 0.1); }
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
    font-weight: 300;
    letter-spacing: 6px;
}

.hero-desc {
    font-size: 1rem !important;
    color: var(--text-dim) !important;
    margin-bottom: 3rem !important;
    letter-spacing: 2px !important;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(184, 41, 221, 0.1));
    color: var(--neon-cyan);
    text-decoration: none;
    border-radius: 4px;
    border: 1px solid rgba(0, 240, 255, 0.4);
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.2), transparent);
    transition: left 0.6s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.3), inset 0 0 20px rgba(0, 240, 255, 0.05);
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 4px;
    border: 1px solid rgba(139, 155, 180, 0.3);
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-secondary:hover {
    border-color: var(--neon-purple);
    color: var(--neon-purple);
    box-shadow: 0 0 20px rgba(184, 41, 221, 0.2);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dim);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Orbitron', sans-serif;
    animation: bounce 2s infinite;
}

.scroll-indicator::after {
    content: '↓';
    font-size: 1.2rem;
    color: var(--neon-cyan);
}

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

/* ===== SECTION STYLES ===== */
.section {
    padding: 100px 0;
    position: relative;
}

.section-alt {
    background: linear-gradient(180deg, var(--dark-0) 0%, var(--dark-2) 50%, var(--dark-0) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.75rem;
    color: var(--neon-cyan);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    padding: 0.3rem 1rem;
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 4px;
    background: rgba(0, 240, 255, 0.03);
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-bright);
    letter-spacing: 4px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== ABOUT SECTION ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
    font-size: 1rem;
    line-height: 1.8;
}

.about-text strong {
    color: var(--neon-cyan);
    font-weight: 500;
}

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

.stat-card {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.05), rgba(184, 41, 221, 0.05));
    border: 1px solid rgba(0, 240, 255, 0.1);
    border-radius: 8px;
    padding: 2rem 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
    opacity: 0.5;
    transition: opacity 0.3s;
}

.stat-card:hover {
    border-color: rgba(0, 240, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 240, 255, 0.08);
}

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

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* ===== PRODUCT CARDS ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.product-card {
    background: linear-gradient(135deg, rgba(10, 10, 18, 0.9), rgba(17, 17, 26, 0.9));
    border: 1px solid rgba(0, 240, 255, 0.08);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
    cursor: pointer;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.03), rgba(184, 41, 221, 0.03));
    opacity: 0;
    transition: opacity 0.4s;
}

.product-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), var(--neon-purple), transparent);
    transition: left 0.6s;
}

.product-card:hover::after {
    left: 100%;
}

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

.product-card:hover {
    border-color: rgba(0, 240, 255, 0.2);
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(0, 240, 255, 0.05);
}

.product-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(184, 41, 221, 0.1));
    border: 1px solid rgba(0, 240, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s;
}

.product-card:hover .product-icon {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
    transform: scale(1.1);
}

.product-card h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--text-bright);
    margin-bottom: 0.8rem;
    font-size: 1rem;
    letter-spacing: 1px;
}

.product-card p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.product-features {
    list-style: none;
    padding: 0;
}

.product-features li {
    padding: 0.3rem 0;
    color: var(--text-dim);
    font-size: 0.8rem;
    padding-left: 1rem;
    position: relative;
}

.product-features li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--neon-purple);
    font-size: 1rem;
}

/* ===== SERVICES SECTION ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.service-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(10, 10, 18, 0.6), rgba(17, 17, 26, 0.6));
    border: 1px solid rgba(0, 240, 255, 0.06);
    border-radius: 12px;
    transition: all 0.4s;
}

.service-item:hover {
    border-color: rgba(0, 240, 255, 0.15);
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.03), rgba(184, 41, 221, 0.03));
}

.service-num {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(0, 240, 255, 0.15);
    line-height: 1;
    flex-shrink: 0;
}

.service-content h3 {
    color: var(--text-bright);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.service-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ===== PROJECTS SECTION ===== */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.project-card {
    position: relative;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(10, 10, 18, 0.8), rgba(17, 17, 26, 0.8));
    border: 1px solid rgba(0, 240, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s;
    text-align: center;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple), var(--neon-pink));
    opacity: 0.5;
    transition: opacity 0.3s;
}

.project-card:hover {
    border-color: rgba(0, 240, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

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

.project-card h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--neon-cyan);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.project-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: linear-gradient(180deg, var(--dark-0) 0%, rgba(0, 128, 255, 0.03) 50%, var(--dark-0) 100%);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.contact-item {
    text-align: center;
    padding: 2rem;
    background: rgba(10, 10, 18, 0.5);
    border: 1px solid rgba(0, 240, 255, 0.06);
    border-radius: 12px;
    transition: all 0.3s;
}

.contact-item:hover {
    border-color: rgba(0, 240, 255, 0.15);
    background: rgba(0, 240, 255, 0.02);
}

.contact-item .label {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.75rem;
    color: var(--text-dim);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.contact-item .value {
    color: var(--text-bright);
    font-size: 1.1rem;
    font-weight: 500;
}

.contact-item a {
    color: var(--neon-cyan);
    text-decoration: none;
    transition: all 0.3s;
}

.contact-item a:hover {
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

/* ===== GUESTBOOK ===== */
.guestbook-section {
    padding: 120px 0 80px;
    min-height: 100vh;
    background: var(--dark-0);
}

.guestbook-form-wrap {
    max-width: 600px;
    margin: 0 auto 4rem;
    background: linear-gradient(135deg, rgba(10, 10, 18, 0.9), rgba(17, 17, 26, 0.9));
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 240, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.guestbook-form-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple), var(--neon-pink));
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--neon-cyan);
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 1px;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 240, 255, 0.1);
    border-radius: 6px;
    font-size: 1rem;
    color: var(--text-primary);
    transition: all 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #334455;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(184, 41, 221, 0.1));
    color: var(--neon-cyan);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 6px;
    font-size: 0.9rem;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.2), rgba(184, 41, 221, 0.2));
    border-color: var(--neon-cyan);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.2);
}

.messages-wrap {
    max-width: 800px;
    margin: 0 auto;
}

.messages-wrap h2 {
    font-family: 'Orbitron', sans-serif;
    color: var(--neon-cyan);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    font-size: 1.2rem;
}

.message-item {
    background: linear-gradient(135deg, rgba(10, 10, 18, 0.8), rgba(17, 17, 26, 0.8));
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 1px solid rgba(0, 240, 255, 0.06);
    border-left: 3px solid var(--neon-purple);
    transition: all 0.3s;
}

.message-item:hover {
    border-color: rgba(0, 240, 255, 0.15);
    box-shadow: 0 5px 20px rgba(0, 240, 255, 0.05);
}

.message-item .msg-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    color: var(--text-dim);
    font-size: 0.8rem;
}

.message-item .msg-name {
    font-weight: 600;
    color: var(--neon-cyan);
    font-family: 'Orbitron', sans-serif;
}

.message-item .msg-content {
    color: var(--text-secondary);
    line-height: 1.6;
}

.empty-msg {
    text-align: center;
    color: var(--text-dim);
    padding: 3rem;
    border: 1px dashed rgba(0, 240, 255, 0.1);
    border-radius: 8px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-0);
    border-top: 1px solid rgba(0, 240, 255, 0.06);
    padding: 3rem 0;
    text-align: center;
}

.footer-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: var(--text-dim);
    letter-spacing: 4px;
    margin-bottom: 1rem;
}

.footer p {
    color: var(--text-dim);
    font-size: 0.8rem;
    margin: 0.3rem 0;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--dark-0);
}

::-webkit-scrollbar-thumb {
    background: var(--dark-4);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--neon-cyan);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hamburger {
        display: block;
    }
    .hero-content h1 {
        font-size: 2.8rem;
        letter-spacing: 3px;
    }
    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 3px;
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
    .about-stats {
        grid-template-columns: 1fr;
    }
    .products-grid {
        grid-template-columns: 1fr;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .projects-grid {
        grid-template-columns: 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }
