:root {
            --primary-color: #d4a574;
            --primary-dark: #b8956a;
            --secondary-color: #f5ebe0;
            --accent-color: #e9c46a;
            --text-dark: #2d3436;
            --text-light: #636e72;
            --white: #ffffff;
            --light-bg: #fefcf8;
            --gradient-primary: linear-gradient(135deg, #d4a574 0%, #e9c46a 100%);
            --gradient-secondary: linear-gradient(135deg, #f5ebe0 0%, #fefcf8 100%);
            --shadow-soft: 0 8px 30px rgba(212, 165, 116, 0.15);
            --shadow-hover: 0 12px 40px rgba(212, 165, 116, 0.25);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Lato', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background: var(--light-bg);
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            color: var(--text-dark);
        }
        
        /* Hero Section */
        .hero {
            background: var(--gradient-primary);
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="10" r="1" fill="rgba(255,255,255,0.08)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            opacity: 0.3;
        }
        
        .hero-content {
            text-align: center;
            color: var(--white);
            position: relative;
            z-index: 2;
        }
        
        .profile-img {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            border: 5px solid rgba(255, 255, 255, 0.9);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            margin-bottom: 2rem;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .profile-img:hover {
            transform: scale(1.05);
        }
        
        .hero h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--white);
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }
        
        .subtitle {
            font-size: 1.4rem;
            margin-bottom: 2.5rem;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 300;
        }
        
        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .btn {
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }
        
        .btn-primary {
            background: var(--white);
            color: var(--primary-color);
            border: 2px solid var(--white);
        }
        
        .btn-primary:hover {
            background: transparent;
            color: var(--white);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
        }
        
        .btn-outline-light {
            background: transparent;
            color: var(--white);
            border: 2px solid rgba(255, 255, 255, 0.8);
        }
        
        .btn-outline-light:hover {
            background: var(--white);
            color: var(--primary-color);
            transform: translateY(-2px);
        }
        
        /* Sections */
        section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            font-size: 2.8rem;
            margin-bottom: 4rem;
            color: var(--text-dark);
            position: relative;
            font-weight: 700;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--gradient-primary);
            border-radius: 2px;
        }
        
        /* Biodata Section */
        .biodata {
            background: var(--gradient-secondary);
        }
        
        .info-card {
            background: var(--white);
            border: none;
            border-radius: 15px;
            padding: 2rem;
            height: 100%;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-soft);
        }
        
        .info-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }
        
        .info-card i {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        .info-card h5 {
            color: var(--text-dark);
            margin-bottom: 1rem;
            font-size: 1.3rem;
            font-weight: 600;
        }
        
        .info-card p {
            color: var(--text-light);
            margin: 0;
            font-size: 1rem;
        }
        
        /* Portfolio Section */
        .portfolio {
            background: var(--gradient-primary);
            position: relative;
            overflow: hidden;
        }
        
        .portfolio .section-title {
            color: var(--white);
        }
        
        .portfolio-carousel {
            position: relative;
            height: 400px;
            perspective: 1200px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .carousel-container {
            position: relative;
            width: 300px;
            height: 300px;
            transform-style: preserve-3d;
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        
        .portfolio-item {
            position: absolute;
            width: 280px;
            height: 280px;
            border-radius: 20px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.8s ease;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
            background: var(--white);
        }
        
        .portfolio-item:hover {
            transform: scale(1.05) !important;
        }
        
        .portfolio-item img {
            width: 100%;
            height: 60%;
            object-fit: cover;
            border-radius: 20px 20px 0 0;
        }
        
        .portfolio-content {
            padding: 1.5rem;
            height: 40%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .portfolio-content h5 {
            color: var(--text-dark);
            margin-bottom: 0.5rem;
            font-size: 1.2rem;
        }
        
        .portfolio-content p {
            color: var(--text-light);
            font-size: 0.9rem;
            line-height: 1.4;
        }
        
        .portfolio-nav {
            text-align: center;
            margin-top: 3rem;
        }
        
        .nav-btn {
            background: rgba(255, 255, 255, 0.2);
            border: 2px solid rgba(255, 255, 255, 0.3);
            color: var(--white);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin: 0 10px;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .nav-btn:hover {
            background: var(--white);
            color: var(--primary-color);
            transform: scale(1.1);
        }
        
        /* Skills Section */
        .skills {
            background: var(--light-bg);
        }
        
        .skill-item {
            text-align: center;
            padding: 2rem;
            margin-bottom: 2rem;
            background: var(--white);
            border-radius: 15px;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-soft);
        }
        
        .skill-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }
        
        .skill-item i {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        .skill-item h5 {
            margin-bottom: 1.5rem;
            color: var(--text-dark);
            font-size: 1.2rem;
        }
        
        .progress {
            height: 8px;
            background: var(--secondary-color);
            border-radius: 10px;
            overflow: hidden;
        }
        
        .progress-bar {
            background: var(--gradient-primary);
            height: 100%;
            border-radius: 10px;
            transition: width 1s ease-in-out;
            position: relative;
        }
        
        .progress-bar::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.3) 50%, transparent 60%);
            animation: shine 2s infinite;
        }
        
        @keyframes shine {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }
        
        /* Contact Section */
        .contact {
            background: var(--gradient-primary);
            position: relative;
        }
        
        .contact .section-title {
            color: var(--white);
        }
        
        .contact-form {
            background: rgba(255, 255, 255, 0.95);
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(10px);
            margin-bottom: 3rem;
        }
        
        .form-control {
            border: 2px solid var(--secondary-color);
            border-radius: 10px;
            padding: 15px 20px;
            font-size: 1rem;
            background: var(--white);
            transition: all 0.3s ease;
        }
        
        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(212, 165, 116, 0.25);
            background: var(--white);
        }
        
        .social-links {
            display: flex;
            justify-content: center;
            gap: 1rem;
        }
        
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.2);
            color: var(--white);
            border-radius: 50%;
            font-size: 1.3rem;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        
        .social-links a:hover {
            background: var(--white);
            color: var(--primary-color);
            transform: translateY(-3px) scale(1.1);
        }
        
        /* Footer */
        .footer {
            background: var(--text-dark);
            color: var(--white);
            text-align: center;
            padding: 2rem 0;
        }
        
        /* Modal Styles */
        .modal-content {
            border-radius: 20px;
            border: none;
            overflow: hidden;
        }
        
        .modal-header {
            background: var(--gradient-primary);
            color: var(--white);
            border: none;
        }
        
        .modal-title {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
        }
        
        .btn-close {
            filter: brightness(0) invert(1);
        }
        
        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease forwards;
        }
        
        .fade-in:nth-child(1) { animation-delay: 0.2s; }
        .fade-in:nth-child(2) { animation-delay: 0.4s; }
        .fade-in:nth-child(3) { animation-delay: 0.6s; }
        
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .subtitle {
                font-size: 1.2rem;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .portfolio-carousel {
                height: 350px;
            }
            
            .portfolio-item {
                width: 250px;
                height: 250px;
            }
            
            .contact-form {
                padding: 2rem;
            }
        }
        
        @media (max-width: 576px) {
            section {
                padding: 60px 0;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .info-card {
                padding: 1.5rem;
            }
            
            .skill-item {
                padding: 1.5rem;
            }
        }