/**
 * ==========================================
 * NFrancis - PORTFOLIO CSS
 * ==========================================
 * Author: [NFrancis]
 * Version: 1.0.0
 * License: All Rights Reserved
 * Copyright © 2026 [NFrancis]. All rights reserved.
 * 
 * This CSS file is part of a proprietary portfolio project.
 * Unauthorized copying, modification, distribution, or use
 * of this code without explicit permission is strictly prohibited.
 * ==========================================
 */

/* ========================================
   1. ROOT VARIABLES
   ======================================== */
:root {
    --bg-dark: #0a0c12;
    --bg-darker: #05070c;
    --bg-card: rgba(15, 18, 25, 0.7);
    --text-primary: #e8edf2;
    --text-secondary: #8b9bb0;
    --radar-static: #3bed13;
    --radar-sweep: #ff4a2a;
    --accent-primary: #2d6a6a;
    --accent-secondary: #4a7c7c;
    --accent-tertiary: #5f8b8b;
    --accent-glow: rgba(45, 106, 106, 0.5);
    --border-color: rgba(45, 106, 106, 0.3);
    --glass-bg: rgba(20, 20, 20, 0.85);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   2. ALL KEYFRAMES ANIMATIONS
   ======================================== */
@keyframes scan {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

@keyframes blink { 
    0%, 50% { opacity: 1; } 
    51%, 100% { opacity: 0; } 
}

@keyframes scrollMove {
    0%, 100% { transform: scaleY(0.3); opacity: 0.3; }
    50% { transform: scaleY(1); opacity: 1; }
}

@keyframes dotRadarPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(59,237,19,0.4); transform: scale(1); }
    50% { box-shadow: 0 0 0 8px rgba(59,237,19,0.2); transform: scale(1.1); }
}

@keyframes textGlow {
    0%, 100% { text-shadow: 0 0 5px rgba(59,237,19,0.3); opacity: 0.9; }
    50% { text-shadow: 0 0 20px rgba(59,237,19,0.8), 0 0 30px rgba(45,106,106,0.6); opacity: 1; }
}

@keyframes emergeFromDeep {
    0% { opacity: 0; transform: translateZ(-50px) translateY(30px) rotateX(5deg); filter: blur(12px); text-shadow: 0 0 0 rgba(0,0,0,0); }
    30% { opacity: 0.5; transform: translateZ(-20px) translateY(15px) rotateX(3deg); filter: blur(6px); }
    70% { opacity: 0.9; transform: translateZ(15px) translateY(5px) rotateX(1deg); filter: blur(2px); }
    100% { opacity: 1; transform: translateZ(30px) translateY(0) rotateX(2deg); filter: blur(0); text-shadow: 0 2px 0 rgba(0,0,0,0.2), 0 4px 0 rgba(0,0,0,0.15), 0 6px 0 rgba(0,0,0,0.1), 0 8px 0 rgba(0,0,0,0.08), 0 10px 0 rgba(0,0,0,0.05), 0 0 8px rgba(59,237,19,0.3), 0 0 15px rgba(59,237,19,0.2), 0 15px 25px rgba(0,0,0,0.3); }
}

@keyframes sonarPulse {
    0% { box-shadow: 0 0 0 0 rgba(45, 106, 106, 0.4); }
    70% { box-shadow: 0 0 0 40px rgba(45, 106, 106, 0); }
    100% { box-shadow: 0 0 0 0 rgba(45, 106, 106, 0); }
}

@keyframes phoneReveal {
    0% { transform: scale(0.95); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes captchaGlow {
    0%, 100% { text-shadow: 0 0 4px var(--radar-static); }
    50% { text-shadow: 0 0 12px var(--radar-static); }
}

@keyframes submitPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(59, 237, 19, 0); }
    50% { box-shadow: 0 0 0 5px rgba(59, 237, 19, 0.2); }
}

@keyframes copyrightGlow {
    0%, 100% { text-shadow: 0 0 5px rgba(59,237,19,0.5); opacity: 0.9; }
    50% { text-shadow: 0 0 15px rgba(59,237,19,0.9), 0 0 25px rgba(45,106,106,0.6); opacity: 1; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ========================================
   3. GLOBAL RESET & BASE STYLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ========================================
   4. CONTAINER
   ======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
}
@media (max-width: 480px) {
    .container { padding: 0 16px; }
}

/* ========================================
   5. BACKGROUND ELEMENTS (Radar, Overlay, Scanline)
   ======================================== */
#radarCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.65;
}

.pattern-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' opacity='0.05'%3E%3Cpath fill='%232d6a6a' d='M30,20 L40,20 L35,28 L30,20 Z M45,15 L55,15 L50,25 L45,15 Z M60,20 L70,20 L65,28 L60,20 Z M35,40 L45,40 L40,48 L35,40 Z M50,35 L60,35 L55,43 L50,35 Z M65,40 L75,40 L70,48 L65,40 Z M20,45 L30,45 L25,53 L20,45 Z M35,55 L45,55 L40,63 L35,55 Z M50,50 L60,50 L55,58 L50,50 Z M65,55 L75,55 L70,63 L65,55 Z M30,70 L40,70 L35,78 L30,70 Z M45,65 L55,65 L50,75 L45,65 Z M60,70 L70,70 L65,78 L60,70 Z'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 60px;
    z-index: 1;
    pointer-events: none;
}

.scanline {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(45, 106, 106, 0.02), transparent);
    transform: translateY(-100%);
    animation: scan 12s linear infinite;
    pointer-events: none;
    z-index: 2;
}

/* ========================================
   6. GLOBAL COMPONENTS (Buttons, Badges, Cards)
   ======================================== */
.btn-glass {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    font-size: 0.9rem;
    background: linear-gradient(135deg, rgba(20, 25, 32, 0.95), rgba(15, 18, 25, 0.95));
    backdrop-filter: blur(8px);
    border: 1px solid rgba(59, 237, 19, 0.3);
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3), 0 1px 0 rgba(255,255,255,0.1) inset, 0 -1px 0 rgba(0,0,0,0.2) inset;
    font-family: 'Space Grotesk', monospace;
}
.btn-glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59,237,19,0.1), rgba(45,106,106,0.05));
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.btn-glass::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--radar-static), var(--accent-primary), var(--radar-static), transparent);
    border-radius: 2px;
    opacity: 0.6;
    transition: all 0.3s ease;
}
.btn-glass:hover {
    transform: translateY(-3px);
    border-color: var(--radar-static);
    box-shadow: 0 8px 20px rgba(59,237,19,0.25), 0 4px 6px rgba(0,0,0,0.3), 0 1px 0 rgba(255,255,255,0.15) inset;
}
.btn-glass:hover::before { opacity: 1; }
.btn-glass:hover::after { opacity: 1; width: 90%; left: 5%; box-shadow: 0 0 12px var(--radar-static); }
.btn-glass:active { transform: translateY(2px); box-shadow: 0 2px 4px rgba(0,0,0,0.3), 0 1px 0 rgba(255,255,255,0.1) inset; }
.btn-full { width: 100%; justify-content: center; }

.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(45, 106, 106, 0.2), rgba(59, 237, 19, 0.1));
    color: var(--text-secondary);
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(59, 237, 19, 0.3);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.social-link::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 200%;
    height: 200%;
    background: linear-gradient(115deg, transparent 0%, transparent 40%, rgba(255,255,255,0.3) 50%, transparent 60%, transparent 100%);
    transform: rotate(25deg);
    transition: all 0.6s ease;
    opacity: 0;
    pointer-events: none;
}
.social-link:hover::before { left: 20%; opacity: 0.8; }
.social-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.2), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.social-link:hover::after { opacity: 1; }
.social-link i { position: relative; z-index: 2; transition: all 0.3s ease; }
.social-link:hover {
    background: linear-gradient(135deg, var(--accent-primary), var(--radar-static));
    color: white;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 20px rgba(59,237,19,0.4), 0 0 15px rgba(59,237,19,0.3);
    border-color: var(--radar-static);
}
.social-link:hover i { transform: scale(1.1); text-shadow: 0 0 8px rgba(255,255,255,0.8); }

/* ========================================
   7. SECTION HEADERS
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
@media (max-width: 768px) {
    .section-header { margin-bottom: 40px; }
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--radar-static);
    background: rgba(59, 237, 19, 0.1);
    padding: 5px 14px;
    border-radius: 30px;
    margin-bottom: 14px;
    font-weight: 500;
    border: 1px solid rgba(59, 237, 19, 0.3);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--text-primary);
}
@media (max-width: 992px) {
    .section-title { font-size: 2rem; }
}
@media (max-width: 480px) {
    .section-title { font-size: 1.6rem; }
}

.section-title .highlight {
    background: linear-gradient(135deg, var(--radar-static), var(--accent-primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 10px rgba(59, 237, 19, 0.3);
}

.section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--radar-static), var(--accent-primary));
    margin: 0 auto;
    position: relative;
}
.section-divider::before,
.section-divider::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--radar-static);
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 5px var(--radar-static);
}
.section-divider::before { left: -12px; }
.section-divider::after { right: -12px; }

/* ========================================
   8. HEADER & NAVIGATION
   ======================================== */
.header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 28px;
    background: rgba(5, 7, 12, 0.75);
    backdrop-filter: blur(12px);
    border-radius: 60px;
    border: 1px solid rgba(45, 106, 106, 0.25);
    z-index: 1000;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}
.header::before {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 5%;
    width: 90%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--radar-static), var(--accent-primary), var(--radar-sweep), transparent);
    border-radius: 2px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.header:hover::before { opacity: 1; }
@media (max-width: 992px) {
    .header { width: calc(100% - 30px); padding: 10px 20px; top: 15px; }
}
@media (max-width: 768px) {
    .header { width: calc(100% - 20px); padding: 10px 16px; top: 10px; border-radius: 40px; }
}
.header.scrolled {
    top: 10px;
    background: rgba(5, 7, 12, 0.9);
    backdrop-filter: blur(15px);
    border-color: rgba(45, 106, 106, 0.4);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.4);
}
@media (max-width: 768px) {
    .header.scrolled { top: 5px; }
}

.menu {
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 300px;
        height: 100vh;
        background: rgba(5, 7, 12, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: stretch;
        gap: 12px;
        transition: right 0.3s ease;
        z-index: 999;
        border-left: 1px solid var(--border-color);
        padding: 20px;
        border-radius: 0;
        margin: 0;
    }
    .menu.active { right: 0; }
}

.menu-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    padding: 8px 18px;
    position: relative;
    border-radius: 40px;
    background: transparent;
    display: inline-block;
    text-align: center;
    letter-spacing: 0.3px;
    font-family: 'Inter', sans-serif;
    flex-shrink: 0;
}
@media (max-width: 992px) {
    .menu-link { padding: 6px 14px; font-size: 0.8rem; }
}
@media (max-width: 768px) {
    .menu-link {
        padding: 12px 20px;
        font-size: 1rem;
        text-align: center;
        background: rgba(45, 106, 106, 0.05);
        border: 1px solid rgba(45, 106, 106, 0.2);
    }
}
.menu-link i {
    margin-right: 8px;
    font-size: 0.85rem;
    transition: var(--transition);
}
.menu-link:hover i {
    transform: rotate(360deg) scale(1.1);
    color: var(--radar-static);
}
.menu-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--radar-static), var(--accent-primary));
    border-radius: 2px;
    transition: width 0.3s ease;
}
.menu-link:hover::before,
.menu-link.active::before { width: 70%; }
.menu-link:hover {
    color: var(--text-primary);
    text-shadow: 0 0 8px var(--accent-primary);
}
.menu-link.active {
    color: var(--accent-primary);
    background: rgba(45, 106, 106, 0.1);
    text-shadow: 0 0 5px var(--accent-glow);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    padding: 8px;
}
@media (max-width: 768px) {
    .menu-toggle { display: flex; }
}
.menu-toggle span {
    width: 28px;
    height: 2px;
    background: var(--accent-primary);
    transition: var(--transition);
    border-radius: 2px;
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(8px, -8px); }

/* ========================================
   9. HERO SECTION
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 100px 20px;
}
@media (max-width: 768px) {
    .hero { padding: 80px 20px; min-height: 90vh; }
}
.hero-content { z-index: 5; max-width: 800px; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(30, 35, 42, 0.9), rgba(20, 25, 32, 0.9));
    backdrop-filter: blur(8px);
    padding: 8px 28px;
    border-radius: 60px;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    color: var(--radar-static);
    margin-bottom: 28px;
    border: 1px solid rgba(59, 237, 19, 0.35);
    font-weight: 600;
    text-transform: uppercase;
    font-family: 'Space Grotesk', monospace;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25), 0 1px 0 rgba(255, 255, 255, 0.08) inset;
    transition: all 0.3s ease;
}
.hero-badge:hover {
    transform: translateY(-2px);
    border-color: var(--radar-static);
    box-shadow: 0 8px 20px rgba(59, 237, 19, 0.2), 0 1px 0 rgba(255, 255, 255, 0.1) inset;
}
.hero-badge i { font-size: 0.9rem; }

.hero-title {
    font-size: 5rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
    position: relative;
    font-family: 'Orbitron', monospace;
    letter-spacing: 0.02em;
    perspective: 1000px;
}
@media (max-width: 992px) { .hero-title { font-size: 3.5rem; } }
@media (max-width: 768px) { .hero-title { font-size: 2.8rem; } }
@media (max-width: 480px) { .hero-title { font-size: 2rem; } }

.title-line {
    display: inline-block;
    position: relative;
    font-family: 'Orbitron', monospace;
    font-weight: 800;
    letter-spacing: 0.02em;
    background: linear-gradient(135deg, rgba(232, 237, 242, 0.95), rgba(200, 210, 220, 0.9), rgba(139, 155, 176, 0.85), rgba(100, 120, 140, 0.8));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transform-style: preserve-3d;
    transform: translateZ(30px) rotateX(2deg);
    animation: emergeFromDeep 1.2s cubic-bezier(0.34, 1.2, 0.64, 1) forwards;
    text-shadow: 0 2px 0 rgba(0,0,0,0.2), 0 4px 0 rgba(0,0,0,0.15), 0 6px 0 rgba(0,0,0,0.1), 0 8px 0 rgba(0,0,0,0.08), 0 10px 0 rgba(0,0,0,0.05), 0 0 8px rgba(59,237,19,0.3), 0 0 15px rgba(59,237,19,0.2), 0 15px 25px rgba(0,0,0,0.3);
}
.title-line:first-child { margin-right: 12px; animation-delay: 0s; }
.title-line.highlight {
    background: linear-gradient(135deg, rgba(59,237,19,0.95), rgba(45,106,106,0.95), rgba(59,237,19,0.85), rgba(45,106,106,0.8));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 0 rgba(0,0,0,0.25), 0 4px 0 rgba(0,0,0,0.2), 0 6px 0 rgba(0,0,0,0.15), 0 8px 0 rgba(0,0,0,0.1), 0 10px 0 rgba(0,0,0,0.08), 0 0 12px rgba(59,237,19,0.6), 0 0 25px rgba(59,237,19,0.4), 0 15px 30px rgba(0,0,0,0.4);
}
.hero-title:hover .title-line {
    transform: translateZ(45px) rotateX(1deg);
    text-shadow: 0 2px 0 rgba(0,0,0,0.25), 0 4px 0 rgba(0,0,0,0.2), 0 6px 0 rgba(0,0,0,0.15), 0 8px 0 rgba(0,0,0,0.1), 0 10px 0 rgba(0,0,0,0.08), 0 12px 0 rgba(0,0,0,0.05), 0 0 15px rgba(59,237,19,0.8), 0 0 30px rgba(59,237,19,0.5), 0 20px 40px rgba(0,0,0,0.5);
    transition: all 0.4s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #b0d0e8;
    margin-bottom: 32px;
    position: relative;
    display: inline-block;
    padding: 0 30px;
    font-weight: 500;
}
.hero-subtitle::before,
.hero-subtitle::after {
    content: '⚡';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--radar-static);
    font-size: 0.8rem;
    text-shadow: 0 0 5px var(--radar-static);
}
.hero-subtitle::before { left: -5px; }
.hero-subtitle::after { right: -5px; }
@media (max-width: 768px) {
    .hero-subtitle { font-size: 1rem; padding: 0 20px; }
    .hero-subtitle::before,
    .hero-subtitle::after { font-size: 0.7rem; }
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 48px;
    flex-wrap: wrap;
}
@media (max-width: 480px) {
    .hero-buttons { flex-direction: column; gap: 12px; width: 100%; max-width: 280px; margin-left: auto; margin-right: auto; }
}

.hero-badges {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.hero-badge-item {
    padding: 10px 24px;
    background: linear-gradient(135deg, rgba(20, 25, 32, 0.9), rgba(15, 18, 25, 0.9));
    border: 1px solid rgba(59, 237, 19, 0.25);
    border-radius: 40px;
    font-size: 0.85rem;
    backdrop-filter: blur(8px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    letter-spacing: 0.5px;
    font-family: 'Space Grotesk', monospace;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2), 0 1px 0 rgba(255,255,255,0.08) inset, 0 -1px 0 rgba(0,0,0,0.15) inset;
}
.hero-badge-item i {
    margin-right: 10px;
    color: var(--radar-static);
    font-size: 0.9rem;
    text-shadow: 0 0 5px rgba(59, 237, 19, 0.5);
}
.hero-badge-item:hover {
    transform: translateY(-2px);
    border-color: var(--radar-static);
    background: linear-gradient(135deg, rgba(30, 35, 42, 0.95), rgba(20, 25, 32, 0.95));
    box-shadow: 0 6px 12px rgba(59, 237, 19, 0.2), 0 1px 0 rgba(255, 255, 255, 0.1) inset;
}
@media (max-width: 992px) { .hero-badge-item { padding: 8px 20px; font-size: 0.8rem; } }
@media (max-width: 768px) { .hero-badge-item { padding: 6px 16px; font-size: 0.7rem; } }
@media (max-width: 480px) { .hero-badge-item { padding: 5px 12px; font-size: 0.65rem; } }

.typed-text {
    font-size: 1.4rem;
    color: var(--accent-secondary);
    min-height: 3rem;
    font-family: 'Orbitron', monospace;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
@media (max-width: 992px) { .typed-text { font-size: 1.2rem; } }
@media (max-width: 768px) { .typed-text { font-size: 1rem; min-height: 2.5rem; } }
@media (max-width: 480px) { .typed-text { font-size: 0.85rem; min-height: 2rem; } }

.typed-cursor-text {
    display: inline-block;
    font-weight: 500;
    background: linear-gradient(135deg, rgba(59,237,19,0.95), rgba(45,106,106,0.9), rgba(59,237,19,0.95));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: textGlow 1.2s ease-in-out infinite;
}

.typed-cursor {
    display: inline-block;
    width: 3px;
    height: 1.3em;
    background: linear-gradient(180deg, var(--radar-static), var(--accent-primary));
    margin-left: 4px;
    animation: blink 1s infinite;
    vertical-align: middle;
    border-radius: 2px;
    box-shadow: 0 0 12px var(--radar-static);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-size: 0.7rem;
    color: var(--text-secondary);
    letter-spacing: 2px;
}
@media (max-width: 768px) { .hero-scroll { bottom: 20px; } }
.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent-primary), transparent);
    margin: 10px auto 0;
    animation: scrollMove 2s ease-in-out infinite;
}

/* ========================================
   10. ABOUT SECTION
   ======================================== */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-darker), var(--bg-dark));
}
@media (max-width: 768px) { .about { padding: 60px 0; } }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}
@media (max-width: 992px) { .about-grid { grid-template-columns: 1fr; gap: 40px; } }

.about-image { position: relative; }
.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}
@media (max-width: 992px) { .image-wrapper { max-width: 400px; margin: 0 auto; } }
.profile-img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}
.image-wrapper:hover .profile-img { transform: scale(1.05); }
.image-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(45, 106, 106, 0.2), transparent);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}
.image-wrapper:hover .image-glow { opacity: 1; }

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--radar-static), var(--accent-primary));
    padding: 14px 18px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(59, 237, 19, 0.3);
    border: 1px solid rgba(59, 237, 19, 0.5);
}
@media (max-width: 480px) { .experience-badge { right: -10px; bottom: -10px; padding: 10px 14px; } }
.experience-badge .years {
    font-size: 1.8rem;
    font-weight: 800;
    display: block;
    line-height: 1;
    color: #ffffff;
    text-shadow: 0 0 8px rgba(59, 237, 19, 0.5);
    font-family: 'Orbitron', monospace;
}
@media (max-width: 480px) { .experience-badge .years { font-size: 1.3rem; } }
.experience-badge .label {
    font-size: 0.65rem;
    opacity: 0.95;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.about-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--radar-static), #6fff4a, var(--accent-primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-family: 'Orbitron', monospace;
    letter-spacing: -0.5px;
    text-shadow: 0 0 15px rgba(59, 237, 19, 0.3);
}
@media (max-width: 768px) { .about-content h3 { font-size: 1.5rem; } }
.about-content p {
    color: #b8d0e0;
    margin-bottom: 16px;
    line-height: 1.7;
    font-size: 1rem;
}

.about-stats {
    display: flex;
    gap: 32px;
    margin-top: 24px;
    flex-wrap: wrap;
}
@media (max-width: 480px) { .about-stats { flex-direction: column; gap: 16px; } }
.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #c8e0f0;
}
.stat-item i {
    font-size: 1.4rem;
    background: linear-gradient(135deg, var(--radar-static), var(--accent-primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 0 5px rgba(59, 237, 19, 0.4));
}
.stat-item span { font-weight: 500; color: #d0e8f8; }

/* ========================================
   11. RESUME SECTION
   ======================================== */
.resume {
    padding: 100px 0;
    background: var(--bg-dark);
}
@media (max-width: 768px) { .resume { padding: 60px 0; } }

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}
.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 48px;
    position: relative;
    padding: 28px;
    background: rgba(15, 18, 25, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    border: 1px solid rgba(45, 106, 106, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.timeline-item:hover {
    transform: translateX(12px);
    border-color: var(--accent-primary);
    box-shadow: 0 10px 35px rgba(45, 106, 106, 0.25);
    background: rgba(20, 25, 32, 0.8);
}
@media (max-width: 768px) {
    .timeline-item { flex-direction: column; gap: 12px; padding: 20px; }
    .timeline-item:hover { transform: translateX(0); }
}

.timeline-marker {
    position: relative;
    flex-shrink: 0;
    width: 40px;
}
@media (max-width: 768px) { .timeline-marker { width: auto; } }
.timeline-dot {
    width: 12px;
    height: 12px;
    background: var(--radar-static);
    border-radius: 50%;
    margin-top: 8px;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 4px rgba(59, 237, 19, 0.2);
    animation: dotRadarPulse 2s ease-in-out infinite;
}
@media (max-width: 768px) { .timeline-dot { margin-left: 12px; } }

.timeline-line {
    position: absolute;
    top: 24px;
    left: 5px;
    width: 2px;
    height: calc(100% + 40px);
    background: linear-gradient(to bottom, var(--radar-static), var(--accent-primary), transparent);
    transition: all 0.3s ease;
}
.timeline-item:hover .timeline-line {
    width: 3px;
    background: linear-gradient(to bottom, var(--radar-static), var(--radar-sweep), transparent);
    box-shadow: 0 0 8px var(--radar-static);
}
@media (max-width: 768px) { .timeline-line { left: 17px; height: calc(100% + 30px); } }
.timeline-item:last-child .timeline-line { display: none; }

.timeline-content { flex: 1; display: flex; flex-direction: column; }
.timeline-date {
    font-size: 0.85rem;
    color: var(--radar-static);
    margin-bottom: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(59, 237, 19, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    width: fit-content;
    border: 1px solid rgba(59, 237, 19, 0.2);
}
.timeline-date i { font-size: 0.7rem; }
.job-title {
    font-size: 1.35rem;
    margin-bottom: 6px;
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: -0.3px;
    font-family: 'Orbitron', monospace;
}
@media (max-width: 768px) { .job-title { font-size: 1.2rem; } }
.company-name {
    display: inline-block;
    color: var(--radar-static);
    font-size: 0.95rem;
    margin-bottom: 12px;
    font-weight: 600;
    padding: 6px 18px;
    background: rgba(59, 237, 19, 0.1);
    border-radius: 30px;
    border: 1px solid rgba(59, 237, 19, 0.3);
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
    width: fit-content;
    text-shadow: 0 0 5px rgba(59, 237, 19, 0.3);
}
.timeline-item:hover .company-name {
    background: rgba(59, 237, 19, 0.2);
    border-color: var(--radar-static);
    box-shadow: 0 0 15px rgba(59, 237, 19, 0.3);
}
.timeline-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: 8px;
}

/* ========================================
   12. SKILLS SECTION
   ======================================== */
.skills {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-dark), var(--bg-darker));
}
@media (max-width: 768px) { .skills { padding: 60px 0; } }

.skills-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}
@media (max-width: 992px) { .skills-grid { grid-template-columns: 1fr; gap: 40px; } }

.skills-chart-container {
    position: relative;
    text-align: center;
    max-width: 280px;
    margin: 0 auto;
}
#skillRadarCanvas {
    max-width: 100%;
    height: auto;
    background: rgba(45, 106, 106, 0.02);
    border-radius: 50%;
    width: 260px;
    height: 260px;
}
@media (max-width: 992px) { #skillRadarCanvas { width: 240px; height: 240px; } }
@media (max-width: 768px) { #skillRadarCanvas { width: 200px; height: 200px; } }

.sonar-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    pointer-events: none;
    animation: sonarPulse 3s ease-out infinite;
}

.skills-bars { display: flex; flex-direction: column; gap: 28px; width: 100%; }
.skill-item { width: 100%; overflow: hidden; }
.skill-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-weight: 500;
    flex-wrap: wrap;
    gap: 8px;
}
.skill-name {
    color: var(--text-primary);
    flex: 1;
    word-break: break-word;
    white-space: normal;
    line-height: 1.4;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}
.skill-icon {
    font-size: 0.85rem;
    color: var(--radar-static);
    transition: var(--transition);
    text-shadow: 0 0 3px rgba(59, 237, 19, 0.5);
}
.skill-item:hover .skill-icon {
    transform: scale(1.1);
    text-shadow: 0 0 8px var(--radar-static);
}
.skill-percent {
    color: var(--radar-static);
    flex-shrink: 0;
    white-space: nowrap;
    font-weight: 600;
    text-shadow: 0 0 5px rgba(59, 237, 19, 0.3);
}
.skill-bar {
    width: 100%;
    height: 8px;
    background: rgba(45, 106, 106, 0.2);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}
.skill-progress {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--radar-static), #5fff2a);
    border-radius: 10px;
    transition: width 1.2s ease-out;
    position: relative;
    box-shadow: 0 0 5px var(--radar-static);
}
.skill-item:hover .skill-progress {
    box-shadow: 0 0 12px var(--radar-static);
    background: linear-gradient(90deg, var(--radar-static), #8fff5a);
}
.skill-progress::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: var(--radar-static);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--radar-static);
    transition: var(--transition);
}
.skill-item:hover .skill-progress::after {
    background: var(--radar-static);
    box-shadow: 0 0 12px var(--radar-static);
    width: 14px;
    height: 14px;
}
@media (max-width: 768px) {
    .skill-info { flex-direction: column; align-items: flex-start; gap: 4px; }
    .skill-name { width: 100%; font-size: 0.95rem; }
    .skill-percent { font-size: 0.85rem; }
}
@media (max-width: 480px) {
    .skill-name { font-size: 0.9rem; }
    .skill-percent { font-size: 0.8rem; }
}

/* ========================================
   13. GALLERY SECTION
   ======================================== */
.gallery {
    padding: 100px 0;
    background: var(--bg-dark);
}
@media (max-width: 768px) { .gallery { padding: 60px 0; } }
.gallery-slider { padding: 20px 0; }
.swiper-slide {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.swiper-slide img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
@media (max-width: 768px) { .swiper-slide img { height: 220px; } }
@media (max-width: 480px) { .swiper-slide img { height: 180px; } }
.swiper-slide:hover img { transform: scale(1.05); }
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}
.swiper-slide:hover .slide-overlay { opacity: 1; }
.slide-overlay i { font-size: 2rem; color: white; }
.swiper-pagination-bullet { background: var(--text-secondary); opacity: 0.5; }
.swiper-pagination-bullet-active {
    background: var(--radar-static);
    opacity: 1;
    box-shadow: 0 0 8px var(--radar-static);
}
.swiper-button-prev,
.swiper-button-next {
    color: var(--radar-static);
    text-shadow: 0 0 5px rgba(59, 237, 19, 0.5);
}
@media (max-width: 768px) {
    .swiper-button-prev,
    .swiper-button-next { display: none; }
}

/* ========================================
   14. CONTACT SECTION
   ======================================== */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-darker), var(--bg-dark));
    margin-bottom: 0;
}
@media (max-width: 768px) { .contact { padding: 60px 0; } }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
}
@media (max-width: 992px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }
.contact-card,
.contact-form-wrapper { padding: 40px; }
@media (max-width: 768px) {
    .contact-card,
    .contact-form-wrapper { padding: 28px; }
}
.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--radar-static), var(--accent-primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-family: 'Orbitron', monospace;
}
.contact-card>p { color: var(--text-secondary); margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 24px; margin-bottom: 24px; }
.contact-detail { display: flex; gap: 16px; align-items: flex-start; }
.detail-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    background: linear-gradient(135deg, rgba(59, 237, 19, 0.2), rgba(45, 106, 106, 0.2));
    color: var(--radar-static);
    flex-shrink: 0;
    border: 1px solid rgba(59, 237, 19, 0.3);
}
@media (max-width: 480px) { .detail-icon { width: 40px; height: 40px; font-size: 1rem; } }
.detail-text { flex: 1; }
.detail-label {
    display: block;
    font-size: 0.7rem;
    color: var(--text-secondary);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.detail-value {
    font-weight: 500;
    word-break: break-word;
    color: var(--text-primary);
}
.detail-coords {
    display: block;
    font-size: 0.7rem;
    color: var(--radar-static);
    margin-top: 4px;
    opacity: 0.8;
}

.contact-detail .detail-value[data-phone] {
    cursor: pointer;
    position: relative;
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    transition: all 0.3s ease;
    background: rgba(59, 237, 19, 0.1);
    border: 1px solid rgba(59, 237, 19, 0.3);
}
.contact-detail .detail-value[data-phone]::before {
    content: '📞 Click to reveal';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: var(--bg-dark);
    color: var(--radar-static);
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
    border: 1px solid var(--radar-static);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    font-family: 'Inter', sans-serif;
    z-index: 10;
}
.contact-detail .detail-value[data-phone]:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-12px);
}
.contact-detail .detail-value[data-phone].revealed {
    background: rgba(59, 237, 19, 0.2);
    border-color: var(--radar-static);
    box-shadow: 0 0 10px rgba(59, 237, 19, 0.3);
    animation: phoneReveal 0.5s ease;
}

.map-thumbnail {
    position: relative;
    margin-top: 20px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}
.map-thumbnail::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59,237,19,0.2), transparent);
    transition: left 0.6s ease;
    z-index: 2;
    pointer-events: none;
}
.map-thumbnail:hover::before { left: 100%; }
.map-thumbnail:hover {
    border-color: var(--radar-static);
    box-shadow: 0 0 20px rgba(59, 237, 19, 0.3);
}
.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: white;
    font-size: 0.9rem;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 3;
}
.map-thumbnail:hover .map-overlay { opacity: 1; backdrop-filter: blur(2px); }

.map-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}
.map-modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    background: var(--bg-dark);
    border-radius: 24px;
    padding: 20px;
    border: 1px solid var(--accent-primary);
}
.map-modal-close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}
.map-modal-close:hover { color: var(--accent-primary); }

.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { position: relative; margin-bottom: 24px; }
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px 14px 48px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}
.form-group input:hover,
.form-group textarea:hover { border-color: var(--accent-primary); background: rgba(0, 0, 0, 0.5); }
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--radar-static);
    box-shadow: 0 0 0 3px rgba(59, 237, 19, 0.2);
    background: rgba(0, 0, 0, 0.6);
}
.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    font-size: 1rem;
    pointer-events: none;
    transition: all 0.3s ease;
}
.form-group input:focus + .input-icon,
.form-group textarea:focus + .input-icon {
    color: var(--radar-static);
    transform: translateY(-50%) scale(1.1);
}
.form-group textarea + .input-icon { top: 20px; transform: none; }
.form-group textarea:focus + .input-icon { transform: scale(1.1); }

.captcha-group { display: flex; flex-direction: column; gap: 12px; }
.captcha-container {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(45, 106, 106, 0.1);
    padding: 10px 16px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}
.captcha-container:hover {
    border-color: var(--radar-static);
    background: rgba(59, 237, 19, 0.05);
    box-shadow: 0 0 12px rgba(59, 237, 19, 0.2);
}
.captcha-code {
    font-family: monospace;
    font-size: 1.4rem;
    font-weight: bold;
    letter-spacing: 8px;
    color: var(--radar-static);
    text-shadow: 0 0 8px var(--radar-static);
    animation: captchaGlow 1.5s ease-in-out infinite;
}
.captcha-refresh {
    background: none;
    border: none;
    color: var(--accent-primary);
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.captcha-refresh:hover {
    transform: rotate(180deg);
    color: var(--radar-static);
    background: rgba(59, 237, 19, 0.1);
}
.submit-btn {
    position: relative;
    overflow: hidden;
    margin-top: 10px;
    animation: submitPulse 2s ease-in-out infinite;
}
.submit-btn:hover {
    animation: none;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 237, 19, 0.3);
}

/* ========================================
   15. FOOTER
   ======================================== */
.footer {
    background: var(--bg-darker);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
}
@media (max-width: 768px) { .footer { padding: 40px 0 24px; } }
.footer-content { text-align: center; }
.footer-social {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.footer-social .social-link {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, rgba(45, 106, 106, 0.25), rgba(59, 237, 19, 0.15));
    border-color: rgba(59, 237, 19, 0.35);
}
.footer-social .social-link:hover {
    background: linear-gradient(135deg, var(--accent-primary), var(--radar-static));
    transform: translateY(-5px) scale(1.08);
}
@media (max-width: 768px) { .footer-social .social-link { width: 36px; height: 36px; } }

.footer-copyright p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-family: 'Orbitron', monospace;
    letter-spacing: 0.5px;
}
@media (max-width: 768px) { .footer-copyright p { font-size: 0.8rem; } }
.copyright-link {
    color: var(--radar-static);
    text-decoration: none;
    font-weight: 800;
    font-family: 'Orbitron', monospace;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 1rem;
    text-shadow: 0 0 5px var(--radar-static);
    animation: copyrightGlow 1.5s ease-in-out infinite;
}
.copyright-link:hover {
    animation: none;
    text-shadow: 0 0 20px var(--radar-static), 0 0 35px var(--accent-primary);
    transform: scale(1.02);
}
@media (max-width: 768px) { .copyright-link { font-size: 0.9rem; } }
@media (max-width: 480px) { .copyright-link { font-size: 0.85rem; } }

/* ========================================
   16. UTILITY CLASSES (Reveal, Form Messages)
   ======================================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.form-message {
    padding: 12px 16px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    animation: fadeInUp 0.3s ease;
}
.form-message.success {
    background: rgba(45, 106, 106, 0.2);
    border: 1px solid var(--accent-primary);
    color: var(--accent-primary);
}
.form-message.error {
    background: rgba(220, 53, 69, 0.2);
    border: 1px solid #dc3545;
    color: #dc3545;
}
.form-message i { margin-right: 8px; }

/* ========================================
   17. GLOBAL MEDIA QUERIES & FIXES
   ======================================== */
@media (max-width: 768px) {
    body { font-size: 14px; }
    .section-title { font-size: 1.8rem; }
}

@media (max-width: 480px) {
    body { font-size: 13px; }
}