@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@500;600;700&family=Space+Grotesk:wght@400;500;600&display=swap');

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #0f172a 0%, #581c87 50%, #0f172a 100%);
    color: white;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, #0f172a 0%, #581c87 50%, #0f172a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-content {
    text-align: center;
}

.loading-spinner {
    width: 80px;
    height: 80px;
    border: 4px solid rgba(168, 85, 247, 0.3);
    border-top: 4px solid #a855f7;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

.loading-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 0.6s ease 0.5s forwards;
}

.dot:nth-child(2) {
    animation-delay: 0.2s;
}

.dot:nth-child(3) {
    animation-delay: 0.4s;
}

/* Background Elements */
.background-elements {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
}

.bg-blur {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.bg-blur-1 {
    top: 25%;
    left: 25%;
    width: 256px;
    height: 256px;
    background: #a855f7;
    animation-delay: 0s;
}

.bg-blur-2 {
    bottom: 25%;
    right: 25%;
    width: 384px;
    height: 384px;
    background: #ec4899;
    animation-delay: 3s;
}

/* Particles */
.particles-container {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: particleFloat 4s linear infinite;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 1rem 1.5rem;
    animation: slideDown 0.6s ease;
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
}

.header-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

.header-content:hover {
    background: rgba(255, 255, 255, 0.15);
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #a855f7, #ec4899);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    transition: transform 0.6s ease;
}

.logo:hover .logo-icon {
    transform: rotate(360deg);
}

.logo-text {
    font-weight: 600;
    color: white;
}

.desktop-nav {
    display: none;
    gap: 0.5rem;
}

.nav-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover,
.nav-btn.active {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px) scale(1.05);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cv-btn {
    display: none;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cv-btn:hover {
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: block;
    position: fixed;
    top: 1.7rem;
    right: 2.5rem;
    z-index: 60;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.15);
}

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 55;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 320px;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(16px);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    padding-top: 5rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav .nav-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: none;
    border-radius: 0.75rem;
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-align: left;
}

.mobile-nav .nav-item:hover,
.mobile-nav .nav-item.active {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
}

.mobile-social {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    gap: 1rem;
}

.mobile-social .social-link {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-social .social-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1) rotate(5deg);
}

/* Main Content */
.main-content {
    position: relative;
    z-index: 10;
    padding-top: 5rem;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section {
    min-height: 100vh;
    padding: 2rem 0;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.5s ease;
    display: none;
}

.section.active {
    opacity: 1;
    transform: translateY(0);
    display: block;
}

/* Hero Section */
.hero-grid {
    display: grid;
    gap: 2rem;
    align-items: center;
    min-height: calc(100vh - 5rem);
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    animation: fadeInUp 0.8s ease;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    width: fit-content;
    transition: transform 0.3s ease;
}

.status-badge:hover {
    transform: scale(1.05);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: clamp(2rem, 8vw, 4rem);
    font-weight: bold;
    line-height: 1.1;
    color: white;
}

.gradient-text {
    background: linear-gradient(135deg, #a855f7, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    animation: gradientShift 3s ease-in-out infinite;
}

.hero-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    max-width: 32rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #a855f7, #ec4899);
    color: white;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(168, 85, 247, 0.3);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-full {
    width: 100%;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1) rotate(5deg);
}

/* Hero Image */
.hero-image {
    position: relative;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.image-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1.5rem;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.image-container:hover {
    transform: scale(1.02);
}

.image-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(168, 85, 247, 0.1), rgba(236, 72, 153, 0.1));
    animation: gradientRotate 4s linear infinite;
}

.profile-image {
    width: 100%;
    border-radius: 1rem;
    position: relative;
    z-index: 1;
}

.stat-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 1rem;
    text-align: center;
    animation: float 3s ease-in-out infinite;
}

.stat-card-1 {
    top: -1rem;
    right: -1rem;
    animation-delay: 0s;
}

.stat-card-2 {
    bottom: -1rem;
    left: -1rem;
    animation-delay: 1.5s;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.6);
    animation: bounce 2s infinite;
    cursor: pointer;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeInUp 0.6s ease;
}

.section-title {
    font-size: clamp(2rem, 6vw, 2.5rem);
    font-weight: bold;
    color: white;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Projects Section */
.featured-project {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 3rem;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.featured-project:hover {
    transform: scale(1.02) rotateY(2deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.featured-project .project-image {
    position: relative;
    height: 16rem;
    overflow: hidden;
}

.featured-project .project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-project:hover .project-image img {
    transform: scale(1.05);
}

.featured-project .project-content {
    padding: 1.5rem;
}

.project-badge {
    background: rgba(168, 85, 247, 0.2);
    color: #c084fc;
    border: 1px solid rgba(168, 85, 247, 0.3);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 1rem;
    display: inline-block;
}

.project-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.75rem;
}

.project-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tech-tag {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}

.project-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Projects Grid */
.projects-grid {
    display: grid;
    gap: 1.5rem;
    animation: fadeInUp 0.6s ease 0.4s both;
}

.project-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.project-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.project-card .project-image {
    position: relative;
    height: 12rem;
    overflow: hidden;
}

.project-card .project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(16px);
    border-radius: 9999px;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    color: white;
}

.project-card .project-content {
    padding: 1.5rem;
}

.project-card .project-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.project-card .project-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.project-card .project-tech {
    margin-bottom: 1rem;
}

.project-card .tech-tag {
    font-size: 0.625rem;
}

.project-actions {
    display: flex;
    gap: 0.5rem;
}

.action-btn {
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-btn:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

/* Skills Section */
.skills-category {
    margin-bottom: 3rem;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease;
}

.category-icon {
    width: 32px;
    height: 32px;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.frontend-icon {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.video-icon {
    background: linear-gradient(135deg, #a855f7, #ec4899);
}

.category-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.skills-grid {
    display: grid;
    gap: 1.5rem;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.skill-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.skill-card:hover {
    transform: scale(1.02);
    background: rgba(255, 255, 255, 0.15);
}

.skill-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.skill-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.skill-icon {
    font-size: 1.5rem;
}

.skill-name {
    color: white;
    font-weight: 500;
}

.skill-percentage {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.skill-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    border-radius: 9999px;
    width: 0;
    transition: width 1s ease;
}

.video-progress {
    background: linear-gradient(135deg, #a855f7, #ec4899);
}

/* Specialization Cards */
.specialization-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.6s ease 0.6s both;
}

.specialization-card {
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.frontend-spec {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(6, 182, 212, 0.1));
    border-color: rgba(59, 130, 246, 0.2);
}

.video-spec {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(236, 72, 153, 0.1));
    border-color: rgba(168, 85, 247, 0.2);
}

.specialization-card:hover {
    transform: scale(1.02);
}

.spec-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.spec-header i,
.spec-header span {
    font-size: 1.5rem;
}

.frontend-spec .spec-header i {
    color: #3b82f6;
}

.video-spec .spec-header span {
    font-size: 1.5rem;
}

.spec-header h4 {
    font-size: 1.25rem;
    font-weight: bold;
    color: white;
}

.specialization-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.spec-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.spec-tag {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
}

.frontend-spec .spec-tag {
    background: rgba(59, 130, 246, 0.2);
    color: #93c5fd;
}

.video-spec .spec-tag {
    background: rgba(168, 85, 247, 0.2);
    color: #c084fc;
}

/* Achievements */
.achievements {
    animation: fadeInUp 0.6s ease 0.8s both;
}

.achievements-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.achievements-card:hover {
    transform: scale(1.02);
}

.achievements-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    text-align: center;
    margin-bottom: 1.5rem;
}

.achievements-grid {
    display: grid;
    gap: 1.5rem;
}

.achievement-item {
    padding: 1rem;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.achievement-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.achievement-title {
    color: white;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.achievement-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

/* Contact Section */
.contact-grid {
    display: grid;
    gap: 2rem;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card,
.status-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.contact-card:hover,
.status-card:hover {
    transform: scale(1.02);
    background: rgba(255, 255, 255, 0.15);
}

.contact-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

.contact-icon {
    font-size: 1.25rem;
}

.email-icon {
    color: #ef4444;
}

.phone-icon {
    color: #10b981;
}

.github-icon {
    color: #6b7280;
}

.contact-item span {
    color: rgba(255, 255, 255, 0.8);
}

.status-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-dot-large {
    width: 12px;
    height: 12px;
    background: #10b981;
    border-radius: 50%;
}

.status-indicator span {
    color: rgba(255, 255, 255, 0.8);
}

.status-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

/* Contact Form */
.contact-form-container {
    animation: fadeInUp 0.6s ease 0.4s both;
}

.contact-form-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.contact-form-card:hover {
    transform: scale(1.01);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-input,
.form-textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #a855f7;
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.02);
}

.form-textarea {
    resize: none;
    min-height: 100px;
}

.btn-text {
    animation: slideText 2s infinite;
}

/* Responsive Design */
@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }

    .cv-btn {
        display: flex;
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .specialization-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured-project {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }

    .featured-project .project-image {
        height: auto;
    }

    .featured-project .project-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .project-links {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }

    .mobile-menu-btn {
        display: none;
    }

    .hero-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }

    .section {
        padding: 4rem 0;
    }

    .hero-content {
        gap: 2rem;
    }
}

/* Animations */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes gradientRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100px);
        opacity: 0;
    }
}

@keyframes slideText {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(5px);
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@500;600;700&family=Space+Grotesk:wght@400;500;600&display=swap');

:root {
    --bg: #fafafa;
    --surface: rgba(255, 255, 255, 0.82);
    --surface-strong: #ffffff;
    --text: #09090b;
    --muted-text: #52525b;
    --soft-text: #71717a;
    --border: #e4e4e7;
    --accent: #2563eb;
    --accent-dark: #1d4ed8;
    --success: #16a34a;
    --shadow-sm: 0 1px 2px rgba(9, 9, 11, 0.05);
    --shadow-md: 0 18px 50px rgba(9, 9, 11, 0.08);
    --shadow-lg: 0 28px 80px rgba(37, 99, 235, 0.14);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.14), transparent 34rem),
        radial-gradient(circle at bottom right, rgba(24, 24, 27, 0.08), transparent 30rem),
        var(--bg);
    color: var(--text);
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(9, 9, 11, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(9, 9, 11, 0.035) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, black, transparent 78%);
    z-index: -2;
}

.loading-screen {
    background: var(--bg);
}

.loading-title,
.logo-text,
.hero-title,
.section-title,
.project-title,
.category-title,
.achievements-title,
.contact-title,
.spec-header h4 {
    font-family: 'Archivo', sans-serif;
    color: var(--text);
    letter-spacing: -0.04em;
}

.loading-spinner {
    border-color: rgba(37, 99, 235, 0.14);
    border-top-color: var(--accent);
}

.bg-blur {
    opacity: 0.18;
    filter: blur(140px);
}

.bg-blur-1 {
    background: #2563eb;
}

.bg-blur-2 {
    background: #18181b;
}

.particle {
    width: 3px;
    height: 3px;
    background: rgba(37, 99, 235, 0.18);
}

.header-content,
.mobile-menu-btn,
.mobile-social .social-link,
.status-badge,
.social-link,
.image-container,
.stat-card,
.featured-project,
.project-card,
.skill-card,
.specialization-card,
.achievements-card,
.contact-card,
.status-card,
.contact-form-card {
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    color: var(--text);
}

.header-content {
    border-radius: 999px;
    padding: 0.75rem;
}

.header-content:hover,
.skill-card:hover,
.contact-card:hover,
.status-card:hover {
    background: var(--surface-strong);
}

.logo-icon,
.btn-primary,
.frontend-icon,
.video-icon,
.skill-progress,
.video-progress {
    background: linear-gradient(135deg, var(--text), var(--accent));
}

.nav-btn,
.cv-btn,
.mobile-nav .nav-item,
.mobile-social .social-link,
.social-link,
.action-btn {
    color: var(--muted-text);
    min-height: 44px;
}

.nav-btn {
    border-color: transparent;
    border-radius: 999px;
}

.nav-btn:hover,
.nav-btn.active,
.cv-btn:hover,
.mobile-nav .nav-item:hover,
.mobile-nav .nav-item.active,
.social-link:hover,
.mobile-social .social-link:hover,
.action-btn:hover {
    color: var(--text);
    background: #f4f4f5;
    border-color: var(--border);
}

.mobile-menu-overlay {
    background: rgba(9, 9, 11, 0.42);
}

.mobile-menu-content {
    background: rgba(250, 250, 250, 0.96);
    border-left: 1px solid var(--border);
}

.mobile-menu-btn {
    color: var(--text);
    border-radius: 999px;
}

.section {
    min-height: 100dvh;
}

.hero-grid {
    gap: clamp(2rem, 6vw, 5rem);
}

.status-badge {
    color: var(--muted-text);
    box-shadow: none;
}

.status-dot,
.status-dot-large {
    background: var(--success);
}

.gradient-text {
    background: linear-gradient(135deg, var(--text), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
}

.hero-description,
.section-description,
.project-description,
.project-card .project-description,
.specialization-card p,
.achievement-subtitle,
.status-text,
.contact-item span,
.status-indicator span,
.skill-percentage,
.stat-label {
    color: var(--muted-text);
}

.btn {
    min-height: 44px;
    border-radius: 999px;
    font-weight: 600;
    box-shadow: none;
}

.btn-primary {
    color: #ffffff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    color: var(--text);
    background: var(--surface-strong);
    border-color: var(--border);
}

.btn-outline:hover {
    background: #f4f4f5;
    transform: translateY(-2px);
}

.image-container,
.featured-project,
.project-card,
.skill-card,
.specialization-card,
.achievements-card,
.contact-card,
.status-card,
.contact-form-card {
    border-radius: 1.5rem;
}

.image-container {
    padding: 0.75rem;
    box-shadow: var(--shadow-md);
}

.image-container::before {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), transparent);
}

.profile-image {
    border-radius: 1rem;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.stat-card {
    box-shadow: var(--shadow-md);
}

.stat-number {
    color: var(--text);
}

.section-title {
    font-size: clamp(2.25rem, 7vw, 4rem);
}

.featured-project:hover,
.project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.project-badge,
.project-category,
.tech-tag,
.spec-tag {
    background: #eff6ff;
    color: var(--accent-dark);
    border: 1px solid #bfdbfe;
}

.featured-project .project-image img,
.project-card .project-image img {
    filter: saturate(0.9);
}

.skill-bar {
    height: 10px;
    background: #e4e4e7;
}

.skill-name,
.achievement-title {
    color: var(--text);
}

.frontend-spec,
.video-spec {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(255, 255, 255, 0.88));
    border-color: var(--border);
}

.frontend-spec .spec-header i,
.email-icon,
.phone-icon,
.github-icon {
    color: var(--accent);
}

.achievement-item,
.contact-item {
    background: #f8fafc;
}

.achievement-item:hover,
.contact-item:hover {
    background: #eef2ff;
}

.form-input,
.form-textarea {
    background: #ffffff;
    border-color: var(--border);
    color: var(--text);
    min-height: 44px;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--soft-text);
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--accent);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
    transform: none;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(37, 99, 235, 0.35);
    outline-offset: 3px;
}

::-webkit-scrollbar-track {
    background: #f4f4f5;
}

::-webkit-scrollbar-thumb {
    background: #d4d4d8;
}

::-webkit-scrollbar-thumb:hover {
    background: #a1a1aa;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
