* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0a0a0f;
    color: #ededee;
    transition: background 0.4s ease, color 0.3s ease;
    scroll-behavior: smooth;
    overflow-x: hidden;
    scroll-padding-top: 100px;
}

/* Premium Inertial Scrolling */
html {
    scroll-behavior: smooth;
}

body {
    overscroll-behavior: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #646cff, #818cf8);
    border-radius: 4px;
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #818cf8, #a855f7);
}

body.light {
    background: #f5f7ff;
    color: #0a0a1a;
}

.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(100, 108, 255, 0.1), rgba(168, 85, 247, 0.08), rgba(236, 72, 153, 0.05));
    animation: waveMove 18s ease-in-out infinite alternate;
}

.wave2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(100, 108, 255, 0.12), transparent 60%);
    animation: waveMove2 22s ease-in-out infinite alternate;
}

.wave3 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 80%, rgba(168, 85, 247, 0.1), transparent 70%);
    animation: waveMove3 25s ease-in-out infinite alternate;
}

@keyframes waveMove {
    0% { transform: translateX(-5%) translateY(0%) scale(1); opacity: 0.4; }
    100% { transform: translateX(5%) translateY(-3%) scale(1.05); opacity: 0.7; }
}

@keyframes waveMove2 {
    0% { transform: translateX(3%) translateY(2%) scale(1); opacity: 0.3; }
    100% { transform: translateX(-4%) translateY(-2%) scale(1.08); opacity: 0.6; }
}

@keyframes waveMove3 {
    0% { transform: translateX(-2%) translateY(-1%) scale(1); opacity: 0.25; }
    100% { transform: translateX(4%) translateY(3%) scale(1.1); opacity: 0.55; }
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.25;
    animation: blobFloat 20s ease-in-out infinite alternate;
}

.blob1 { width: 400px; height: 400px; background: #646cff; top: -100px; left: -100px; animation-duration: 25s; }
.blob2 { width: 500px; height: 500px; background: #a855f7; bottom: -150px; right: -100px; animation-duration: 30s; animation-delay: -5s; }
.blob3 { width: 350px; height: 350px; background: #ec489a; top: 40%; left: 60%; animation-duration: 28s; animation-delay: -10s; opacity: 0.15; }

@keyframes blobFloat {
    0% { transform: translate(0%, 0%) scale(1); }
    100% { transform: translate(5%, 8%) scale(1.15); }
}

body.light .blob1 { opacity: 0.1; }
body.light .blob2 { opacity: 0.08; }
body.light .blob3 { opacity: 0.06; }
body.light .wave { opacity: 0.25; }

.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1150px;
    z-index: 1000;
    backdrop-filter: blur(16px);
    background: rgba(10, 10, 15, 0.8);
    border-radius: 60px;
    padding: 0.7rem 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(100, 108, 255, 0.3);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

body.light .navbar {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(100, 108, 255, 0.3);
}

.navbar.scrolled {
    top: 10px;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
}

body.light .navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.7rem;
    font-weight: 800;
    background: linear-gradient(135deg, #818cf8, #c084fc);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    display: inline-block;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #818cf8, #c084fc);
    transition: width 0.4s ease;
}

.logo:hover {
    transform: scale(1.05) rotate(-1deg);
}

.logo:hover::after {
    width: 100%;
}

.logo-accent {
    color: #818cf8;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
}

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

.nav-links a {
    text-decoration: none;
    font-weight: 500;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 0.3rem 0;
    position: relative;
    display: inline-block;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #818cf8, #c084fc);
    transform: translateX(-50%);
    transition: width 0.4s ease;
}

.nav-links a:hover {
    color: #818cf8;
    transform: translateY(-3px);
}

.nav-links a:hover::before {
    width: 100%;
}

/* Mobile Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    background: none;
    border: none;
    position: relative;
    width: 30px;
    height: 24px;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: #818cf8;
    margin: 0 auto;
    transition: all 0.3s ease;
    position: absolute;
    left: 0;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger span:nth-child(3) {
    bottom: 0;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 50%;
    margin-top: -1.5px;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 50%;
    margin-bottom: -1.5px;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    transition: right 0.3s ease;
    z-index: 999;
    padding: 2rem;
    overflow-y: auto;
}

body.light .mobile-menu {
    background: rgba(255, 255, 255, 0.98);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(129, 140, 248, 0.2);
}

.mobile-menu-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #818cf8;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: #818cf8;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    color: #f472b6;
    transform: rotate(90deg);
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-menu-links a {
    text-decoration: none;
    color: inherit;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    display: block;
}

.mobile-menu-links a:hover {
    color: #818cf8;
    transform: translateX(5px);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

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

.dark-toggle {
    background: rgba(129, 140, 248, 0.2);
    border: none;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #818cf8;
}

.dark-toggle:hover {
    background: rgba(129, 140, 248, 0.45);
    transform: rotate(15deg) scale(1.08);
}

.container {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 5rem 0 4rem;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 100px;
}

.hero-badge {
    display: inline-block;
    background: rgba(129, 140, 248, 0.15);
    backdrop-filter: blur(4px);
    padding: 0.4rem 1.2rem;
    border-radius: 60px;
    font-size: 0.85rem;
    margin-bottom: 1.8rem;
    color: #a5b4fc;
    transition: all 0.3s ease;
}

.hero-badge:hover {
    transform: scale(1.05);
    background: rgba(129, 140, 248, 0.25);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.2rem;
}

.gradient-text {
    background: linear-gradient(120deg, #818cf8, #f472b6);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.hero-desc {
    font-size: 1.1rem;
    color: #94a3b8;
    max-width: 550px;
    margin: 0 auto 2rem;
    transition: all 0.3s ease;
}

body.light .hero-desc {
    color: #475569;
}

/* Elegant Button Effects - Performance Optimized */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1.8rem;
    border-radius: 60px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    margin: 0.3rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #646cff, #818cf8);
    color: white;
    box-shadow: 0 4px 15px rgba(100, 108, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(100, 108, 255, 0.5);
}

.btn-outline {
    background: transparent;
    border: 2px solid #646cff;
    color: #646cff;
}

.btn-outline:hover {
    background: #646cff;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(100, 108, 255, 0.4);
}

.btn-primary {
    background: #646cff;
    color: white;
    box-shadow: 0 4px 12px rgba(100, 108, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.02);
    background: #535bf2;
    box-shadow: 0 15px 25px -8px rgba(100, 108, 255, 0.5);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid #646cff;
    color: #646cff;
}

.btn-outline:hover {
    transform: translateY(-5px) scale(1.02);
    background: #646cff;
    color: white;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
}

.section-title:hover {
    background: linear-gradient(120deg, #818cf8, #f472b6);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    transform: scale(1.02);
}

.section-sub {
    text-align: center;
    color: #818cf8;
    margin-bottom: 3rem;
    font-size: 1rem;
}

.about-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.about-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    border-radius: 32px;
    padding: 2rem;
    flex: 1;
    min-width: 260px;
    border: 1px solid rgba(129, 140, 248, 0.25);
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.2);
}

body.light .about-card {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(100, 108, 255, 0.2);
}

.about-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: #818cf8;
    box-shadow: 0 30px 40px -15px rgba(129, 140, 248, 0.3);
}

.card-icon {
    font-size: 2.5rem;
    color: #818cf8;
    margin-bottom: 1.2rem;
    transition: all 0.3s ease;
}

.about-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1.2rem;
    font-weight: 500;
    color: #818cf8;
    cursor: pointer;
    background: none;
    border: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.card-link:hover {
    gap: 0.9rem;
    transform: translateX(5px);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.skill-card {
    background: rgba(129, 140, 248, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 28px;
    padding: 1.8rem 1.2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.2);
    border: 1px solid rgba(129, 140, 248, 0.25);
}

.skill-card:hover {
    transform: translateY(-10px) scale(1.03);
    background: rgba(129, 140, 248, 0.2);
    border-color: #818cf8;
    box-shadow: 0 20px 30px -12px rgba(129, 140, 248, 0.4);
}

.skill-icon {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.skill-card:hover .skill-icon {
    transform: scale(1.15) rotate(8deg);
}

.skill-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.blender-icon { color: #f5792a; text-shadow: 0 0 8px rgba(245, 121, 42, 0.5); }
.html-icon { color: #e34c26; text-shadow: 0 0 8px rgba(227, 76, 38, 0.5); }
.css-icon { color: #264de4; text-shadow: 0 0 8px rgba(38, 77, 228, 0.5); }
.js-icon { color: #f7df1e; text-shadow: 0 0 8px rgba(247, 223, 30, 0.5); }
.python-icon { color: #3776ab; text-shadow: 0 0 8px rgba(55, 118, 171, 0.5); }
.cpp-icon { color: #00599c; text-shadow: 0 0 8px rgba(0, 89, 156, 0.5); }
.react-icon { color: #61dafb; text-shadow: 0 0 8px rgba(97, 218, 251, 0.5); }
.node-icon { color: #339933; text-shadow: 0 0 8px rgba(51, 153, 51, 0.5); }
.vue-icon { color: #42b883; text-shadow: 0 0 8px rgba(66, 184, 131, 0.5); }
.figma-icon { color: #f24e1e; text-shadow: 0 0 8px rgba(242, 78, 30, 0.5); }

body.light .skill-icon {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.projects-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(129, 140, 248, 0.15);
    border: 1px solid rgba(129, 140, 248, 0.3);
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #ededee;
    font-size: 1rem;
    backdrop-filter: blur(4px);
}

body.light .filter-btn {
    color: #0a0a1a;
    background: rgba(100, 108, 255, 0.1);
}

.filter-btn.active {
    background: #646cff;
    border-color: #646cff;
    color: white;
    box-shadow: 0 0 12px rgba(100, 108, 255, 0.5);
}

.filter-btn:hover:not(.active) {
    background: rgba(129, 140, 248, 0.3);
    transform: translateY(-3px);
}

.projects-row {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: stretch;
    width: 100%;
    justify-content: center;
}

.project-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(129, 140, 248, 0.2);
    transition: all 0.3s ease;
    width: calc(33.333% - 1.34rem);
    min-width: 280px;
    max-width: 380px;
    flex: 1 1 300px;
    text-align: center;
    position: relative;
    animation: cardEntrance 0.6s ease-out backwards;
    transform-style: preserve-3d;
    perspective: 1000px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

body.light .project-card {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(100, 108, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.project-card:hover {
    transform: translateY(-12px) rotateX(5deg) scale(1.02);
    border-color: #818cf8;
    box-shadow: 0 25px 50px -20px rgba(129, 140, 248, 0.5), 
                0 0 0 2px rgba(129, 140, 248, 0.2),
                0 15px 35px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

body.light .project-card:hover {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 25px 50px -15px rgba(129, 140, 248, 0.3), 
                0 0 0 1px rgba(129, 140, 248, 0.2);
}

.project-img-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    cursor: pointer;
    border-radius: 20px 20px 0 0;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.8), rgba(129, 140, 248, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.project-card:hover .project-overlay {
    opacity: 1;
    background: linear-gradient(135deg, rgba(129, 140, 248, 0.2), rgba(0, 0, 0, 0.7), rgba(129, 140, 248, 0.4));
}

.overlay-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transform: translateY(30px) scale(0.9);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
}

.project-card:hover .overlay-actions {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.overlay-btn {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 1rem 1.8rem;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(15px);
    text-align: center;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.overlay-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.overlay-btn:hover {
    background: linear-gradient(135deg, rgba(129, 140, 248, 0.4), rgba(129, 140, 248, 0.2));
    border-color: #818cf8;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(129, 140, 248, 0.3);
}

.overlay-btn:hover::before {
    left: 100%;
}

.project-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(1);
}

.project-card:hover .project-img {
    transform: scale(1.08);
    filter: brightness(1.1);
}

.project-info {
    padding: 1.5rem;
}

.project-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.6rem;
    background: linear-gradient(120deg, #818cf8, #f472b6);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    text-align: center;
}

.project-info p {
    color: #94a3b8;
    line-height: 1.5;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    text-align: center;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

body.light .project-info p {
    color: #475569;
}

.project-meta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.project-timeline {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: rgba(129, 140, 248, 0.1);
    padding: 0.2rem 0.6rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 500;
    color: #a5b4fc;
}

.project-buttons {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.project-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 0.7rem 1.2rem;
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.project-btn:hover {
    background: linear-gradient(135deg, rgba(100, 108, 255, 0.8), rgba(100, 108, 255, 0.6));
    border-color: #646cff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(100, 108, 255, 0.3);
}

.project-btn.secondary-btn:hover {
    background: linear-gradient(135deg, rgba(129, 140, 248, 0.4), rgba(129, 140, 248, 0.2));
    border-color: #818cf8;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(129, 140, 248, 0.3);
}

.disabled-btn {
    background: rgba(100, 100, 100, 0.2);
    color: #6b7280;
    cursor: not-allowed;
    opacity: 0.6;
}

.disabled-btn:hover {
    transform: none;
}

.project-btn.primary-btn:hover {
    background: linear-gradient(135deg, rgba(129, 140, 248, 0.8), rgba(129, 140, 248, 0.6));
    border-color: #818cf8;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(129, 140, 248, 0.3);
}

/* Distinct Coming Soon Stage Design */
.coming-soon-stage {
    position: relative;
    width: 100%;
    max-width: 700px;
    height: 450px;
    margin: 2rem auto;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25), 
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: stageEntrance 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) backwards;
}

@keyframes stageEntrance {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.stage-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.abstract-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, var(--category-color) 0%, transparent 25%),
        radial-gradient(circle at 80% 70%, var(--category-color) 0%, transparent 25%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    opacity: 0.3;
    animation: patternShift 10s ease-in-out infinite;
}

@keyframes patternShift {
    0%, 100% {
        transform: translateX(0) translateY(0) rotate(0deg);
    }
    33% {
        transform: translateX(20px) translateY(-20px) rotate(2deg);
    }
    66% {
        transform: translateX(-20px) translateY(20px) rotate(-2deg);
    }
}

.gradient-mesh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        var(--category-color) 0%, 
        transparent 30%, 
        transparent 70%, 
        var(--category-color) 100%);
    opacity: 0.1;
    animation: meshFloat 8s ease-in-out infinite;
}

@keyframes meshFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-30px) scale(1.1);
    }
}

.floating-orbs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.orb {
    position: absolute;
    border-radius: 50%;
    background: var(--category-color);
    filter: blur(3px);
    opacity: 0;
    animation: orbFloat 6s ease-in-out infinite;
}

.orb-1 {
    width: 60px;
    height: 60px;
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.orb-2 {
    width: 40px;
    height: 40px;
    top: 60%;
    right: 20%;
    animation-delay: 1.5s;
}

.orb-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 70%;
    animation-delay: 3s;
}

.orb-4 {
    width: 50px;
    height: 50px;
    top: 40%;
    right: 40%;
    animation-delay: 4.5s;
}

@keyframes orbFloat {
    0% {
        transform: translateY(0) translateX(0) scale(0);
        opacity: 0;
    }
    20% {
        transform: translateY(-20px) translateX(10px) scale(1);
        opacity: 0.6;
    }
    80% {
        transform: translateY(-60px) translateX(30px) scale(1);
        opacity: 0.6;
    }
    100% {
        transform: translateY(-80px) translateX(40px) scale(0);
        opacity: 0;
    }
}

.stage-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    max-width: 500px;
    animation: contentFadeIn 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s backwards;
}

.stage-header {
    margin-bottom: 2rem;
}

.stage-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 25px;
    padding: 0.8rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.stage-brand {
    background: linear-gradient(135deg, #818cf8, #c084fc);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.stage-divider {
    color: rgba(255, 255, 255, 0.4);
}

.stage-status {
    color: var(--category-color);
    font-weight: 700;
}

.stage-icon-container {
    position: relative;
    margin: 1.5rem 0;
    width: 220px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-glow-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, var(--category-color) 0%, transparent 70%);
    opacity: 0.2;
    border-radius: 50%;
    filter: blur(15px);
    animation: iconGlow 4s ease-in-out infinite;
}

@keyframes iconGlow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.2;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.4;
    }
}

.abstract-icon-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: iconFloat 6s ease-in-out infinite;
}

.abstract-3d-icon,
.abstract-phone-icon {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 10px 40px var(--category-color));
}

.stage-title {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff, rgba(255, 255, 255, 0.8), var(--category-color));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.02em;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.4);
    margin-bottom: 1.2rem;
    animation: titleGlow 4s ease-in-out infinite;
}

.stage-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    max-width: 450px;
}

.stage-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    margin-bottom: 2rem;
    width: 100%;
    max-width: 450px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 0.8rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.feature-item i {
    color: var(--category-color);
    font-size: 1rem;
}

.stage-progress {
    width: 100%;
    max-width: 500px;
    text-align: center;
}

.progress-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.progress-bar {
    position: relative;
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 65%;
    background: linear-gradient(90deg, var(--progress-color), rgba(255, 255, 255, 0.8), var(--progress-color));
    border-radius: 4px;
    animation: progressGrow 2s ease-out 1s backwards;
}

.progress-glow {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 65%;
    background: var(--glow-color);
    filter: blur(8px);
    opacity: 0.6;
    animation: progressGrow 2s ease-out 1s backwards;
}

@keyframes progressGrow {
    0% {
        width: 0%;
    }
    100% {
        width: 65%;
    }
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-15px) scale(1.05);
    }
}

@keyframes titleGlow {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.2);
    }
}

/* SVG Animations */
.central-orb {
    animation: orbPulse 3s ease-in-out infinite;
}

.rotating-elements {
    animation: elementsRotate 20s linear infinite;
    transform-origin: center;
}

.element-1, .element-2, .element-3, .element-4 {
    animation: elementFloat 4s ease-in-out infinite;
}

.element-2 {
    animation-delay: 1s;
}

.element-3 {
    animation-delay: 2s;
}

.element-4 {
    animation-delay: 3s;
}

.outer-ring {
    animation: ringRotate 30s linear infinite;
}

.central-phone {
    animation: phonePulse 4s ease-in-out infinite;
}

.phone-screen-glow {
    animation: screenGlow 3s ease-in-out infinite alternate;
}

.floating-apps {
    animation: appsFloat 6s ease-in-out infinite;
}

.app-icon-1, .app-icon-2, .app-icon-3 {
    animation: appBounce 2s ease-in-out infinite;
}

.app-icon-2 {
    animation-delay: 0.7s;
}

.app-icon-3 {
    animation-delay: 1.4s;
}

.signal-waves {
    animation: waveExpand 4s ease-in-out infinite;
}

.wave-1, .wave-2, .wave-3 {
    animation: wavePulse 3s ease-in-out infinite;
}

.wave-2 {
    animation-delay: 1s;
}

.wave-3 {
    animation-delay: 2s;
}

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

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

@keyframes elementFloat {
    0%, 100% { transform: translateY(0); opacity: 0.6; }
    50% { transform: translateY(-10px); opacity: 1; }
}

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

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

@keyframes screenGlow {
    0% { fill-opacity: 0.1; }
    100% { fill-opacity: 0.3; }
}

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

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

@keyframes waveExpand {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.6; }
}

@keyframes wavePulse {
    0%, 100% { stroke-opacity: 0.3; }
    50% { stroke-opacity: 0.6; }
}

.coming-soon-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 450px;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.glassmorphism-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.12), 
        rgba(255, 255, 255, 0.06),
        rgba(255, 255, 255, 0.12),
        rgba(255, 255, 255, 0.08));
    backdrop-filter: blur(35px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.glowing-border {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 24px;
    background: linear-gradient(45deg, 
        var(--category-color), 
        transparent, 
        var(--category-color),
        transparent,
        var(--category-color));
    background-size: 400% 400%;
    animation: borderGlow 4s ease-in-out infinite;
    z-index: -1;
    opacity: 0.6;
}

@keyframes borderGlow {
    0%, 100% {
        background-position: 0% 50%;
        opacity: 0.4;
    }
    50% {
        background-position: 100% 50%;
        opacity: 0.8;
    }
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        var(--category-color) 0%, 
        transparent 50%, 
        var(--category-color) 100%);
    opacity: 0.1;
    animation: gradientShift 4s ease-in-out infinite;
}

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

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--category-color), rgba(255, 255, 255, 0.8));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* 3D Cube Shapes */
.cube-1 {
    width: 60px;
    height: 60px;
    top: 20%;
    left: 15%;
    transform: rotate(45deg);
}

.cube-2 {
    width: 40px;
    height: 40px;
    top: 60%;
    right: 20%;
    transform: rotate(30deg);
}

.cube-3 {
    width: 30px;
    height: 30px;
    bottom: 25%;
    left: 70%;
    transform: rotate(60deg);
}

/* Mobile Phone Shapes */
.phone-1 {
    width: 50px;
    height: 80px;
    top: 15%;
    left: 20%;
    border-radius: 20px;
}

.phone-2 {
    width: 40px;
    height: 65px;
    top: 55%;
    right: 25%;
    border-radius: 16px;
}

.phone-3 {
    width: 35px;
    height: 55px;
    bottom: 20%;
    left: 65%;
    border-radius: 14px;
}

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

.coming-soon-content {
    position: relative;
    z-index: 10;
    padding: 2.5rem;
    width: 90%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    animation: contentFadeIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.brand-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    align-self: center;
}

.brand-text {
    background: linear-gradient(135deg, #818cf8, #c084fc);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.badge-divider {
    opacity: 0.6;
}

.badge-status {
    color: var(--category-color);
}

.coming-icon-wrapper {
    position: relative;
    margin: 1rem 0 2rem;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, var(--category-color) 0%, transparent 70%);
    opacity: 0.3;
    border-radius: 50%;
    animation: iconPulse 3s ease-in-out infinite;
    filter: blur(2px);
}

.animated-icon-container {
    position: relative;
    z-index: 1;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: iconFloat 4s ease-in-out infinite;
}

.animated-3d-icon,
.animated-phone-icon {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 8px 30px var(--category-color));
    transform: scale(1.2);
}

.cube-group {
    animation: cubeRotate 8s ease-in-out infinite;
    transform-origin: center;
}

.cube-face {
    animation: cubePulse 3s ease-in-out infinite;
}

.cube-edge {
    animation: edgeGlow 2s ease-in-out infinite alternate;
}

.phone-group {
    animation: phoneFloat 6s ease-in-out infinite;
}

.phone-body {
    animation: phonePulse 4s ease-in-out infinite;
}

.phone-screen {
    animation: screenGlow 3s ease-in-out infinite alternate;
}

.phone-button {
    animation: buttonPulse 2s ease-in-out infinite;
}

.phone-notch {
    animation: notchGlow 2.5s ease-in-out infinite alternate;
}

@keyframes cubeRotate {
    0%, 100% { transform: rotateY(0deg) rotateX(0deg); }
    25% { transform: rotateY(90deg) rotateX(10deg); }
    50% { transform: rotateY(180deg) rotateX(0deg); }
    75% { transform: rotateY(270deg) rotateX(-10deg); }
}

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

@keyframes edgeGlow {
    0% { stroke-opacity: 0.6; stroke-width: 1.5; }
    100% { stroke-opacity: 1; stroke-width: 2.5; }
}

@keyframes phoneFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

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

@keyframes screenGlow {
    0% { fill-opacity: 0.1; }
    100% { fill-opacity: 0.3; }
}

@keyframes buttonPulse {
    0%, 100% { r: 3; opacity: 0.8; }
    50% { r: 4; opacity: 1; }
}

@keyframes notchGlow {
    0% { opacity: 0.6; }
    100% { opacity: 1; }
}

@keyframes iconPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.2; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.3; }
}

.coming-title {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff, rgba(255, 255, 255, 0.9), var(--category-color));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.03em;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.4);
    animation: titleGlow 4s ease-in-out infinite;
    filter: drop-shadow(0 4px 20px rgba(255, 255, 255, 0.2));
}

@keyframes titleGlow {
    0%, 100% { 
        background-position: 0% 50%;
        filter: brightness(1);
    }
    50% { 
        background-position: 100% 50%;
        filter: brightness(1.2);
    }
}

.coming-description {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    animation: textFadeIn 2s ease-out;
    max-width: 350px;
}

.coming-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    width: 100%;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 14px;
    padding: 0.4rem 0.9rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.feature-tag i {
    font-size: 0.7rem;
    color: var(--category-color);
}

.coming-timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    width: 100%;
}

.timeline-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.timeline-dot.active {
    background: var(--category-color);
    border-color: var(--category-color);
    box-shadow: 0 0 12px var(--category-color);
}

.timeline-dot.animate {
    animation: dotPulse 1s ease-out forwards;
}

@keyframes dotPulse {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
        background: var(--category-color);
        border-color: var(--category-color);
    }
}

.timeline-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.coming-progress {
    position: relative;
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
}

.progress-track {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--progress-color), var(--category-color));
    border-radius: 3px;
    transition: width 2s ease-out;
}

.progress-glow {
    position: absolute;
    top: -2px;
    left: 0;
    height: calc(100% + 4px);
    width: 0%;
    background: var(--glow-color);
    filter: blur(8px);
    opacity: 0.6;
    border-radius: 3px;
    transition: width 2s ease-out;
}

@keyframes progressGrow {
    0% {
        width: 0%;
    }
    100% {
        width: 65%;
    }
}

.coming-soon-card.premium:hover {
    transform: translateY(-20px) scale(1.05);
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.3), 
                0 0 0 2px rgba(255, 255, 255, 0.1);
}

.coming-soon-card.premium:hover .glassmorphism-bg {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.18), 
        rgba(255, 255, 255, 0.10),
        rgba(255, 255, 255, 0.18),
        rgba(255, 255, 255, 0.12));
    border-color: rgba(255, 255, 255, 0.35);
}

.coming-soon-card.premium:hover .shape {
    transform: translateY(-30px) rotate(25deg) scale(1.2);
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--category-color);
    border-radius: 50%;
    filter: blur(1px);
    opacity: 0;
    animation: particleFloat 4s ease-in-out infinite;
}

.particle-1 {
    top: 20%;
    left: 25%;
    animation-delay: 0s;
}

.particle-2 {
    top: 60%;
    right: 30%;
    animation-delay: 1.3s;
}

.particle-3 {
    bottom: 30%;
    left: 70%;
    animation-delay: 2.6s;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        transform: translateY(-40px) translateX(20px);
        opacity: 0;
    }
}

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

@keyframes contentFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

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

.coming-soon-card.premium:hover .animated-icon-container {
    transform: scale(1.1);
    filter: drop-shadow(0 8px 30px var(--category-color));
}

.coming-soon-card.premium:hover .animated-3d-icon,
.coming-soon-card.premium:hover .animated-phone-icon {
    filter: drop-shadow(0 10px 40px var(--category-color));
}

body.light .coming-soon-wrapper {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

body.light .glassmorphism-bg {
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.05), 
        rgba(0, 0, 0, 0.02),
        rgba(0, 0, 0, 0.05));
    border: 1px solid rgba(0, 0, 0, 0.1);
}

body.light .brand-badge,
body.light .feature-tag {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: rgba(0, 0, 0, 0.8);
}

body.light .coming-soon-card h3 {
    background: linear-gradient(135deg, #1e293b, #475569);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

body.light .coming-description {
    color: rgba(0, 0, 0, 0.7);
}

body.light .timeline-text {
    color: rgba(0, 0, 0, 0.6);
}

/* Premium Preview Modal */
.preview-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    animation: modalFadeIn 0.4s ease-out;
}

.preview-container {
    width: 90%;
    max-width: 1400px;
    height: 85vh;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3), 
                0 0 0 1px rgba(255, 255, 255, 0.1);
    animation: modalSlideIn 0.5s ease-out;
    display: flex;
    flex-direction: column;
}

@keyframes modalSlideIn {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.96);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.preview-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.preview-header h3::before {
    content: '🔍';
    font-size: 1.1rem;
}

.preview-actions {
    display: flex;
    gap: 0.8rem;
}

.preview-btn {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 0.6rem 1rem;
    cursor: pointer;
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.preview-btn:hover {
    background: #f8fafc;
    border-color: #646cff;
    color: #646cff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(100, 108, 255, 0.15);
}

.close-btn:hover {
    background: #fef2f2;
    border-color: #ef4444;
    color: #ef4444;
}

.preview-content {
    flex: 1;
    position: relative;
    background: #ffffff;
}

.loading-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    z-index: 10;
}

.loading-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid #e2e8f0;
    border-top: 4px solid #646cff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1.5rem;
}

.loading-screen p {
    color: #64748b;
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
}

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

.preview-iframe {
    width: 100%;
    height: 100%;
    border: none;
    transition: opacity 0.6s ease;
    background: #ffffff;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        backdrop-filter: blur(0px);
    }
    to {
        opacity: 1;
        backdrop-filter: blur(20px);
    }
}

.preview-modal-content {
    width: 90%;
    max-width: 1400px;
    height: 85vh;
    background: linear-gradient(135deg, rgba(15, 15, 26, 0.95), rgba(10, 10, 18, 0.95));
    border-radius: 32px;
    border: 1px solid rgba(129, 140, 248, 0.3);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: modalSlideIn 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 
                0 0 0 1px rgba(129, 140, 248, 0.1);
}

body.light .preview-modal-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.95));
    border-color: rgba(100, 108, 255, 0.2);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
    background: rgba(129, 140, 248, 0.1);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(129, 140, 248, 0.2);
}

.preview-header h3 {
    margin: 0;
    font-size: 1.4rem;
    background: linear-gradient(135deg, #818cf8, #c084fc);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.preview-actions {
    display: flex;
    gap: 1rem;
}

.preview-action-btn {
    background: rgba(129, 140, 248, 0.2);
    border: 1px solid rgba(129, 140, 248, 0.3);
    border-radius: 25px;
    padding: 0.6rem 1.2rem;
    cursor: pointer;
    color: #818cf8;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.2);
    font-size: 0.9rem;
}

.preview-action-btn:hover {
    background: rgba(129, 140, 248, 0.3);
    transform: scale(1.05);
    border-color: #818cf8;
}

.close-preview:hover {
    color: #f472b6;
    transform: rotate(90deg) scale(1.1);
}

.preview-iframe-container {
    flex: 1;
    position: relative;
    overflow: hidden;
    background: #ffffff;
    margin: 1rem;
    border-radius: 16px;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.1);
}

.preview-iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 16px;
}

/* Project Details Modal */
.details-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    animation: modalFadeIn 0.3s ease-out;
}

.details-modal-content {
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    background: linear-gradient(135deg, rgba(15, 15, 26, 0.95), rgba(10, 10, 18, 0.95));
    border-radius: 32px;
    border: 1px solid rgba(129, 140, 248, 0.3);
    overflow: hidden;
    animation: modalSlideIn 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
}

body.light .details-modal-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.95));
    border-color: rgba(100, 108, 255, 0.2);
}

.details-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: rgba(129, 140, 248, 0.1);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(129, 140, 248, 0.2);
}

.details-modal-header h3 {
    margin: 0;
    font-size: 1.4rem;
    background: linear-gradient(135deg, #818cf8, #c084fc);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.close-details {
    font-size: 1.5rem;
    cursor: pointer;
    color: #818cf8;
    transition: all 0.2s ease;
    background: none;
    border: none;
}

.close-details:hover {
    color: #f472b6;
    transform: rotate(90deg) scale(1.1);
}

.details-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 2rem;
}

.details-header {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.details-image {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.details-title-section h2 {
    margin: 0 0 0.5rem 0;
    font-size: 1.8rem;
    background: linear-gradient(135deg, #818cf8, #f472b6);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.details-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(129, 140, 248, 0.2);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #a5b4fc;
}

.details-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.details-section h3 {
    margin: 0 0 1rem 0;
    font-size: 1.2rem;
    color: #818cf8;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.details-full-description {
    color: #cbd5e1;
    line-height: 1.6;
    font-size: 1rem;
}

body.light .details-full-description {
    color: #475569;
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

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

.tech-tag {
    background: linear-gradient(135deg, #646cff, #818cf8);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.project-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #cbd5e1;
    font-size: 0.9rem;
}

body.light .info-item {
    color: #475569;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.8rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #cbd5e1;
    font-size: 0.9rem;
}

.features-list li i {
    color: #4ade80;
    font-size: 0.8rem;
}

body.light .features-list li {
    color: #475569;
}

.details-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    padding-top: 2rem;
    border-top: 1px solid rgba(129, 140, 248, 0.2);
    margin-top: 2rem;
}

.btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Notification System */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, rgba(129, 140, 248, 0.9), rgba(168, 85, 247, 0.9));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(129, 140, 248, 0.3);
    border-radius: 16px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: white;
    font-weight: 500;
    z-index: 9999;
    transform: translateX(400px);
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.notification.show {
    transform: translateX(0);
}

.notification-info {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.9), rgba(99, 102, 241, 0.9));
}

.notification-success {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.9), rgba(16, 185, 129, 0.9));
}

.notification-error {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.9), rgba(220, 38, 38, 0.9));
}

/* Elegant Section Animations */
section {
    opacity: 0;
    transform: translateY(20px);
    animation: sectionReveal 0.6s ease-out forwards;
}

#home { animation-delay: 0s; }
#about { animation-delay: 0.1s; }
#skills { animation-delay: 0.2s; }
#projects { animation-delay: 0.3s; }

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

/* Lightweight Grid Animations */
.projects-grid {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    min-height: 400px;
    display: flex;
    align-items: stretch;
}

.about-grid > * {
    animation: gridStagger 0.5s ease-out backwards;
}

.about-grid > *:nth-child(1) { animation-delay: 0.05s; }
.about-grid > *:nth-child(2) { animation-delay: 0.1s; }
.about-grid > *:nth-child(3) { animation-delay: 0.15s; }

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

/* Magnetic Cursor Effect */
.magnetic-area {
    position: relative;
}

.magnetic-area:hover {
    cursor: none;
}

.magnetic-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid #818cf8;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transition: all 0.2s ease;
    mix-blend-mode: difference;
}

/* Premium Loading States */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.shimmer {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}

@media (max-width: 768px) {
    /* Mobile Navigation */
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        display: none;
    }
    
    .dark-toggle {
        display: none;
    }
    
    /* Mobile Optimizations */
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .project-card {
        width: calc(100% - 1rem);
        max-width: 350px;
    }
    
    .coming-soon-card.premium {
        width: calc(100% - 1rem);
        max-width: 350px;
    }
    
    .coming-soon-wrapper {
        min-height: 400px;
    }
    
    .coming-soon-content {
        padding: 2rem;
    }
    
    .coming-icon-wrapper i {
        font-size: 2.5rem;
    }
    
    .coming-soon-card h3 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }
    
    .coming-description {
        font-size: 0.9rem;
    }
    
    .feature-tag {
        font-size: 0.7rem;
        padding: 0.25rem 0.6rem;
    }
    
    .shape {
        transform: scale(0.8);
    }
    
    .projects-row {
        gap: 1rem;
    }
    
    .project-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .overlay-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    /* Mobile Preview Modal */
    .preview-container {
        width: 95%;
        height: 90vh;
        border-radius: 16px;
    }
    
    .preview-header {
        padding: 1rem 1.2rem;
    }
    
    .preview-header h3 {
        font-size: 1.1rem;
    }
    
    .preview-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
    }
    
    /* Disable heavy effects on mobile */
    .project-card:hover {
        transform: translateY(-3px);
    }
    
    .btn:hover {
        transform: translateY(-1px);
    }
    
    /* Details Modal Mobile */
    .details-header {
        flex-direction: column;
        text-align: center;
    }
    
    .details-image {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
    }
    
    .details-actions {
        flex-direction: column;
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }
    
    /* Mobile Coming Soon Stage */
    .coming-soon-stage {
        max-width: 100%;
        height: 400px;
        margin: 1rem auto;
        border-radius: 20px;
    }
    
    .stage-content {
        padding: 1.5rem;
        max-width: 100%;
    }
    
    .stage-icon-container {
        width: 180px;
        height: 180px;
        margin: 1rem 0;
    }
    
    .icon-glow-bg {
        width: 150px;
        height: 150px;
        filter: blur(12px);
    }
    
    .stage-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .stage-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        max-width: 100%;
    }
    
    .stage-features {
        grid-template-columns: 1fr;
        gap: 0.6rem;
        margin-bottom: 1.5rem;
        max-width: 100%;
    }
    
    .feature-item {
        padding: 0.6rem;
        font-size: 0.8rem;
        gap: 0.5rem;
    }
    
    .stage-badge {
        font-size: 0.75rem;
        padding: 0.6rem 1rem;
        gap: 0.6rem;
    }
    
    .stage-progress {
        max-width: 100%;
    }
    
    .progress-label {
        font-size: 0.8rem;
    }
    
    /* Reduce floating orbs on mobile */
    .orb-1, .orb-3 {
        display: none;
    }
    
    .orb-2 {
        width: 30px;
        height: 30px;
    }
    
    .orb-4 {
        width: 25px;
        height: 25px;
    }
}

@media (max-width: 480px) {
    /* Small Mobile Optimizations */
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .project-card,
    .coming-soon-card {
        width: 100%;
        max-width: 320px;
    }
    
    .coming-soon-wrapper {
        min-height: 380px;
    }
    
    .coming-soon-content {
        padding: 1.8rem;
    }
    
    .coming-icon-wrapper i {
        font-size: 2.2rem;
    }
    
    .coming-soon-card h3 {
        font-size: 1.4rem;
        margin-bottom: 0.7rem;
    }
    
    .coming-description {
        font-size: 0.85rem;
    }
    
    .feature-tag {
        font-size: 0.65rem;
        padding: 0.2rem 0.5rem;
    }
    
    .brand-badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }
    
    .shape {
        transform: scale(0.7);
    }
    
    .preview-container {
        width: 98%;
        height: 95vh;
        border-radius: 12px;
    }
    
    .preview-header {
        padding: 0.8rem 1rem;
    }
    
    .preview-header h3 {
        font-size: 1rem;
    }
    
    .preview-btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.75rem;
    }
    
    .coming-soon-content {
        padding: 1.5rem;
    }
    
    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .navbar {
        padding: 0.5rem 1rem;
    }
    
    .logo {
        font-size: 1.5rem;
    }
}


@keyframes modalGlow {
    from { opacity: 0; transform: scale(0.96); }
    to { opacity: 1; transform: scale(1); }
}

.order-section {
    background: linear-gradient(135deg, rgba(100, 108, 255, 0.12), rgba(139, 92, 246, 0.08));
    border-radius: 40px;
    text-align: center;
    padding: 3rem;
    margin: 2rem auto;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.2);
}

.order-section:hover {
    transform: scale(1.01);
    box-shadow: 0 20px 35px -12px rgba(129, 140, 248, 0.25);
}

.support-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(129, 140, 248, 0.15);
    backdrop-filter: blur(4px);
    padding: 0.6rem 1.5rem;
    border-radius: 60px;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    border: 1px solid rgba(129, 140, 248, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.support-badge:hover {
    transform: scale(1.02);
    background: rgba(129, 140, 248, 0.25);
    border-color: #818cf8;
}

#orderModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: linear-gradient(135deg, #0f0f1a, #0a0a12);
    padding: 2.5rem;
    border-radius: 40px;
    border: 1px solid rgba(129, 140, 248, 0.5);
    width: 90%;
    max-width: 550px;
    position: relative;
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.6);
    animation: modalGlow 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.2) forwards;
}

body.light .modal-content {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    border: 1px solid #646cff;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    cursor: pointer;
    color: #818cf8;
    font-size: 1.8rem;
    transition: all 0.25s ease;
    line-height: 1;
}

.close-btn:hover {
    color: #f472b6;
    transform: rotate(90deg) scale(1.1);
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.8rem;
}

.input-group {
    position: relative;
}

.input-group i {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: #818cf8;
    font-size: 1.1rem;
    z-index: 1;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 1rem 1.2rem 1rem 2.8rem;
    border-radius: 24px;
    border: 1px solid #2d2d3a;
    background: #14141f;
    color: #ededee;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.25s ease;
}

body.light .input-group input,
body.light .input-group textarea {
    background: #ffffff;
    color: #0a0a1a;
    border: 1px solid #e2e8f0;
}

.input-group input:focus,
.input-group textarea:focus {
    border-color: #818cf8;
    box-shadow: 0 0 0 3px rgba(129, 140, 248, 0.4);
    transform: scale(1.01);
}

.input-group textarea {
    resize: vertical;
    min-height: 100px;
    padding-top: 1rem;
}

.input-group textarea + i {
    top: 1.2rem;
    transform: none;
}

.custom-dropdown {
    position: relative;
    width: 100%;
}

.dropdown-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem 1.2rem;
    background: #14141f;
    border: 1px solid #2d2d3a;
    border-radius: 24px;
    cursor: pointer;
    transition: all 0.25s ease;
    font-size: 0.95rem;
    color: #94a3b8;
}

body.light .dropdown-btn {
    background: #ffffff;
    border-color: #e2e8f0;
    color: #64748b;
}

.dropdown-btn:hover {
    border-color: #818cf8;
    transform: translateY(-2px);
}

.dropdown-btn .dropdown-icon {
    transition: transform 0.3s ease;
}

.custom-dropdown.open .dropdown-btn .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    background: #14141f;
    border: 1px solid #2d2d3a;
    border-radius: 20px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.2);
    z-index: 10;
}

body.light .dropdown-menu {
    background: #ffffff;
    border-color: #e2e8f0;
}

.custom-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-option {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.9rem 1.2rem;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.95rem;
    color: #ededee;
}

body.light .dropdown-option {
    color: #0a0a1a;
}

.dropdown-option i {
    width: 1.5rem;
    color: #818cf8;
    font-size: 1.1rem;
}

.dropdown-option:hover {
    background: rgba(129, 140, 248, 0.2);
}

.dropdown-option.selected {
    background: rgba(129, 140, 248, 0.3);
    color: #818cf8;
}

.submit-btn {
    width: 100%;
    justify-content: center;
    padding: 1rem;
    margin-top: 0.5rem;
    font-size: 1rem;
}

.form-status {
    text-align: center;
    padding: 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 0.5rem;
}

.form-status.success {
    background: rgba(34, 197, 94, 0.2);
    color: #4ade80;
    border: 1px solid #4ade80;
}

.form-status.error {
    background: rgba(239, 68, 68, 0.2);
    color: #f87171;
    border: 1px solid #f87171;
}

.custom-copy-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) scale(0.9);
    background: linear-gradient(135deg, #1e293b, #0f172a);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(129, 140, 248, 0.6);
    border-radius: 60px;
    padding: 0.9rem 2rem;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 9999;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.34, 1.2, 0.64, 1);
    box-shadow: 0 20px 35px -10px rgba(0,0,0,0.5), 0 0 0 1px rgba(129,140,248,0.2);
    font-weight: 500;
    pointer-events: none;
}

body.light .custom-copy-toast {
    background: rgba(255,255,255,0.95);
    border: 1px solid #818cf8;
    color: #0a0a1a;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.custom-copy-toast i {
    font-size: 1.5rem;
    color: #4ade80;
    filter: drop-shadow(0 0 6px #4ade80);
}

.custom-copy-toast.show {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

footer {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid rgba(129, 140, 248, 0.2);
    margin-top: 2rem;
    font-size: 0.9rem;
}

.footer-content {
    max-width: 1150px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    font-size: 1.3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #818cf8, #c084fc);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-support {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(129, 140, 248, 0.1);
    padding: 0.5rem 1.2rem;
    border-radius: 40px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.footer-support:hover {
    background: rgba(129, 140, 248, 0.2);
    transform: translateY(-2px);
}

.footer-support i {
    color: #818cf8;
}

.footer-support a {
    color: #818cf8;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-support a:hover {
    color: #f472b6;
    text-decoration: underline;
}

.footer-brand {
    cursor: pointer;
    font-weight: 600;
    color: #818cf8;
    transition: all 0.3s ease;
}

.footer-brand:hover {
    color: #c084fc;
    transform: translateY(-2px);
    display: inline-block;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Elegant Subtle Animations - Performance Optimized */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: elegantFadeUp 0.6s ease-out forwards;
}

.fade-left {
    opacity: 0;
    transform: translateX(-20px);
    animation: elegantFadeLeft 0.6s ease-out forwards;
}

.fade-right {
    opacity: 0;
    transform: translateX(20px);
    animation: elegantFadeRight 0.6s ease-out forwards;
}

.scale-in {
    opacity: 0;
    transform: scale(0.95);
    animation: elegantScaleIn 0.5s ease-out forwards;
}

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

@keyframes elegantFadeLeft {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes elegantFadeRight {
    0% {
        opacity: 0;
        transform: translateX(20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes elegantScaleIn {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Staggered Delays */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }
.delay-7 { animation-delay: 0.7s; }
.delay-8 { animation-delay: 0.8s; }

/* Crisp Chat Branding Removal */
.crisp-branding,
.crisp-chat-footer,
.crisp-clientchat-brand,
.crisp-clients-brand,
.crisp-footer,
.crisp-powered-by,
.crisp-watermark,
[class*="crisp-brand"],
[class*="crisp-credit"],
[class*="crisp-watermark"],
[class*="crisp-footer"],
[class*="crisp-powered"],
a[href*="crisp.chat"]:not(.crisp-chat-message-link) {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    opacity: 0 !important;
}

@media (max-width: 768px) {
    .projects-row { gap: 1rem; }
    .project-card, .coming-soon-card { width: calc(100% - 1rem); max-width: 360px; }
    .hero h1 { font-size: 2rem; }
    .section-title { font-size: 1.8rem; }
}