@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700;800&family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&display=swap');

    /* ============================================
    HARSH ANAND PORTFOLIO - PREMIUM STYLES
    "10 Million Dollars" Aesthetic Design
    ============================================ */

    /* ============================================
    🎯 LUXURY DESIGN SYSTEM
    ============================================ */

    :root {
        /* 8px Grid Spacing System - Enhanced */
        --space-xs: 8px;
        --space-sm: 16px;
        --space-md: 24px;
        --space-lg: 48px;
        --space-xl: 80px;
        --space-2xl: 120px;
        --space-3xl: 160px;
        
        /* Refined Border Radius */
        --radius: 16px;
        --radius-sm: 12px;
        --radius-lg: 24px;
        --radius-xl: 32px;
        
        /* Premium Transitions */
        --transition: all 0.3s ease;
        --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        --transition-premium: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        --transition-luxury: 1.2s cubic-bezier(0.16, 1, 0.3, 1);
        
        /* Luxury Glass System */
        --glass-bg: rgba(255, 255, 255, 0.03);
        --glass-bg-hover: rgba(255, 255, 255, 0.08);
        --glass-border: rgba(255, 255, 255, 0.08);
        --glass-border-hover: rgba(255, 255, 255, 0.18);
        --glass-border-gold: rgba(212, 175, 55, 0.15);
        
        /* Ultra Premium Background - Richer Blacks */
        --bg-primary: #030305;
        --bg-secondary: #06060a;
        --bg-tertiary: #0a0a12;
        --bg-card: rgba(15, 15, 25, 0.7);
        
        /* Luxury Accent Colors */
        --accent-purple: #7C3AED;
        --accent-purple-light: #A78BFA;
        --accent-purple-dark: #5B21B6;
        --accent-violet: #8B5CF6;
        
        /* Champagne Gold Accent - Premium Feel */
        --accent-gold: #D4AF37;
        --accent-gold-light: #F0D878;
        --accent-gold-dark: #B8941F;
        
        /* Cyan Accent for contrast */
        --accent-cyan: #22d3ee;
        
        /* Premium Text Colors */
        --text-primary: #FFFFFF;
        --text-secondary: rgba(255, 255, 255, 0.85);
        --text-muted: rgba(255, 255, 255, 0.5);
        --text-subtle: rgba(255, 255, 255, 0.3);
        
        /* Typography */
        --font-heading: 'Montserrat', sans-serif;
        --font-body: 'Montserrat', system-ui, -apple-system, sans-serif;
        --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
        --font-serif: 'Playfair Display', Georgia, serif;
        --font-cursive: var(--font-body);
        
        /* Luxury Shadows */
        --shadow-glow: 0 0 40px rgba(124, 58, 237, 0.2);
        --shadow-glow-gold: 0 0 40px rgba(212, 175, 55, 0.15);
        --shadow-glow-strong: 0 0 60px rgba(124, 58, 237, 0.35);
        --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
        --shadow-card-hover: 0 20px 60px rgba(0, 0, 0, 0.5);
        --shadow-elevated: 0 25px 80px rgba(0, 0, 0, 0.6);
        
        /* Premium Gradients */
        --gradient-purple: linear-gradient(135deg, #7C3AED 0%, #8B5CF6 50%, #A78BFA 100%);
        --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #F0D878 50%, #B8941F 100%);
        --gradient-hero: linear-gradient(180deg, #0a0a14 0%, #06060a 40%, #030305 100%);
        --gradient-card: linear-gradient(145deg, rgba(124, 58, 237, 0.1) 0%, rgba(15, 15, 25, 0.6) 100%);
        --gradient-premium: linear-gradient(135deg, #7C3AED, #D4AF37, #8B5CF6);
        --gradient-glow: radial-gradient(circle at center, rgba(124, 58, 237, 0.12) 0%, transparent 70%);
        --gradient-gold-glow: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
        
        /* Noise texture opacity */
        --noise-opacity: 0.025;
    }

    /* Reset & Base */
    *, *::before, *::after {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    /* Global responsive fixes */
    img, video, canvas {
        max-width: 100%;
        height: auto;
    }

    * {
        min-width: 0;
    }

    /* Base */
    html {
        scroll-behavior: auto; /* Lenis handles smooth scroll */
        font-size: 16px;
        overflow-x: hidden;
        max-width: 100vw;
    }

    html.lenis, html.lenis body {
        height: auto;
    }

    .lenis.lenis-smooth {
        scroll-behavior: auto !important;
    }

    .lenis.lenis-smooth [data-lenis-prevent] {
        overscroll-behavior: contain;
    }

    .lenis.lenis-stopped {
        overflow: hidden;
    }

    .lenis.lenis-scrolling iframe {
        pointer-events: none;
    }

    body {
        font-family: var(--font-body);
        background: var(--bg-primary);
        color: var(--text-primary);
        overflow-x: hidden;
        cursor: none;
        line-height: 1.6;
        font-weight: 400;
        letter-spacing: 0.01em;
        font-size: 1rem;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    ::selection {
        background: var(--accent-purple);
        color: white;
    }

    /* ============================================
    CUSTOM CURSOR - Premium Upgrade
    ============================================ */
    .cursor-dot {
        width: 6px;
        height: 6px;
        background: var(--accent-gold-light);
        border-radius: 50%;
        position: fixed;
        pointer-events: none;
        z-index: 9999;
        transform: translate(-50%, -50%);
        transition: width 0.2s, height 0.2s, background 0.2s;
        mix-blend-mode: difference;
    }

    .cursor-outline {
        width: 36px;
        height: 36px;
        border: 1.5px solid var(--accent-gold);
        border-radius: 50%;
        position: fixed;
        pointer-events: none;
        z-index: 9998;
        transform: translate(-50%, -50%);
        transition: width 0.3s, height 0.3s, border-color 0.3s;
        opacity: 0.6;
    }

    body:hover .cursor-dot,
    body:hover .cursor-outline {
        opacity: 1;
    }

    /* ============================================
    NOISE OVERLAY - Ultra Subtle
    ============================================ */
    .noise-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 9990;
        opacity: var(--noise-opacity);
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    }

    /* ============================================
    SCROLL INDICATOR - Hidden
    ============================================ */
    .scroll-indicator {
        display: none !important;
    }

    /* ============================================
    BACKGROUND GRADIENT ORBS - Refined
    ============================================ */
    .orb {
        position: fixed;
        border-radius: 50%;
        filter: blur(150px);
        opacity: 0.18;
        pointer-events: none;
        z-index: -1;
    }

    .orb-1 {
        width: 700px;
        height: 700px;
        background: var(--accent-purple);
        top: -200px;
        right: -150px;
        animation: float-orb 25s ease-in-out infinite;
    }

.orb-2 {
        width: 500px;
        height: 500px;
        background: var(--accent-gold);
        bottom: -100px;
        left: -100px;
        opacity: 0.10;
        animation: float-orb 20s ease-in-out infinite reverse;
    }

    .orb-3 {
        width: 400px;
        height: 400px;
        background: var(--accent-violet);
        top: 50%;
        left: 50%;
        opacity: 0.08;
        animation: float-orb 30s ease-in-out infinite;
    }

    @keyframes float-orb {
        0%, 100% { transform: translate(0, 0) scale(1); }
        25% { transform: translate(50px, -40px) scale(1.05); }
        50% { transform: translate(-40px, 30px) scale(0.98); }
        75% { transform: translate(30px, 50px) scale(1.02); }
    }

    /* ============================================
    PREMIUM GLASS CARDS - Enhanced
    ============================================ */
    .glass-card {
        background: linear-gradient(135deg, rgba(124, 58, 237, 0.08) 0%, rgba(15, 15, 25, 0.5) 100%);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 24px;
        transition: all var(--transition-premium);
        box-shadow: var(--shadow-card), 0 0 0 1px rgba(124, 58, 237, 0.03) inset;
        position: relative;
        overflow: hidden;
        transform-style: preserve-3d;
        perspective: 1000px;
    }

    .glass-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.04), transparent);
        transition: left 1.4s ease;
        pointer-events: none;
    }

    .glass-card::after {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: inherit;
        padding: 1.5px;
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(124, 58, 237, 0.1), transparent 60%);
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        pointer-events: none;
        opacity: 0;
        transition: opacity var(--transition-premium);
    }

    .glass-card:hover {
        background: linear-gradient(135deg, rgba(124, 58, 237, 0.15) 0%, rgba(20, 20, 35, 0.6) 100%);
        border-color: rgba(212, 175, 55, 0.2);
        transform: translateY(-4px);
        box-shadow: var(--shadow-card-hover), 0 0 50px rgba(124, 58, 237, 0.12);
    }

    .glass-card:hover::before {
        left: 100%;
    }

    .glass-card:hover::after {
        opacity: 1;
    }

    /* ============================================
    SPOTLIGHT EFFECT
    ============================================ */
    .spotlight-card {
        position: relative;
        overflow: hidden;
    }

    .spotlight-card::before {
        content: '';
        position: absolute;
        top: var(--mouse-y, 50%);
        left: var(--mouse-x, 50%);
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
        transform: translate(-50%, -50%);
        pointer-events: none;
        opacity: 0;
        transition: opacity 0.4s ease;
        z-index: 1;
    }

    .spotlight-card:hover::before {
        opacity: 1;
    }

    /* ============================================
    3D TILT CARD
    ============================================ */
    .tilt-card {
        transform-style: preserve-3d;
        transform: perspective(1000px);
    }

    .tilt-card .tilt-content {
        transform: translateZ(30px);
    }

    .tilt-card .tilt-icon {
        transform: translateZ(50px);
    }

    /* ============================================
    GRADIENT TEXT - Enhanced
    ============================================ */
    .gradient-text {
        background: linear-gradient(135deg, var(--accent-purple-light), var(--accent-gold), var(--accent-purple));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        background-size: 200% 200%;
        animation: gradient-flow 12s ease infinite;
    }

    .gradient-text-gold {
        background: linear-gradient(135deg, var(--accent-gold-light), var(--accent-gold), var(--accent-gold-light));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        background-size: 200% 200%;
        animation: gradient-flow 10s ease infinite;
    }

    @keyframes gradient-flow {
        0% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
    }

    /* ============================================
    TEXT REVEAL ANIMATIONS
    ============================================ */
    .reveal-text {
        overflow: hidden;
    }

    .reveal-text .reveal-line {
        display: block;
        transform: translateY(100%);
        opacity: 0;
        transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease;
    }

    .reveal-text.revealed .reveal-line {
        transform: translateY(0);
        opacity: 1;
    }

    .reveal-text .reveal-line:nth-child(2) { transition-delay: 0.1s; }
    .reveal-text .reveal-line:nth-child(3) { transition-delay: 0.2s; }
    .reveal-text .reveal-line:nth-child(4) { transition-delay: 0.3s; }

    /* Word reveal */
    .reveal-word {
        overflow: hidden;
        display: inline-block;
    }

    .reveal-word span {
        display: inline-block;
        transform: translateY(100%);
        transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .reveal-word.revealed span {
        transform: translateY(0);
    }

    /* ============================================
    CONTAINER - Premium Spacing
    ============================================ */
    .container,
    .nav-container,
    .hero-container {
        width: 100%;
        max-width: 1280px;
        margin: 0 auto;
        padding-left: clamp(20px, 5vw, 48px);
        padding-right: clamp(20px, 5vw, 48px);
    }

    /* ============================================
    NAVBAR - Premium Upgrade
    ============================================ */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        padding: 28px 0;
        transition: all var(--transition-premium);
    }

    .navbar.scrolled {
        background: rgba(3, 3, 5, 0.75);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 16px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 32px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 14px;
        text-decoration: none;
        color: var(--text-primary);
        position: relative;
    }

    .logo-icon {
        width: 48px;
        height: 48px;
        background: var(--gradient-purple);
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: var(--font-heading);
        font-weight: 800;
        font-size: 1.6rem;
        color: white;
        box-shadow: var(--shadow-glow);
        position: relative;
        overflow: hidden;
        transition: all var(--transition-premium);
    }

    .logo-icon::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, transparent, rgba(212, 175, 55, 0.3), transparent);
        opacity: 0;
        transition: opacity 0.5s ease;
    }

    .logo:hover .logo-icon::before {
        opacity: 1;
    }

    .logo:hover .logo-icon {
        box-shadow: var(--shadow-glow), var(--shadow-glow-gold);
        transform: scale(1.05);
    }

    .logo-text {
        font-family: var(--font-heading);
        font-weight: 700;
        font-size: 1.4rem;
        letter-spacing: -0.02em;
    }

    .nav-links {
        display: flex;
        list-style: none;
        gap: 48px;
    }

    .nav-link {
        text-decoration: none;
        color: var(--text-secondary);
        font-weight: 400;
        font-size: 0.95rem;
        position: relative;
        transition: color var(--transition-fast);
        letter-spacing: 0.02em;
        padding: 8px 0;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 1.5px;
        background: var(--gradient-gold);
        transition: width var(--transition-normal);
        border-radius: 2px;
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--text-primary);
    }

    .nav-link:hover::after,
    .nav-link.active::after {
        width: 100%;
    }

    /* ============================================
    MODERN HAMBURGER MENU - Premium Upgrade
    ============================================ */
    .hamburger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
        background: none;
        border: none;
        cursor: pointer;
        padding: 12px;
        position: relative;
        z-index: 1001;
        /* Reset cursor for touch devices */
        cursor: auto;
        /* Breathing animation container */
        animation: hamburger-breathe 3s ease-in-out infinite;
    }

    @keyframes hamburger-breathe {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.02); }
    }

    .hamburger span {
        display: block;
        width: 32px;
        height: 3px;
        background: var(--text-primary);
        transition: all var(--transition-premium);
        transform-origin: center;
        border-radius: 2px;
        position: relative;
        /* Premium gradient overlay */
        background: linear-gradient(90deg, var(--text-primary) 0%, var(--text-primary) 100%);
    }

    /* Multi-layer glow effect */
    .hamburger span::before {
        content: '';
        position: absolute;
        inset: -4px;
        background: transparent;
        border-radius: 4px;
        transition: all var(--transition-normal);
        z-index: -1;
    }

    /* Hover glow effect - Enhanced */
    .hamburger:hover span {
        background: linear-gradient(90deg, var(--accent-gold-light), var(--accent-gold));
        box-shadow: 
            0 0 8px rgba(212, 175, 55, 0.4),
            0 0 20px rgba(212, 175, 55, 0.25),
            0 0 32px rgba(212, 175, 55, 0.15);
    }

    /* Middle span */
    .hamburger span:nth-child(2) {
        width: 26px;
        margin: 6px 0;
    }

    /* Active state - Transform to X with elastic bounce */
    .hamburger.active {
        animation: hamburger-pulse 0.5s ease-in-out;
    }

    .hamburger.active span {
        background: linear-gradient(90deg, var(--accent-gold-light), var(--accent-gold));
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
        box-shadow: 
            0 0 15px rgba(212, 175, 55, 0.7),
            0 0 30px rgba(212, 175, 55, 0.4),
            0 0 45px rgba(212, 175, 55, 0.2);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
        width: 0;
        margin: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
        box-shadow: 
            0 0 15px rgba(212, 175, 55, 0.7),
            0 0 30px rgba(212, 175, 55, 0.4),
            0 0 45px rgba(212, 175, 55, 0.2);
    }

    /* Pulse animation when active */
    @keyframes hamburger-pulse {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.1); }
    }

    /* Stop breathing animation when active */
    .hamburger.active {
        animation: none;
    }

    /* ============================================
    MODERN MOBILE MENU - Full Screen Premium Glassmorphism
    ============================================ */
    .mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: rgba(3, 3, 5, 0.85);
        backdrop-filter: blur(30px) saturate(180%);
        -webkit-backdrop-filter: blur(30px) saturate(180%);
        z-index: 1000;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.5s ease, visibility 0.5s ease;
        overflow: hidden;
        /* Premium border glow */
        border: 1px solid rgba(124, 58, 237, 0.1);
        box-shadow: 
            0 0 100px rgba(124, 58, 237, 0.1),
            inset 0 0 100px rgba(124, 58, 237, 0.05);
    }

    /* Animated background orbs */
    .mobile-menu::before,
    .mobile-menu::after {
        content: '';
        position: absolute;
        border-radius: 50%;
        filter: blur(100px);
        pointer-events: none;
    }

    .mobile-menu::before {
        width: 400px;
        height: 400px;
        background: var(--accent-purple);
        top: -100px;
        right: -100px;
        opacity: 0.15;
        animation: mobile-orb-float 15s ease-in-out infinite;
    }

    .mobile-menu::after {
        width: 300px;
        height: 300px;
        background: var(--accent-gold);
        bottom: -50px;
        left: -50px;
        opacity: 0.1;
        animation: mobile-orb-float 12s ease-in-out infinite reverse;
    }

    @keyframes mobile-orb-float {
        0%, 100% { transform: translate(0, 0) scale(1); }
        50% { transform: translate(30px, -30px) scale(1.1); }
    }

    /* Active state */
    .mobile-menu.active {
        opacity: 1;
        visibility: visible;
    }

    /* Menu container */
    .mobile-menu .menu-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 40px;
        z-index: 1;
        padding: 40px;
    }

    /* Navigation links */
    .mobile-menu ul {
        list-style: none;
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .mobile-menu ul li {
        margin: 0;
        overflow: hidden;
    }

    /* Staggered animation */
    .mobile-menu ul li a {
        text-decoration: none;
        color: var(--text-primary);
        font-family: var(--font-heading);
        font-size: clamp(2.2rem, 6vw, 3.5rem);
        font-weight: 700;
        transition: all var(--transition-fast);
        position: relative;
        display: inline-block;
        transform: translateY(100%);
        opacity: 0;
        letter-spacing: -0.02em;
    }

    /* Staggered animation on active */
    .mobile-menu.active ul li a {
        animation: menu-link-reveal 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    .mobile-menu.active ul li:nth-child(1) a { animation-delay: 0.1s; }
    .mobile-menu.active ul li:nth-child(2) a { animation-delay: 0.2s; }
    .mobile-menu.active ul li:nth-child(3) a { animation-delay: 0.3s; }
    .mobile-menu.active ul li:nth-child(4) a { animation-delay: 0.4s; }
    .mobile-menu.active ul li:nth-child(5) a { animation-delay: 0.5s; }

    @keyframes menu-link-reveal {
        0% {
            transform: translateY(100%);
            opacity: 0;
        }
        100% {
            transform: translateY(0);
            opacity: 1;
        }
    }

    /* Enhanced hover with animated underline */
    .mobile-menu ul li a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 3px;
        background: var(--gradient-gold);
        transition: all var(--transition-normal);
        border-radius: 2px;
        transform: translateX(-50%);
    }

    .mobile-menu ul li a:hover {
        color: var(--accent-gold-light);
    }

    .mobile-menu ul li a:hover::after {
        width: 100%;
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    }

    /* Active link style */
    .mobile-menu ul li a.active {
        color: var(--accent-gold-light);
    }

    .mobile-menu ul li a.active::after {
        width: 100%;
    }

    /* Social links section */
    .mobile-menu .menu-socials {
        display: flex;
        gap: 20px;
        margin-top: 20px;
        transform: translateY(30px);
        opacity: 0;
    }

    .mobile-menu.active .menu-socials {
        animation: social-reveal 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        animation-delay: 0.6s;
    }

    @keyframes social-reveal {
        0% {
            transform: translateY(30px);
            opacity: 0;
        }
        100% {
            transform: translateY(0);
            opacity: 1;
        }
    }

    .mobile-menu .menu-socials a {
        width: 56px;
        height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--glass-bg);
        border: 1px solid var(--glass-border);
        border-radius: 16px;
        color: var(--text-primary);
        text-decoration: none;
        font-size: 1.2rem;
        transition: all var(--transition-premium);
        transform: translateY(0);
        opacity: 1;
    }

    .mobile-menu .menu-socials a::after {
        display: none;
    }

    .mobile-menu .menu-socials a:hover {
        background: var(--gradient-purple);
        border-color: transparent;
        color: white;
        box-shadow: var(--shadow-glow);
        transform: translateY(-4px);
    }

    /* Contact info in menu */
    .mobile-menu .menu-contact {
        margin-top: 16px;
        text-align: center;
        transform: translateY(30px);
        opacity: 0;
    }

    .mobile-menu.active .menu-contact {
        animation: contact-reveal 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        animation-delay: 0.7s;
    }

    @keyframes contact-reveal {
        0% {
            transform: translateY(30px);
            opacity: 0;
        }
        100% {
            transform: translateY(0);
            opacity: 1;
        }
    }

    .mobile-menu .menu-contact p {
        color: var(--text-muted);
        font-size: 0.95rem;
        margin-bottom: 8px;
        font-weight: 300;
    }

    .mobile-menu .menu-contact a {
        color: var(--accent-gold-light);
        text-decoration: none;
        font-weight: 500;
        transition: color var(--transition-fast);
        position: relative;
    }

    .mobile-menu .menu-contact a::after {
        display: none;
    }

    .mobile-menu .menu-contact a:hover {
        color: var(--accent-gold);
    }

    /* Close button - Premium Glassmorphism */
    .mobile-menu .close-menu {
        position: absolute;
        top: 32px;
        right: 32px;
        width: 56px;
        height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--glass-bg);
        border: 1px solid var(--glass-border);
        border-radius: 16px;
        color: var(--text-primary);
        font-size: 1.5rem;
        cursor: pointer;
        transition: all var(--transition-premium);
        padding: 0;
        z-index: 1001;
        opacity: 0;
        transform: scale(0) rotate(0deg);
        /* Floating animation */
        animation: close-btn-float 4s ease-in-out infinite;
    }

    @keyframes close-btn-float {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-6px); }
    }

    .mobile-menu.active .close-menu {
        animation: close-btn-appear 0.4s ease forwards, close-btn-float 4s ease-in-out infinite;
        animation-delay: 0.3s, 0.7s;
    }

    @keyframes close-btn-appear {
        0% {
            opacity: 0;
            transform: scale(0) rotate(0deg);
        }
        100% {
            opacity: 1;
            transform: scale(1) rotate(0deg);
        }
    }

    .mobile-menu .close-menu:hover {
        color: var(--accent-gold-light);
        background: rgba(212, 175, 55, 0.15);
        border-color: rgba(212, 175, 55, 0.3);
        transform: scale(1.1) rotate(90deg);
        box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
    }

    /* ============================================
    HERO SECTION - Cinematic Upgrade
    ============================================ */
    .hero {
        min-height: 100vh;
        min-height: 100dvh;
        display: flex;
        align-items: center;
        position: relative;
        padding: 100px 0 60px;
        padding-top: calc(100px + env(safe-area-inset-top, 0px));
        padding-bottom: calc(60px + env(safe-area-inset-bottom, 0px));
        overflow: hidden;
        background: var(--gradient-hero);
    }

    .hero-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: clamp(40px, 6vw, 80px);
        align-items: center;
        width: 100%;
        position: relative;
        z-index: 2;
    }

    .hero-label {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 12px 28px;
        background: var(--glass-bg);
        border: 1px solid var(--glass-border);
        border-radius: 50px;
        font-family: var(--font-heading);
        font-size: 0.95rem;
        color: var(--accent-gold-light);
        margin-bottom: 40px;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        font-weight: 600;
        position: relative;
        overflow: hidden;
        /* Hidden on desktop by default, shown on mobile */
        display: none;
    }

    @media (max-width: 768px) {
        .hero-label {
            display: inline-flex;
        }
    }

    .hero-label::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
        opacity: 0;
        transition: opacity 0.5s ease;
    }

    .hero-label:hover::before {
        opacity: 1;
    }

    .hero-label i {
        font-size: 0.7rem;
        color: var(--accent-gold);
    }

    /* Hero Title - Dramatic Typography */
    .hero-title {
        font-family: var(--font-heading);
        font-size: clamp(2.8rem, 5.5vw, 5rem);
        line-height: 1.05;
        font-weight: 700;
        margin-bottom: 32px;
        letter-spacing: -0.03em;
        text-wrap: balance;
    }

    .title-line {
        display: block;
        overflow: hidden;
    }

    .title-line .reveal-inner {
        display: block;
        transform: translateY(100%);
    }

    .hero-description {
        font-size: 1.15rem;
        color: var(--text-secondary);
        max-width: 520px;
        margin-bottom: 40px;
        line-height: 1.8;
        font-weight: 300;
        opacity: 0.85;
    }

    .hero-buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        margin-bottom: 32px;
    }

    /* ============================================
    PREMIUM BUTTONS
    ============================================ */
    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        padding: 16px 36px;
        border-radius: var(--radius-sm);
        font-family: var(--font-body);
        font-weight: 600;
        font-size: 1rem;
        text-decoration: none;
        transition: all var(--transition-premium);
        cursor: none;
        position: relative;
        overflow: hidden;
        letter-spacing: 0.02em;
        border: none;
    }

    .btn-primary {
        background: var(--gradient-purple);
        color: white;
        box-shadow: var(--shadow-glow);
        position: relative;
    }

    .btn-primary::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, transparent, rgba(212, 175, 55, 0.2), transparent);
        opacity: 0;
        transition: opacity 0.5s ease;
    }

    .btn-primary:hover {
        transform: translateY(-3px) scale(1.02);
        box-shadow: var(--shadow-glow-strong), var(--shadow-glow-gold);
    }

    .btn-primary:hover::before {
        opacity: 1;
    }

    .btn-secondary {
        background: transparent;
        color: var(--text-primary);
        border: 1.5px solid var(--glass-border);
        position: relative;
    }

    .btn-secondary::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(212, 175, 55, 0.05));
        opacity: 0;
        transition: opacity 0.5s ease;
    }

    .btn-secondary:hover {
        border-color: rgba(212, 175, 55, 0.3);
        box-shadow: var(--shadow-glow-gold);
        transform: translateY(-3px) scale(1.02);
    }

    .btn-secondary:hover::before {
        opacity: 1;
    }

    .btn-full {
        width: 100%;
    }

    /* Magnetic button enhancement */
    .magnetic-btn {
        transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    }

    /* ============================================
    HERO STATS - Premium
    ============================================ */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 8px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    padding: 0 32px;
    position: relative;
}

.stat-item:first-child {
    padding-left: 0;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 36px;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.08), transparent);
}

.stat-item:last-child::after {
    display: none;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #F0D878, #D4AF37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline;
}

.stat-plus {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #F0D878, #D4AF37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    vertical-align: super;
    margin-left: 1px;
}

.stat-number-row {
    display: flex;
    align-items: baseline;
    gap: 1px;
    line-height: 1;
}

.stat-label {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.4);
    margin-top: 8px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
}

    /* ============================================
    HERO VISUAL - Photo Frame (Enhanced Aesthetic)
    ============================================ */
    .hero-visual {
        width: 100%;
        max-width: 480px;
        margin: 0 auto;
        position: relative;
        perspective: 1000px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Floating decorative elements around hero visual */
    .hero-visual::before {
        content: '';
        position: absolute;
        width: 300px;
        height: 300px;
        border: 1px solid rgba(124, 58, 237, 0.15);
        border-radius: 50%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        opacity: 0.06;
        animation: orbit-rotate 40s linear infinite;
        pointer-events: none;
    }

    .hero-visual::after {
        content: '';
        position: absolute;
        width: 200px;
        height: 200px;
        border: 1px solid rgba(212, 175, 55, 0.1);
        border-radius: 50%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        opacity: 0.06;
        animation: orbit-rotate 30s linear infinite reverse;
        pointer-events: none;
    }

    @keyframes orbit-rotate {
        0% { transform: translate(-50%, -50%) rotate(0deg); }
        100% { transform: translate(-50%, -50%) rotate(360deg); }
    }

    .photo-frame {
        width: 100%;
        max-width: 500px;
        padding: 40px 44px 36px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        animation: none;
        transform-style: preserve-3d;
        position: relative;
        background: linear-gradient(135deg, rgba(124, 58, 237, 0.06) 0%, rgba(15, 15, 25, 0.4) 100%);
        border: 1px solid rgba(212, 175, 55, 0.15);
    }

    .frame-inner {
        position: relative;
        width: 100%;
        max-width: 280px;
        aspect-ratio: 1/1;
        border-radius: 50%;
        overflow: hidden;
        margin-bottom: 8px;
        background: var(--bg-tertiary);
        border: 2px solid rgba(212, 175, 55, 0.3);
        box-shadow: 
            0 0 40px rgba(124, 58, 237, 0.15),
            inset 0 0 30px rgba(212, 175, 55, 0.05);
    }

    /* Inner glow effect - disabled for image clarity */
    .frame-inner::before {
        display: none;
    }

    .photo-placeholder {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--gradient-purple);
        position: relative;
        overflow: hidden;
        border-radius: 50%;
    }

    .photo-placeholder img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        position: relative;
        z-index: 2;
    }

    /* Shimmer effect - removed for clarity */
    .photo-placeholder::before {
        display: none;
    }

    @keyframes shimmer {
        0%, 100% { transform: translateX(-100%); }
        50% { transform: translateX(100%); }
    }

    /* Shadow overlay - removed */
    .photo-placeholder::after {
        display: none;
    }


    .photo-placeholder span {
        font-family: var(--font-heading);
        font-size: 4.5rem;
        font-weight: 800;
        color: white;
        opacity: 0.95;
        text-shadow: none;
        position: relative;
        z-index: 2;
    }

    .frame-accent {
        position: absolute;
        top: -16px;
        left: -16px;
        right: -16px;
        bottom: -16px;
        border: 2px solid var(--accent-gold);
        border-radius: 50%;
        opacity: 0.12;
        pointer-events: none;
        transition: all var(--transition-premium);
    }

    .photo-frame:hover .frame-accent {
        opacity: 0.5;
        top: -10px;
        left: -10px;
        right: -10px;
        bottom: -10px;
    }

    /* Rotating accent ring */
    .frame-ring {
        position: absolute;
        top: 50%;
        left: 50%;
        width: calc(100% + 80px);
        height: calc(100% + 80px);
        transform: translate(-50%, -50%);
        border: 1px solid transparent;
        border-top-color: rgba(212, 175, 55, 0.4);
        border-bottom-color: rgba(124, 58, 237, 0.4);
        border-radius: 50%;
        pointer-events: none;
        animation: none;
        opacity: 0.12;
    }

    @keyframes frame-ring-rotate {
        0% { transform: translate(-50%, -50%) rotate(0deg); }
        100% { transform: translate(-50%, -50%) rotate(360deg); }
    }

    .frame-label {
        font-family: var(--font-heading);
        font-weight: 700;
        font-size: 1.5rem;
        color: var(--text-primary);
        margin-bottom: 8px;
        letter-spacing: -0.01em;
    }

.frame-title {
        font-family: 'Poppins', sans-serif;
        font-weight: 600;
        color: var(--accent-gold-light);
        letter-spacing: 0.15em;
        text-transform: uppercase;
        display: block;
    }

    @keyframes frame-float {

        0%, 100% { transform: translateY(0) rotate(0deg); }
        50% { transform: translateY(-15px) rotate(0.5deg); }
    }

    /* ============================================
    HERO DECORATIVE ELEMENTS - Left Side
    ============================================ */
    .hero-content {
        position: relative;
    }

    .hero-content::before {
        content: '';
        position: absolute;
        width: 150px;
        height: 150px;
        border: 1px solid rgba(124, 58, 237, 0.1);
        border-radius: 50%;
        top: -40px;
        left: -60px;
        animation: float-decoration 8s ease-in-out infinite;
        pointer-events: none;
        opacity: 0.5;
    }

    .hero-content::after {
        content: '';
        position: absolute;
        width: 80px;
        height: 80px;
        border: 1px solid rgba(212, 175, 55, 0.15);
        border-radius: 50%;
        bottom: 60px;
        left: -40px;
        animation: float-decoration-2 12s ease-in-out infinite;
        pointer-events: none;
    }

    @keyframes float-decoration {
        0%, 100% { transform: translate(0, 0) scale(1); }
        50% { transform: translate(10px, -10px) scale(1.05); }
    }

    @keyframes float-decoration-2 {
        0%, 100% { transform: translate(0, 0); }
        50% { transform: translate(-8px, 8px); }
    }

    /* Floating geometric shapes */
    .floating-shape {
        position: absolute;
        pointer-events: none;
        opacity: 0.3;
    }

    .floating-shape-1 {
        width: 20px;
        height: 20px;
        border: 2px solid var(--accent-purple);
        top: 20%;
        left: -30px;
        transform: rotate(45deg);
        animation: shape-float-1 6s ease-in-out infinite;
    }

    .floating-shape-2 {
        width: 12px;
        height: 12px;
        background: rgba(212, 175, 55, 0.3);
        border-radius: 50%;
        top: 60%;
        left: -50px;
        animation: shape-float-2 8s ease-in-out infinite;
    }

    @keyframes shape-float-1 {
        0%, 100% { transform: rotate(45deg) translateY(0); }
        50% { transform: rotate(45deg) translateY(-10px); }
    }

    @keyframes shape-float-2 {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-15px); }
    }

    /* ============================================
    SECTION COMMON STYLES - Premium Spacing
    ============================================ */
    section {
        padding: 160px 0;
        position: relative;
    }

    .section-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 120px;
    }

    .section-label {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        gap: 12px;
        font-family: var(--font-heading);
        margin: 0 0 24px;
        font-weight: 500;
        position: relative;
    }

    .section-label i {
        color: var(--accent-gold);
        margin: 0 4px;
    }

    .section-label::before {
        content: '';
        display: inline-block;
        width: 24px;
        height: 1px;
        background: linear-gradient(90deg, var(--accent-gold), transparent);
    }

    .section-label::after {
        content: '';
        display: inline-block;
        width: 24px;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--accent-gold));
    }

    .section-title {
        font-family: var(--font-heading);
        font-size: clamp(2.5rem, 5vw, 4.2rem);
        font-weight: 700;
        letter-spacing: -0.02em;
        line-height: 1.15;
        text-wrap: balance;
        position: relative;
        display: inline-block;
    }

    section h2,
    section h3 {
        position: relative;
        display: inline-block;
    }

    .section-title::after,
    section h2::after,
    section h3::after {
        content: '';
        position: absolute;
        left: 50%;
        bottom: -0.4rem;
        width: min(45%, 220px);
        transform: translateX(-50%);
        height: 3px;
        border-radius: 999px;
        background: var(--gradient-gold);
        opacity: 0;
        transition: opacity 0.6s ease, width 0.6s ease;
    }

    .section-header.reveal-text.revealed .section-title::after,
    .reveal-text.revealed section h2::after,
    .reveal-text.revealed section h3::after {
        opacity: 1;
        width: min(45%, 220px);
    }

section h2,
    section h3 {
        position: relative;
        display: inline-block;
    }

    /* Apply footer-like underline to main headings */
    .section-title,
    header.page-header h1 {
        position: relative;
        display: inline-block;
    }

    .section-title::after,
    header.page-header h1::after {
        content: '';
        position: absolute;
        left: 50%;
        bottom: -0.4rem;
        transform: translateX(-50%);
        width: min(45%, 220px);
        height: 3px;
        border-radius: 999px;
        background: var(--gradient-gold);
        opacity: 0;
        transition: opacity 0.6s ease, width 0.6s ease;
    }

    .footer-column h4::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 2px;
        background: var(--gradient-gold);
        border-radius: 2px;
        transition: width var(--transition-normal);
        opacity: 1;
    }

    .section-header.reveal-text.revealed .section-title::after,
    .reveal-text.revealed header.page-header h1::after,
    .section-title:hover::after,
    header.page-header h1:hover::after {
        opacity: 1;
        width: min(45%, 220px);
    }

    .section-subtitle {
        color: var(--text-secondary);
        font-size: 1.2rem;
        max-width: 600px;
        margin: 24px auto 0;
        font-weight: 300;
        line-height: 1.8;
        opacity: 0.8;
    }

    /* ============================================
    FEATURED WORK SECTION - Premium
    ============================================ */
    .featured-work {
        background: linear-gradient(180deg, transparent, rgba(124, 58, 237, 0.03), transparent);
    }

    .featured-grid,
    .testimonials-grid,
    .portfolio-grid,
    .skills-grid,
    .faq-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: clamp(20px, 3vw, 36px);
    }

    .featured-card {
        position: relative;
        overflow: hidden;
        border-radius: 24px;
        aspect-ratio: 4/3;
        cursor: none;
    }

    .featured-card .portfolio-placeholder {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: var(--font-heading);
        font-size: 1.5rem;
        font-weight: 700;
        color: white;
        transition: transform var(--transition-slow);
    }

    .featured-card:hover .portfolio-placeholder {
        transform: scale(1.08);
    }

    .featured-card .portfolio-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 40px;
        background: linear-gradient(transparent, rgba(3, 3, 5, 0.95));
        transform: translateY(100%);
        transition: transform var(--transition-premium);
    }

    .featured-card:hover .portfolio-overlay {
        transform: translateY(0);
    }

    .featured-card .portfolio-overlay h3 {
        font-family: var(--font-heading);
        font-size: 1.5rem;
        margin-bottom: 8px;
    }

    .featured-card .portfolio-overlay p {
        color: var(--text-secondary);
        font-size: 1rem;
        opacity: 0.8;
    }

    /* ============================================
    TESTIMONIALS SECTION - Premium
    ============================================ */
    .testimonials {
        background: linear-gradient(180deg, transparent, rgba(124, 58, 237, 0.04), transparent);
    }

    .testimonial-card {
        padding: 56px 40px;
        position: relative;
    }

    .testimonial-card::before {
        content: '"';
        position: absolute;
        top: 32px;
        left: 40px;
        font-family: var(--font-serif);
        font-size: 7rem;
        color: var(--accent-gold);
        opacity: 0.15;
        line-height: 1;
        font-style: italic;
    }

    .testimonial-text {
        font-family: var(--font-body);
        font-size: 1.15rem;
        color: var(--text-secondary);
        line-height: 1.8;
        margin-bottom: 36px;
        position: relative;
        z-index: 1;
        font-style: italic;
    }

    .testimonial-author {
        display: flex;
        align-items: center;
        gap: 16px;
    }

    .author-avatar {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        background: var(--gradient-purple);
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: var(--font-heading);
        font-weight: 700;
        font-size: 1.2rem;
        color: white;
        flex-shrink: 0;
        position: relative;
        overflow: hidden;
    }

    .author-avatar::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, transparent, rgba(212, 175, 55, 0.3), transparent);
        opacity: 0;
        transition: opacity 0.5s ease;
    }

    .testimonial-card:hover .author-avatar::before {
        opacity: 1;
    }

    .author-info h4 {
        font-family: var(--font-heading);
        font-size: 1.15rem;
        margin-bottom: 4px;
    }

    .author-info p {
        font-size: 0.9rem;
        color: var(--text-muted);
    }

    .testimonial-rating {
        display: flex;
        gap: 4px;
        margin-bottom: 24px;
    }

    .testimonial-rating i {
        color: var(--accent-gold);
        font-size: 0.9rem;
    }

    /* ============================================
    CTA SECTION - Premium Glow
    ============================================ */
    .cta-section {
        padding: 140px 0;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .cta-section::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 1000px;
        height: 1000px;
        background: radial-gradient(circle, rgba(124, 58, 237, 0.12) 0%, transparent 70%);
        pointer-events: none;
    }

    .cta-section::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
        pointer-events: none;
    }

    .cta-content {
        position: relative;
        z-index: 1;
    }

    .cta-content h2 {
        font-family: var(--font-heading);
        font-size: clamp(2.5rem, 5vw, 4.2rem);
        font-weight: 800;
        margin-bottom: 28px;
        letter-spacing: -0.03em;
        line-height: 1.15;
    }

    .cta-content p {
        color: var(--text-secondary);
        font-size: 1.25rem;
        max-width: 560px;
        margin: 0 auto 48px;
        font-weight: 300;
        line-height: 1.8;
        opacity: 0.85;
    }

    /* ============================================
    ABOUT PAGE - Premium
    ============================================ */
    .page-header {
        padding: 200px 0 120px;
        text-align: center;
        background: var(--gradient-hero);
        position: relative;
        overflow: hidden;
    }

    .page-header::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 800px;
        height: 800px;
        background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
        pointer-events: none;
    }

    .page-header h1 {
        font-family: var(--font-heading);
        font-size: clamp(2.8rem, 6vw, 4.5rem);
        font-weight: 800;
        margin-bottom: 20px;
        letter-spacing: -0.03em;
        position: relative;
        z-index: 1;
    }

    .page-header p {
        color: var(--text-secondary);
        font-size: 1.25rem;
        max-width: 600px;
        margin: 0 auto;
        font-weight: 300;
        line-height: 1.8;
        position: relative;
        z-index: 1;
        opacity: 0.85;
    }

    .about-page-content {
        display: grid;
        grid-template-columns: 1fr 1.5fr;
        gap: 120px;
        align-items: center;
    }

    .about-image-large {
        position: relative;
        width: 100%;
        max-width: 560px;
        margin: 0 auto;
    }

    .about-image-large .image-frame {
        padding: 24px;
        position: relative;
        width: 100%;
    }

    .about-image-large .image-frame::before {
        content: '';
        position: absolute;
        top: -12px;
        left: -12px;
        right: 12px;
        bottom: 12px;
        border: 2px solid var(--accent-gold);
        border-radius: 24px;
        z-index: -1;
        opacity: 0.3;
        transition: all var(--transition-premium);
    }

    .about-image-large:hover .image-frame::before {
        opacity: 0.6;
        top: -8px;
        left: -8px;
        right: 8px;
        bottom: 8px;
    }

    .about-image-large .image-placeholder {
        aspect-ratio: 3/4;
        background: var(--gradient-purple);
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: var(--font-heading);
        font-size: 6rem;
        font-weight: 800;
        color: white;
        opacity: 1;
        position: relative;
        overflow: hidden;
    }

    /* Removed the yellow tint overlay to prevent the “yellow fade” on the about image */
    .about-image-large .image-placeholder::before {
        display: none;
    }

    .about-text p {
        color: var(--text-secondary);
        font-size: 1.1rem;
        line-height: 1.9;
        margin-bottom: 24px;
        font-weight: 300;
    }

    .about-text .about-lead {
        font-family: var(--font-heading);
        font-size: 1.4rem;
        font-weight: 600;
        color: var(--text-primary);
        line-height: 1.6;
        margin-bottom: 32px;
    }

    /* Experience Timeline - Journey Mapping Effect */
    .experience-timeline {
        margin-top: 120px;
        position: relative;
    }

    /* Timeline connector line */
    .timeline-connector {
        position: absolute;
        left: calc(-24px + 20px);
        top: 0;
        bottom: 0;
        width: 3px;
        background: linear-gradient(180deg, var(--accent-purple) 0%, var(--accent-gold) 50%, var(--accent-purple) 100%);
        transform: translateX(-50%);
        border-radius: 2px;
        opacity: 0.3;
    }

    .timeline-connector::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 0;
        background: linear-gradient(180deg, var(--accent-gold-light), var(--accent-gold));
        border-radius: 2px;
        transition: height 1.5s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .timeline-connector.drawing::before {
        height: 100%;
    }

    /* Timeline progress indicator */
    .timeline-progress {
        position: absolute;
        left: calc(-24px + 20px);
        top: 0;
        width: 3px;
        height: 0;
        background: linear-gradient(180deg, var(--accent-gold-light), var(--accent-gold));
        border-radius: 2px;
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
        transform: translateX(-50%);
        z-index: 2;
    }

    .timeline-item {
        display: grid;
        grid-template-columns: 1fr 2fr;
        gap: 56px;
        padding: 48px 0;
        border-bottom: 1px solid var(--glass-border);
        position: relative;
        transition: all var(--transition-normal);
        opacity: 0;
        transform: translateX(-30px);
    }

    .timeline-item.visible {
        opacity: 1;
        transform: translateX(0);
    }

    .timeline-item:hover {
        border-color: rgba(212, 175, 55, 0.2);
        padding-left: 20px;
    }

    /* Timeline dot marker */
    .timeline-dot {
        position: absolute;
        left: calc(-24px + 20px);
        top: 50%;
        transform: translate(-50%, -50%);
        width: 14px;
        height: 14px;
        background: var(--bg-primary);
        border: 2px solid var(--accent-gold);
        border-radius: 50%;
        z-index: 3;
        transition: all var(--transition-normal);
        opacity: 0.6;
    }

    .timeline-item.active .timeline-dot {
        background: var(--accent-gold);
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
        opacity: 1;
        animation: pulse-dot 2s ease-in-out infinite;
    }

    .timeline-item.completed .timeline-dot {
        background: var(--accent-gold);
        opacity: 1;
    }

    @keyframes pulse-dot {
        0%, 100% { 
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
            transform: translate(-50%, -50%) scale(1);
        }
        50% { 
            box-shadow: 0 0 30px rgba(212, 175, 55, 0.8);
            transform: translate(-50%, -50%) scale(1.2);
        }
    }

    .timeline-year {
        font-family: var(--font-mono);
        font-size: 0.9rem;
        color: var(--accent-gold-light);
        letter-spacing: 0.1em;
        position: relative;
        transition: all var(--transition-normal);
    }

    .timeline-item:hover .timeline-year {
        color: var(--accent-gold);
    }

    .timeline-content h3 {
        font-family: var(--font-heading);
        font-size: 1.4rem;
        margin-bottom: 12px;
        transition: color var(--transition-normal);
    }

    .timeline-item:hover .timeline-content h3 {
        color: var(--accent-gold-light);
    }

    .timeline-content p {
        color: var(--text-secondary);
        font-size: 1.05rem;
        line-height: 1.8;
        font-weight: 300;
    }

    /* Journey status badge */
    .journey-status {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 6px 14px;
        background: var(--glass-bg);
        border: 1px solid var(--glass-border);
        border-radius: 20px;
        font-size: 0.75rem;
        color: var(--text-muted);
        margin-bottom: 16px;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        transition: all var(--transition-normal);
    }

    .timeline-item.active .journey-status {
        color: var(--accent-gold-light);
        border-color: rgba(212, 175, 55, 0.3);
        background: rgba(212, 175, 55, 0.1);
    }

    .timeline-item.completed .journey-status {
        color: var(--accent-gold);
        border-color: rgba(212, 175, 55, 0.2);
    }

    /* Journey card effect */
    .timeline-card {
        position: relative;
        padding: 24px;
        background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, rgba(15, 15, 25, 0.3) 100%);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 16px;
        transition: all var(--transition-premium);
    }

    .timeline-item:hover .timeline-card {
        background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(20, 20, 35, 0.4) 100%);
        border-color: rgba(212, 175, 55, 0.15);
        transform: translateX(8px);
    }

    /* Responsive timeline */
    @media (max-width: 768px) {
        .timeline-connector,
        .timeline-progress {
            left: 12px;
        }
        
        .timeline-dot {
            left: 12px;
        }
        
        .timeline-item {
            grid-template-columns: 1fr;
            gap: 16px;
            padding-left: 40px;
        }
        
        .timeline-item:hover {
            padding-left: 44px;
        }
    }

    /* Skills Grid */
    .skills-section {
        background: linear-gradient(180deg, transparent, rgba(124, 58, 237, 0.03), transparent);
    }

    .skills-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }

    .skill-card {
        padding: 48px 36px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .skill-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: var(--gradient-gold);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform var(--transition-premium);
    }

    .skill-card:hover::before {
        transform: scaleX(1);
    }

    .skill-card-icon {
        width: 68px;
        height: 68px;
        margin: 0 auto 28px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--glass-bg);
        border: 1px solid var(--glass-border);
        border-radius: 20px;
        font-size: 2rem;
        color: var(--accent-gold-light);
        transition: all var(--transition-premium);
        position: relative;
        overflow: hidden;
    }

    .skill-card:hover .skill-card-icon {
        background: var(--gradient-purple);
        color: white;
        box-shadow: var(--shadow-glow);
        transform: translateY(-4px) scale(1.05);
    }

    .skill-card h3 {
        font-family: var(--font-heading);
        font-size: 1.25rem;
        margin-bottom: 14px;
    }

    .skill-card p {
        color: var(--text-muted);
        font-size: 0.95rem;
        line-height: 1.7;
    }

    /* FAQ Grid (Contact Page) */
    .faq-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .faq-card {
        padding: 48px 36px;
        text-align: left;
        align-items: flex-start;
        position: relative;
        overflow: hidden;
    }

    .faq-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: var(--gradient-purple);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform var(--transition-premium);
    }

    .faq-card:hover::before {
        transform: scaleX(1);
    }

    .faq-card h3 {
        font-family: var(--font-heading);
        font-size: 1.25rem;
        margin-bottom: 20px;
        color: var(--text-primary);
    }

    .faq-card p {
        color: var(--text-secondary);
        font-size: 1.05rem;
        line-height: 1.8;
        font-weight: 300;
    }

    /* ============================================
    SERVICES PAGE - Premium
    ============================================ */
    .services-grid-page {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 36px;
    }

    .service-card-large {
        padding: 64px 56px;
        position: relative;
        overflow: hidden;
    }

    .service-card-large::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--gradient-gold);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform var(--transition-premium);
    }

    .service-card-large:hover::before {
        transform: scaleX(1);
    }

    .service-card-large .service-icon-main {
        width: 80px;
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--glass-bg);
        border: 1px solid var(--glass-border);
        border-radius: 24px;
        font-size: 2.2rem;
        color: var(--accent-gold-light);
        margin-bottom: 36px;
        transition: all var(--transition-premium);
        position: relative;
        overflow: hidden;
    }

    .service-card-large:hover .service-icon-main {
        background: var(--gradient-purple);
        color: white;
        box-shadow: var(--shadow-glow);
        transform: translateY(-4px) scale(1.05);
    }

    .service-card-large h3 {
        font-family: var(--font-heading);
        font-size: 1.7rem;
        margin-bottom: 24px;
    }

    .service-card-large > p {
        color: var(--text-secondary);
        font-size: 1.1rem;
        line-height: 1.9;
        margin-bottom: 36px;
        font-weight: 300;
    }

    .service-list {
        list-style: none;
    }

    .service-list li {
        padding: 12px 0;
        color: var(--text-muted);
        font-size: 1rem;
        position: relative;
        padding-left: 32px;
        display: flex;
        align-items: center;
        gap: 14px;
        transition: color var(--transition-fast);
    }

    .service-list li:hover {
        color: var(--text-secondary);
    }

    .service-list li i {
        color: var(--accent-gold);
        font-size: 0.85rem;
    }

    /* ============================================
    PORTFOLIO PAGE - Premium
    ============================================ */
    .portfolio-page {
        background: linear-gradient(180deg, transparent, rgba(124, 58, 237, 0.02), transparent);
    }

    .portfolio-filter {
        display: flex;
        justify-content: center;
        gap: 16px;
        margin-bottom: 72px;
        flex-wrap: wrap;
    }

    .filter-btn {
        padding: 16px 36px;
        background: var(--glass-bg);
        border: 1px solid var(--glass-border);
        border-radius: 12px;
        color: var(--text-secondary);
        font-family: var(--font-body);
        font-size: 1rem;
        cursor: none;
        transition: all var(--transition-premium);
        font-weight: 400;
        letter-spacing: 0.02em;
        position: relative;
        overflow: hidden;
    }

    .filter-btn::before {
        content: '';
        position: absolute;
        inset: 0;
        background: var(--gradient-purple);
        opacity: 0;
        transition: opacity var(--transition-normal);
    }

    .filter-btn:hover,
    .filter-btn.active {
        background: var(--gradient-purple);
        border-color: transparent;
        color: white;
        box-shadow: var(--shadow-glow);
        transform: translateY(-2px);
    }

    .filter-btn span {
        position: relative;
        z-index: 1;
    }

    .portfolio-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }

    .portfolio-item {
        position: relative;
        overflow: hidden;
        border-radius: 24px;
        cursor: none;
    }

    .portfolio-card {
        position: relative;
        overflow: hidden;
        border-radius: 24px;
        height: 100%;
    }

    .portfolio-image {
        width: 100%;
        height: 100%;
        min-height: 340px;
        position: relative;
        overflow: hidden;
        border-radius: 24px;
    }

    .portfolio-image .portfolio-img {
        width: 100%;
        height: 100%;
        min-height: 340px;
        display: block;
        object-fit: cover;
        object-position: center;
        transform: translateZ(0);
    }

    /* keep placeholder styles for older/demo markup */
    .portfolio-placeholder {
        width: 100%;
        height: 100%;
        min-height: 340px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: var(--font-heading);
        font-size: 1.5rem;
        font-weight: 700;
        color: white;
        text-align: center;
        padding: 28px;
        transition: transform var(--transition-slow);
    }

    .portfolio-item:hover .portfolio-placeholder {
        transform: scale(1.08);
    }

    .brand-gradient {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    }

    .digital-gradient {
        background: linear-gradient(135deg, #c084fc 0%, #a855f7 100%);
    }

    .ui-gradient {
        background: linear-gradient(135deg, #818cf8 0%, #6366f1 100%);
    }

    .print-gradient {
        background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
    }

    .motion-gradient {
        background: linear-gradient(135deg, #f472b6 0%, #ec4899 100%);
    }

    .portfolio-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 40px;
        background: linear-gradient(transparent, rgba(3, 3, 5, 0.95));
        transform: translateY(100%);
        transition: transform var(--transition-premium);
    }

    .portfolio-item:hover .portfolio-overlay {
        transform: translateY(0);
    }

    /* Touch-friendly mobile overlay - always visible on mobile */
    @media (hover: none) {
        .portfolio-overlay,
        .featured-card .portfolio-overlay {
            transform: translateY(0) !important;
        }
        
        .portfolio-overlay {
            background: linear-gradient(transparent 0%, rgba(3, 3, 5, 0.95) 40%);
        }
    }

    .portfolio-overlay h3 {
        font-family: var(--font-heading);
        font-size: 1.5rem;
        margin-bottom: 8px;
    }

    .portfolio-overlay p {
        color: var(--text-secondary);
        font-size: 1rem;
        margin-bottom: 24px;
        opacity: 0.8;
    }

    .view-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 14px 32px;
        background: var(--glass-bg);
        border: 1px solid var(--glass-border);
        border-radius: 50px;
        font-size: 0.95rem;
        color: var(--text-primary);
        transition: all var(--transition-fast);
    }

.view-btn:hover {
        background: var(--accent-purple);
        border-color: var(--accent-purple);
        box-shadow: var(--shadow-glow);
    }

/* Prevent default underline on hover for View Project link */
    .view-btn {
        text-decoration: none;
    }

    .view-btn:hover {
        text-decoration: none;
    }

    .view-btn:focus,
    .view-btn:focus-visible {
        text-decoration: none;
    }

    .view-btn i {
        text-decoration: none;
    }

    /* ============================================
    CONTACT PAGE - Premium
    ============================================ */
    .contact-page-content {
        display: grid;
        grid-template-columns: 1fr 1.3fr;
        gap: 100px;
        align-items: stretch;
    }

    .info-card {
        padding: 64px;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .info-card h3 {
        font-family: var(--font-heading);
        font-size: 2.4rem;
        margin-bottom: 24px;
        letter-spacing: -0.02em;
    }

    .info-card > p {
        color: var(--text-secondary);
        margin-bottom: 56px;
        line-height: 1.9;
        font-size: 1.1rem;
        font-weight: 300;
        flex: 1;
    }

    .contact-details {
        display: flex;
        flex-direction: column;
        gap: 32px;
        margin-bottom: 56px;
        margin-top: auto;
    }

    .contact-item {
        display: flex;
        align-items: center;
        gap: 24px;
        transition: transform var(--transition-fast);
    }

    .contact-item:hover {
        transform: translateX(8px);
    }

    .contact-icon {
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--glass-bg);
        border: 1px solid var(--glass-border);
        border-radius: 18px;
        font-size: 1.4rem;
        color: var(--accent-gold-light);
        transition: all var(--transition-premium);
        flex-shrink: 0;
        position: relative;
        overflow: hidden;
    }

    .contact-item:hover .contact-icon {
        background: var(--gradient-purple);
        color: white;
        box-shadow: var(--shadow-glow);
        transform: scale(1.05);
    }

    .contact-item label {
        display: block;
        font-size: 0.8rem;
        color: var(--text-muted);
        margin-bottom: 8px;
        letter-spacing: 0.1em;
        text-transform: uppercase;
    }

    .contact-item a,
    .contact-item span {
        color: var(--text-primary);
        text-decoration: none;
        font-weight: 400;
        font-size: 1.1rem;
        transition: color var(--transition-fast);
    }

    .contact-item a:hover {
        color: var(--accent-gold-light);
    }

    .social-links {
        display: flex;
        gap: 16px;
    }

    .social-link {
        width: 56px;
        height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--glass-bg);
        border: 1px solid var(--glass-border);
        border-radius: 18px;
        color: var(--text-primary);
        text-decoration: none;
        font-family: var(--font-heading);
        font-weight: 600;
        font-size: 0.9rem;
        transition: all var(--transition-premium);
        position: relative;
        overflow: hidden;
    }

    .social-link::before {
        content: '';
        position: absolute;
        inset: 0;
        background: var(--gradient-purple);
        opacity: 0;
        transition: opacity var(--transition-normal);
    }

    .social-link:hover {
        border-color: transparent;
        transform: translateY(-4px) scale(1.05);
        box-shadow: var(--shadow-glow);
    }

    .social-link:hover::before {
        opacity: 1;
    }

    .social-link i,
    .social-link span {
        position: relative;
        z-index: 1;
    }

    /* Contact Form */
    .contact-form {
        padding: 64px;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .form-group {
        position: relative;
        margin-bottom: 40px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 20px 0;
        background: transparent;
        border: none;
        border-bottom: 2px solid var(--glass-border);
        color: var(--text-primary);
        font-family: var(--font-body);
        font-size: 1.1rem;
        outline: none;
        transition: border-color var(--transition-premium);
        cursor: none;
        font-weight: 300;
    }

    .form-group textarea {
        resize: vertical;
        min-height: 160px;
    }

    .form-group label {
        position: absolute;
        left: 0;
        top: 20px;
        color: var(--text-muted);
        font-size: 1.1rem;
        pointer-events: none;
        transition: all var(--transition-premium);
        font-weight: 300;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus,
    .form-group input:valid,
    .form-group select:valid,
    .form-group textarea:valid {
        border-color: var(--accent-purple);
    }

    .form-group input:focus ~ label,
    .form-group input:valid ~ label,
    .form-group textarea:focus ~ label,
    .form-group textarea:valid ~ label {
        top: -14px;
        font-size: 0.8rem;
        color: var(--accent-gold-light);
        letter-spacing: 0.1em;
        text-transform: uppercase;
    }

    .input-line {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--gradient-gold);
        transition: width var(--transition-premium);
    }

    .form-group input:focus ~ .input-line,
    .form-group select:focus ~ .input-line,
    .form-group textarea:focus ~ .input-line {
        width: 100%;
    }

    /* ============================================
    FOOTER - Premium
    ============================================ */
    /* ============================================
    PREMIUM MULTI-COLUMN FOOTER
    ============================================ */
    .footer {
        padding: 100px 0 40px;
        position: relative;
        overflow: hidden;
    }

    /* Animated gradient border top */
    .footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, 
            transparent, 
            var(--accent-purple), 
            var(--accent-gold), 
            var(--accent-purple), 
            transparent
        );
        background-size: 200% 100%;
        animation: gradient-border-flow 4s ease infinite;
    }

    @keyframes gradient-border-flow {
        0%, 100% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
    }

    /* Subtle background glow */
    .footer::after {
        content: '';
        position: absolute;
        top: -50%;
        left: 50%;
        transform: translateX(-50%);
        width: 800px;
        height: 800px;
        background: radial-gradient(circle, rgba(124, 58, 237, 0.05) 0%, transparent 70%);
        pointer-events: none;
        z-index: 0;
    }

    .footer-content {
        position: relative;
        z-index: 1;
        display: grid;
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        gap: 48px;
        margin-bottom: 60px;
        text-align: center;
    }

    /* Brand column */
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-logo {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 14px;
        margin-bottom: 24px;
        font-family: var(--font-heading);
        font-size: 1.7rem;
        font-weight: 700;
        text-decoration: none;
        color: var(--text-primary);
        transition: all var(--transition-premium);
    }

    .footer-logo:hover {
        transform: scale(1.05);
    }

    .footer-logo .logo-icon {
        width: 48px;
        height: 48px;
        background: var(--gradient-purple);
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 800;
        font-size: 1.6rem;
        color: white;
        box-shadow: var(--shadow-glow);
        transition: all var(--transition-premium);
    }

    .footer-logo:hover .logo-icon {
        box-shadow: var(--shadow-glow), var(--shadow-glow-gold);
        transform: scale(1.05);
    }

    .footer-tagline {
        font-family: var(--font-body);
        color: var(--text-secondary);
        margin-bottom: 32px;
        font-size: 1.05rem;
        font-weight: 300;
        line-height: 1.8;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Footer social links */
    .footer-social {
        display: flex;
        gap: 16px;
        margin-top: auto;
        justify-content: center;
    }

    .footer-social a {
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--glass-bg);
        border: 1px solid var(--glass-border);
        border-radius: 12px;
        color: var(--text-secondary);
        font-size: 1.1rem;
        text-decoration: none;
        transition: all var(--transition-premium);
        position: relative;
        overflow: hidden;
    }

    .footer-social a::before {
        content: '';
        position: absolute;
        inset: 0;
        background: var(--gradient-purple);
        opacity: 0;
        transition: opacity var(--transition-premium);
    }

    .footer-social a:hover {
        color: white;
        border-color: transparent;
        transform: translateY(-4px);
        box-shadow: var(--shadow-glow);
    }

    .footer-social a:hover::before {
        opacity: 1;
    }

    .footer-social a i {
        position: relative;
        z-index: 1;
    }

    /* Footer columns */
    .footer-column {
        text-align: center;
    }

    .footer-column h4 {
        font-family: var(--font-heading);
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--text-primary);
        margin-bottom: 28px;
        letter-spacing: 0.02em;
        position: relative;
        display: inline-block;
    }

.footer-column h4::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 2px;
        background: var(--gradient-gold);
        border-radius: 2px;
        transition: width var(--transition-normal);
    }

    .footer-column:hover h4::after,
    .heading-underline:hover::after {
        width: 100%;
    }

/* Heading underline utility (match footer h4 underline) */
    .heading-underline {
        position: relative;
        display: inline-block;
    }

    .heading-underline::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 2px;
        background: var(--gradient-gold);
        border-radius: 2px;
        transition: width var(--transition-normal);
    }

    .footer-column ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-column ul li {
        margin-bottom: 16px;
        position: relative;
    }

    .footer-column ul li a {
        color: var(--text-secondary);
        text-decoration: none;
        font-size: 0.95rem;
        transition: all var(--transition-fast);
        display: inline-block;
        padding-left: 0;
        position: relative;
    }

    .footer-column ul li a::before {
        content: '→';
        position: absolute;
        left: -20px;
        opacity: 0;
        transition: all var(--transition-fast);
        color: var(--accent-gold);
    }

    .footer-column ul li a:hover {
        color: var(--accent-gold-light);
        padding-left: 20px;
    }

    .footer-column ul li a:hover::before {
        opacity: 1;
    }

    /* Contact info in footer */
    .footer-contact {
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: center;
        text-align: center;
    }

    .footer-contact-item {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 16px;
        color: var(--text-secondary);
        font-size: 0.95rem;
    }

    .footer-contact-item i {
        color: var(--accent-gold);
        font-size: 1.1rem;
        margin-top: 2px;
        flex-shrink: 0;
    }

    .footer-contact-item a {
        color: var(--text-secondary);
        text-decoration: none;
        transition: color var(--transition-fast);
    }

    .footer-contact-item a:hover {
        color: var(--accent-gold-light);
    }

    /* Footer bottom */
    .footer-bottom {
        position: relative;
        z-index: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-top: 40px;
        border-top: 1px solid var(--glass-border);
        color: var(--text-muted);
        font-size: 0.9rem;
        font-weight: 300;
        text-align: center;
        gap: 20px;
    }

    .footer-bottom-left {
        display: flex;
        align-items: center;
        gap: 8px;
        justify-content: center;
    }

    .footer-bottom-left span {
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .footer-bottom-right {
        display: flex;
        align-items: center;
        gap: 24px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-bottom-right a {
        color: var(--text-muted);
        text-decoration: none;
        transition: color var(--transition-fast);
    }

    .footer-bottom-right a:hover {
        color: var(--accent-gold-light);
    }

    /* Back to top button integration */
    .back-to-top {
        position: fixed;
        bottom: 32px;
        right: 32px;
        width: 56px;
        height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--gradient-purple);
        border: none;
        border-radius: 50%;
        color: white;
        font-size: 1.2rem;
        cursor: none;
        opacity: 0;
        visibility: hidden;
        transform: translateY(20px);
        transition: all var(--transition-premium);
        box-shadow: var(--shadow-glow);
        z-index: 999;
    }

    .back-to-top.visible {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .back-to-top:hover {
        transform: translateY(-4px) scale(1.05);
        box-shadow: var(--shadow-glow-strong);
    }

    /* ============================================
    ANIMATIONS
    ============================================ */
    .fade-up {
        opacity: 0;
        transform: translateY(50px);
    }

    .fade-up.visible {
        opacity: 1;
        transform: translateY(0);
        transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
    }

    /* ============================================
    RESPONSIVE DESIGN - Premium
    ============================================ */
    @media (max-width: 1024px) {
        .hero-container {
            grid-template-columns: 1fr;
            text-align: center;
        }

        .hero-description {
            margin-left: auto;
            margin-right: auto;
        }

        .hero-buttons {
            justify-content: center;
        }

        .hero-stats {
            justify-content: center;
        }

        .hero-visual {
            display: none;
        }

        .about-page-content {
            grid-template-columns: 1fr;
            gap: 60px;
        }

        .about-image-large {
            max-width: 400px;
            margin: 0 auto;
        }

        .about-text {
            width: 100%;
            max-width: 700px;
            margin: 0 auto;
        }

        .services-grid-page {
            grid-template-columns: 1fr;
        }

        .portfolio-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .skills-grid {
            grid-template-columns: 1fr;
        }

        .contact-page-content {
            grid-template-columns: 1fr;
        }

        .featured-grid,
        .testimonials-grid,
        .faq-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 768px) {
        html, body {
            overflow-x: hidden;
            max-width: 100vw;
        }

        body {
            cursor: auto;
        }

        .cursor-dot,
        .cursor-outline {
            display: none !important;
        }

        .nav-links {
            display: none;
        }

        .hamburger {
            display: flex;
        }

        .hero-title {
            font-size: 2.8rem;
        }

        .about-text {
            width: 100%;
            max-width: 720px;
            margin: 0 auto;
            text-align: center;
        }

        .about-image-large .image-frame {
            width: 100%;
            max-width: 560px;
            margin: 0 auto;
        }

        .hero-stats {
            flex-direction: column;
            gap: 32px;
            align-items: center;
            justify-content: center;
            width: 100%;
            max-width: 620px;
            margin: 0 auto;
        }

        .stat-item {
            width: min(360px, 100%);
            padding: 0 16px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .stat-number-row {
            justify-content: center;
        }

        .stat-item::after {
            display: none;
        }

        .skills-grid {
            grid-template-columns: 1fr;
            gap: 16px;
        }

        .skill-card {
            width: 100%;
            max-width: 100%;
            text-align: center;
        }

        .portfolio-grid,
        .featured-grid,
        .testimonials-grid,
        .faq-grid {
            grid-template-columns: 1fr;
        }

        .portfolio-placeholder {
            min-height: 300px;
        }

        .contact-form,
        .info-card {
            padding: 40px;
        }

        .footer-bottom {
            flex-direction: column;
            gap: 20px;
            text-align: center;
            justify-content: center;
        }

        .footer-bottom-left,
        .footer-bottom-right {
            justify-content: center;
        }

        .section-header {
            margin-bottom: 80px;
        }

        section {
            padding: 120px 0;
            overflow-x: hidden;
        }

        .hero {
            padding: 140px 0 100px;
        }

        .hero-buttons {
            flex-direction: column;
            align-items: center;
        }

        .btn {
            width: 100%;
            max-width: 320px;
        }

        .timeline-item {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .portfolio-filter {
            gap: 12px;
        }

        .filter-btn {
            padding: 14px 28px;
            font-size: 0.95rem;
        }

        .mobile-menu ul li a {
            font-size: 2rem;
        }

        .page-header {
            padding: 160px 0 100px;
        }

        .service-card-large {
            padding: 40px 28px;
        }

        .hero-container {
            padding: 0 24px;
        }

        .section-title {
            padding: 0 12px;
        }

        .hero-content {
            width: 100%;
            max-width: 100%;
        }

        .hero-label, .hero-description, .hero-stats {
            max-width: 100%;
        }

        .featured-grid, .testimonials-grid, .portfolio-grid, .skills-grid, .faq-grid, .services-grid-page, .contact-page-content {
            width: 100%;
            max-width: 100%;
        }

        .footer-content, .footer-bottom {
            max-width: 100%;
        }

        .footer-content {
            grid-template-columns: 1fr;
        }

        .footer-grid {
            grid-template-columns: 1fr;
        }

        .pricing-grid {
            grid-template-columns: 1fr;
        }

        .client-logos-track {
            gap: 32px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .hero-stats {
            gap: 24px;
        }

        .stat-item {
            padding: 0 16px;
        }

        .info-card,
        .contact-form {
            padding: 32px 24px;
        }

        .timeline-item {
            padding-left: 36px;
        }

        .mobile-menu ul li a {
            font-size: clamp(1.8rem, 6vw, 2.5rem);
        }
    }

    @media (max-width: 480px) {
        .hero-title {
            font-size: 3.4rem;
        }

        .stat-number {
            font-size: 2.6rem;
        }

        .section-title {
            font-size: 2rem;
        }

        .service-card-large h3 {
            font-size: 1.4rem;
        }

        .contact-item {
            flex-direction: column;
            text-align: center;
            gap: 16px;
        }

        .social-links {
            justify-content: center;
        }

        .footer-links {
            flex-direction: column;
            gap: 24px;
            align-items: center;
        }

        .container {
            padding: 0 24px;
        }

        .nav-container {
            padding: 0 24px;
        }

        .page-header h1 {
            font-size: 2.2rem;
        }

        .contact-page-content {
            gap: 32px;
        }

        .hero-label {
            font-size: 0.8rem;
            padding: 10px 20px;
            letter-spacing: 0.06em;
        }

        .section-label {
            font-size: 0.95rem;
            letter-spacing: 0.04em;
        }

        .footer-bottom-right {
            flex-wrap: wrap;
            justify-content: center;
            gap: 16px;
        }
    }

    @media (max-width: 480px) {
        .skills-grid {
            grid-template-columns: 1fr;
            gap: 12px;
        }

        .skill-card {
            padding: 28px 24px;
            width: 100%;
            max-width: 100%;
            text-align: center;
        }
    }

    /* ============================================
    SCROLLBAR STYLING - Premium
    ============================================ */
    ::-webkit-scrollbar {
        width: 6px;
    }

    ::-webkit-scrollbar-track {
        background: var(--bg-primary);
    }

    ::-webkit-scrollbar-thumb {
        background: linear-gradient(180deg, var(--accent-purple), var(--accent-gold));
        border-radius: 4px;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(180deg, var(--accent-gold), var(--accent-purple));
    }

    /* ============================================
    LOADING ANIMATION
    ============================================ */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(40px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .animate-in {
        animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    .stagger-1 { animation-delay: 0.1s; }
    .stagger-2 { animation-delay: 0.2s; }
    .stagger-3 { animation-delay: 0.3s; }
    .stagger-4 { animation-delay: 0.4s; }
    .stagger-5 { animation-delay: 0.5s; }
    .stagger-6 { animation-delay: 0.6s; }

    /* ============================================
    PORTFOLIO FILTER ANIMATION
    ============================================ */
    .portfolio-item.hidden {
        display: none;
    }

    .portfolio-item.fade-in {
        animation: fadeInUp 0.6s ease forwards;
    }

    /* ============================================
    FORM SUCCESS STATE
    ============================================ */
    .form-success {
        text-align: center;
        padding: 56px;
    }

    .form-success-icon {
        font-size: 4.5rem;
        margin-bottom: 28px;
    }

    .form-success h3 {
        font-family: var(--font-heading);
        font-size: 2.2rem;
        margin-bottom: 20px;
    }

    .form-success p {
        color: var(--text-secondary);
        font-size: 1.1rem;
        line-height: 1.8;
        font-weight: 300;
    }

    /* ============================================
    HOVER GLOW EFFECTS
    ============================================ */
    .glow-purple:hover {
        box-shadow: var(--shadow-glow);
    }

    .glow-gold:hover {
        box-shadow: var(--shadow-glow-gold);
    }

    /* ============================================
    PARALLAX EFFECT SUPPORT
    ============================================ */
    .parallax {
        will-change: transform;
    }

    .parallax-slow {
        will-change: transform;
    }

    /* ============================================
    MARQUEE / TEXT SCROLL
    ============================================ */
    .marquee-container {
        overflow: hidden;
        white-space: nowrap;
    }

    .marquee-content {
        display: inline-flex;
        animation: marquee 30s linear infinite;
    }

    @keyframes marquee {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }

    /* ============================================
    CLIENT LOGOS MARQUEE
    ============================================ */
    .client-logos {
        padding: 80px 0;
        background: linear-gradient(180deg, rgba(124, 58, 237, 0.02), transparent);
        border-top: 1px solid var(--glass-border);
        border-bottom: 1px solid var(--glass-border);
    }

    .client-logos-track {
        display: flex;
        gap: 80px;
        align-items: center;
        justify-content: space-between;
        opacity: 0.6;
    }

    .client-logo {
        font-family: var(--font-heading);
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--text-muted);
        white-space: nowrap;
        transition: all var(--transition-normal);
        text-decoration: none;
    }

    .client-logo:hover {
        color: var(--text-primary);
        opacity: 1;
    }

    /* ============================================
    SECTION DIVIDER
    ============================================ */
    .section-divider {
        width: 100%;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
        margin: 0;
        position: relative;
    }

    .section-divider::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 8px;
        height: 8px;
        background: var(--accent-gold);
        border-radius: 50%;
        opacity: 0.5;
    }

    .section-divider-center {
        width: 200px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .section-divider-center::before,
    .section-divider-center::after {
        content: '';
        flex: 1;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
    }

    .section-divider-center span {
        width: 8px;
        height: 8px;
        background: var(--accent-gold);
        border-radius: 50%;
        margin: 0 16px;
        opacity: 0.5;
    }

    /* ============================================
    PRICING CARDS
    ============================================ */
    .pricing-section {
        padding: 160px 0;
    }

    .pricing-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 32px;
    }

    .pricing-card {
        padding: 56px 40px;
        position: relative;
        overflow: hidden;
    }

    .pricing-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--gradient-purple);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform var(--transition-premium);
    }

    .pricing-card:hover::before {
        transform: scaleX(1);
    }

    .pricing-card.featured {
        border-color: rgba(212, 175, 55, 0.3);
    }

    .pricing-card.featured::before {
        background: var(--gradient-gold);
        transform: scaleX(1);
    }

    .pricing-badge {
        position: absolute;
        top: 24px;
        right: 24px;
        padding: 8px 20px;
        background: var(--gradient-purple);
        border-radius: 50px;
        font-size: 0.75rem;
        font-weight: 600;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: white;
    }

    .pricing-card.featured .pricing-badge {
        background: var(--gradient-gold);
    }

    .pricing-header {
        text-align: center;
        margin-bottom: 40px;
    }

    .pricing-header h3 {
        font-family: var(--font-heading);
        font-size: 1.5rem;
        margin-bottom: 16px;
    }

    .pricing-price {
        display: flex;
        align-items: baseline;
        justify-content: center;
        gap: 8px;
    }

    .pricing-currency {
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--text-secondary);
    }

    .pricing-amount {
        font-family: var(--font-heading);
        font-size: 4rem;
        font-weight: 800;
        color: var(--text-primary);
        line-height: 1;
    }

    .pricing-period {
        font-size: 1rem;
        color: var(--text-muted);
    }

    .pricing-features {
        list-style: none;
        margin-bottom: 40px;
    }

    .pricing-features li {
        padding: 16px 0;
        color: var(--text-secondary);
        font-size: 1rem;
        border-bottom: 1px solid var(--glass-border);
        display: flex;
        align-items: center;
        gap: 16px;
        transition: color var(--transition-fast);
    }

    .pricing-features li:hover {
        color: var(--text-primary);
    }

    .pricing-features li:last-child {
        border-bottom: none;
    }

    .pricing-features li i {
        color: var(--accent-gold);
        font-size: 0.85rem;
    }

    .pricing-card .btn {
        width: 100%;
    }

    /* ============================================
    TRUST BADGES / CREDIBILITY
    ============================================ */
    .trust-badges {
        display: flex;
        justify-content: center;
        gap: 48px;
        flex-wrap: wrap;
        margin-bottom: 48px;
    }

    .trust-badge {
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 16px 28px;
        background: var(--glass-bg);
        border: 1px solid var(--glass-border);
        border-radius: var(--radius);
    }

    .trust-badge-icon {
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--gradient-purple);
        border-radius: 12px;
        font-size: 1.2rem;
        color: white;
    }

    .trust-badge-text {
        display: flex;
        flex-direction: column;
    }

    .trust-badge-text span:first-child {
        font-family: var(--font-heading);
        font-weight: 600;
        font-size: 1rem;
        color: var(--text-primary);
    }

    .trust-badge-text span:last-child {
        font-size: 0.85rem;
        color: var(--text-muted);
    }

    /* ============================================
    AVAILABILITY INDICATOR
    ============================================ */
    .availability-indicator {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 10px 20px;
        background: var(--glass-bg);
        border: 1px solid var(--glass-border);
        border-radius: 50px;
    }

    .availability-dot {
        width: 10px;
        height: 10px;
        background: #22c55e;
        border-radius: 50%;
        animation: pulse-dot 2s ease-in-out infinite;
    }

    @keyframes pulse-dot {
        0%, 100% { opacity: 1; transform: scale(1); }
        50% { opacity: 0.6; transform: scale(1.1); }
    }

    .availability-indicator span {
        font-family: var(--font-body);
        font-size: 1rem;
        color: var(--text-secondary);
    }

    /* ============================================
    ENHANCED MULTI-COLUMN FOOTER
    ============================================ */
    .footer-enhanced {
        padding: 100px 0 40px;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
        gap: 48px;
        margin-bottom: 80px;
    }

    .footer-col h4 {
        font-family: var(--font-heading);
        font-size: 1.1rem;
        margin-bottom: 28px;
        color: var(--text-primary);
        letter-spacing: 0.02em;
    }

    .footer-col p {
        color: var(--text-secondary);
        font-size: 0.95rem;
        line-height: 1.8;
        margin-bottom: 24px;
    }

    .footer-col ul {
        list-style: none;
    }

    .footer-col ul li {
        margin: 14px 0;
    }

    .footer-col ul li a {
        color: var(--text-secondary);
        text-decoration: none;
        font-size: 0.95rem;
        transition: all var(--transition-fast);
        position: relative;
        padding-left: 0;
    }

    .footer-col ul li a:hover {
        color: var(--accent-gold-light);
        padding-left: 8px;
    }

    .footer-col ul li a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 0;
        height: 1px;
        background: var(--accent-gold);
        transition: width var(--transition-normal);
    }

    .footer-col ul li a:hover::before {
        width: 4px;
    }

    .footer-newsletter {
        display: flex;
        gap: 12px;
    }

    .footer-newsletter input {
        flex: 1;
        padding: 16px 20px;
        background: var(--glass-bg);
        border: 1px solid var(--glass-border);
        border-radius: var(--radius-sm);
        color: var(--text-primary);
        font-size: 0.95rem;
        outline: none;
        transition: border-color var(--transition-fast);
    }

    .footer-newsletter input:focus {
        border-color: var(--accent-purple);
    }

    .footer-newsletter button {
        padding: 16px 24px;
        background: var(--gradient-purple);
        border: none;
        border-radius: var(--radius-sm);
        color: white;
        font-size: 1rem;
        cursor: none;
        transition: all var(--transition-normal);
    }

    .footer-newsletter button:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-glow);
    }

    .footer-social {
        display: flex;
        gap: 12px;
        margin-top: 24px;
    }

    .footer-social a {
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--glass-bg);
        border: 1px solid var(--glass-border);
        border-radius: 12px;
        color: var(--text-secondary);
        font-size: 1rem;
        transition: all var(--transition-premium);
    }

    .footer-social a:hover {
        background: var(--gradient-purple);
        border-color: transparent;
        color: white;
        transform: translateY(-4px);
        box-shadow: var(--shadow-glow);
    }

    @media (max-width: 1024px) {
        .footer-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .footer-col:first-child {
            grid-column: span 2;
        }
    }

    @media (max-width: 768px) {
        .footer-grid {
            grid-template-columns: 1fr;
        }
        
        .footer-col:first-child {
            grid-column: span 1;
        }
        
        .client-logos-track {
            flex-wrap: wrap;
            justify-content: center;
            gap: 40px;
        }
        
        .trust-badges {
            flex-direction: column;
            align-items: center;
        }
        
        .back-to-top {
            bottom: 20px;
            right: 20px;
            width: 48px;
            height: 48px;
        }
    }

    /* ============================================
    REDUCED MOTION
    ============================================ */
    @media (prefers-reduced-motion: reduce) {
        *,
        *::before,
        *::after {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }

        .orb {
            animation: none;
        }

        .hero-card {
            animation: none;
        }

        .wheel {
            animation: none;
        }

        .marquee-content {
            animation: none;
        }
    }
