
        :root {
            --gold: #d4a843;
            --gold-light: #f0d78c;
            --gold-glow: rgba(212, 168, 67, 0.15);
            --dark: #0a0a0f;
            --darker: #050508;
            --card: #12121a;
            --card-hover: #1a1a25;
            --text: #e8e8f0;
            --text-muted: #8a8a9e;
        }

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

        body {
            font-family: 'Inter', sans-serif;
            background: var(--dark);
            color: var(--text);
            line-height: 1.7;
            overflow-x: hidden;
        }

        /* Background Graphics */
        .bg-pattern {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(ellipse at 20% 50%, rgba(212,168,67,0.04) 0%, transparent 50%), 
                        radial-gradient(ellipse at 80% 20%, rgba(212,168,67,0.02) 0%, transparent 50%);
            pointer-events: none;
            z-index: 0;
        }

        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .particle {
            position: absolute;
            width: 2px;
            height: 2px;
            background: var(--gold);
            border-radius: 50%;
            opacity: 0;
            animation: float 15s infinite linear;
        }

        @keyframes float {
            0% { opacity: 0; transform: translateY(100vh) scale(0); }
            10% { opacity: 0.6; }
            90% { opacity: 0.6; }
            100% { opacity: 0; transform: translateY(-10vh) scale(1); }
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 20px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            background: rgba(10,10,15,0.85);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(212,168,67,0.15);
        }

        .logo {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--gold);
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .nav-links {
            display: flex;
            gap: 35px;
            list-style: none;
        }

        .nav-links a {
            color: var(--text-muted);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            font-size: 0.95rem;
        }

        .nav-links a:hover, .nav-links a.active {
            color: var(--gold);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: width 0.3s ease;
        }

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

        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
        }

        .menu-toggle span {
            width: 25px;
            height: 2px;
            background: var(--gold);
            transition: all 0.3s ease;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 150px 5% 100px;
            position: relative;
            z-index: 2;
            background: linear-gradient(135deg, rgba(10,10,15,0.96) 0%, rgba(10,10,15,0.88) 100%), 
                        url('https://images.unsplash.com/photo-1596838132731-3301c3fd4317?q=80&w=1470&auto=format&fit=crop') center/cover no-repeat fixed;
        }

        .hero-content {
            max-width: 900px;
        }

        .hero-badge {
            display: inline-block;
            padding: 8px 24px;
            border: 1px solid var(--gold);
            color: var(--gold);
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 2px;
            margin-bottom: 30px;
            background: rgba(212,168,67,0.05);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { box-shadow: 0 0 0 0 rgba(212,168,67,0.4); }
            50% { box-shadow: 0 0 0 10px rgba(212,168,67,0); }
        }

        .hero h1 {
            font-size: 3.8rem;
            font-weight: 800;
            margin-bottom: 15px;
            line-height: 1.2;
            background: linear-gradient(135deg, var(--text) 0%, var(--gold-light) 50%, var(--gold) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-name {
            font-size: 2.2rem;
            color: var(--gold);
            font-weight: 700;
            margin-bottom: 25px;
            letter-spacing: 3px;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--text);
            margin-bottom: 40px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            font-weight: 400;
        }

        .hero-desc {
            font-size: 1.1rem;
            color: var(--text-muted);
            max-width: 720px;
            margin: 0 auto 50px;
            line-height: 1.9;
        }

        /* Buttons */
        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 16px 42px;
            border-radius: 50px;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            letter-spacing: 0.5px;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--gold), #b8922e);
            color: var(--dark);
            border: none;
            box-shadow: 0 4px 15px rgba(212,168,67,0.2);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 25px rgba(212,168,67,0.35);
        }

        .btn-secondary {
            background: rgba(212,168,67,0.03);
            color: var(--gold);
            border: 2px solid var(--gold);
        }

        .btn-secondary:hover {
            background: var(--gold);
            color: var(--dark);
            transform: translateY(-3px);
            box-shadow: 0 12px 25px rgba(212,168,67,0.15);
        }

        /* Sections General */
        section {
            padding: 120px 5%;
            position: relative;
            z-index: 2;
        }

        .section-header {
            text-align: center;
            margin-bottom: 70px;
        }

        .section-header h2 {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--gold-light);
            letter-spacing: 1px;
        }

        .section-header p {
            color: var(--text-muted);
            font-size: 1.1rem;
        }

        .divider {
            width: 60px;
            height: 3px;
            background: var(--gold);
            margin: 20px auto;
            border-radius: 3px;
        }

        /* About Section */
        .about {
            background: linear-gradient(135deg, rgba(5,5,8,0.99) 0%, rgba(5,5,8,0.96) 100%);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 70px;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .about-image-frame {
            width: 100%;
            aspect-ratio: 1;
            border-radius: 24px;
            background: linear-gradient(135deg, var(--gold), #8b6914);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            padding: 40px;
            text-align: center;
            box-shadow: 0 20px 40px rgba(0,0,0,0.5);
        }

        .about-image-frame::before {
            content: '';
            position: absolute;
            inset: 2px;
            background: var(--card);
            border-radius: 22px;
            z-index: 1;
        }

        .about-image-frame .avatar, 
        .about-image-frame .name-display, 
        .about-image-frame .title-display {
            position: relative;
            z-index: 2;
        }

        .about-image-frame .avatar {
            font-size: 6.5rem;
            margin-bottom: 20px;
            filter: drop-shadow(0 10px 15px rgba(0,0,0,0.3));
        }

        .about-image-frame .name-display {
            font-size: 1.9rem;
            font-weight: 700;
            color: var(--gold);
            margin-bottom: 5px;
            letter-spacing: 1px;
        }

        .about-image-frame .title-display {
            font-size: 1.05rem;
            color: var(--text-muted);
        }

        .about-text h3 {
            font-size: 2.2rem;
            color: var(--gold-light);
            margin-bottom: 25px;
            font-weight: 600;
        }

        .about-text p {
            color: var(--text-muted);
            margin-bottom: 22px;
            font-size: 1.08rem;
            line-height: 1.8;
        }

        .stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 40px;
        }

        .stat-item {
            text-align: center;
            padding: 24px 15px;
            background: rgba(18, 18, 26, 0.6);
            backdrop-filter: blur(10px);
            border-radius: 18px;
            border: 1px solid rgba(212,168,67,0.12);
            transition: transform 0.3s ease;
        }

        .stat-item:hover {
            transform: translateY(-5px);
            border-color: rgba(212,168,67,0.3);
        }

        .stat-number {
            font-size: 2.4rem;
            font-weight: 700;
            color: var(--gold);
        }

        .stat-label {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-top: 5px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .service-card {
            background: var(--card);
            border-radius: 20px;
            padding: 45px 35px;
            border: 1px solid rgba(212,168,67,0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--gold), transparent);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-card:hover {
            transform: translateY(-8px);
            background: var(--card-hover);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 25px var(--gold-glow);
            border-color: rgba(212,168,67,0.25);
        }

        .service-icon {
            width: 65px;
            height: 65px;
            background: rgba(212,168,67,0.08);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 28px;
            color: var(--gold);
            transition: transform 0.3s ease;
        }

        .service-card:hover .service-icon {
            transform: scale(1.1) rotate(5deg);
            background: rgba(212,168,67,0.15);
        }

        .service-card h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--text);
            font-weight: 600;
        }

        .service-card p {
            color: var(--text-muted);
            font-size: 0.98rem;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .service-list {
            list-style: none;
            border-top: 1px solid rgba(212,168,67,0.08);
            padding-top: 15px;
        }

        .service-list li {
            padding: 8px 0;
            color: var(--text-muted);
            font-size: 0.92rem;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .service-list li::before {
            content: '✓';
            color: var(--gold);
            font-weight: bold;
        }

        /* Projects Section */
        .projects-section {
            background: linear-gradient(135deg, rgba(5,5,8,0.97) 0%, rgba(5,5,8,0.93) 100%);
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .project-card {
            background: var(--card);
            border-radius: 20px;
            padding: 40px;
            border: 1px solid rgba(212,168,67,0.06);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .project-card:hover {
            transform: translateY(-5px);
            border-color: rgba(212,168,67,0.2);
            background: var(--card-hover);
            box-shadow: 0 15px 30px rgba(0,0,0,0.3);
        }

        .project-tag {
            display: inline-block;
            padding: 6px 16px;
            background: rgba(212,168,67,0.08);
            color: var(--gold);
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 20px;
            align-self: flex-start;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .project-card h3 {
            font-size: 1.3rem;
            color: var(--text);
            margin-bottom: 15px;
            font-weight: 600;
        }

        .project-card p {
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 25px;
            flex-grow: 1;
        }

        .project-meta {
            padding-top: 20px;
            border-top: 1px solid rgba(212,168,67,0.08);
            display: flex;
            justify-content: space-between;
            font-size: 0.88rem;
            color: var(--text-muted);
            font-weight: 500;
        }

        .project-meta span:last-child {
            color: var(--gold-light);
        }

        /* Contact Section */
        .contact {
            background: var(--darker);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.1fr;
            gap: 70px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .contact-info h3 {
            font-size: 2rem;
            color: var(--gold-light);
            margin-bottom: 20px;
            font-weight: 600;
        }

        .contact-info p {
            color: var(--text-muted);
            margin-bottom: 40px;
            font-size: 1.05rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 24px;
            padding: 20px;
            background: var(--card);
            border-radius: 16px;
            border: 1px solid rgba(212,168,67,0.08);
            transition: border-color 0.3s ease;
        }

        .contact-item:hover {
            border-color: rgba(212,168,67,0.25);
        }

        .contact-item-icon {
            width: 50px;
            height: 50px;
            background: rgba(212,168,67,0.08);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            font-size: 1.3rem;
        }

        .contact-item-text {
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        .contact-item-text strong {
            color: var(--text);
            display: block;
            margin-bottom: 4px;
            font-size: 1rem;
        }

        .contact-form {
            background: var(--card);
            padding: 45px;
            border-radius: 24px;
            border: 1px solid rgba(212,168,67,0.08);
            box-shadow: 0 15px 30px rgba(0,0,0,0.3);
        }

        .form-group {
            margin-bottom: 24px;
        }

        .form-group label {
            display: block;
            margin-bottom: 10px;
            color: var(--text);
            font-size: 0.9rem;
            font-weight: 500;
        }

        .form-group input, .form-group textarea {
            width: 100%;
            padding: 15px 20px;
            background: var(--dark);
            border: 1px solid rgba(212,168,67,0.15);
            border-radius: 12px;
            color: var(--text);
            font-family: inherit;
            font-size: 0.98rem;
            transition: all 0.3s ease;
        }

        .form-group input:focus, .form-group textarea:focus {
            outline: none;
            border-color: var(--gold);
            box-shadow: 0 0 0 4px rgba(212,168,67,0.12);
            background: var(--card-hover);
        }

        .form-group textarea {
            min-height: 140px;
            resize: vertical;
        }

        /* Footer */
        footer {
            background: var(--darker);
            padding: 50px 5% 40px;
            text-align: center;
            border-top: 1px solid rgba(212,168,67,0.1);
            position: relative;
            z-index: 2;
        }

        footer .footer-logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--gold);
            margin-bottom: 15px;
            letter-spacing: 1px;
        }

        footer p {
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        /* Scroll Animation Triggers */
        .fade-in {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive Design Rules */
        @media (max-width: 992px) {
            .about-grid, .contact-grid {
                grid-template-columns: 1fr;
                gap: 50px;
            }
            .about-image-frame {
                max-width: 450px;
                margin: 0 auto;
            }
            .hero h1 {
                font-size: 2.8rem;
            }
            .hero-name {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 768px) {
            nav {
                padding: 15px 5%;
            }
            .menu-toggle {
                display: flex;
            }
            .nav-links {
                position: fixed;
                top: 73px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 73px);
                background: rgba(10,10,15,0.98);
                backdrop-filter: blur(20px);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 40px;
                transition: left 0.4s ease;
                border-top: 1px solid rgba(212,168,67,0.1);
            }
            .nav-links.active {
                left: 0;
            }
            .nav-links a {
                font-size: 1.2rem;
            }
            .hero h1 {
                font-size: 2.3rem;
            }
            .section-header h2 {
                font-size: 2.2rem;
            }
            .stats {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            .contact-form {
                padding: 30px 20px;
            }
        }
