/* ==========================================================================
   ASHIE — PROGRAMMER PORTFOLIO STYLES
   ========================================================================== */

:root {
    --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'Fira Code', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;

    /* Base Palette (Dark Theme Default) */
    --bg-primary: #090d16;
    --bg-secondary: #0f172a;
    --bg-tertiary: #1e293b;
    --bg-card: rgba(15, 23, 42, 0.75);
    --bg-card-hover: rgba(30, 41, 59, 0.85);

    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(56, 189, 248, 0.4);

    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;

    --accent-cyan: #38bdf8;
    --accent-emerald: #10b981;
    --accent-indigo: #6366f1;
    --accent-purple: #a855f7;
    --accent-amber: #f59e0b;
    --accent-red: #ef4444;

    --gradient-primary: linear-gradient(135deg, #38bdf8 0%, #818cf8 50%, #c084fc 100%);
    --gradient-emerald: linear-gradient(135deg, #10b981 0%, #38bdf8 100%);

    --glow-primary: rgba(56, 189, 248, 0.15);
    --glow-secondary: rgba(99, 102, 241, 0.15);

    --terminal-bg: #06090f;
    --terminal-header: #0d1320;
    --terminal-text: #00ff66;

    --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 25px rgba(56, 189, 248, 0.2);

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;

    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
}

[data-theme="light"] {
    --bg-primary: #f8fafc;
    --bg-secondary: #f1f5f9;
    --bg-tertiary: #e2e8f0;
    --bg-card: rgba(255, 255, 255, 0.85);
    --bg-card-hover: rgba(255, 255, 255, 0.95);

    --border-subtle: rgba(0, 0, 0, 0.08);
    --border-hover: rgba(14, 165, 233, 0.5);

    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;

    --gradient-primary: linear-gradient(135deg, #0284c7 0%, #4f46e5 100%);
    --shadow-card: 0 10px 25px -5px rgba(0, 0, 0, 0.07);
    --shadow-glow: 0 0 20px rgba(14, 165, 233, 0.15);

    --terminal-bg: #1e293b;
    --terminal-header: #0f172a;
}

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

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Ambient Canvas & Glows */
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
    opacity: 0.35;
}

.ambient-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
}

.glow-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #38bdf8 0%, transparent 70%);
    top: -150px;
    left: -100px;
}

.glow-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #6366f1 0%, transparent 70%);
    top: 40%;
    right: -150px;
}

.glow-3 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, #10b981 0%, transparent 70%);
    bottom: -100px;
    left: 20%;
}

/* Typography Helpers */
h1, h2, h3, h4, h5 {
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

a {
    color: inherit;
    text-decoration: none;
}

.highlight-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Glassmorphism Panel */
.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}

.glass-panel:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-glow);
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(9, 13, 22, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-subtle);
    transition: all var(--transition-fast);
}

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

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

.logo-bracket {
    color: var(--accent-cyan);
}

.logo-slash {
    color: var(--accent-indigo);
}

.logo-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 0 2px;
}

.status-dot-pulse {
    width: 8px;
    height: 8px;
    background-color: var(--accent-emerald);
    border-radius: 50%;
    margin-left: 8px;
    box-shadow: 0 0 10px var(--accent-emerald);
    animation: pulseGlow 2s infinite;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}

.nav-link {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color var(--transition-fast);
}

.nav-link:hover {
    color: var(--accent-cyan);
}

.nav-link i {
    font-size: 0.85rem;
    opacity: 0.8;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.theme-toggle-btn {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    width: 38px;
    height: 38px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.theme-toggle-btn:hover {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    transform: rotate(15deg);
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.25rem;
    cursor: pointer;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0.75rem 1.4rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
}

.btn-sm {
    padding: 0.45rem 0.95rem;
    font-size: 0.85rem;
}

.btn-primary {
    background: linear-gradient(135deg, #0284c7 0%, #2563eb 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(2, 132, 199, 0.35);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0369a1 0%, #1d4ed8 100%);
    box-shadow: 0 6px 20px rgba(2, 132, 199, 0.5);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
}

.btn-ghost:hover {
    color: var(--accent-cyan);
}

.btn-block {
    width: 100%;
}

/* Layout Wrapper */
.main-wrapper {
    position: relative;
    z-index: 1;
    max-width: 1240px;
    margin: 0 auto;
    padding: 6rem 1.5rem 2rem;
}

.section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 3.5rem;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.35rem 0.85rem;
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.2);
    border-radius: var(--radius-full);
    color: var(--accent-cyan);
    font-size: 0.82rem;
    font-weight: 600;
    font-family: var(--font-mono);
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.35rem;
    margin-bottom: 0.75rem;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

/* HERO SECTION */
.hero-section {
    min-height: 85vh;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3.5rem;
    align-items: center;
    padding: 4rem 0;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.4rem 0.9rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: var(--radius-full);
    color: var(--accent-emerald);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-emerald);
    border-radius: 50%;
    animation: pulseGlow 1.5s infinite;
}

.hero-title {
    font-size: 3.25rem;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    letter-spacing: -0.03em;
}

.typewriter-container {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-secondary);
    font-family: var(--font-mono);
}

.typewriter-cursor {
    color: var(--accent-cyan);
    animation: blink 0.9s infinite;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 580px;
    margin-bottom: 2rem;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-subtle);
}

.stat-card {
    text-align: left;
}

.stat-num {
    font-family: var(--font-mono);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent-cyan);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Code Mockup Card */
.code-editor-mockup {
    background: #090e17;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.7), 0 0 25px rgba(56, 189, 248, 0.15);
    overflow: hidden;
    position: relative;
    font-family: var(--font-mono);
}

.editor-header {
    background: #0f1624;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-subtle);
}

.editor-buttons {
    display: flex;
    gap: 6px;
}

.dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    display: inline-block;
}

.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.editor-tab {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.editor-tab i {
    color: #f7df1e;
}

.badge-lang {
    font-size: 0.72rem;
    color: var(--accent-cyan);
    background: rgba(56, 189, 248, 0.12);
    padding: 2px 6px;
    border-radius: 4px;
}

.editor-body {
    padding: 1.25rem 1.25rem;
    font-size: 0.85rem;
    line-height: 1.65;
    overflow-x: auto;
}

/* Syntax Highlighting Colors */
.c-keyword { color: #f43f5e; font-weight: 600; }
.c-type { color: #38bdf8; }
.c-var { color: #e2e8f0; font-weight: 500; }
.c-string { color: #34d399; }
.c-fn { color: #fbbf24; }
.c-bool { color: #c084fc; }
.c-number { color: #fb923c; }

/* ABOUT SECTION */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.about-card {
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.card-icon {
    width: 52px;
    height: 52px;
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.25);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-cyan);
    font-size: 1.35rem;
    margin-bottom: 1.25rem;
}

.about-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.about-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.skill-tags span {
    font-size: 0.75rem;
    font-family: var(--font-mono);
    padding: 3px 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    color: var(--accent-cyan);
}

/* INTERACTIVE TERMINAL */
.terminal-wrapper {
    background: var(--terminal-bg);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
    font-family: var(--font-mono);
    box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 255, 102, 0.08);
}

.terminal-bar {
    background: var(--terminal-header);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-subtle);
}

.terminal-dots {
    display: flex;
    gap: 6px;
}

.terminal-title {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.terminal-actions button {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.terminal-actions button:hover {
    color: var(--accent-red);
}

.terminal-quick-chips {
    background: rgba(255, 255, 255, 0.02);
    padding: 0.6rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.terminal-quick-chips .chip {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    color: var(--accent-cyan);
    padding: 3px 9px;
    border-radius: var(--radius-sm);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    cursor: pointer;
    white-space: nowrap;
    transition: all var(--transition-fast);
}

.terminal-quick-chips .chip:hover {
    background: var(--accent-cyan);
    color: #000;
}

.terminal-output {
    padding: 1.25rem 1.25rem 0.5rem;
    max-height: 420px;
    overflow-y: auto;
    font-size: 0.88rem;
    line-height: 1.6;
    color: #e2e8f0;
}

.term-line {
    margin-bottom: 0.6rem;
    word-break: break-word;
}

.term-cmd-echo {
    color: var(--accent-cyan);
    font-weight: 600;
}

.term-highlight {
    color: #00ff66;
    font-weight: 600;
}

.term-dim {
    color: var(--text-muted);
}

.term-warn {
    color: var(--accent-amber);
}

.terminal-input-row {
    padding: 0.75rem 1.25rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.prompt-user {
    color: var(--accent-emerald);
    font-weight: 600;
}

.prompt-path {
    color: var(--accent-cyan);
}

.prompt-sym {
    color: #ffffff;
}

#terminal-input {
    flex-grow: 1;
    background: transparent;
    border: none;
    color: #ffffff;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    outline: none;
}

/* SKILLS MATRIX */
.skills-filter-bar {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.filter-pill {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    padding: 0.5rem 1.15rem;
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.filter-pill:hover,
.filter-pill.active {
    background: var(--accent-cyan);
    color: #090d16;
    border-color: var(--accent-cyan);
    font-weight: 600;
}

.skills-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}

.skill-box {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.skill-icon-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.skill-icon {
    font-size: 2rem;
}

.skill-level {
    font-size: 0.75rem;
    font-family: var(--font-mono);
    color: var(--accent-cyan);
    background: rgba(56, 189, 248, 0.1);
    padding: 2px 8px;
    border-radius: var(--radius-sm);
}

.skill-box h4 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.skill-box p {
    color: var(--text-secondary);
    font-size: 0.88rem;
}

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

.project-card {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
}

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

.project-badge {
    font-size: 0.75rem;
    font-family: var(--font-mono);
    color: var(--accent-cyan);
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.2);
    padding: 4px 10px;
    border-radius: var(--radius-full);
}

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

.icon-link {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.icon-link:hover {
    color: var(--accent-cyan);
    background: rgba(56, 189, 248, 0.15);
    transform: scale(1.1);
}

.project-icon-box {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.1) 0%, rgba(99, 102, 241, 0.1) 100%);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-cyan);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.project-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.project-desc {
    color: var(--text-secondary);
    font-size: 0.92rem;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.project-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    background: rgba(0, 0, 0, 0.25);
    border-radius: var(--radius-sm);
    padding: 0.75rem;
    margin-bottom: 1.25rem;
}

.metric-item {
    display: flex;
    flex-direction: column;
}

.m-val {
    font-family: var(--font-mono);
    font-weight: 700;
    color: var(--accent-emerald);
    font-size: 1.1rem;
}

.m-lbl {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.project-tags span {
    font-size: 0.72rem;
    font-family: var(--font-mono);
    padding: 2px 7px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 4px;
    color: var(--text-secondary);
}

/* EXPERIENCE TIMELINE */
.timeline-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 2rem;
}

.timeline-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 7px;
    bottom: 0;
    width: 2px;
    background: var(--border-subtle);
}

.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
}

.timeline-marker {
    position: absolute;
    left: -2rem;
    top: 6px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--bg-primary);
    border: 3px solid var(--accent-cyan);
    box-shadow: 0 0 10px var(--accent-cyan);
    z-index: 2;
}

.timeline-content {
    padding: 1.75rem;
}

.timeline-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
    gap: 8px;
}

.timeline-meta .role {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.timeline-meta .period {
    font-size: 0.8rem;
    font-family: var(--font-mono);
    color: var(--accent-cyan);
    background: rgba(56, 189, 248, 0.1);
    padding: 2px 8px;
    border-radius: var(--radius-sm);
}

.timeline-content .company {
    font-size: 0.95rem;
    color: var(--accent-indigo);
    margin-bottom: 0.75rem;
}

.timeline-content p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    margin-bottom: 1rem;
}

.timeline-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.timeline-tags span {
    font-size: 0.72rem;
    font-family: var(--font-mono);
    padding: 2px 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    color: var(--text-muted);
}

/* CONTACT SECTION */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 2rem;
    align-items: start;
}

.contact-info-card,
.contact-form-card {
    padding: 2.25rem;
}

.contact-info-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.contact-info-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.contact-method-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cm-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: rgba(56, 189, 248, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-cyan);
    font-size: 1.15rem;
}

.cm-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.cm-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.cm-val {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}

.copy-btn {
    background: transparent;
    border: 1px solid var(--border-subtle);
    color: var(--text-muted);
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.copy-btn:hover {
    color: var(--accent-cyan);
    border-color: var(--accent-cyan);
}

.social-links-row {
    display: flex;
    gap: 0.75rem;
}

.social-btn {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 1.1rem;
    transition: all var(--transition-fast);
}

.social-btn:hover {
    background: var(--accent-cyan);
    color: #090d16;
    transform: translateY(-3px);
}

/* Contact Form */
.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--text-secondary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-main);
    font-size: 0.95rem;
    outline: none;
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 10px rgba(56, 189, 248, 0.2);
}

.form-feedback {
    margin-top: 1rem;
    font-size: 0.9rem;
    text-align: center;
    display: none;
}

.form-feedback.success {
    display: block;
    color: var(--accent-emerald);
}

/* FOOTER */
.footer {
    border-top: 1px solid var(--border-subtle);
    background: rgba(6, 9, 15, 0.8);
    backdrop-filter: blur(10px);
    margin-top: 4rem;
    padding: 2.5rem 1.5rem;
}

.footer-container {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-logo {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--accent-cyan);
}

.footer-left p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.live-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-family: var(--font-mono);
    color: var(--text-secondary);
}

.pulse-green {
    width: 8px;
    height: 8px;
    background-color: var(--accent-emerald);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent-emerald);
    animation: pulseGlow 1.8s infinite;
}

.footer-right p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Toast */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #0f172a;
    border: 1px solid var(--accent-cyan);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    color: #ffffff;
    padding: 0.8rem 1.4rem;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    z-index: 9999;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

/* Keyframe Animations */
@keyframes pulseGlow {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.6; }
}

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

/* Responsive Media Queries */
@media (max-width: 992px) {
    .hero-section {
        grid-template-columns: 1fr;
        padding-top: 2rem;
    }

    .hero-visual {
        order: -1;
    }

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-secondary);
        flex-direction: column;
        padding: 1.5rem;
        border-bottom: 1px solid var(--border-subtle);
        gap: 1rem;
    }

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

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

    .hire-btn {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

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