/* ===== PROFESSIONAL RESUME DESIGN ===== */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Colors */
    --primary-blue: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    
    /* Neutral Colors */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Semantic Colors */
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --accent-green: #10b981;
    --accent-purple: #8b5cf6;
    
    /* Theme Variables */
    --bg-primary: var(--white);
    --bg-secondary: var(--gray-50);
    --text-primary: var(--gray-900);
    --text-secondary: var(--gray-600);
    --border-color: var(--gray-200);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Typography */
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    
    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    
    /* Border Radius */
    --radius-sm: 0.125rem;
    --radius: 0.25rem;
    --radius-md: 0.375rem;
    --radius-lg: 0.5rem;
    --radius-xl: 0.75rem;
    --radius-2xl: 1rem;
    --radius-full: 9999px;
}

/* Dark Theme */
body.dark-theme {
    --bg-primary: var(--gray-900);
    --bg-secondary: var(--gray-800);
    --text-primary: var(--gray-100);
    --text-secondary: var(--gray-400);
    --border-color: var(--gray-700);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    font-size: var(--font-size-base);
    transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-light));
    z-index: 9999;
    transition: width 0.3s ease;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

.dark-theme .navbar {
    background: rgba(17, 24, 39, 0.95);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-4) var(--space-6);
}

.nav-logo a {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--primary-blue);
    text-decoration: none;
}

.nav-menu {
    display: flex;
    gap: var(--space-8);
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-blue);
    background-color: var(--gray-100);
}

.dark-theme .nav-link:hover {
    background-color: var(--gray-800);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle .bar {
    width: 24px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: var(--radius-full);
}

/* ===== ENHANCED HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: 
        linear-gradient(135deg, var(--bg-primary) 0%, var(--gray-50) 100%),
        radial-gradient(ellipse at center, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    overflow: hidden;
}

.dark-theme .hero {
    background: 
        linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%),
        radial-gradient(ellipse at center, rgba(59, 130, 246, 0.2) 0%, transparent 50%);
}

/* Additional dynamic background elements */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(147, 197, 253, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 60% 70%, rgba(16, 185, 129, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 90% 10%, rgba(139, 92, 246, 0.05) 0%, transparent 30%);
    animation: backgroundPulse 12s ease-in-out infinite alternate, backgroundShift 15s ease-in-out infinite;
}

/* Layered background with parallax effect */
.hero-bg-layer-1 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 800px 600px at 20% 30%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 600px 800px at 80% 70%, rgba(16, 185, 129, 0.08) 0%, transparent 50%);
    animation: layerFloat1 20s ease-in-out infinite;
    z-index: 1;
}

.hero-bg-layer-2 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 700px 500px at 60% 20%, rgba(139, 92, 246, 0.07) 0%, transparent 50%),
        radial-gradient(ellipse 500px 700px at 30% 80%, rgba(59, 130, 246, 0.09) 0%, transparent 50%);
    animation: layerFloat2 25s ease-in-out infinite reverse;
    z-index: 1;
}

/* Advanced Animated Background Layers */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(147, 197, 253, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 60% 70%, rgba(16, 185, 129, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 90% 10%, rgba(139, 92, 246, 0.05) 0%, transparent 30%);
    animation: backgroundPulse 12s ease-in-out infinite alternate;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(37, 99, 235, 0.03) 40%, transparent 50%, rgba(16, 185, 129, 0.02) 60%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(59, 130, 246, 0.03) 40%, transparent 50%, rgba(139, 92, 246, 0.02) 60%, transparent 70%),
        conic-gradient(from 0deg, transparent, rgba(37, 99, 235, 0.02), transparent, rgba(16, 185, 129, 0.02), transparent);
    animation: backgroundRotate 25s linear infinite;
    pointer-events: none;
}

/* Hero Floating Geometric Shapes */
.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.bg-shape {
    position: absolute;
    opacity: 0.1;
    animation: floatShapes 20s ease-in-out infinite;
}

.bg-shape.triangle {
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 50px solid var(--primary-blue);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 18s;
}

.bg-shape.circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-blue), var(--primary-light));
    top: 30%;
    right: 15%;
    animation-delay: -5s;
    animation-duration: 22s;
}

.bg-shape.square {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-green), rgba(16, 185, 129, 0.7));
    transform: rotate(45deg);
    bottom: 25%;
    left: 20%;
    animation-delay: -10s;
    animation-duration: 25s;
}

.bg-shape.hexagon {
    width: 50px;
    height: 28.87px;
    background: var(--accent-purple);
    position: relative;
    top: 15%;
    right: 25%;
    animation-delay: -15s;
    animation-duration: 20s;
}

.bg-shape.hexagon:before,
.bg-shape.hexagon:after {
    content: "";
    position: absolute;
    width: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
}

.bg-shape.hexagon:before {
    bottom: 100%;
    border-bottom: 14.43px solid var(--accent-purple);
}

.bg-shape.hexagon:after {
    top: 100%;
    border-top: 14.43px solid var(--accent-purple);
}

/* Enhanced Mouse Orb */
.hero-mouse-orb {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, rgba(59, 130, 246, 0.08) 40%, transparent 70%);
    pointer-events: none;
    z-index: 2;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    filter: blur(1px);
    mix-blend-mode: screen;
    animation: orbPulse 4s ease-in-out infinite;
}

.dark-theme .hero-mouse-orb {
    background: radial-gradient(circle, rgba(59, 130, 246, 0.25) 0%, rgba(37, 99, 235, 0.12) 40%, transparent 70%);
}

.hero-container {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 0 var(--space-6);
}

.hero-title {
    font-size: clamp(var(--font-size-4xl), 5vw, var(--font-size-5xl));
    font-weight: 800;
    margin-bottom: var(--space-6);
    line-height: 1.2;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: var(--font-size-xl);
    color: var(--text-secondary);
    margin-bottom: var(--space-6);
    font-weight: 500;
}

.hero-description {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    margin-bottom: var(--space-8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-expertise {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-3);
    margin-bottom: var(--space-10);
}

.expertise-tag {
    background: var(--primary-blue);
    color: white;
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 500;
    transition: all 0.3s ease;
}

.expertise-tag:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-4);
    margin-bottom: var(--space-8);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-lg);
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: var(--font-size-base);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary-blue);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

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

.btn-outline:hover {
    background: var(--gray-100);
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.dark-theme .btn-outline:hover {
    background: var(--gray-800);
}

/* Theme Toggle */
.theme-toggle {
    position: fixed;
    top: 50%;
    right: var(--space-6);
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    background: var(--white);
    border: 2px solid var(--border-color);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-lg);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: var(--shadow-lg);
}

.theme-toggle:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-xl);
}

.dark-theme .theme-toggle {
    background: var(--gray-800);
    border-color: var(--gray-700);
}

/* ===== SECTIONS ===== */
.section {
    padding: var(--space-20) 0;
}

.section-title {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--space-12);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -var(--space-3);
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-light));
    border-radius: var(--radius-full);
}

/* ===== ENHANCED ABOUT SECTION ===== */
.about {
    background: var(--bg-secondary);
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: var(--space-16);
    align-items: start;
    margin-bottom: var(--space-16);
}

.about-intro h3 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: var(--space-4);
}

.about-highlight {
    font-size: var(--font-size-xl);
    color: var(--text-secondary);
    margin-bottom: var(--space-8);
    line-height: 1.6;
    font-weight: 500;
}

.about-highlights {
    margin-top: var(--space-8);
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
    padding: var(--space-4);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.dark-theme .highlight-item {
    background: var(--gray-800);
}

.highlight-item i {
    font-size: var(--font-size-xl);
    color: var(--primary-blue);
    margin-top: var(--space-1);
}

.highlight-item h4 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-2);
}

.highlight-item p {
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

.about-visual {
    position: sticky;
    top: 100px;
}

.about-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.dark-theme .about-card {
    background: var(--gray-800);
}

.card-header {
    padding: var(--space-8);
    text-align: center;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-light));
    color: white;
}

.profile-avatar {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-4);
    font-size: var(--font-size-3xl);
}

.card-header h4 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin: 0;
}

.journey-timeline {
    padding: var(--space-6);
}

.journey-item {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.journey-item:last-child {
    border-bottom: none;
}

.journey-item::before {
    content: '';
    position: absolute;
    left: 45px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
}

.journey-item:last-child::before {
    display: none;
}

.journey-year {
    width: 80px;
    padding: var(--space-2) var(--space-3);
    background: var(--primary-blue);
    color: white;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: var(--font-size-sm);
    text-align: center;
    position: relative;
    z-index: 1;
}

.journey-desc {
    flex: 1;
    color: var(--text-secondary);
    font-weight: 500;
}

.about-text p {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    margin-bottom: var(--space-6);
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-8);
    margin-top: var(--space-12);
}

.stat-item {
    text-align: center;
    padding: var(--space-6);
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.dark-theme .stat-item {
    background: var(--gray-800);
}

.stat-number {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    color: var(--primary-blue);
    display: block;
}

.stat-label {
    font-size: var(--font-size-base);
    color: var(--text-secondary);
    margin-top: var(--space-2);
}

/* ===== SKILLS SECTION ===== */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-8);
}

.skill-category {
    background: var(--white);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.skill-category:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.dark-theme .skill-category {
    background: var(--gray-800);
}

.skill-category h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: var(--space-6);
}

.skill-items {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
}

.skill-item {
    background: var(--gray-100);
    color: var(--text-secondary);
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-md);
    font-size: var(--font-size-sm);
    font-weight: 500;
    transition: all 0.3s ease;
}

.skill-item:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
}

.dark-theme .skill-item {
    background: var(--gray-700);
    color: var(--gray-300);
}

/* ===== SKILLS VISUALIZATION ===== */
.skills-visualization {
    margin-top: var(--space-16);
    padding: var(--space-8);
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.skills-chart-container {
    margin-bottom: var(--space-12);
}

.skill-chart-item {
    margin-bottom: var(--space-6);
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.skill-chart-item:nth-child(odd) {
    animation-delay: 0.1s;
}

.skill-chart-item:nth-child(even) {
    animation-delay: 0.2s;
}

.skill-name {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-2);
    font-weight: 600;
    color: var(--text-primary);
}

.skill-percentage {
    font-size: var(--font-size-sm);
    color: var(--primary-blue);
    font-weight: 700;
}

.skill-bar {
    height: 8px;
    background: var(--gray-200);
    border-radius: var(--radius-full);
    overflow: hidden;
    position: relative;
}

.dark-theme .skill-bar {
    background: var(--gray-700);
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-light));
    border-radius: var(--radius-full);
    width: 0;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.skill-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: skillShimmer 2s ease-in-out infinite;
}

/* Radar Chart Styles */
.skills-radar {
    display: flex;
    justify-content: center;
    margin: var(--space-12) 0;
}

.radar-chart {
    width: 300px;
    height: 300px;
    position: relative;
}

.radar-chart svg {
    width: 100%;
    height: 100%;
}

.radar-grid circle,
.radar-grid line {
    stroke: var(--border-color);
    stroke-width: 1;
    fill: none;
    opacity: 0.3;
}

.radar-area {
    fill: rgba(37, 99, 235, 0.2);
    stroke: var(--primary-blue);
    stroke-width: 2;
    animation: radarGrow 2s ease-out forwards;
}

.radar-point {
    fill: var(--primary-blue);
    stroke: white;
    stroke-width: 2;
    r: 4;
    animation: radarPulse 2s ease-in-out infinite;
}

.radar-label {
    font-size: 11px;
    font-weight: 600;
    fill: var(--text-primary);
    text-anchor: middle;
    dominant-baseline: middle;
}

/* Interactive Skills */
.interactive-skills {
    margin-top: var(--space-8);
}

.skill-category-interactive {
    margin-bottom: var(--space-8);
}

.skill-category-interactive h4 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-4);
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.skill-category-interactive h4::before {
    content: '';
    width: 4px;
    height: 20px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-light));
    border-radius: var(--radius-sm);
}

.interactive-skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
}

.interactive-skill-tag {
    padding: var(--space-2) var(--space-4);
    background: var(--gray-100);
    color: var(--text-secondary);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.dark-theme .interactive-skill-tag {
    background: var(--gray-800);
    color: var(--text-primary);
}

.interactive-skill-tag:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.interactive-skill-tag.active {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-light);
    transform: scale(1.05);
}

.interactive-skill-tag::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.6s ease;
}

.interactive-skill-tag:hover::before {
    left: 100%;
}

@keyframes skillPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 20px rgba(37, 99, 235, 0.5);
    }
}

/* ===== PROJECTS SECTION ===== */
.projects {
    background: var(--bg-secondary);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-8);
}

.project-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.dark-theme .project-card {
    background: var(--gray-800);
}

.project-content {
    padding: var(--space-8);
}

.project-category {
    display: inline-block;
    background: var(--primary-blue);
    color: white;
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-4);
}

.project-card h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: var(--space-4);
    color: var(--text-primary);
}

.project-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-6);
}

.project-stats {
    display: flex;
    gap: var(--space-6);
    margin-bottom: var(--space-6);
}

.project-stat {
    font-size: var(--font-size-sm);
    color: var(--primary-blue);
    font-weight: 600;
}

.project-technologies {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    margin-bottom: var(--space-6);
}

.tech-tag {
    background: var(--gray-100);
    color: var(--text-secondary);
    padding: var(--space-1) var(--space-2);
    border-radius: var(--radius);
    font-size: var(--font-size-xs);
    font-weight: 500;
}

.dark-theme .tech-tag {
    background: var(--gray-700);
    color: var(--gray-300);
}

/* ===== ACHIEVEMENTS SECTION ===== */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-6);
}

.achievement-card {
    background: var(--white);
    padding: var(--space-6);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-blue);
}

.achievement-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.dark-theme .achievement-card {
    background: var(--gray-800);
}

.achievement-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-light));
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-4);
    font-size: var(--font-size-xl);
    color: white;
}

.achievement-card h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--space-3);
    color: var(--text-primary);
}

.achievement-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-3);
}

.achievement-date {
    font-size: var(--font-size-sm);
    color: var(--primary-blue);
    font-weight: 600;
}

/* ===== EXPERIENCE SECTION ===== */
.experience {
    background: var(--bg-secondary);
}

.experience-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.experience-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
}

.timeline-item {
    position: relative;
    margin-bottom: var(--space-12);
    padding-left: var(--space-16);
}

.timeline-marker {
    position: absolute;
    left: 22px;
    top: var(--space-6);
    width: 18px;
    height: 18px;
    background: var(--primary-blue);
    border-radius: var(--radius-full);
    border: 4px solid var(--white);
    box-shadow: var(--shadow);
}

.dark-theme .timeline-marker {
    border-color: var(--gray-900);
}

.timeline-content {
    background: var(--white);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    box-shadow: var(--shadow-xl);
    transform: translateX(10px);
}

.dark-theme .timeline-content {
    background: var(--gray-800);
}

.job-title {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: var(--space-2);
}

.job-company {
    font-size: var(--font-size-lg);
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: var(--space-2);
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
}

.job-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-4);
}

.job-highlights {
    list-style: none;
}

.job-highlights li {
    position: relative;
    padding-left: var(--space-6);
    margin-bottom: var(--space-2);
    color: var(--text-secondary);
    line-height: 1.6;
}

.job-highlights li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-size: var(--font-size-sm);
}

/* ===== PUBLICATIONS SECTION ===== */
.publications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--space-6);
}

.publication-card {
    background: var(--white);
    padding: var(--space-6);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-blue);
}

.publication-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.dark-theme .publication-card {
    background: var(--gray-800);
}

.publication-category {
    display: inline-block;
    background: var(--success);
    color: white;
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: var(--space-3);
}

.publication-card h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--space-3);
    color: var(--text-primary);
    line-height: 1.4;
}

.publication-publisher {
    color: var(--primary-blue);
    font-weight: 500;
    margin-bottom: var(--space-2);
}

.publication-authors {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    margin-bottom: var(--space-2);
}

.publication-year {
    display: inline-block;
    background: var(--gray-100);
    color: var(--text-secondary);
    padding: var(--space-1) var(--space-2);
    border-radius: var(--radius);
    font-size: var(--font-size-sm);
    font-weight: 600;
}

.dark-theme .publication-year {
    background: var(--gray-700);
    color: var(--gray-300);
}

/* ===== ENHANCED CONTACT SECTION ===== */
.contact {
    background: var(--bg-secondary);
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-hero {
    text-align: center;
    margin-bottom: var(--space-16);
}

.contact-hero h3 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-4);
}

.contact-hero p {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    margin-bottom: var(--space-16);
}

.contact-methods h4,
.contact-form-section h4 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: var(--space-6);
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    margin-bottom: var(--space-8);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-4);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.dark-theme .contact-item {
    background: var(--gray-800);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-lg);
    color: white;
    flex-shrink: 0;
}

.contact-item-content {
    flex: 1;
}

.contact-label {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-1);
}

.contact-value {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
}

.availability {
    background: var(--white);
    padding: var(--space-4);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.dark-theme .availability {
    background: var(--gray-800);
}

.availability-status {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: var(--space-2);
    font-weight: 600;
    color: var(--text-primary);
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
    animation: pulse 2s infinite;
}

.status-indicator.available {
    background: var(--success);
}

.availability p {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    margin: 0;
}

.contact-form {
    background: var(--white);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.dark-theme .contact-form {
    background: var(--gray-800);
}

.form-group {
    margin-bottom: var(--space-6);
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-2);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--space-3);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: var(--font-size-base);
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.contact-footer {
    text-align: center;
    padding-top: var(--space-8);
    border-top: 1px solid var(--border-color);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: var(--space-6);
}

.social-link {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    background: var(--white);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    font-weight: 500;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    color: var(--primary-blue);
}

.dark-theme .social-link {
    background: var(--gray-800);
}

.social-link i {
    font-size: var(--font-size-lg);
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: var(--space-12) 0;
    text-align: center;
}

.footer p {
    margin-bottom: var(--space-4);
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    color: var(--text-secondary);
    cursor: pointer;
    animation: bounce 2s infinite;
}

.scroll-indicator:hover {
    color: var(--primary-blue);
}

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

/* ===== ENHANCED HERO BACKGROUND ANIMATIONS ===== */
@keyframes backgroundPulse {
    0% {
        transform: scale(1) rotate(0deg);
        opacity: 0.4;
        filter: hue-rotate(0deg) brightness(1);
    }
    25% {
        transform: scale(1.05) rotate(90deg);
        opacity: 0.6;
        filter: hue-rotate(45deg) brightness(1.1);
    }
    50% {
        transform: scale(1.15) rotate(180deg);
        opacity: 0.8;
        filter: hue-rotate(90deg) brightness(1.2);
    }
    75% {
        transform: scale(1.05) rotate(270deg);
        opacity: 0.6;
        filter: hue-rotate(135deg) brightness(1.1);
    }
    100% {
        transform: scale(1) rotate(360deg);
        opacity: 0.4;
        filter: hue-rotate(180deg) brightness(1);
    }
}

@keyframes backgroundRotate {
    0% {
        transform: rotate(0deg) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: rotate(90deg) scale(1.02);
        opacity: 0.4;
    }
    50% {
        transform: rotate(180deg) scale(1.05);
        opacity: 0.5;
    }
    75% {
        transform: rotate(270deg) scale(1.02);
        opacity: 0.4;
    }
    100% {
        transform: rotate(360deg) scale(1);
        opacity: 0.3;
    }
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) translateX(var(--random-x, 0px)) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-100px) translateX(var(--random-x, 0px)) rotate(360deg);
        opacity: 0;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
    }
    50% {
        transform: translateY(-10px) rotate(180deg);
    }
    75% {
        transform: translateY(-25px) rotate(270deg);
    }
}

/* Particle variations */
@keyframes particleFloat1 {
    0% {
        transform: translateY(100vh) translateX(-20px) rotate(0deg) scale(0.8);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(20px) rotate(360deg) scale(1.2);
        opacity: 0;
    }
}

@keyframes particleFloat2 {
    0% {
        transform: translateY(100vh) translateX(30px) rotate(0deg) scale(1.2);
        opacity: 0;
    }
    15% {
        opacity: 0.8;
    }
    85% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-100px) translateX(-30px) rotate(-360deg) scale(0.8);
        opacity: 0;
    }
}

@keyframes particleFloat3 {
    0% {
        transform: translateY(100vh) translateX(0px) rotate(0deg) scale(1);
        opacity: 0;
    }
    20% {
        opacity: 0.6;
    }
    80% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) translateX(15px) rotate(180deg) scale(1.5);
        opacity: 0;
    }
}

/* Mouse-following orb effect */
.hero-mouse-orb {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, rgba(59, 130, 246, 0.08) 40%, transparent 70%);
    pointer-events: none;
    z-index: 2;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    filter: blur(1px);
    mix-blend-mode: screen;
    animation: orbPulse 4s ease-in-out infinite;
}

.dark-theme .hero-mouse-orb {
    background: radial-gradient(circle, rgba(59, 130, 246, 0.25) 0%, rgba(37, 99, 235, 0.12) 40%, transparent 70%);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-4);
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    /* About Section Responsive */
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
    
    .about-visual {
        position: static;
        order: -1;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    /* Contact Section Responsive */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .publications-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        padding-left: var(--space-12);
    }
    
    .experience-timeline::before {
        left: 20px;
    }
    
    .timeline-marker {
        left: 12px;
    }
    
    .theme-toggle {
        right: var(--space-4);
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: var(--font-size-3xl);
    }
    
    .hero-subtitle {
        font-size: var(--font-size-lg);
    }
    
    .hero-description {
        font-size: var(--font-size-base);
    }
    
    .section-title {
        font-size: var(--font-size-2xl);
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .publications-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== LOADING ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: var(--space-2); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }

.mt-0 { margin-top: 0; }
.mt-2 { margin-top: var(--space-2); }
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }

.hidden { display: none; }
.block { display: block; }
.flex { display: flex; }
.grid { display: grid; }

@keyframes floatShapes {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.1;
    }
    25% {
        transform: translateY(-20px) rotate(90deg) scale(1.1);
        opacity: 0.15;
    }
    50% {
        transform: translateY(-40px) rotate(180deg) scale(0.9);
        opacity: 0.2;
    }
    75% {
        transform: translateY(-20px) rotate(270deg) scale(1.05);
        opacity: 0.12;
    }
}

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

/* Wave animation for background */
@keyframes wave {
    0%, 100% {
        transform: translateX(0) translateY(0) rotate(0deg);
    }
    25% {
        transform: translateX(20px) translateY(-10px) rotate(1deg);
    }
    50% {
        transform: translateX(-15px) translateY(-20px) rotate(-1deg);
    }
    75% {
        transform: translateX(10px) translateY(-5px) rotate(0.5deg);
    }
}

@keyframes accentFloat {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-30px) translateX(15px) rotate(90deg) scale(1.1);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-60px) translateX(-10px) rotate(180deg) scale(0.9);
        opacity: 0.7;
    }
    75% {
        transform: translateY(-30px) translateX(20px) rotate(270deg) scale(1.05);
        opacity: 0.4;
    }
}

@keyframes skillShimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

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

@keyframes radarPulse {
    0%, 100% {
        r: 4;
        opacity: 1;
    }
    50% {
        r: 6;
        opacity: 0.7;
    }
}

@keyframes backgroundShift {
    0%, 100% {
        background-position: 0% 0%, 100% 100%, 50% 50%, 30% 70%, 90% 10%;
    }
    25% {
        background-position: 10% 20%, 90% 80%, 60% 40%, 40% 60%, 80% 20%;
    }
    50% {
        background-position: 20% 10%, 80% 90%, 40% 60%, 50% 50%, 70% 30%;
    }
    75% {
        background-position: 5% 30%, 95% 70%, 55% 35%, 25% 75%, 85% 15%;
    }
}

@keyframes layerFloat1 {
    0%, 100% {
        transform: translateX(0px) translateY(0px) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translateX(20px) translateY(-15px) scale(1.05);
        opacity: 0.8;
    }
    50% {
        transform: translateX(-10px) translateY(-30px) scale(0.95);
        opacity: 1;
    }
    75% {
        transform: translateX(15px) translateY(-10px) scale(1.02);
        opacity: 0.7;
    }
}

@keyframes layerFloat2 {
    0%, 100% {
        transform: translateX(0px) translateY(0px) scale(1) rotate(0deg);
        opacity: 0.5;
    }
    33% {
        transform: translateX(-25px) translateY(20px) scale(1.08) rotate(1deg);
        opacity: 0.7;
    }
    66% {
        transform: translateX(15px) translateY(-25px) scale(0.92) rotate(-1deg);
        opacity: 0.9;
    }
}

.form-success {
    text-align: center;
    padding: var(--space-8);
}

.success-icon {
    font-size: var(--font-size-4xl);
    color: var(--success);
    margin-bottom: var(--space-4);
}

.form-success h4 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-4);
}

.form-success p {
    color: var(--text-secondary);
    margin-bottom: var(--space-6);
    line-height: 1.6;
}
