/* CV Layout */
        .cv-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 120px 2rem 4rem;
        }
        
        .cv-header {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
            padding: 3rem;
            border-radius: var(--border-radius-xl);
            color: white;
            margin-bottom: 3rem;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-xl);
        }
        
        .cv-header::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 300px;
            height: 300px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }
        
        .cv-header-content {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 3rem;
            align-items: center;
        }
        
        .cv-photo {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            border: 4px solid rgba(255, 255, 255, 0.3);
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: var(--accent);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        .cv-info h1 {
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
            animation: fadeInUp 0.6s ease;
        }
        
        .cv-title {
            font-size: 1.25rem;
            color: aqua;
            opacity: 0.95;
            margin-bottom: 1.5rem;
            animation: fadeInUp 0.6s ease 0.1s both;
        }
        
        .cv-contact {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            animation: fadeInUp 0.6s ease 0.2s both;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.95rem;
        }
        
        .contact-item a {
            color: white;
            text-decoration: none;
            transition: opacity 0.3s;
        }
        
        .contact-item a:hover {
            opacity: 0.8;
        }
        
        /* Download Button */
        .cv-download {
            position: absolute;
            top: 2rem;
            right: 2rem;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            padding: 0.75rem 1.5rem;
            border-radius: 30px;
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
            font-weight: 500;
        }
        
        .cv-download:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-2px);
        }
        
        /* CV Grid Layout */
        .cv-content {
            display: grid;
            grid-template-columns: 350px 1fr;
            gap: 3rem;
        }
        
        /* Sidebar */
        .cv-sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        
        .cv-section {
            background: white;
            padding: 1.5rem;
            border-radius: var(--border-radius-lg);
            box-shadow: var(--shadow-md);
            animation: fadeInLeft 0.6s ease both;
        }
        
        .cv-section h2 {
            font-size: 1.25rem;
            color: var(--accent);
            margin-bottom: 1.5rem;
            padding-bottom: 0.75rem;
            border-bottom: 2px solid var(--primary);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        /* Skills */
        .skill-category {
            margin-bottom: 1.5rem;
        }
        
        .skill-category h3 {
            font-size: 0.95rem;
            color: var(--secondary);
            margin-bottom: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .skill-list {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        
        .skill-item {
            background: var(--light);
            padding: 0.5rem 0.75rem;
            border-radius: var(--border-radius);
            font-size: 0.9rem;
            transition: all 0.3s ease;
            border-left: 3px solid transparent;
        }
        
        .skill-item:hover {
            transform: translateX(5px);
            border-left-color: var(--secondary);
            background: var(--primary);
        }
        
        /* Language Skills */
        .language-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
        }
        
        .language-level {
            display: flex;
            gap: 0.25rem;
        }
        
        .level-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--light);
            transition: all 0.3s ease;
        }
        
        .level-dot.filled {
            background: var(--secondary);
        }
        
        /* Main Content */
        .cv-main {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        
        .cv-main .cv-section {
            animation: fadeInRight 0.6s ease both;
        }
        
        /* Timeline */
        .timeline {
            position: relative;
            padding-left: 2rem;
        }
        
        .timeline::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 2px;
            background: var(--primary);
        }
        
        .timeline-item {
            position: relative;
            padding-bottom: 2rem;
        }
        
        .timeline-item:last-child {
            padding-bottom: 0;
        }
        
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -2.45rem;
            top: 0.25rem;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--secondary);
            border: 3px solid white;
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        
        .timeline-date {
            color: var(--secondary);
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        
        .timeline-title {
            font-size: 1.125rem;
            color: var(--accent);
            font-weight: 600;
            margin-bottom: 0.25rem;
        }
        
        .timeline-subtitle {
            color: var(--gray);
            font-style: italic;
            margin-bottom: 0.5rem;
        }
        
        .timeline-description {
            color: var(--dark);
            line-height: 1.6;
        }
        
        .timeline-description ul {
            margin-top: 0.5rem;
            margin-left: 1.5rem;
        }
        
        .timeline-description li {
            margin-bottom: 0.25rem;
        }
        
        /* Projects */
        .project-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        
        .project-card {
            background: var(--light);
            padding: 1.25rem;
            border-radius: var(--border-radius);
            border-left: 3px solid var(--secondary);
            transition: all 0.3s ease;
        }
        
        .project-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
        }
        
        .project-title {
            font-weight: 600;
            color: var(--accent);
            margin-bottom: 0.5rem;
        }
        
        .project-tech {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-top: 0.75rem;
        }
        
        .tech-tag {
            padding: 0.25rem 0.5rem;
            background: var(--primary);
            color: var(--accent);
            border-radius: 4px;
            font-size: 0.75rem;
            font-weight: 500;
        }
        
        /* Interests & Hobbies */
        .interests-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1rem;
        }
        
        .interest-item {
            background: var(--light);
            padding: 1rem;
            border-radius: var(--border-radius);
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .interest-item:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }
        
        .interest-icon {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .cv-content {
                grid-template-columns: 1fr;
            }
            
            .cv-header-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .cv-photo {
                margin: 0 auto;
            }
            
            .cv-contact {
                justify-content: center;
            }
            
            .cv-download {
                position: static;
                margin-top: 1rem;
            }
        }
        
        @media print {
            .navbar, .cv-download {
                display: none;
            }
            
            .cv-container {
                padding-top: 0;
            }
            
            .cv-section {
                box-shadow: none;
                border: 1px solid #ddd;
            }
        }