/* ========================================
   BENTO BOX FREELANCER PORTFOLIO
   Modern, Mobile-First Design with Sparkle Effects
   ======================================== */

/* CSS Variables */
:root {
    --bg-dark: #030014;
    --bg-card: rgba(15, 15, 25, 0.6);
    --bg-card-hover: rgba(25, 25, 40, 0.8);
    --border-color: rgba(139, 92, 246, 0.2);
    --border-glow: rgba(139, 92, 246, 0.5);
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    --accent-purple: #8b5cf6;
    --accent-blue: #3b82f6;
    --accent-cyan: #06b6d4;
    --accent-green: #22c55e;
    --accent-orange: #f97316;
    --accent-pink: #ec4899;
    --gradient-primary: linear-gradient(135deg, #8b5cf6, #06b6d4);
    --gradient-gold: linear-gradient(135deg, #f59e0b, #fbbf24, #f59e0b);
    --gradient-rainbow: linear-gradient(90deg, #8b5cf6, #ec4899, #f97316, #22c55e, #06b6d4, #8b5cf6);
    --shadow-glow: 0 0 30px rgba(139, 92, 246, 0.3);
    --shadow-glow-strong: 0 0 60px rgba(139, 92, 246, 0.5);
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition: all 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* ========================================
   ANIMATED STARS BACKGROUND
   ======================================== */
.stars-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.stars, .stars2, .stars3 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: repeat;
    animation: twinkle 4s ease-in-out infinite;
}

.stars {
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #fff, transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 90px 40px, #fff, transparent),
        radial-gradient(2px 2px at 160px 120px, rgba(139,92,246,0.8), transparent),
        radial-gradient(1px 1px at 230px 80px, #fff, transparent),
        radial-gradient(2px 2px at 300px 150px, rgba(6,182,212,0.8), transparent),
        radial-gradient(1px 1px at 370px 60px, #fff, transparent),
        radial-gradient(2px 2px at 450px 200px, rgba(236,72,153,0.8), transparent);
    background-size: 500px 500px;
    opacity: 0.5;
}

.stars2 {
    background-image: 
        radial-gradient(1px 1px at 50px 100px, #fff, transparent),
        radial-gradient(2px 2px at 100px 50px, rgba(139,92,246,0.6), transparent),
        radial-gradient(1px 1px at 200px 180px, #fff, transparent),
        radial-gradient(2px 2px at 350px 90px, rgba(6,182,212,0.6), transparent),
        radial-gradient(1px 1px at 400px 250px, #fff, transparent);
    background-size: 450px 450px;
    animation-delay: 1s;
    opacity: 0.4;
}

.stars3 {
    background-image: 
        radial-gradient(1px 1px at 80px 200px, #fff, transparent),
        radial-gradient(2px 2px at 180px 100px, rgba(236,72,153,0.6), transparent),
        radial-gradient(1px 1px at 280px 250px, #fff, transparent),
        radial-gradient(2px 2px at 380px 180px, rgba(139,92,246,0.6), transparent);
    background-size: 400px 400px;
    animation-delay: 2s;
    opacity: 0.3;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* ========================================
   CURSOR GLOW EFFECT
   ======================================== */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    opacity: 0;
}

.cursor-glow.active {
    opacity: 1;
}

/* ========================================
   AMBIENT GLOW ORBS
   ======================================== */
.ambient-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
    animation: float 15s ease-in-out infinite;
}

.glow-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.glow-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.25) 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
    animation-delay: 5s;
}

.glow-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.2) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.1); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(20px, 30px) scale(1.05); }
}

/* ========================================
   FLOATING PARTICLES
   ======================================== */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(720deg);
        opacity: 0;
    }
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    position: relative;
    z-index: 10;
}

/* ========================================
   HEADER
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(3, 0, 20, 0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
    padding: 12px 0;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    text-decoration: none;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(139, 92, 246, 0.5);
    animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.5)); }
    50% { filter: drop-shadow(0 0 20px rgba(6, 182, 212, 0.7)); }
}

.nav {
    display: none;
    align-items: center;
    gap: 32px;
}

.nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.nav a:hover {
    color: var(--text-primary);
}

.nav-cta {
    background: var(--gradient-primary);
    color: var(--text-primary) !important;
    padding: 8px 20px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.nav-cta:hover {
    opacity: 0.9;
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.5);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(3, 0, 20, 0.95);
    backdrop-filter: blur(20px);
    padding: 24px;
    display: none;
    flex-direction: column;
    gap: 16px;
    z-index: 999;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.mobile-menu a:hover {
    color: var(--text-primary);
}

/* ========================================
   BENTO GRID SYSTEM
   ======================================== */
.bento-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr;
}

.bento-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.bento-card:hover {
    background: rgba(20, 20, 35, 0.8);
    border-color: rgba(139, 92, 246, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(139, 92, 246, 0.15);
}

/* ========================================
   HERO SECTION
   ======================================== */
.bento-hero {
    padding: 100px 0 40px;
}

.hero-grid {
    grid-template-columns: 1fr;
}

/* Intro Card */
.card-intro {
    grid-column: span 1;
    padding: 32px 24px;
}

.greeting {
    color: var(--accent-purple);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.card-intro h1 {
    font-size: 32px;
    font-weight: 800;
    margin: 8px 0;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 5s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.card-intro .title {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.card-intro .desc {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.intro-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: btnShine 3s infinite;
}

@keyframes btnShine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--accent-purple);
    background: rgba(139, 92, 246, 0.1);
}

.btn-full {
    width: 100%;
}

/* Avatar Card */
.card-avatar {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 32px;
}

.avatar-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-weight: 800;
    color: white;
    position: relative;
    animation: avatarPulse 3s ease-in-out infinite;
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.5);
}

.avatar-placeholder::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b5cf6, #06b6d4, #ec4899, #8b5cf6);
    background-size: 400% 400%;
    z-index: -1;
    animation: rotateBorder 4s linear infinite;
}

@keyframes avatarPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 40px rgba(139, 92, 246, 0.5); }
    50% { transform: scale(1.05); box-shadow: 0 0 60px rgba(6, 182, 212, 0.6); }
}

@keyframes rotateBorder {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 20px;
    font-size: 13px;
    color: var(--accent-green);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Stat Cards */
.card-stat {
    text-align: center;
    padding: 24px 16px;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(139, 92, 246, 0.5);
    animation: numberGlow 2s ease-in-out infinite;
}

@keyframes numberGlow {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.5)); }
    50% { filter: drop-shadow(0 0 25px rgba(6, 182, 212, 0.7)); }
}

.stat-label {
    color: var(--text-muted);
    font-size: 13px;
    margin-top: 4px;
}

/* Quick Contact Card */
.card-contact-quick {
    padding: 20px;
}

.quick-contact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px 8px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item:hover {
    background: rgba(139, 92, 246, 0.2);
}

.contact-item svg {
    width: 20px;
    height: 20px;
    color: var(--accent-purple);
}

.contact-item span {
    font-size: 11px;
    color: var(--text-secondary);
}

/* ========================================
   SECTIONS
   ======================================== */
.bento-section {
    padding: 60px 0;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 32px;
    text-align: center;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
}

/* ========================================
   SKILLS SECTION
   ======================================== */
.skills-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.card-skill {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 200px;
}

.skill-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    background: rgba(139, 92, 246, 0.15);
    position: relative;
    overflow: hidden;
}

.skill-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: iconShimmer 3s ease-in-out infinite;
}

@keyframes iconShimmer {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

.skill-icon svg {
    width: 28px;
    height: 28px;
    color: var(--accent-purple);
}

.card-skill h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.card-skill p {
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.5;
    margin-top: auto;
}

/* Skill Level Bar */
.skill-level {
    margin: 12px 0;
}

.skill-bar {
    height: 6px;
    background: var(--border-color);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 6px;
}

.skill-progress {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 3px;
    width: 0;
    transition: width 1s ease-out;
    position: relative;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

.skill-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: skillShine 2s infinite;
}

@keyframes skillShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.skill-label {
    font-size: 12px;
    color: var(--accent-green);
    font-weight: 500;
}

/* Skill Colors */
.skill-premiere .skill-icon { background: rgba(153, 0, 255, 0.15); }
.skill-premiere .skill-icon svg { color: #9900ff; }

.skill-ae .skill-icon { background: rgba(153, 0, 255, 0.15); }
.skill-ae .skill-icon svg { color: #9900ff; }

.skill-ps .skill-icon { background: rgba(0, 162, 255, 0.15); }
.skill-ps .skill-icon svg { color: #00a2ff; }

.skill-web .skill-icon { background: rgba(6, 182, 212, 0.15); }
.skill-web .skill-icon svg { color: var(--accent-cyan); }

.skill-ads .skill-icon { background: rgba(249, 115, 22, 0.15); }
.skill-ads .skill-icon svg { color: var(--accent-orange); }

.skill-ai .skill-icon { background: rgba(236, 72, 153, 0.15); }
.skill-ai .skill-icon svg { color: var(--accent-pink); }

/* Vibe Coding Skill */
.skill-vibe .skill-icon { 
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(6, 182, 212, 0.2)); 
}
.skill-vibe .skill-icon svg { color: var(--accent-cyan); }

.platform-tag.vibe {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(6, 182, 212, 0.2));
    border: 1px solid rgba(6, 182, 212, 0.4);
    color: var(--accent-cyan);
}

/* Platform Tags */
.web-platforms, .ads-platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 12px 0;
}

.platform-tag {
    padding: 4px 12px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    font-size: 12px;
    color: var(--accent-purple);
}

.platform-tag.google {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
    color: var(--accent-blue);
}

.platform-tag.meta {
    background: rgba(6, 182, 212, 0.1);
    border-color: rgba(6, 182, 212, 0.3);
    color: var(--accent-cyan);
}

/* AI Badge */
.ai-badge {
    margin-top: 16px;
}

.ai-badge span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(139, 92, 246, 0.2));
    border: 1px solid rgba(236, 72, 153, 0.3);
    border-radius: 20px;
    font-size: 13px;
    color: var(--accent-pink);
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.card-service {
    text-align: center;
}

.service-icon {
    font-size: 40px;
    margin-bottom: 16px;
    animation: serviceIconFloat 3s ease-in-out infinite;
}

@keyframes serviceIconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.card-service h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.card-service p {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 12px;
}

/* Service Program Tags - AI Badge Style */
.service-programs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
    justify-content: center;
}

.program-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.15), rgba(139, 92, 246, 0.15));
    border: 1px solid rgba(236, 72, 153, 0.3);
    border-radius: 20px;
    font-size: 12px;
    color: var(--accent-pink);
    font-weight: 500;
    transition: var(--transition);
}

.program-tag:hover {
    transform: translateY(-2px);
    filter: brightness(1.2);
}

/* Service-based Color Classes */
/* Video Düzenleme - Mor */
.program-tag.color-purple {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(168, 85, 247, 0.15));
    border-color: rgba(139, 92, 246, 0.4);
    color: #a78bfa;
}

/* Motion Graphics - Mavi */
.program-tag.color-blue {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(37, 99, 235, 0.15));
    border-color: rgba(59, 130, 246, 0.4);
    color: #60a5fa;
}

/* Tasarım - Turuncu */
.program-tag.color-orange {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.15), rgba(234, 88, 12, 0.15));
    border-color: rgba(249, 115, 22, 0.4);
    color: #fb923c;
}

/* VFX - Pembe */
.program-tag.color-pink {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.15), rgba(219, 39, 119, 0.15));
    border-color: rgba(236, 72, 153, 0.4);
    color: #f472b6;
}

/* Web Tasarım - Yeşil */
.program-tag.color-green {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(22, 163, 74, 0.15));
    border-color: rgba(34, 197, 94, 0.4);
    color: #4ade80;
}

/* Dijital Reklam - Cyan */
.program-tag.color-cyan {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(34, 211, 238, 0.15));
    border-color: rgba(6, 182, 212, 0.4);
    color: #22d3ee;
}

/* AI Görsel - Sarı */
.program-tag.color-yellow {
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.15), rgba(250, 204, 21, 0.15));
    border-color: rgba(234, 179, 8, 0.4);
    color: #fbbf24;
}

/* Vibe Coding - Gradient */
.program-tag.color-gradient {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(6, 182, 212, 0.15));
    border-color: rgba(6, 182, 212, 0.4);
    color: var(--accent-cyan);
}

.service-features {
    list-style: none;
    text-align: left;
}

.service-features li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 13px;
    color: var(--text-secondary);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-size: 12px;
}

.service-features.horizontal {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    justify-content: center;
}

.service-features.horizontal li {
    padding-left: 18px;
    margin-bottom: 0;
}

/* ========================================
   PORTFOLIO SECTION - FOLDER STYLE
   ======================================== */

/* Folder Grid */
.folder-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.folder-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.folder-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(139, 92, 246, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.folder-icon {
    position: relative;
    width: 80px;
    height: 70px;
    margin: 0 auto 16px;
}

.folder-icon svg {
    width: 100%;
    height: 100%;
    color: var(--accent-purple);
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.3));
}

.folder-badge {
    position: absolute;
    bottom: 5px;
    right: 5px;
    font-size: 24px;
}

.folder-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.folder-count {
    font-size: 12px;
    color: var(--text-muted);
}

/* Folder Content Panel */
.folder-content {
    display: none;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    animation: slideIn 0.3s ease;
}

.folder-content.active {
    display: block;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Folder Tabs */
.folder-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    padding: 12px 16px;
    background: rgba(3, 0, 20, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    overflow-x: auto;
    scrollbar-width: none;
    
    /* Sticky positioning */
    position: sticky;
    top: 70px; /* Header height + small gap */
    z-index: 100;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.folder-tabs::-webkit-scrollbar {
    display: none;
}

.folder-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    flex: 1;
    justify-content: center;
}

.folder-tab:hover {
    background: rgba(139, 92, 246, 0.1);
    color: var(--text-primary);
}

.folder-tab.active {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(6, 182, 212, 0.1));
    border-color: rgba(139, 92, 246, 0.4);
    color: var(--accent-purple);
}

.folder-tab .tab-icon {
    font-size: 18px;
}

.folder-tab .tab-label {
    font-size: 13px;
}

@media (max-width: 576px) {
    .folder-tabs {
        gap: 4px;
        padding: 6px;
    }
    
    .folder-tab {
        padding: 8px 12px;
        flex: none;
    }
    
    .folder-tab .tab-label {
        display: none;
    }
    
    .folder-tab .tab-icon {
        font-size: 20px;
    }
}

.folder-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.back-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 8px;
    color: var(--accent-purple);
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.back-btn:hover {
    background: rgba(139, 92, 246, 0.2);
}

.back-btn svg {
    width: 18px;
    height: 18px;
}

.folder-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.project-card {
    background: rgba(20, 20, 35, 0.5);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.project-card:hover {
    border-color: rgba(139, 92, 246, 0.4);
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.project-thumb {
    aspect-ratio: 16 / 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    position: relative;
    overflow: hidden;
}

.project-thumb.video { background: linear-gradient(135deg, #1a1a2e, #16213e); }
.project-thumb.web { background: linear-gradient(135deg, #0f3460, #16213e); }
.project-thumb.ai { background: linear-gradient(135deg, #3d1a4e, #1a1a2e); }
.project-thumb.tasarim { background: linear-gradient(135deg, #2d1b4e, #1a1a2e); }

/* Real image thumbnails */
.project-thumb.has-image {
    background: #0a0a15;
}

.project-thumb.has-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .project-thumb.has-image img {
    transform: scale(1.05);
}

.project-thumb::after {
    content: 'Görüntüle';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-thumb::after {
    opacity: 1;
}

.project-info {
    padding: 12px;
}

.project-info h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.project-info span {
    font-size: 11px;
    color: var(--text-muted);
}

/* ========================================
   PROJECT MODAL
   ======================================== */
.project-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.project-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    animation: modalIn 0.3s ease;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.modal-close svg {
    width: 20px;
    height: 20px;
    color: white;
}

/* Gallery */
.modal-gallery {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #0a0a0f;
    display: flex;
    align-items: center;
}

.gallery-container {
    width: 100%;
    height: 100%;
    display: flex;
    overflow: hidden;
}

.gallery-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    background: linear-gradient(135deg, #1a1a2e, #0f0f1a);
    transition: transform 0.4s ease;
}

.gallery-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Video Slide */
.gallery-slide.video-slide {
    padding: 20px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Video dot indicator */
.gallery-dot.video-dot {
    width: auto;
    padding: 0 8px;
    border-radius: 10px;
    font-size: 8px;
    line-height: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(139, 92, 246, 0.3);
    border: 1px solid rgba(139, 92, 246, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 5;
}

.gallery-nav:hover {
    background: rgba(139, 92, 246, 0.5);
}

.gallery-nav svg {
    width: 24px;
    height: 24px;
    color: white;
}

.gallery-nav.prev { left: 16px; }
.gallery-nav.next { right: 16px; }

/* Gallery Dots */
.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: rgba(0, 0, 0, 0.3);
}

.gallery-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.gallery-dot.active {
    background: var(--accent-purple);
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

/* Modal Info */
.modal-info {
    padding: 24px;
}

.modal-info h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.modal-info p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.6;
}

.modal-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 5px;
}

.modal-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(6, 182, 212, 0.15));
    border: 1px solid rgba(139, 92, 246, 0.4);
    border-radius: 25px;
    font-size: 13px;
    font-weight: 500;
    color: #a78bfa;
    transition: all 0.3s ease;
    cursor: default;
}

.modal-tag:nth-child(6n+1) {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(168, 85, 247, 0.15));
    border-color: rgba(139, 92, 246, 0.4);
    color: #a78bfa;
}

.modal-tag:nth-child(6n+2) {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(34, 211, 238, 0.15));
    border-color: rgba(6, 182, 212, 0.4);
    color: #22d3ee;
}

.modal-tag:nth-child(6n+3) {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(219, 39, 119, 0.15));
    border-color: rgba(236, 72, 153, 0.4);
    color: #f472b6;
}

.modal-tag:nth-child(6n+4) {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(22, 163, 74, 0.15));
    border-color: rgba(34, 197, 94, 0.4);
    color: #4ade80;
}

.modal-tag:nth-child(6n+5) {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(234, 88, 12, 0.15));
    border-color: rgba(249, 115, 22, 0.4);
    color: #fb923c;
}

.modal-tag:nth-child(6n+6) {
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.2), rgba(250, 204, 21, 0.15));
    border-color: rgba(234, 179, 8, 0.4);
    color: #fbbf24;
}

.modal-tag:hover {
    transform: translateY(-2px);
    filter: brightness(1.2);
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.3);
}

/* Responsive */
@media (min-width: 640px) {
    .folder-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .folder-icon {
        width: 100px;
        height: 90px;
    }
    
    .folder-badge {
        font-size: 32px;
    }
    
    .folder-card h3 {
        font-size: 18px;
    }
}

/* ========================================
   CONTACT SECTION
   ======================================== */

/* Horizontal Contact Layout */
.contact-horizontal {
    width: 100%;
}

.contact-horizontal-content {
    display: flex;
    gap: 40px;
    align-items: stretch;
}

.contact-form-side {
    flex: 1;
    min-width: 0;
}

.contact-form-side h3,
.contact-links-side h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.horizontal-form .form-row {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.horizontal-form .form-row:last-child {
    margin-bottom: 0;
}

.horizontal-form .form-group {
    flex: 1;
    margin-bottom: 0;
}

.horizontal-form .form-group-message {
    flex: 3;
}

.horizontal-form .form-group-submit {
    flex: 0;
    display: flex;
    align-items: center;
}

.horizontal-form .form-group-submit .btn {
    padding: 18px 40px;
    min-height: 56px;
    white-space: nowrap;
    font-size: 16px;
    margin-top: -10px;
}

/* Contact Links Side */
.contact-links-side {
    width: 200px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    padding-left: 40px;
    border-left: 1px solid var(--border-color);
}

.contact-icons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    flex: 1;
}

.contact-icon-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 12px;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: var(--transition);
}

.contact-icon-btn:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.4);
    transform: translateY(-2px);
}

.contact-icon-btn .icon {
    font-size: 28px;
}

.contact-icon-btn .label {
    font-size: 11px;
    color: var(--text-secondary);
    text-align: center;
}

/* Responsive Horizontal Contact */
@media (max-width: 992px) {
    .contact-horizontal-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .contact-links-side {
        width: 100%;
        padding-left: 0;
        padding-top: 30px;
        border-left: none;
        border-top: 1px solid var(--border-color);
    }
    
    .contact-icons {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .horizontal-form .form-row {
        flex-direction: column;
        gap: 16px;
    }
    
    .horizontal-form .form-group-submit .btn {
        min-height: 48px;
    }
}

@media (max-width: 576px) {
    .contact-icons {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Legacy card styles */
.card-form {
    grid-column: span 1;
}

.card-form h3,
.card-info h3,
.card-hours h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 14px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-purple);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Contact Methods */
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--bg-dark);
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: var(--transition);
}

.contact-method:hover {
    background: rgba(139, 92, 246, 0.1);
}

.method-icon {
    font-size: 24px;
}

.method-details {
    display: flex;
    flex-direction: column;
}

.method-label {
    font-size: 12px;
    color: var(--text-muted);
}

.method-value {
    font-size: 14px;
    color: var(--text-primary);
}

/* Hours */
.hours-list {
    margin-bottom: 16px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
}

.hours-item span:first-child {
    color: var(--text-secondary);
}

.response-note {
    font-size: 13px;
    color: var(--accent-green);
    padding: 12px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: var(--radius-sm);
    text-align: center;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    padding: 40px 0 20px;
    position: relative;
    z-index: 10;
    background: rgba(3, 0, 20, 0.5);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    text-align: center;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 13px;
    margin-top: 8px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 13px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    font-size: 20px;
    text-decoration: none;
    transition: var(--transition);
}

.footer-social a:hover {
    transform: scale(1.2);
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.7));
}

.footer-bottom {
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 12px;
}

/* ========================================
   SUCCESS MESSAGE
   ======================================== */
.success-message {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.success-message.active {
    display: flex;
}

.success-content {
    text-align: center;
    padding: 40px;
}

.success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--accent-green);
    border-radius: 50%;
    font-size: 40px;
    color: white;
    margin-bottom: 20px;
    box-shadow: 0 0 40px rgba(34, 197, 94, 0.5);
    animation: successPulse 1s ease-in-out infinite;
}

@keyframes successPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 40px rgba(34, 197, 94, 0.5); }
    50% { transform: scale(1.1); box-shadow: 0 0 60px rgba(34, 197, 94, 0.7); }
}

.success-content p {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.success-sub {
    color: var(--text-muted);
    font-size: 14px !important;
    font-weight: 400 !important;
}

/* ========================================
   RESPONSIVE - TABLET
   ======================================== */
@media (min-width: 640px) {
    .container {
        padding: 0 24px;
    }

    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .card-intro {
        grid-column: span 2;
    }

    .card-intro h1 {
        font-size: 40px;
    }

    .card-wide {
        grid-column: span 2;
    }

    .card-form {
        grid-column: span 2;
    }

    .section-title {
        font-size: 32px;
    }

    /* Skills Grid Tablet */
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 1fr;
    }

    .skills-grid .card-wide {
        grid-column: span 2;
    }
}

/* ========================================
   RESPONSIVE - DESKTOP
   ======================================== */
@media (min-width: 1024px) {
    .nav {
        display: flex;
    }

    .mobile-menu-btn {
        display: none;
    }

    .bento-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    /* Hero Grid */
    .hero-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: auto auto;
    }

    .card-intro {
        grid-column: span 2;
        grid-row: span 2;
        padding: 40px;
    }

    .card-intro h1 {
        font-size: 48px;
    }

    .card-avatar {
        grid-column: span 1;
        grid-row: span 2;
    }

    .card-stat {
        grid-column: span 1;
    }

    .card-contact-quick {
        grid-column: span 1;
    }

    /* Skills Grid */
    .skills-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 1fr;
    }

    .skills-grid .card-wide {
        grid-column: span 1;
    }

    /* Services Grid - 3-3-2 Layout */
    .services-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .services-grid .card-service {
        grid-column: span 2;
    }

    .services-grid .card-wide {
        grid-column: span 3;
    }

    /* Portfolio Grid */
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Contact Grid */
    .contact-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }

    .card-form {
        grid-column: span 1;
        grid-row: span 2;
    }

    /* Footer */
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bento-card {
    animation: fadeInUp 0.5s ease-out forwards;
}

.bento-card:nth-child(1) { animation-delay: 0.05s; }
.bento-card:nth-child(2) { animation-delay: 0.1s; }
.bento-card:nth-child(3) { animation-delay: 0.15s; }
.bento-card:nth-child(4) { animation-delay: 0.2s; }
.bento-card:nth-child(5) { animation-delay: 0.25s; }
.bento-card:nth-child(6) { animation-delay: 0.3s; }

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
