/* =========================================
   CSS VARIABLES & DESIGN TOKENS
   ========================================= */
:root {
    /* Color Palette - Deep Cyberpunk / Neon Theme */
    --bg-base: #030712;
    --bg-surface: rgba(17, 24, 39, 0.7);
    --bg-surface-hover: rgba(31, 41, 55, 0.9);

    --primary: #0ea5e9;
    /* Cyan */
    --primary-glow: rgba(14, 165, 233, 0.4);

    --secondary: #8b5cf6;
    /* Purple */
    --secondary-glow: rgba(139, 92, 246, 0.4);

    --accent: #10b981;
    /* Emerald/Neon Green */
    --accent-glow: rgba(16, 185, 129, 0.4);

    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --text-dark: #111827;

    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Space Grotesk', sans-serif;
    --font-mono: 'Fira Code', monospace;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =========================================
   BASE STYLES & RESET
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
    /* Hide default cursor for custom cursor */
}

html {
    scroll-behavior: smooth;
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-base);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: var(--primary);
    color: var(--bg-base);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-base);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-surface-hover);
    border-radius: 4px;
}

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

/* =========================================
   BACKGROUND CANVAS
   ========================================= */
#network-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    opacity: 0.6;
}

/* =========================================
   CUSTOM CURSOR
   ========================================= */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
    transition: width var(--transition-fast), height var(--transition-fast), background-color var(--transition-fast);
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    box-shadow: 0 0 10px var(--primary-glow);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-glow);
    transition: transform 0.1s ease-out, width var(--transition-fast), height var(--transition-fast), border-color var(--transition-fast);
}

.cursor-hover .cursor-dot {
    transform: translate(-50%, -50%) scale(0);
}

.cursor-hover .cursor-outline {
    width: 60px;
    height: 60px;
    background-color: var(--primary-glow);
    border-color: transparent;
    mix-blend-mode: exclusion;
}

/* =========================================
   UTILITIES
   ========================================= */
.glass-card {
    background: var(--bg-surface);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    transition: transform var(--transition-medium), border-color var(--transition-medium), box-shadow var(--transition-medium);
}

.glow-panel {
    position: relative;
}

.glow-panel::before {
    content: '';
    position: absolute;
    inset: -10px;
    background: radial-gradient(circle at center, var(--primary-glow) 0%, transparent 60%);
    z-index: -1;
    filter: blur(40px);
    opacity: 0.5;
    transition: opacity var(--transition-medium);
}

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

ul {
    list-style: none;
}

.section {
    min-height: 100vh;
    padding: 100px 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.section-title::after {
    content: '';
    display: block;
    height: 1px;
    width: 300px;
    background: rgba(255, 255, 255, 0.1);
    margin-left: 20px;
}

.title-num {
    color: var(--primary);
    font-family: var(--font-mono);
    font-size: 1.5rem;
    margin-right: 15px;
    font-weight: 400;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 8px;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all var(--transition-medium);
    border: 1px solid transparent;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.primary-btn {
    background: rgba(14, 165, 233, 0.1);
    color: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 15px var(--primary-glow);
}

.primary-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--primary);
    transition: width var(--transition-medium);
    z-index: -1;
}

.primary-btn:hover {
    color: var(--bg-base);
    box-shadow: 0 0 25px var(--primary-glow);
}

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

.secondary-btn {
    background: transparent;
    color: var(--text-main);
    border-color: rgba(255, 255, 255, 0.2);
}

.secondary-btn:hover {
    border-color: var(--text-main);
    background: rgba(255, 255, 255, 0.05);
}

/* =========================================
   NAVIGATION
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10%;
    z-index: 100;
    transition: background var(--transition-medium), backdrop-filter var(--transition-medium), box-shadow var(--transition-medium);
}

.navbar.scrolled {
    background: rgba(3, 7, 18, 0.85);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.logo {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 2px;
}

.logo-tag {
    color: var(--primary);
    font-weight: 400;
}

.logo-text {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: opacity var(--transition-fast);
}

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

.nav-links a {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--text-muted);
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

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

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

.hamburger {
    display: none;
    font-size: 2rem;
    color: var(--primary);
    z-index: 101;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 400px;
    height: 100vh;
    background: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    z-index: 99;
    transition: right var(--transition-medium);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu a {
    font-family: var(--font-mono);
    font-size: 1.2rem;
    color: var(--text-muted);
}

.mobile-menu a:hover,
.mobile-menu a.active {
    color: var(--primary);
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    display: grid;
    grid-template-columns: 3fr 2fr;
    align-items: center;
    gap: 40px;
    padding-top: 120px;
}

.greeting {
    font-family: var(--font-mono);
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.highlight {
    color: var(--text-main);
    font-weight: 700;
}

.glitch {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    position: relative;
    color: var(--text-main);
}

/* Glitch effect optimization */
.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-base);
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 red;
    clip: rect(24px, 550px, 90px, 0);
    animation: glitch-anim-2 3s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 blue;
    clip: rect(85px, 550px, 140px, 0);
    animation: glitch-anim 2.5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% {
        clip: rect(74px, 9999px, 86px, 0);
    }

    5% {
        clip: rect(10px, 9999px, 15px, 0);
    }

    10% {
        clip: rect(32px, 9999px, 83px, 0);
    }

    15% {
        clip: rect(98px, 9999px, 20px, 0);
    }

    20% {
        clip: rect(18px, 9999px, 47px, 0);
    }

    100% {
        clip: rect(18px, 9999px, 47px, 0);
    }
}

@keyframes glitch-anim-2 {
    0% {
        clip: rect(65px, 9999px, 100px, 0);
    }

    5% {
        clip: rect(52px, 9999px, 74px, 0);
    }

    10% {
        clip: rect(79px, 9999px, 85px, 0);
    }

    15% {
        clip: rect(75px, 9999px, 5px, 0);
    }

    20% {
        clip: rect(67px, 9999px, 61px, 0);
    }

    100% {
        clip: rect(67px, 9999px, 61px, 0);
    }
}

.typing-container {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: var(--text-muted);
    margin-bottom: 30px;
    height: 48px;
}

.typing-text {
    color: var(--accent);
}

.cursor {
    display: inline-block;
    width: 15px;
    height: 80%;
    margin-left: 5px;
    background-color: var(--accent);
    vertical-align: middle;
    animation: blink 1s step-end infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 500px;
    margin-bottom: 40px;
    line-height: 1.8;
}

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

/* Hero Services Chips */
.hero-services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
    max-width: 600px;
}

.service-chip {
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font-sans);
    padding: 10px 22px;
    border-radius: 30px;
    background: rgba(17, 24, 39, 0.7);
    color: var(--text-main);
    border: 1px solid rgba(14, 165, 233, 0.4);
    box-shadow: 0 0 15px rgba(14, 165, 233, 0.3), inset 0 0 10px rgba(14, 165, 233, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: none;
    position: relative;
    overflow: hidden;
}

.service-chip::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 30px;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.service-chip i {
    color: var(--primary);
    font-size: 1.2rem;
    text-shadow: 0 0 10px var(--primary-glow);
    transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
}

.service-chip:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 0 30px rgba(14, 165, 233, 0.6), inset 0 0 20px rgba(139, 92, 246, 0.3);
    background: rgba(14, 165, 233, 0.15);
    color: #fff;
    border-color: transparent;
}

.service-chip:hover::before {
    opacity: 1;
}

.service-chip:hover i {
    color: var(--secondary);
    transform: scale(1.1);
    text-shadow: 0 0 15px var(--secondary-glow);
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    font-size: 1.5rem;
    transition: all var(--transition-medium);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: var(--primary-glow);
    color: var(--primary);
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 5px 15px rgba(14, 165, 233, 0.3);
}

/* 3D Cube Animation */
.hero-visual {
    perspective: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cube-container {
    width: 250px;
    height: 250px;
}

.cube {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    animation: rotate 15s infinite linear;
}

.face {
    position: absolute;
    width: 250px;
    height: 250px;
    background: rgba(17, 24, 39, 0.8);
    border: 2px solid var(--primary);
    box-shadow: 0 0 20px var(--primary-glow), inset 0 0 20px var(--primary-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    color: var(--primary);
    font-size: 1.2rem;
    text-align: center;
    backdrop-filter: blur(5px);
}

.front {
    transform: translateZ(125px);
}

.back {
    transform: rotateY(180deg) translateZ(125px);
}

.right {
    transform: rotateY(90deg) translateZ(125px);
}

.left {
    transform: rotateY(-90deg) translateZ(125px);
}

.top {
    transform: rotateX(90deg) translateZ(125px);
}

.bottom {
    transform: rotateX(-90deg) translateZ(125px);
}

@keyframes rotate {
    0% {
        transform: rotateX(0) rotateY(0) rotateZ(0);
    }

    100% {
        transform: rotateX(360deg) rotateY(360deg) rotateZ(360deg);
    }
}

/* =========================================
   ABOUT SECTION
   ========================================= */
.about-content {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 50px;
    align-items: center;
}

.about-text {
    padding: 40px;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.skills-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.skills-list li {
    font-family: var(--font-mono);
    font-size: 0.95rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform var(--transition-fast), color var(--transition-fast);
}

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

.skills-list li:hover {
    transform: translateX(5px);
    color: var(--accent);
}

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-placeholder {
    font-size: 10rem;
    color: var(--text-muted);
    opacity: 0.5;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-glow);
    mix-blend-mode: overlay;
    transition: opacity var(--transition-medium);
}

.image-wrapper:hover .image-overlay {
    opacity: 0;
}

/* =========================================
   ACHIEVEMENTS SECTION
   ========================================= */
.achievements-wrapper {
    margin-top: 60px;
    width: 100%;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.achievement-card {
    background: rgba(17, 24, 39, 0.85);
    border: 1px solid #ffd700;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2), inset 0 0 10px rgba(255, 215, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans);
    color: #ffd700;
    text-align: center;
    padding: 24px 20px;
    backdrop-filter: blur(8px);
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-5px);
    background: rgba(17, 24, 39, 0.95);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.5), inset 0 0 20px rgba(255, 215, 0, 0.2);
}

.achievement-card i {
    font-size: 2.5rem;
    margin-bottom: 12px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.highlight-gold {
    font-size: 1.8rem;
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: 5px;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.ach-text {
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
    color: var(--text-main);
}

/* Special Achievement Card */
.achievement-card.special {
    grid-column: 1 / -1;
    position: relative;
    background: rgba(17, 24, 39, 0.9);
    border: none;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
    overflow: hidden;
    padding: 30px 20px;
    z-index: 1;
}

.achievement-card.special::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        transparent, 
        rgba(14, 165, 233, 1), 
        transparent 30%, 
        rgba(139, 92, 246, 1), 
        transparent 60%
    );
    animation: spin 4s linear infinite;
    z-index: -2;
}

.achievement-card.special::after {
    content: '';
    position: absolute;
    inset: 3px;
    background: rgba(17, 24, 39, 0.95);
    border-radius: 9px;
    z-index: -1;
}

.achievement-card.special:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(14, 165, 233, 0.4), 0 0 20px rgba(139, 92, 246, 0.4);
}

.achievement-card.special i {
    color: var(--secondary);
    text-shadow: 0 0 15px var(--secondary-glow);
    font-size: 3rem;
}

.achievement-card.special .highlight-special {
    display: inline-block;
    font-size: 2.2rem;
    font-weight: 800;
    font-family: var(--font-heading);
    margin: 10px 0 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 900px) {
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .achievements-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   JOURNEY SECTION
   ========================================= */
.journey-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 40px auto 0;
}

.journey-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.journey-card {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform var(--transition-medium), box-shadow var(--transition-medium), border-color var(--transition-medium);
}

.journey-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 15px var(--primary-glow);
    border-color: var(--primary);
}

.journey-card h4 {
    color: var(--text-main);
    font-size: 1.3rem;
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
    transition: color var(--transition-fast);
}

.journey-card:hover h4 {
    color: var(--primary);
}

.journey-card .year {
    display: inline-block;
    color: var(--primary);
    font-size: 0.9rem;
    font-family: var(--font-mono);
    margin-bottom: 1rem;
    padding: 4px 12px;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(14, 165, 233, 0.2);
    width: fit-content;
}

.journey-card .description {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .journey-container {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   PROJECTS SECTION
   ========================================= */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.project-card {
    padding: 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px var(--primary-glow);
    border-color: var(--primary);
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.project-header .bx-folder {
    font-size: 3rem;
    color: var(--primary);
}

.project-links {
    display: flex;
    gap: 15px;
}

.project-links a {
    font-size: 1.5rem;
    color: var(--text-muted);
}

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

.project-body h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-main);
    transition: color var(--transition-fast);
}

.project-card:hover .project-body h3 {
    color: var(--primary);
}

.project-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    flex-grow: 1;
    margin-bottom: 30px;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-main);
    opacity: 0.7;
}

/* =========================================
   CONTACT SECTION
   ========================================= */
.contact {
    text-align: center;
    align-items: center;
}

.contact .section-title {
    margin: 0 auto 40px;
    justify-content: center;
}

.contact .section-title::after {
    display: none;
}

.contact-content {
    max-width: 600px;
    width: 100%;
    padding: 50px;
    text-align: left;
}

.contact-heading {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-main);
}

.contact-content p {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.input-group {
    position: relative;
}

.input-group input,
.input-group textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 15px;
    color: var(--text-main);
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 10px var(--primary-glow);
}

.input-group label {
    position: absolute;
    top: 15px;
    left: 15px;
    color: var(--text-muted);
    font-family: var(--font-mono);
    font-size: 0.9rem;
    transition: all var(--transition-fast);
    pointer-events: none;
}

/* Floating Label Magic */
.input-group input:focus~label,
.input-group input:not(:placeholder-shown)~label,
.input-group textarea:focus~label,
.input-group textarea:not(:placeholder-shown)~label {
    top: -10px;
    left: 10px;
    font-size: 0.75rem;
    background: var(--bg-surface);
    padding: 0 5px;
    color: var(--primary);
    border-radius: 4px;
}

.submit-btn {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: 15px;
    margin-top: 10px;
}

/* =========================================
   FOOTER
   ========================================= */
footer {
    padding: 40px 10%;
    text-align: center;
    font-family: var(--font-mono);
    color: var(--text-muted);
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

footer .bx {
    color: var(--primary);
}

.footer-sub {
    font-size: 0.75rem;
    margin-top: 10px;
    opacity: 0.6;
}

/* =========================================
   ENQUIRY FORM STYLES
   ========================================= */

.enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: flex;
    gap: 16px;
}

.form-row .form-group {
    flex: 1;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
    width: 100%;
    padding: 12px 14px;
    background: rgba(17, 24, 39, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-main);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: all var(--transition-medium);
}

.enquiry-form select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/200.svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%238bb4cc' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
}

.enquiry-form select option {
    background: var(--bg-surface);
    color: var(--text-main);
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(14, 165, 233, 0.2);
    background: rgba(31, 41, 55, 0.9);
}

.enquiry-form textarea {
    resize: vertical;
    min-height: 100px;
}

@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
    }
}

/* =========================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================= */

@media (max-width: 1024px) {
    .section {
        padding: 80px 5%;
    }

    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }

    .hero-desc {
        margin: 0 auto 40px;
    }

    .hero-cta {
        justify-content: center;
    }

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

    .glitch {
        font-size: 3.5rem;
    }

    .cube-container {
        width: 200px;
        height: 200px;
    }

    .face {
        width: 200px;
        height: 200px;
    }

    .front {
        transform: translateZ(100px);
    }

    .back {
        transform: rotateY(180deg) translateZ(100px);
    }

    .right {
        transform: rotateY(90deg) translateZ(100px);
    }

    .left {
        transform: rotateY(-90deg) translateZ(100px);
    }

    .top {
        transform: rotateX(90deg) translateZ(100px);
    }

    .bottom {
        transform: rotateX(-90deg) translateZ(100px);
    }

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

    .about-text {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .cursor-dot,
    .cursor-outline {
        display: none;
    }

    /* Disable custom cursor on mobile */
    * {
        cursor: auto !important;
    }

    .glitch {
        font-size: 2.5rem;
    }

    .typing-container {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-title::after {
        width: 100px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}