/* ----------------------------------
   DESIGN SYSTEM & VARIABLES
---------------------------------- */
:root {
    /* Colors - HSL tailored for premium contrast and harmony */
    --bg-dark: #070913;
    --bg-card: rgba(16, 22, 42, 0.65);
    --bg-card-hover: rgba(22, 31, 58, 0.85);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(0, 242, 254, 0.3);
    
    /* Neons & Gradients */
    --neon-cyan: #00f2fe;
    --neon-purple: #9b51e0;
    --neon-blue: #0070f3;
    --grad-primary: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-purple) 100%);
    --grad-blue-purple: linear-gradient(135deg, var(--neon-blue) 0%, var(--neon-purple) 100%);
    --glow-shadow: 0 0 20px rgba(0, 242, 254, 0.25);
    --glow-shadow-purple: 0 0 20px rgba(155, 81, 224, 0.25);
    
    /* Text colors */
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    /* Fonts */
    --font-primary: 'Outfit', sans-serif;
    --font-mono: 'Fira Code', monospace;
    
    /* Layout */
    --nav-height: 80px;
    --container-width: 1200px;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

/* ----------------------------------
   BASE RESET & UTILITIES
---------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--neon-purple) var(--bg-dark);
}

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

/* Custom Scrollbar for Webkit */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: rgba(155, 81, 224, 0.3);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--neon-purple);
}

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

ul {
    list-style: none;
}

input, textarea, button {
    font-family: inherit;
    border: none;
    outline: none;
}

.gradient-text {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-weight: 700;
}

/* ----------------------------------
   AMBIENT BACKGROUND GLOW
---------------------------------- */
.glow-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.15;
    mix-blend-mode: screen;
    animation: floatOrb 20s infinite alternate ease-in-out;
}

.orb-1 {
    top: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: var(--neon-cyan);
    animation-delay: 0s;
}

.orb-2 {
    bottom: -10%;
    right: -10%;
    width: 550px;
    height: 550px;
    background: var(--neon-purple);
    animation-delay: 4s;
}

.orb-3 {
    top: 40%;
    left: 50%;
    width: 450px;
    height: 450px;
    background: var(--neon-blue);
    animation-delay: 8s;
}

@keyframes floatOrb {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(60px, 80px) scale(1.15);
    }
}

/* ----------------------------------
   NAVIGATION BAR
---------------------------------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background: rgba(7, 9, 19, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    z-index: 100;
    transition: var(--transition-smooth);
}

.nav-container {
    max-width: var(--container-width);
    height: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.nav-logo:hover {
    transform: translateY(-1px);
    opacity: 0.95;
    text-shadow: 0 0 10px rgba(0, 242, 254, 0.3);
}

.logo-code {
    color: var(--neon-cyan);
    font-family: var(--font-mono);
    font-weight: 600;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link i {
    font-size: 0.85rem;
    opacity: 0.7;
    transition: var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--grad-primary);
    transition: var(--transition-smooth);
    border-radius: 2px;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-primary);
}

.nav-link:hover i, .nav-link.active i {
    color: var(--neon-cyan);
    opacity: 1;
}

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

.menu-toggle {
    display: none;
    background: transparent;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ----------------------------------
   SECTIONS GENERAL
---------------------------------- */
section {
    padding: 100px 2rem;
    max-width: var(--container-width);
    margin: 0 auto;
    position: relative;
}

.section-header {
    margin-bottom: 4rem;
}

.section-tag {
    font-family: var(--font-mono);
    color: var(--neon-cyan);
    font-size: 0.9rem;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    display: inline-block;
}

.title-bar {
    width: 80px;
    height: 4px;
    background: var(--grad-primary);
    margin-top: 0.8rem;
    border-radius: 2px;
}

/* ----------------------------------
   BUTTONS
---------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1.8rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--grad-primary);
    color: var(--bg-dark);
    box-shadow: var(--glow-shadow);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--neon-purple) 0%, var(--neon-cyan) 100%);
    opacity: 0;
    z-index: -1;
    transition: var(--transition-smooth);
}

.btn-primary:hover {
    box-shadow: 0 0 30px rgba(0, 242, 254, 0.45);
    transform: translateY(-2px);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

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

.btn-outline:hover {
    border-color: transparent;
    color: var(--bg-dark);
    box-shadow: var(--glow-shadow-purple);
    transform: translateY(-2px);
}

.btn-outline:hover::before {
    opacity: 1;
}

/* ----------------------------------
   HERO SECTION
---------------------------------- */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: calc(var(--nav-height) + 40px);
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.welcome-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(0, 242, 254, 0.08);
    border: 1px solid rgba(0, 242, 254, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    color: var(--neon-cyan);
    font-family: var(--font-mono);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

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

.hero-actions {
    display: flex;
    gap: 1.5rem;
}

/* Hero Avatar with floating glass layout */
.hero-avatar-area {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.avatar-frame {
    position: relative;
    width: 320px;
    height: 320px;
    border-radius: 24%;
    padding: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    animation: morphFrame 8s ease-in-out infinite alternate;
}

.avatar-glow-ring {
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 24%;
    background: var(--grad-primary);
    z-index: -1;
    opacity: 0.7;
    filter: blur(12px);
    animation: morphFrame 8s ease-in-out infinite alternate, rotateGlow 12s linear infinite;
}

.avatar-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

@keyframes morphFrame {
    0% {
        border-radius: 24% 76% 35% 65% / 27% 53% 47% 73%;
    }
    100% {
        border-radius: 76% 24% 65% 35% / 53% 27% 73% 47%;
    }
}

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

.scroll-indicator {
    align-self: center;
    margin-top: 4rem;
}

.mouse-icon {
    width: 28px;
    height: 48px;
    border: 2px solid var(--text-muted);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.mouse-icon:hover {
    border-color: var(--neon-cyan);
}

.wheel {
    width: 4px;
    height: 10px;
    background-color: var(--neon-cyan);
    border-radius: 2px;
    animation: scrollWheel 1.5s infinite ease-in-out;
}

@keyframes scrollWheel {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(12px);
        opacity: 0;
    }
}

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

.about-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.about-highlights {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.highlight-icon {
    font-size: 1.4rem;
    background: rgba(155, 81, 224, 0.1);
    border: 1px solid rgba(155, 81, 224, 0.25);
    color: var(--neon-purple);
    width: 46px;
    height: 46px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.highlight-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
}

/* About Statistics - glassmorphism grid */
.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: var(--bg-card);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--border-color);
    padding: 2.2rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 242, 254, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-hover);
    box-shadow: var(--glow-shadow);
}

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

.stat-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

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

/* ----------------------------------
   SKILLS SECTION
---------------------------------- */
.skills-container {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 760px;
    margin: 0 auto;
    gap: 2.5rem;
}

.skill-category {
    background: var(--bg-card);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    transition: var(--transition-smooth);
}

.skill-category:hover {
    border-color: rgba(155, 81, 224, 0.25);
    box-shadow: var(--glow-shadow-purple);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
}

.category-header i {
    font-size: 1.5rem;
    color: var(--neon-cyan);
}

.category-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
}

.skill-list {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.skill-item {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.progress {
    height: 100%;
    background: var(--grad-primary);
    border-radius: 10px;
    position: relative;
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.5);
}

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

.project-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 2.2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
    min-height: 380px;
    position: relative;
    overflow: hidden;
}

.project-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--grad-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.project-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), var(--glow-shadow);
}

.project-card:hover::after {
    transform: scaleX(1);
}

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

.project-badge {
    background: rgba(0, 242, 254, 0.1);
    border: 1px solid rgba(0, 242, 254, 0.2);
    color: var(--neon-cyan);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    padding: 0.35rem 0.8rem;
    border-radius: 50px;
}

.code-icon {
    font-size: 1.5rem;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.project-card:hover .code-icon {
    color: var(--neon-purple);
    transform: rotate(10deg);
}

.project-card-body h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    transition: var(--transition-fast);
}

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

.project-card-body p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.8rem;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.project-tech span {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.03);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.project-card-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.2rem;
    font-size: 0.85rem;
}

.project-link-dummy {
    font-family: var(--font-mono);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ----------------------------------
   CONTACT SECTION
---------------------------------- */
.contact-container {
    background: var(--bg-card);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 3.5rem;
    transition: var(--transition-smooth);
}

.contact-container:hover {
    border-color: var(--border-hover);
    box-shadow: var(--glow-shadow);
}

.contact-card {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
}

.contact-info-list h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-info-list p {
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.info-item {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 2rem;
    align-items: center;
}

.info-item i {
    font-size: 1.3rem;
    color: var(--neon-cyan);
    background: rgba(0, 242, 254, 0.08);
    border: 1px solid rgba(0, 242, 254, 0.2);
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-item div span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.15rem;
}

.info-item div a, .info-item div span:last-child {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-primary);
}

.info-item div a:hover {
    color: var(--neon-cyan);
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
}

.form-group input, .form-group textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 0.9rem 1.2rem;
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-group input:focus, .form-group textarea:focus {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.15);
}

.btn-submit {
    align-self: flex-start;
    border: none;
}

/* ----------------------------------
   FOOTER
---------------------------------- */
.footer {
    border-top: 1px solid var(--border-color);
    padding: 3rem 2rem;
    background: rgba(4, 5, 11, 0.8);
    position: relative;
    z-index: 5;
}

.footer-container {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.footer-socials {
    display: flex;
    gap: 1.5rem;
}

.footer-socials a {
    font-size: 1.2rem;
    color: var(--text-muted);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-socials a:hover {
    color: var(--neon-cyan);
    border-color: rgba(0, 242, 254, 0.25);
    background: rgba(0, 242, 254, 0.05);
    transform: translateY(-3px);
}

/* ----------------------------------
   RESPONSIVE LAYOUTS
---------------------------------- */
@media (max-width: 1024px) {
    :root {
        --nav-height: 70px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
    }
    
    .about-container, .hero-container, .contact-card {
        gap: 2.5rem;
    }
    
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    section {
        padding: 70px 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* Navigation responsive menu */
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: var(--nav-height);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--nav-height));
        background: rgba(7, 9, 19, 0.95);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition-smooth);
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .welcome-badge {
        justify-content: center;
    }
    
    .hero-desc {
        margin: 0 auto 2.5rem auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-avatar-area {
        order: -1;
    }
    
    .avatar-frame {
        width: 260px;
        height: 260px;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-stats {
        order: 1;
    }
    
    .skills-container {
        grid-template-columns: 1fr;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-card {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-container {
        padding: 2.2rem;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}
