/* ========================================
   KARAKUTUVERI - PREMIUM LANDING PAGE CSS
   ======================================== */

/* CSS Custom Properties */
:root {
    /* Colors */
    --bg-main: #0B0F1A;
    --bg-secondary: #111827;
    --bg-tertiary: #1F2937;
    --bg-card: rgba(17, 24, 39, 0.6);
    
    /* Neon Colors */
    --neon-blue: #38BDF8;
    --neon-purple: #8B5CF6;
    --neon-cyan: #22D3EE;
    --neon-pink: #EC4899;
    
    /* Text Colors */
    --text-primary: #F9FAFB;
    --text-secondary: #9CA3AF;
    --text-muted: #6B7280;
    
    /* Glow Effects */
    --glow-blue: 0 0 20px rgba(56, 189, 248, 0.4), 0 0 40px rgba(56, 189, 248, 0.2);
    --glow-purple: 0 0 20px rgba(139, 92, 246, 0.4), 0 0 40px rgba(139, 92, 246, 0.2);
    --glow-cyan: 0 0 20px rgba(34, 211, 238, 0.4), 0 0 40px rgba(34, 211, 238, 0.2);
    --glow-intense: 0 0 30px rgba(56, 189, 248, 0.6), 0 0 60px rgba(139, 92, 246, 0.4), 0 0 100px rgba(56, 189, 248, 0.2);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--neon-blue) 0%, var(--neon-purple) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-blue) 100%);
    --gradient-text: linear-gradient(135deg, var(--neon-blue) 0%, var(--neon-purple) 50%, var(--neon-cyan) 100%);
    
    /* Glassmorphism */
    --glass-bg: rgba(17, 24, 39, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-blur: 20px;
    
    /* Typography */
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', var(--font-main);
    
    /* Spacing */
    --section-padding: clamp(4rem, 10vw, 8rem);
    --container-max: 1280px;
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 200ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   RESET & BASE STYLES
   ======================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

#smooth-wrapper {
    overflow: hidden;
}

#smooth-content {
    will-change: transform;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ========================================
   GLOW BUTTON STYLES
   ======================================== */
.glow-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.9rem;
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    transition: all var(--transition-base);
    overflow: hidden;
}

.glow-button::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient-primary);
    border-radius: 14px;
    opacity: 0;
    z-index: -1;
    transition: opacity var(--transition-base);
}

.glow-button:hover {
    border-color: transparent;
    box-shadow: var(--glow-blue);
    transform: translateY(-2px);
}

.glow-button:hover::before {
    opacity: 0.15;
}

.glow-button svg {
    transition: transform var(--transition-base);
}

.glow-button:hover svg {
    transform: translateX(4px);
}

.glow-button-intense {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    border: none;
    border-radius: 14px;
    color: var(--bg-main);
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-base);
    overflow: hidden;
}

.glow-button-intense::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.glow-button-intense:hover {
    box-shadow: var(--glow-intense);
    transform: translateY(-3px) scale(1.02);
}

.glow-button-intense:hover::before {
    opacity: 1;
}

.glow-button-intense svg {
    transition: transform var(--transition-base);
}

.glow-button-intense:hover svg {
    transform: translateX(4px);
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    background: rgba(11, 15, 26, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: all var(--transition-smooth);
}

.navbar.scrolled {
    padding: 0.75rem 0;
    background: rgba(11, 15, 26, 0.95);
}

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

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

.logo-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
}

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

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

.nav-link {
    position: relative;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color var(--transition-base);
}

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

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

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

.nav-cta {
    display: none;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    background: transparent;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.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: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: rgba(11, 15, 26, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-smooth);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    transform: translateY(20px);
    transition: transform var(--transition-smooth);
}

.mobile-menu.active .mobile-menu-content {
    transform: translateY(0);
}

.mobile-link {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all var(--transition-base);
}

.mobile-link:hover {
    color: var(--text-primary);
    text-shadow: var(--glow-blue);
}

.mobile-cta {
    margin-top: 1rem;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(56, 189, 248, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(34, 211, 238, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 0 1.5rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--neon-cyan);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 14px;
    transition: all var(--transition-base);
}

.btn-primary {
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: var(--bg-main);
}

.btn-primary:hover {
    box-shadow: var(--glow-intense);
    transform: translateY(-3px) scale(1.02);
}

.btn-secondary {
    padding: 1rem 2rem;
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    border-color: var(--neon-blue);
    box-shadow: var(--glow-blue);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--glass-border);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.75rem;
    animation: bounce 2s infinite;
    z-index: 10;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 12px;
    position: relative;
}

.wheel {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--neon-blue);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(16px); }
}

/* ========================================
   SECTION COMMON STYLES
   ======================================== */
section {
    padding: var(--section-padding) 0;
}

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

.section-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.2);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--neon-blue);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services-section {
    background: 
        radial-gradient(ellipse at 0% 50%, rgba(56, 189, 248, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 50%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 1.5rem;
}

.service-card {
    position: relative;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2rem;
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    transition: all var(--transition-smooth);
    transform-style: preserve-3d;
    perspective: 1000px;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-smooth);
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(56, 189, 248, 0.3);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        var(--glow-blue);
}

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

.service-card:hover .card-glow {
    opacity: 1;
}

.card-content {
    position: relative;
    z-index: 1;
}

.card-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(56, 189, 248, 0.1);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    transition: all var(--transition-base);
}

.card-icon svg {
    width: 40px;
    height: 40px;
}

.card-icon.purple {
    background: rgba(139, 92, 246, 0.1);
}

.card-icon.cyan {
    background: rgba(34, 211, 238, 0.1);
}

.service-card:hover .card-icon {
    box-shadow: var(--glow-blue);
    transform: scale(1.05);
}

.service-card:hover .card-icon.purple {
    box-shadow: var(--glow-purple);
}

.service-card:hover .card-icon.cyan {
    box-shadow: var(--glow-cyan);
}

.card-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.card-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.card-tags span {
    padding: 0.35rem 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ========================================
   TECH STACK SECTION
   ======================================== */
.tech-section {
    position: relative;
    overflow: hidden;
}

.tech-orbs-container {
    position: relative;
    height: 400px;
    margin-bottom: 4rem;
}

.tech-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.orbit-1 {
    width: 300px;
    height: 300px;
    animation: rotate 30s linear infinite;
}

.orbit-2 {
    width: 450px;
    height: 450px;
    animation: rotate 40s linear infinite reverse;
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.tech-orb {
    position: absolute;
    width: 70px;
    height: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--neon-blue);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all var(--transition-base);
    cursor: pointer;
}

.orbit-1 .tech-orb:nth-child(1) { top: -35px; left: 50%; transform: translateX(-50%); }
.orbit-1 .tech-orb:nth-child(2) { bottom: -35px; left: 50%; transform: translateX(-50%); }
.orbit-1 .tech-orb:nth-child(3) { top: 50%; right: -35px; transform: translateY(-50%); }

.orbit-2 .tech-orb:nth-child(1) { top: 10%; left: 5%; }
.orbit-2 .tech-orb:nth-child(2) { top: 10%; right: 5%; }
.orbit-2 .tech-orb:nth-child(3) { bottom: 10%; left: 50%; transform: translateX(-50%); }

.tech-orb svg {
    width: 28px;
    height: 28px;
    animation: counterRotate 30s linear infinite;
}

.orbit-2 .tech-orb svg {
    animation: counterRotate 40s linear infinite reverse;
}

@keyframes counterRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

.orb-glow {
    position: absolute;
    inset: -5px;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0;
    filter: blur(10px);
    transition: opacity var(--transition-base);
    z-index: -1;
}

.tech-orb:hover {
    transform: scale(1.15);
    border-color: var(--neon-blue);
    box-shadow: var(--glow-blue);
}

.tech-orb:hover .orb-glow {
    opacity: 0.3;
}

.orb-label {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-secondary);
    white-space: nowrap;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.tech-orb:hover .orb-label {
    opacity: 1;
}

.tech-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.center-core {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.core-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
    animation: pulseRing 3s ease-out infinite;
}

.ring-1 {
    width: 100%;
    height: 100%;
    border-color: rgba(56, 189, 248, 0.3);
    animation-delay: 0s;
}

.ring-2 {
    width: 130%;
    height: 130%;
    border-color: rgba(139, 92, 246, 0.2);
    animation-delay: 1s;
}

.ring-3 {
    width: 160%;
    height: 160%;
    border-color: rgba(34, 211, 238, 0.1);
    animation-delay: 2s;
}

@keyframes pulseRing {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

.core-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    animation: float 4s ease-in-out infinite;
}

.core-icon svg {
    width: 36px;
    height: 36px;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.tech-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.tech-category {
    text-align: center;
}

.tech-category h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.tech-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.tech-items span {
    padding: 0.5rem 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--text-primary);
    transition: all var(--transition-base);
}

.tech-items span:hover {
    border-color: var(--neon-blue);
    box-shadow: var(--glow-blue);
    transform: translateY(-2px);
}

/* ========================================
   PROCESS TIMELINE SECTION
   ======================================== */
.process-section {
    background: 
        radial-gradient(ellipse at 50% 0%, rgba(139, 92, 246, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(56, 189, 248, 0.05) 0%, transparent 50%);
}

.timeline-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--glass-border);
    transform: translateX(-50%);
}

.timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--gradient-primary);
    transition: height var(--transition-slow);
}

.timeline-items {
    position: relative;
}

.timeline-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    margin-bottom: 4rem;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
    text-align: right;
}

.timeline-item:nth-child(even) {
    text-align: left;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-main);
    border: 2px solid var(--glass-border);
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    z-index: 1;
    transition: all var(--transition-base);
}

.timeline-item.active .timeline-dot,
.timeline-item:hover .timeline-dot {
    border-color: var(--neon-blue);
    color: var(--neon-blue);
    box-shadow: var(--glow-blue);
}

.dot-pulse {
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0;
    animation: none;
}

.timeline-item.active .dot-pulse {
    animation: dotPulse 2s ease-out infinite;
}

@keyframes dotPulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.5); opacity: 0; }
}

.timeline-content {
    width: calc(50% - 60px);
    padding: 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    transition: all var(--transition-base);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 60px;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 60px;
}

.timeline-item:hover .timeline-content,
.timeline-item.active .timeline-content {
    border-color: rgba(56, 189, 248, 0.3);
    box-shadow: var(--glow-blue);
    transform: translateY(-5px);
}

.timeline-icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(56, 189, 248, 0.1);
    border-radius: 12px;
    color: var(--neon-blue);
    margin-bottom: 1rem;
}

.timeline-icon svg {
    width: 24px;
    height: 24px;
}

.timeline-content h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

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

.project-card {
    position: relative;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    overflow: hidden;
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    transition: all var(--transition-smooth);
}

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

.project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-mockup {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.project-mockup.purple {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(236, 72, 153, 0.1) 100%);
}

.project-mockup.cyan {
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.15) 0%, rgba(56, 189, 248, 0.1) 100%);
}

.project-mockup.green {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(16, 185, 129, 0.1) 100%);
}

.project-mockup.orange {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.15) 0%, rgba(234, 179, 8, 0.1) 100%);
}

.project-mockup.pink {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.15) 0%, rgba(219, 39, 119, 0.1) 100%);
}

.project-mockup.teal {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.15) 0%, rgba(34, 211, 238, 0.1) 100%);
}

/* Falistan - Mystic Theme */
.project-mockup.mystic {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.2) 0%, rgba(219, 39, 119, 0.15) 50%, rgba(99, 102, 241, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.project-mockup.mystic::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(147, 51, 234, 0.3) 60deg,
        transparent 120deg,
        rgba(219, 39, 119, 0.3) 180deg,
        transparent 240deg,
        rgba(99, 102, 241, 0.3) 300deg,
        transparent 360deg
    );
    animation: mysticRotate 15s linear infinite;
    opacity: 0.5;
}

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

/* Fortune Mockup Content */
.fortune-mockup {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    height: 140px;
    overflow: hidden;
}

.fortune-crystal {
    width: 50px;
    height: 50px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.5), rgba(147, 51, 234, 0.4) 40%, rgba(99, 102, 241, 0.6) 70%, rgba(147, 51, 234, 0.8));
    border-radius: 50%;
    position: relative;
    animation: crystalGlow 3s ease-in-out infinite;
    box-shadow: 
        0 0 20px rgba(147, 51, 234, 0.6),
        0 0 40px rgba(147, 51, 234, 0.4),
        0 0 60px rgba(219, 39, 119, 0.2);
}

.fortune-crystal::before {
    content: '🔮';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
}

@keyframes crystalGlow {
    0%, 100% {
        box-shadow: 
            0 0 20px rgba(147, 51, 234, 0.6),
            0 0 40px rgba(147, 51, 234, 0.4),
            0 0 60px rgba(219, 39, 119, 0.2);
        transform: scale(1);
    }
    50% {
        box-shadow: 
            0 0 30px rgba(147, 51, 234, 0.8),
            0 0 60px rgba(147, 51, 234, 0.5),
            0 0 80px rgba(219, 39, 119, 0.3);
        transform: scale(1.05);
    }
}

.fortune-stars {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.fortune-stars .star {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    animation: starTwinkle 2s ease-in-out infinite;
}

.fortune-stars .star:nth-child(1) { top: 15%; left: 20%; animation-delay: 0s; }
.fortune-stars .star:nth-child(2) { top: 25%; left: 75%; animation-delay: 0.4s; }
.fortune-stars .star:nth-child(3) { top: 60%; left: 15%; animation-delay: 0.8s; }
.fortune-stars .star:nth-child(4) { top: 70%; left: 80%; animation-delay: 1.2s; }
.fortune-stars .star:nth-child(5) { top: 85%; left: 50%; animation-delay: 1.6s; }

@keyframes starTwinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
}

.fortune-cards {
    display: flex;
    gap: 8px;
    margin-top: 15px;
}

.tarot-card {
    width: 25px;
    height: 40px;
    background: linear-gradient(145deg, rgba(147, 51, 234, 0.6), rgba(99, 102, 241, 0.4));
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    animation: cardFloat 3s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(147, 51, 234, 0.3);
}

.tarot-card::before {
    content: '✨';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 10px;
}

.tarot-card:nth-child(1) { animation-delay: 0s; transform: rotate(-10deg); }
.tarot-card:nth-child(2) { animation-delay: 0.3s; transform: rotate(0deg); }
.tarot-card:nth-child(3) { animation-delay: 0.6s; transform: rotate(10deg); }

@keyframes cardFloat {
    0%, 100% { transform: translateY(0) rotate(var(--rotation, 0deg)); }
    50% { transform: translateY(-5px) rotate(var(--rotation, 0deg)); }
}

.tarot-card:nth-child(1) { --rotation: -10deg; }
.tarot-card:nth-child(2) { --rotation: 0deg; }
.tarot-card:nth-child(3) { --rotation: 10deg; }

/* Project Card Falistan Special Hover */
.project-card[data-project="falistan"]:hover .fortune-crystal {
    animation: crystalHover 0.5s ease forwards;
}

@keyframes crystalHover {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1.1); }
}

/* Category Title Styles */
.projects-category-title {
    text-align: center;
    margin-bottom: 2rem;
}

.category-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.category-badge.active {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(16, 185, 129, 0.2) 100%);
    border: 1px solid rgba(34, 197, 94, 0.4);
    color: #22C55E;
}

.category-badge.upcoming {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2) 0%, rgba(234, 179, 8, 0.2) 100%);
    border: 1px solid rgba(249, 115, 22, 0.4);
    color: #F97316;
}

/* Coming Soon Badge */
.project-link.coming-soon {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.8) 0%, rgba(234, 179, 8, 0.8) 100%);
}

/* QR Placeholder */
.mockup-qr {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
}

.qr-placeholder {
    width: 80px;
    height: 80px;
    background: 
        linear-gradient(90deg, rgba(255,255,255,0.1) 25%, transparent 25%),
        linear-gradient(rgba(255,255,255,0.1) 25%, transparent 25%);
    background-size: 20px 20px;
    border-radius: 8px;
    border: 2px solid rgba(34, 197, 94, 0.5);
}

/* Calendar Mockup */
.mockup-calendar {
    padding: 10px;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.calendar-grid::before {
    content: '';
    grid-column: span 7;
    height: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    margin-bottom: 8px;
}

.calendar-grid::after {
    content: '';
    grid-column: span 7;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

/* Visited Link Styles */
.project-overlay a.glow-button {
    text-decoration: none;
}

.mockup-screen {
    width: 100%;
    max-width: 280px;
    background: var(--bg-secondary);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform var(--transition-smooth);
}

.project-card:hover .mockup-screen {
    transform: scale(1.05) translateY(-5px);
}

.mockup-header {
    display: flex;
    gap: 6px;
    padding: 10px 12px;
    background: var(--bg-tertiary);
}

.mockup-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-muted);
}

.mockup-dot:nth-child(1) { background: #FF5F56; }
.mockup-dot:nth-child(2) { background: #FFBD2E; }
.mockup-dot:nth-child(3) { background: #27C93F; }

.mockup-content {
    padding: 12px;
    min-height: 120px;
}

.mockup-sidebar {
    width: 50px;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    float: left;
    margin-right: 12px;
}

.mockup-main {
    overflow: hidden;
}

.mockup-chart {
    width: 100%;
    height: 50px;
    background: linear-gradient(90deg, 
        rgba(56, 189, 248, 0.3) 0%, 
        rgba(139, 92, 246, 0.3) 50%, 
        rgba(34, 211, 238, 0.3) 100%);
    border-radius: 6px;
    margin-bottom: 8px;
}

.mockup-cards {
    display: flex;
    gap: 6px;
}

.mockup-mini-card {
    flex: 1;
    height: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.mockup-nav {
    height: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    margin-bottom: 12px;
}

.mockup-hero {
    text-align: center;
    padding: 10px;
}

.mockup-title {
    width: 80%;
    height: 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    margin: 0 auto 8px;
}

.mockup-text {
    width: 60%;
    height: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    margin: 0 auto 12px;
}

.mockup-btn {
    width: 60px;
    height: 20px;
    background: var(--gradient-primary);
    border-radius: 4px;
    margin: 0 auto;
}

.ai-mockup {
    display: flex;
    flex-direction: column;
}

.ai-chat {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 8px;
}

.ai-message {
    max-width: 70%;
    height: 20px;
    border-radius: 10px;
}

.ai-message.bot {
    align-self: flex-start;
    background: rgba(56, 189, 248, 0.2);
}

.ai-message.user {
    align-self: flex-end;
    background: rgba(139, 92, 246, 0.2);
}

.ai-input {
    height: 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 15, 26, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-link {
    transform: translateY(20px);
    transition: transform var(--transition-base);
}

.project-card:hover .project-link {
    transform: translateY(0);
}

.project-info {
    padding: 1.5rem;
}

.project-info h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.project-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.project-tags span {
    padding: 0.35rem 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    padding: var(--section-padding) 1.5rem;
}

.cta-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    text-align: center;
    overflow: hidden;
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
}

.cta-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    position: relative;
    padding: 5rem 0 2rem;
    background: var(--bg-secondary);
    overflow: hidden;
}

.footer-noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
}

.footer-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-primary);
}

.footer-container {
    position: relative;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: var(--text-secondary);
    transition: all var(--transition-base);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.social-link:hover {
    color: var(--neon-blue);
    border-color: var(--neon-blue);
    box-shadow: var(--glow-blue);
    transform: translateY(-3px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a,
.footer-column span {
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: color var(--transition-base);
}

.footer-column a:hover {
    color: var(--neon-blue);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

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

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: color var(--transition-base);
}

.footer-bottom-links a:hover {
    color: var(--neon-blue);
}

/* ========================================
   ANIMATIONS (data-animate)
   ======================================== */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }
    
    .nav-cta {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-brand {
        max-width: 100%;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .timeline-line {
        left: 30px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(odd) {
        flex-direction: column;
        text-align: left;
        padding-left: 80px;
    }
    
    .timeline-dot {
        left: 30px;
        transform: translateX(-50%);
    }
    
    .timeline-content,
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        width: 100%;
        margin: 0;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: clamp(3rem, 8vw, 6rem);
    }
    
    .hero-section {
        padding-top: 100px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .stat-divider {
        width: 60px;
        height: 1px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-orbs-container {
        height: 300px;
    }
    
    .orbit-1 {
        width: 200px;
        height: 200px;
    }
    
    .orbit-2 {
        width: 300px;
        height: 300px;
    }
    
    .tech-orb {
        width: 50px;
        height: 50px;
    }
    
    .tech-orb svg {
        width: 20px;
        height: 20px;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .cta-container {
        padding: 2.5rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .section-container {
        padding: 0 1rem;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .timeline-item,
    .timeline-item:nth-child(odd) {
        padding-left: 60px;
    }
    
    .timeline-line {
        left: 20px;
    }
    
    .timeline-dot {
        left: 20px;
        width: 40px;
        height: 40px;
        font-size: 0.75rem;
    }
}

/* ========================================
   DARK MODE SCROLLBAR
   ======================================== */
::-webkit-scrollbar {
    width: 10px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--bg-tertiary);
    border-radius: 5px;
}

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

/* ========================================
   SELECTION STYLES
   ======================================== */
::selection {
    background: rgba(56, 189, 248, 0.3);
    color: var(--text-primary);
}

::-moz-selection {
    background: rgba(56, 189, 248, 0.3);
    color: var(--text-primary);
}

/* ========================================
   WHATSAPP FLOATING BUTTON
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 40px rgba(37, 211, 102, 0.2);
    z-index: 9999;
    transition: all var(--transition-smooth);
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: white;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6), 0 0 60px rgba(37, 211, 102, 0.3);
}

@keyframes whatsapp-pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 40px rgba(37, 211, 102, 0.2);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 60px rgba(37, 211, 102, 0.4);
    }
}

/* WhatsApp Link in Footer */
.whatsapp-link {
    background: rgba(37, 211, 102, 0.1) !important;
    border-color: rgba(37, 211, 102, 0.3) !important;
}

.whatsapp-link:hover {
    background: rgba(37, 211, 102, 0.2) !important;
    border-color: rgba(37, 211, 102, 0.5) !important;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.4) !important;
}

.whatsapp-link svg {
    fill: #25D366 !important;
}

/* WhatsApp Button Style */
.btn-whatsapp {
    background: rgba(37, 211, 102, 0.15) !important;
    border-color: rgba(37, 211, 102, 0.4) !important;
    color: #25D366 !important;
}

.btn-whatsapp:hover {
    background: rgba(37, 211, 102, 0.25) !important;
    border-color: rgba(37, 211, 102, 0.6) !important;
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.3) !important;
}

.btn-whatsapp svg {
    fill: #25D366;
}

/* Mobile adjustments for WhatsApp float */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

/* ========================================
   ACTIVE PROJECT ANIMATIONS
   ======================================== */

/* Karakutu Yazılım - Dashboard Animation */
.project-card[data-project="karakutu"] .mockup-chart {
    background: linear-gradient(90deg, 
        rgba(56, 189, 248, 0.1) 0%, 
        rgba(139, 92, 246, 0.5) 50%, 
        rgba(34, 211, 238, 0.1) 100%);
    background-size: 200% 100%;
    animation: chartPulse 3s ease-in-out infinite;
}

.project-card[data-project="karakutu"] .mockup-mini-card {
    animation: cardFade 2s ease-in-out infinite;
}

.project-card[data-project="karakutu"] .mockup-mini-card:nth-child(1) { animation-delay: 0s; }
.project-card[data-project="karakutu"] .mockup-mini-card:nth-child(2) { animation-delay: 0.3s; }
.project-card[data-project="karakutu"] .mockup-mini-card:nth-child(3) { animation-delay: 0.6s; }

.project-card[data-project="karakutu"] .mockup-sidebar {
    animation: sidebarGlow 4s ease-in-out infinite;
}

@keyframes chartPulse {
    0%, 100% { 
        background-position: 0% 50%;
        opacity: 0.7;
    }
    50% { 
        background-position: 100% 50%;
        opacity: 1;
    }
}

@keyframes cardFade {
    0%, 100% { 
        opacity: 0.3;
        transform: scale(1);
    }
    50% { 
        opacity: 0.8;
        transform: scale(1.02);
    }
}

@keyframes sidebarGlow {
    0%, 100% { 
        background: rgba(56, 189, 248, 0.1);
        box-shadow: 0 0 0 rgba(56, 189, 248, 0);
    }
    50% { 
        background: rgba(56, 189, 248, 0.2);
        box-shadow: 0 0 15px rgba(56, 189, 248, 0.3);
    }
}

/* Sahacam - Video/VAR Animation */
.project-card[data-project="sahacam"] .ai-message.bot {
    animation: messageSlideBot 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.project-card[data-project="sahacam"] .ai-message.user {
    animation: messageSlideUser 3s ease-in-out infinite;
    animation-delay: 0.5s;
}

.project-card[data-project="sahacam"] .ai-message.bot::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.4), transparent);
    animation: scanLine 2s linear infinite;
}

.project-card[data-project="sahacam"] .ai-input {
    animation: inputPulse 2s ease-in-out infinite;
}

.project-card[data-project="sahacam"] .mockup-screen::before {
    content: 'REC';
    position: absolute;
    top: 45px;
    right: 15px;
    font-size: 8px;
    color: #EF4444;
    font-weight: 700;
    animation: recBlink 1s ease-in-out infinite;
    z-index: 10;
}

.project-card[data-project="sahacam"] .mockup-screen::after {
    content: '';
    position: absolute;
    top: 47px;
    right: 35px;
    width: 6px;
    height: 6px;
    background: #EF4444;
    border-radius: 50%;
    animation: recBlink 1s ease-in-out infinite;
    z-index: 10;
}

@keyframes messageSlideBot {
    0%, 100% { 
        width: 60%;
        opacity: 0.6;
    }
    50% { 
        width: 70%;
        opacity: 1;
    }
}

@keyframes messageSlideUser {
    0%, 100% { 
        width: 50%;
        opacity: 0.6;
    }
    50% { 
        width: 60%;
        opacity: 1;
    }
}

@keyframes scanLine {
    0% { left: -100%; }
    100% { left: 200%; }
}

@keyframes inputPulse {
    0%, 100% { 
        box-shadow: 0 0 0 rgba(34, 211, 238, 0);
        background: rgba(255, 255, 255, 0.05);
    }
    50% { 
        box-shadow: 0 0 10px rgba(34, 211, 238, 0.3);
        background: rgba(34, 211, 238, 0.1);
    }
}

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

/* Muhasebe Sistemi - Mathematics Theme Animation */
.project-card[data-project="muhasebe"] .muhasebe-math-mockup {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
    gap: 10px;
    overflow: hidden;
    background: linear-gradient(180deg,
        rgba(139, 92, 246, 0.05) 0%,
        rgba(139, 92, 246, 0.15) 100%);
}

/* Floating Math Symbols Container */
.project-card[data-project="muhasebe"] .math-floating-symbols {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Individual Math Symbols */
.project-card[data-project="muhasebe"] .math-symbol {
    position: absolute;
    left: var(--x);
    top: var(--y);
    font-size: 16px;
    font-weight: 700;
    color: rgba(139, 92, 246, 0.4);
    animation: mathSymbolFloat 4s ease-in-out infinite;
    animation-delay: var(--delay);
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.3);
}

.project-card[data-project="muhasebe"] .math-symbol.currency {
    color: rgba(34, 197, 94, 0.5);
    font-size: 20px;
    text-shadow: 0 0 15px rgba(34, 197, 94, 0.4);
}

/* Floating Numbers */
.project-card[data-project="muhasebe"] .math-number {
    position: absolute;
    left: var(--x);
    top: var(--y);
    font-size: 12px;
    font-weight: 600;
    color: rgba(56, 189, 248, 0.5);
    animation: mathNumberFloat 5s ease-in-out infinite;
    animation-delay: var(--delay);
    font-family: 'Space Grotesk', monospace;
}

/* Calculator Display */
.project-card[data-project="muhasebe"] .math-calculator {
    position: relative;
    z-index: 2;
    width: 85%;
    background: rgba(15, 23, 42, 0.8);
    border-radius: 10px;
    padding: 12px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.project-card[data-project="muhasebe"] .calc-display {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.project-card[data-project="muhasebe"] .calc-equation {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Space Grotesk', monospace;
    animation: equationChange 6s ease-in-out infinite;
}

.project-card[data-project="muhasebe"] .calc-result {
    font-size: 18px;
    font-weight: 700;
    color: #22C55E;
    font-family: 'Space Grotesk', monospace;
    animation: resultPulse 2s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(34, 197, 94, 0.5);
}

/* Mini Chart */
.project-card[data-project="muhasebe"] .math-chart {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 6px;
    height: 50px;
    width: 85%;
    padding: 8px;
    background: rgba(15, 23, 42, 0.5);
    border-radius: 8px;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.project-card[data-project="muhasebe"] .chart-bar {
    width: 12px;
    height: var(--height);
    background: linear-gradient(180deg,
        rgba(139, 92, 246, 0.9) 0%,
        rgba(139, 92, 246, 0.4) 100%);
    border-radius: 3px 3px 0 0;
    animation: chartBarGrow 3s ease-in-out infinite;
    animation-delay: var(--delay);
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.3);
}

/* Sum Line */
.project-card[data-project="muhasebe"] .math-sum-line {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 85%;
    padding: 8px 12px;
    background: linear-gradient(90deg,
        rgba(139, 92, 246, 0.2) 0%,
        rgba(34, 197, 94, 0.2) 100%);
    border-radius: 6px;
    border-top: 2px solid rgba(139, 92, 246, 0.5);
    animation: sumLineGlow 3s ease-in-out infinite;
}

.project-card[data-project="muhasebe"] .sum-label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-card[data-project="muhasebe"] .sum-value {
    font-size: 14px;
    font-weight: 700;
    color: #8B5CF6;
    font-family: 'Space Grotesk', monospace;
    animation: sumValueCount 4s ease-in-out infinite;
}

/* Math Animations */
@keyframes mathSymbolFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0.4;
    }
    25% {
        transform: translateY(-10px) rotate(15deg) scale(1.2);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-5px) rotate(-10deg) scale(0.9);
        opacity: 0.5;
    }
    75% {
        transform: translateY(-15px) rotate(5deg) scale(1.1);
        opacity: 0.8;
    }
}

@keyframes mathNumberFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) scale(1.3);
        opacity: 0.7;
    }
}

@keyframes resultPulse {
    0%, 100% {
        transform: scale(1);
        text-shadow: 0 0 20px rgba(34, 197, 94, 0.5);
    }
    50% {
        transform: scale(1.05);
        text-shadow: 0 0 30px rgba(34, 197, 94, 0.8);
    }
}

@keyframes chartBarGrow {
    0%, 100% {
        transform: scaleY(1);
        opacity: 0.8;
    }
    50% {
        transform: scaleY(1.2);
        opacity: 1;
    }
}

@keyframes sumLineGlow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(139, 92, 246, 0.2);
    }
    50% {
        box-shadow: 0 0 25px rgba(139, 92, 246, 0.5);
    }
}

@keyframes sumValueCount {
    0%, 100% {
        opacity: 1;
    }
    25% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
        text-shadow: 0 0 15px rgba(139, 92, 246, 0.8);
    }
    75% {
        opacity: 0.8;
    }
}

/* General Active Project Enhancements */
.project-card .mockup-screen {
    position: relative;
}

.project-card .project-mockup {
    position: relative;
    overflow: hidden;
}

/* Floating particles effect for active projects */
.project-card[data-project] .project-mockup::before {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--neon-blue);
    border-radius: 50%;
    animation: floatParticle1 6s ease-in-out infinite;
    opacity: 0.5;
}

.project-card[data-project] .project-mockup::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--neon-purple);
    border-radius: 50%;
    animation: floatParticle2 8s ease-in-out infinite;
    opacity: 0.5;
}

@keyframes floatParticle1 {
    0%, 100% { 
        top: 20%;
        left: 10%;
        transform: scale(1);
    }
    25% { 
        top: 60%;
        left: 80%;
        transform: scale(1.5);
    }
    50% { 
        top: 80%;
        left: 20%;
        transform: scale(0.8);
    }
    75% { 
        top: 30%;
        left: 70%;
        transform: scale(1.2);
    }
}

@keyframes floatParticle2 {
    0%, 100% { 
        top: 70%;
        right: 15%;
        transform: scale(1);
    }
    33% { 
        top: 20%;
        right: 60%;
        transform: scale(1.3);
    }
    66% { 
        top: 50%;
        right: 30%;
        transform: scale(0.7);
    }
}

/* Hover enhancement for active projects */
.project-card[data-project]:hover .mockup-screen {
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(56, 189, 248, 0.2);
}

.project-card[data-project="karakutu"]:hover .mockup-screen {
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(56, 189, 248, 0.3);
}

.project-card[data-project="sahacam"]:hover .mockup-screen {
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(34, 211, 238, 0.3);
}

.project-card[data-project="muhasebe"]:hover .mockup-screen {
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(139, 92, 246, 0.3);
}

/* ========================================
   YAKINDA PROJELERİ - ÖZEL ANİMASYONLAR
   ======================================== */

/* QR Kod Sistemi - Tarama Animasyonu */
.project-card[data-project="qrkod"] .mockup-qr {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 140px;
}

.project-card[data-project="qrkod"] .qr-placeholder {
    width: 90px;
    height: 90px;
    background: 
        linear-gradient(90deg, transparent 45%, rgba(34, 197, 94, 0.8) 45%, rgba(34, 197, 94, 0.8) 55%, transparent 55%),
        linear-gradient(transparent 45%, rgba(34, 197, 94, 0.8) 45%, rgba(34, 197, 94, 0.8) 55%, transparent 55%),
        repeating-linear-gradient(0deg, rgba(34, 197, 94, 0.3) 0px, rgba(34, 197, 94, 0.3) 10px, transparent 10px, transparent 20px),
        repeating-linear-gradient(90deg, rgba(34, 197, 94, 0.3) 0px, rgba(34, 197, 94, 0.3) 10px, transparent 10px, transparent 20px);
    background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%;
    border-radius: 8px;
    border: 3px solid rgba(34, 197, 94, 0.6);
    position: relative;
    animation: qrPulse 2s ease-in-out infinite;
}

.project-card[data-project="qrkod"] .qr-placeholder::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #22C55E, transparent);
    animation: qrScan 2s linear infinite;
}

.project-card[data-project="qrkod"] .qr-placeholder::after {
    content: '📱';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
    animation: phoneWiggle 1s ease-in-out infinite;
}

@keyframes qrScan {
    0% { top: -3px; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: calc(100% + 3px); opacity: 0; }
}

@keyframes qrPulse {
    0%, 100% { 
        box-shadow: 0 0 10px rgba(34, 197, 94, 0.3);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 25px rgba(34, 197, 94, 0.6), 0 0 50px rgba(34, 197, 94, 0.3);
        transform: scale(1.02);
    }
}

@keyframes phoneWiggle {
    0%, 100% { transform: translateX(-50%) rotate(-5deg); }
    50% { transform: translateX(-50%) rotate(5deg); }
}

.project-card[data-project="qrkod"]:hover .qr-placeholder {
    animation: qrHover 0.5s ease forwards;
    border-color: #22C55E;
}

@keyframes qrHover {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1.05); }
}

/* Aidat Takip Sistemi - Görev Tamamlama Animasyonu */
.project-card[data-project="aidat"] .mockup-content {
    padding: 15px;
}

.aidat-mockup {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.aidat-task {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 8px;
    border-left: 3px solid rgba(249, 115, 22, 0.5);
    animation: taskSlideIn 0.5s ease forwards;
    opacity: 0;
    transform: translateX(-20px);
}

.aidat-task:nth-child(1) { animation-delay: 0.2s; }
.aidat-task:nth-child(2) { animation-delay: 0.4s; }
.aidat-task:nth-child(3) { animation-delay: 0.6s; }

@keyframes taskSlideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.aidat-checkbox {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid rgba(249, 115, 22, 0.6);
    position: relative;
    animation: checkPulse 2s ease-in-out infinite;
}

.aidat-checkbox.checked {
    background: linear-gradient(135deg, #F97316, #EAB308);
    border-color: transparent;
}

.aidat-checkbox.checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
    animation: checkMark 0.3s ease forwards;
}

@keyframes checkPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.4); }
    50% { box-shadow: 0 0 0 6px rgba(249, 115, 22, 0); }
}

@keyframes checkMark {
    0% { transform: translate(-50%, -50%) scale(0); }
    50% { transform: translate(-50%, -50%) scale(1.3); }
    100% { transform: translate(-50%, -50%) scale(1); }
}

.aidat-text {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.aidat-users {
    display: flex;
    margin-left: auto;
}

.aidat-user {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    margin-left: -6px;
    border: 2px solid var(--bg-secondary);
    animation: userPop 0.3s ease forwards;
    opacity: 0;
    transform: scale(0);
}

.aidat-user:nth-child(1) { background: #F97316; animation-delay: 0.8s; }
.aidat-user:nth-child(2) { background: #EAB308; animation-delay: 0.9s; }
.aidat-user:nth-child(3) { background: #22C55E; animation-delay: 1s; }

@keyframes userPop {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.project-card[data-project="aidat"]:hover .aidat-checkbox:not(.checked) {
    animation: checkboxHover 0.3s ease forwards;
}

@keyframes checkboxHover {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1.1); }
}

/* Kolay Randevu - Online Randevu Sistemi */
.project-card[data-project="randevu"] .mockup-content {
    padding: 15px;
}

.randevu-mockup {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.randevu-calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.randevu-day {
    width: 100%;
    aspect-ratio: 1;
    background: rgba(236, 72, 153, 0.1);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    color: rgba(255, 255, 255, 0.5);
    position: relative;
    transition: all 0.3s ease;
}

.randevu-day.available {
    background: rgba(236, 72, 153, 0.2);
    border: 1px solid rgba(236, 72, 153, 0.3);
    animation: dayPulse 2s ease-in-out infinite;
}

.randevu-day.selected {
    background: linear-gradient(135deg, #EC4899, #DB2777);
    color: white;
    font-weight: bold;
    animation: selectedPop 0.5s ease forwards;
}

.randevu-day.selected::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: dotBlink 1s ease-in-out infinite;
}

@keyframes dayPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; }
}

@keyframes selectedPop {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1.1); }
}

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

.randevu-slots {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.randevu-slot {
    padding: 4px 8px;
    background: rgba(236, 72, 153, 0.15);
    border-radius: 12px;
    font-size: 8px;
    color: #EC4899;
    border: 1px solid rgba(236, 72, 153, 0.3);
    animation: slotFade 0.5s ease forwards;
    opacity: 0;
}

.randevu-slot:nth-child(1) { animation-delay: 0.2s; }
.randevu-slot:nth-child(2) { animation-delay: 0.3s; }
.randevu-slot:nth-child(3) { animation-delay: 0.4s; }
.randevu-slot:nth-child(4) { animation-delay: 0.5s; }

@keyframes slotFade {
    to { opacity: 1; }
}

.randevu-slot.active {
    background: linear-gradient(135deg, #EC4899, #DB2777);
    color: white;
    animation: slotActive 2s ease-in-out infinite;
}

@keyframes slotActive {
    0%, 100% { box-shadow: 0 0 10px rgba(236, 72, 153, 0.5); }
    50% { box-shadow: 0 0 20px rgba(236, 72, 153, 0.8); }
}

.project-card[data-project="randevu"]:hover .randevu-day.available {
    animation: dayHover 0.3s ease forwards;
}

@keyframes dayHover {
    to { transform: scale(1.1); }
}

/* Denta-RAN - Diş Kliniği Animasyonu */
.project-card[data-project="dentaran"] .mockup-content {
    padding: 15px;
}

.denta-mockup {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
}

.denta-tooth {
    width: 60px;
    height: 70px;
    margin: 0 auto;
    position: relative;
    animation: toothFloat 3s ease-in-out infinite;
}

.denta-tooth::before {
    content: '🦷';
    font-size: 50px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    filter: drop-shadow(0 0 10px rgba(20, 184, 166, 0.5));
}

.denta-tooth::after {
    content: '✨';
    position: absolute;
    top: -5px;
    right: 0;
    font-size: 16px;
    animation: sparkle 1.5s ease-in-out infinite;
}

@keyframes toothFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0.5) rotate(0deg); }
    50% { opacity: 1; transform: scale(1) rotate(180deg); }
}

.denta-stats {
    display: flex;
    justify-content: space-around;
    gap: 8px;
}

.denta-stat {
    text-align: center;
    padding: 8px;
    background: rgba(20, 184, 166, 0.1);
    border-radius: 8px;
    flex: 1;
    animation: statPop 0.5s ease forwards;
    opacity: 0;
    transform: translateY(10px);
}

.denta-stat:nth-child(1) { animation-delay: 0.3s; }
.denta-stat:nth-child(2) { animation-delay: 0.5s; }
.denta-stat:nth-child(3) { animation-delay: 0.7s; }

@keyframes statPop {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.denta-stat-value {
    font-size: 14px;
    font-weight: bold;
    color: #14B8A6;
    animation: valueCount 2s ease forwards;
}

.denta-stat-label {
    font-size: 7px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 2px;
}

@keyframes valueCount {
    0% { opacity: 0; transform: scale(0.5); }
    60% { transform: scale(1.1); }
    100% { opacity: 1; transform: scale(1); }
}

.denta-progress {
    height: 6px;
    background: rgba(20, 184, 166, 0.2);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.denta-progress::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #14B8A6, #22D3EE);
    border-radius: 3px;
    animation: progressFill 2s ease-out forwards;
    animation-delay: 1s;
}

@keyframes progressFill {
    0% { width: 0%; }
    100% { width: 75%; }
}

.project-card[data-project="dentaran"]:hover .denta-tooth::before {
    animation: toothShine 0.5s ease forwards;
}

@keyframes toothShine {
    0% { filter: drop-shadow(0 0 10px rgba(20, 184, 166, 0.5)); }
    50% { filter: drop-shadow(0 0 25px rgba(20, 184, 166, 0.9)) brightness(1.2); }
    100% { filter: drop-shadow(0 0 20px rgba(20, 184, 166, 0.7)) brightness(1.1); }
}

/* Hover Effects for Coming Soon Cards */
.project-card[data-project="qrkod"]:hover .mockup-screen {
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(34, 197, 94, 0.3);
}

.project-card[data-project="aidat"]:hover .mockup-screen {
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(249, 115, 22, 0.3);
}

.project-card[data-project="randevu"]:hover .mockup-screen {
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(236, 72, 153, 0.3);
}

.project-card[data-project="dentaran"]:hover .mockup-screen {
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(20, 184, 166, 0.3);
}
