/* ========================================
   CSS Variables - Ultra Premium Dark Theme
======================================== */
:root {
    /* Primary Colors - Deep Black */
    --primary: #0a0a0a;
    --primary-dark: #000000;
    --primary-light: #141414;

    /* Luxury Gold Accent */
    --gold: #c9a962;
    --gold-light: #dfc07a;
    --gold-dark: #a68b4b;
    --gold-muted: rgba(201, 169, 98, 0.15);
    --gold-glow: rgba(201, 169, 98, 0.4);

    /* Background Colors */
    --bg-dark: #000000;
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-card: #0f0f0f;
    --bg-elevated: #161616;
    --bg-glass: rgba(15, 15, 15, 0.8);

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #707070;
    --text-dark: #1a1a1a;

    /* Border Colors */
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-light: rgba(255, 255, 255, 0.1);
    --border-gold: rgba(201, 169, 98, 0.3);
    --border-glow: rgba(201, 169, 98, 0.5);

    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #c9a962 0%, #dfc07a 50%, #c9a962 100%);
    --gradient-dark: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
    --gradient-card: linear-gradient(145deg, rgba(20, 20, 20, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
    --gradient-hero: radial-gradient(ellipse at 50% 0%, rgba(201, 169, 98, 0.08) 0%, transparent 50%);
    --gradient-radial: radial-gradient(circle at center, var(--gold-muted) 0%, transparent 70%);
    --gradient-shine: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 8px 40px rgba(0, 0, 0, 0.6);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.7);
    --shadow-gold: 0 8px 32px rgba(201, 169, 98, 0.2);
    --shadow-glow: 0 0 60px rgba(201, 169, 98, 0.15);
    --shadow-inner: inset 0 1px 0 rgba(255, 255, 255, 0.05);

    /* Typography */
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-padding: 140px 0;
    --container-padding: 0 24px;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Border Radius */
    --radius-sm: 4px;
    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
}

/* ========================================
   Reset & Base Styles
======================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    background-color: var(--bg-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: inherit;
}

strong {
    color: var(--text-primary);
    font-weight: 600;
}

::selection {
    background: var(--gold);
    color: var(--bg-dark);
}

/* ========================================
   Custom Cursor
======================================== */
.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease, opacity 0.15s ease, width 0.2s ease, height 0.2s ease;
    transform: translate(-50%, -50%);
    opacity: 0;
}

.cursor.visible {
    opacity: 1;
}

.cursor.hover {
    width: 50px;
    height: 50px;
    border-color: var(--gold-light);
    background: rgba(201, 169, 98, 0.1);
}

.cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.15s ease;
}

.cursor-dot.visible {
    opacity: 1;
}

/* ========================================
   Container & Layout
======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.section {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

/* ========================================
   Animated Background Elements
======================================== */
.bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    pointer-events: none;
    animation: float 20s ease-in-out infinite;
}

.bg-glow-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.1) 0%, transparent 70%);
    top: -200px;
    left: -200px;
}

.bg-glow-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.08) 0%, transparent 70%);
    bottom: -150px;
    right: -150px;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(20px, 30px) scale(1.02); }
}

/* ========================================
   Navigation
======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
}

.nav-logo::before {
    content: '';
    position: absolute;
    inset: -10px -20px;
    background: var(--gradient-radial);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.nav-logo:hover::before {
    opacity: 1;
}

.nav-logo .logo-text {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 3px;
    position: relative;
}

.nav-logo .logo-separator {
    width: 1px;
    height: 28px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

.nav-logo .logo-subtitle {
    font-size: 10px;
    font-weight: 500;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 4px;
}

.nav-menu {
    display: flex;
    gap: 48px;
}

.nav-link {
    color: var(--text-secondary);
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    padding: 8px 0;
    transition: var(--transition);
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--gradient-gold);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link::after {
    content: '';
    position: absolute;
    inset: -8px -16px;
    background: var(--gold-muted);
    opacity: 0;
    transition: var(--transition);
    border-radius: 4px;
}

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

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.nav-link:hover::after {
    opacity: 1;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 4px;
    position: relative;
    z-index: 10;
}

.nav-toggle .bar {
    width: 24px;
    height: 1.5px;
    background: var(--text-primary);
    transition: var(--transition);
    transform-origin: center;
}

/* ========================================
   Hero Section
======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--bg-dark);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% { opacity: 0.5; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.1); }
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(var(--border-subtle) 1px, transparent 1px),
        linear-gradient(90deg, var(--border-subtle) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.3;
    animation: patternMove 60s linear infinite;
}

@keyframes patternMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(80px, 80px); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(201, 169, 98, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(201, 169, 98, 0.03) 0%, transparent 40%);
}

/* Floating Particles */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

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

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

.hero-content {
    display: flex;
    align-items: center;
    gap: 120px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 140px 24px 100px;
    position: relative;
    z-index: 1;
}

.hero-content.hero-centered {
    justify-content: center;
    text-align: center;
}

.hero-centered .hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 900px;
}

.hero-centered .hero-intro {
    justify-content: center;
}

.hero-centered .hero-description {
    text-align: center;
    max-width: 700px;
}

.hero-centered .hero-location {
    justify-content: center;
}

.hero-centered .hero-buttons {
    justify-content: center;
}

.hero-centered .hero-social {
    justify-content: center;
}

.hero-centered .hero-name {
    font-size: 90px;
    margin-bottom: 20px;
}

.status-badge-inline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-elevated);
    padding: 14px 32px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 1px solid var(--border-light);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    transition: var(--transition);
    margin-bottom: 32px;
}

.status-badge-inline:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
    transform: translateY(-4px);
}

.hero-image-container {
    position: relative;
    opacity: 0;
    animation: fadeInLeft 1s ease 0.3s forwards;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-image {
    position: relative;
    width: 360px;
    height: 450px;
    overflow: hidden;
}

.hero-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.5) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    filter: grayscale(20%) contrast(1.05);
    transition: var(--transition-slow);
    transform: scale(1);
}

.hero-image:hover img {
    filter: grayscale(0%) contrast(1.1);
    transform: scale(1.05);
}

.hero-image .image-frame {
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border: 1px solid var(--border-gold);
    pointer-events: none;
    transition: var(--transition);
}

.hero-image:hover .image-frame {
    border-color: var(--gold);
    box-shadow: inset 0 0 30px rgba(201, 169, 98, 0.1);
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 24px;
    left: 24px;
    right: -24px;
    bottom: -24px;
    border: 1px solid var(--border-gold);
    opacity: 0.4;
    z-index: -1;
    transition: var(--transition);
}

.hero-image:hover::after {
    top: 16px;
    left: 16px;
    right: -32px;
    bottom: -32px;
    opacity: 0.6;
}

/* Shine Effect */
.hero-image .shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transition: 0.6s;
    z-index: 2;
}

.hero-image:hover .shine {
    left: 100%;
}

.status-badge {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-elevated);
    padding: 14px 32px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 1px solid var(--border-light);
    white-space: nowrap;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.status-badge:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
    transform: translateX(-50%) translateY(-4px);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    position: relative;
}

.status-dot::before {
    content: '';
    position: absolute;
    inset: -4px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(1.8); opacity: 0; }
}

.hero-text {
    flex: 1;
    opacity: 0;
    animation: fadeInRight 1s ease 0.5s forwards;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-intro {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
}

.intro-line {
    width: 60px;
    height: 1px;
    background: var(--gradient-gold);
    position: relative;
    overflow: hidden;
}

.intro-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 200%; }
}

.intro-text {
    font-size: 11px;
    font-weight: 500;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 6px;
    animation: fadeIn 1s ease 0.8s both;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-name {
    font-family: var(--font-heading);
    font-size: 76px;
    font-weight: 500;
    line-height: 1.05;
    margin-bottom: 24px;
    color: var(--text-primary);
    letter-spacing: -1px;
    position: relative;
}

.hero-name span {
    display: inline-block;
    opacity: 0;
    animation: letterReveal 0.8s ease forwards;
}

@keyframes letterReveal {
    from {
        opacity: 0;
        transform: translateY(40px) rotateX(-40deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

.hero-title {
    font-size: 18px;
    font-weight: 400;
    color: var(--gold);
    margin-bottom: 32px;
    min-height: 28px;
    letter-spacing: 3px;
}

.typing-cursor {
    color: var(--gold);
    animation: blink 1s infinite;
    font-weight: 100;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 540px;
    margin-bottom: 28px;
    line-height: 1.9;
    opacity: 0;
    animation: fadeInUp 1s ease 1s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-location {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 48px;
    letter-spacing: 0.5px;
    opacity: 0;
    animation: fadeInUp 1s ease 1.1s forwards;
}

.hero-location i {
    color: var(--gold);
    font-size: 11px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 56px;
    opacity: 0;
    animation: fadeInUp 1s ease 1.2s forwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-shine);
    transition: 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--bg-dark);
    border: none;
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(201, 169, 98, 0.35);
}

.btn-primary:active {
    transform: translateY(-2px);
}

.btn-primary i {
    transition: var(--transition);
}

.btn-primary:hover i {
    transform: translateX(4px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-light);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-muted);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.hero-social {
    display: flex;
    gap: 16px;
    opacity: 0;
    animation: fadeInUp 1s ease 1.3s forwards;
}

.social-link {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--border-light);
    color: var(--text-secondary);
    font-size: 18px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: translateY(100%);
    transition: var(--transition);
}

.social-link i {
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.social-link:hover {
    border-color: var(--gold);
    transform: translateY(-4px) rotate(5deg);
}

.social-link:hover::before {
    transform: translateY(0);
}

.social-link:hover i {
    color: var(--bg-dark);
}

.scroll-indicator {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    opacity: 0;
    animation: fadeIn 1s ease 1.5s forwards;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    position: relative;
    overflow: hidden;
}

.scroll-line::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom, transparent, var(--gold-light));
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% { top: -100%; }
    100% { top: 200%; }
}

.scroll-indicator span {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 4px;
}

/* ========================================
   Section Headers
======================================== */
.section-header {
    text-align: center;
    margin-bottom: 100px;
    position: relative;
}

.section-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 6px;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.section-header.visible .section-number {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 32px;
    letter-spacing: 2px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.1s;
}

.section-header.visible .section-title {
    opacity: 1;
    transform: translateY(0);
}

.section-line {
    width: 80px;
    height: 1px;
    background: var(--gradient-gold);
    margin: 0 auto;
    position: relative;
    opacity: 0;
    transform: scaleX(0);
    transition: all 0.8s ease 0.2s;
}

.section-header.visible .section-line {
    opacity: 1;
    transform: scaleX(1);
}

.section-line::before,
.section-line::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 8px;
    height: 8px;
    background: var(--gold);
    transform: translateY(-50%) rotate(45deg);
}

.section-line::before {
    left: -4px;
}

.section-line::after {
    right: -4px;
}

/* ========================================
   About Section
======================================== */
.about {
    background: var(--bg-primary);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 20% 50%, rgba(201, 169, 98, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 100px;
    align-items: start;
}

.about-image {
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s ease;
}

.about-image.visible {
    opacity: 1;
    transform: translateX(0);
}

.about-img-wrapper {
    position: relative;
    overflow: hidden;
}

.about-img-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.about-img-wrapper img {
    width: 100%;
    filter: grayscale(20%) contrast(1.05);
    transition: var(--transition-slow);
    object-fit: cover;
    object-position: center 20%;
    transform: scale(1);
}

.about-img-wrapper:hover img {
    filter: grayscale(0%) contrast(1.1);
    transform: scale(1.05);
}

.about-frame {
    position: absolute;
    top: 24px;
    left: 24px;
    right: -24px;
    bottom: -24px;
    border: 1px solid var(--border-gold);
    opacity: 0.4;
    z-index: -1;
    transition: var(--transition);
}

.about-img-wrapper:hover + .about-frame,
.about-image:hover .about-frame {
    opacity: 0.7;
    top: 16px;
    left: 16px;
    right: -32px;
    bottom: -32px;
}

.experience-badge {
    position: absolute;
    bottom: -32px;
    right: -32px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-light);
    padding: 36px;
    text-align: center;
    backdrop-filter: blur(20px);
    transition: var(--transition);
}

.experience-badge:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
    transform: translate(-4px, -4px);
}

.exp-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 500;
    color: var(--gold);
    line-height: 1;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.exp-text {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 12px;
}

.about-text {
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s ease 0.2s;
}

.about-text.visible {
    opacity: 1;
    transform: translateX(0);
}

.about-headline {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 40px;
    line-height: 1.3;
    position: relative;
}

.about-headline::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--gradient-gold);
}

.about-description {
    color: var(--text-secondary);
    margin-bottom: 28px;
    font-size: 17px;
    line-height: 1.95;
}

.about-highlight {
    display: flex;
    gap: 24px;
    background: var(--gradient-card);
    padding: 36px;
    border-left: 2px solid var(--gold);
    margin-top: 40px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.about-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-shine);
    transform: translateX(-100%);
    transition: 0.6s;
}

.about-highlight:hover::before {
    transform: translateX(100%);
}

.about-highlight:hover {
    border-left-width: 4px;
    box-shadow: var(--shadow-glow);
}

.highlight-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: var(--gold-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 20px;
    transition: var(--transition);
}

.about-highlight:hover .highlight-icon {
    background: var(--gold);
    color: var(--bg-dark);
    transform: rotate(10deg) scale(1.1);
}

.about-highlight p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.85;
    margin: 0;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-top: 64px;
    padding-top: 64px;
    border-top: 1px solid var(--border-subtle);
}

.stat-item {
    text-align: center;
    position: relative;
    padding: 24px;
    transition: var(--transition);
}

.stat-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-card);
    border: 1px solid var(--border-subtle);
    opacity: 0;
    transition: var(--transition);
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-item:hover {
    transform: translateY(-8px);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 60px;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1;
    position: relative;
    z-index: 1;
}

.stat-plus {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 400;
    color: var(--gold);
    position: relative;
    z-index: 1;
}

.stat-label {
    display: block;
    margin-top: 16px;
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

/* ========================================
   Experience Section
======================================== */
.experience {
    background: var(--bg-secondary);
    position: relative;
}

.experience::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at 80% 50%, rgba(201, 169, 98, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

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

.timeline::before {
    content: '';
    position: absolute;
    left: 48px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, var(--gold), var(--border-subtle), var(--gold));
}

.timeline-item {
    position: relative;
    padding-left: 120px;
    padding-bottom: 72px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: 32px;
    top: 0;
    width: 32px;
    height: 32px;
    background: var(--bg-secondary);
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 12px;
    z-index: 1;
    transition: var(--transition);
}

.timeline-item:hover .timeline-marker {
    background: var(--gold);
    color: var(--bg-dark);
    transform: rotate(45deg) scale(1.1);
    box-shadow: var(--shadow-gold);
}

.timeline-item:hover .timeline-marker i {
    transform: rotate(-45deg);
}

.timeline-content {
    background: var(--gradient-card);
    padding: 44px;
    border: 1px solid var(--border-subtle);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--gradient-gold);
    transition: var(--transition-slow);
}

.timeline-content:hover {
    border-color: var(--border-gold);
    box-shadow: var(--shadow-glow);
    transform: translateX(8px);
}

.timeline-content:hover::before {
    height: 100%;
}

.timeline-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.timeline-date {
    font-size: 12px;
    font-weight: 500;
    color: var(--gold);
    background: var(--gold-muted);
    padding: 10px 18px;
    letter-spacing: 1px;
    transition: var(--transition);
}

.timeline-content:hover .timeline-date {
    background: var(--gold);
    color: var(--bg-dark);
}

.timeline-badge {
    font-size: 10px;
    font-weight: 500;
    padding: 8px 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-badge.current {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.timeline-badge.stage {
    background: var(--gold-muted);
    color: var(--gold);
    border: 1px solid var(--border-gold);
}

.timeline-badge.independent {
    background: rgba(99, 102, 241, 0.1);
    color: #818cf8;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.timeline-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 12px;
    transition: var(--transition);
}

.timeline-content:hover .timeline-title {
    color: var(--gold-light);
}

.timeline-company {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-muted);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.timeline-company i {
    color: var(--gold);
    font-size: 11px;
}

.timeline-location {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.5px;
}

.timeline-location i {
    color: var(--gold);
    font-size: 10px;
}

.timeline-description {
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 28px;
    font-size: 16px;
}

.timeline-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-muted);
    background: var(--bg-secondary);
    padding: 10px 18px;
    border: 1px solid var(--border-subtle);
    letter-spacing: 0.5px;
    transition: var(--transition);
    cursor: default;
}

.tag:hover {
    background: var(--gold);
    color: var(--bg-dark);
    border-color: var(--gold);
    transform: translateY(-2px);
}

/* ========================================
   Skills Section
======================================== */
.skills {
    background: var(--bg-primary);
    position: relative;
}

.skills::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: radial-gradient(ellipse at 50% 100%, rgba(201, 169, 98, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
}

.skill-category {
    background: var(--gradient-card);
    padding: 44px;
    border: 1px solid var(--border-subtle);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
}

.skill-category.visible {
    opacity: 1;
    transform: translateY(0);
}

.skill-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: var(--transition);
}

.skill-category:hover {
    border-color: var(--border-gold);
    box-shadow: var(--shadow-glow);
    transform: translateY(-8px);
}

.skill-category:hover::before {
    transform: scaleX(1);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.category-icon {
    width: 60px;
    height: 60px;
    background: var(--gold-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 22px;
    transition: var(--transition);
    position: relative;
}

.category-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    border: 1px solid var(--border-gold);
    opacity: 0;
    transition: var(--transition);
}

.skill-category:hover .category-icon {
    background: var(--gold);
    color: var(--bg-dark);
    transform: rotate(10deg) scale(1.1);
}

.skill-category:hover .category-icon::before {
    opacity: 1;
    inset: -8px;
}

.category-header h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 500;
    color: var(--text-primary);
}

.skills-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.skill-item {
    width: 100%;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
}

.skill-name {
    font-weight: 400;
    color: var(--text-secondary);
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.skill-item:hover .skill-name {
    color: var(--text-primary);
}

.skill-percent {
    font-weight: 600;
    color: var(--gold);
    font-size: 15px;
    font-family: var(--font-heading);
}

.skill-bar {
    height: 4px;
    background: var(--border-subtle);
    overflow: hidden;
    position: relative;
}

.skill-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
    animation: skillShine 3s infinite;
}

@keyframes skillShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.skill-progress {
    height: 100%;
    background: var(--gradient-gold);
    width: 0;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.skill-progress::after {
    content: '';
    position: absolute;
    right: 0;
    top: -3px;
    width: 10px;
    height: 10px;
    background: var(--gold-light);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition);
}

.skill-item:hover .skill-progress::after {
    opacity: 1;
}

/* ========================================
   Education Section
======================================== */
.education {
    background: var(--bg-secondary);
    position: relative;
}

.education::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: radial-gradient(ellipse at 0% 50%, rgba(201, 169, 98, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.education-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
}

.education-card {
    background: var(--gradient-card);
    padding: 44px;
    display: flex;
    gap: 28px;
    transition: var(--transition);
    border: 1px solid var(--border-subtle);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
}

.education-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.education-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: var(--transition);
}

.education-card:hover {
    border-color: var(--border-gold);
    box-shadow: var(--shadow-glow);
    transform: translateY(-8px);
}

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

.education-icon {
    width: 68px;
    height: 68px;
    min-width: 68px;
    background: var(--gold-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 24px;
    transition: var(--transition);
}

.education-card:hover .education-icon {
    background: var(--gold);
    color: var(--bg-dark);
    transform: rotate(-10deg) scale(1.1);
}

.education-date {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    color: var(--gold);
    background: var(--gold-muted);
    padding: 8px 16px;
    margin-bottom: 16px;
    letter-spacing: 1px;
    transition: var(--transition);
}

.education-card:hover .education-date {
    background: var(--gold);
    color: var(--bg-dark);
}

.education-badge {
    display: inline-block;
    font-size: 9px;
    font-weight: 500;
    padding: 6px 14px;
    margin-left: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.education-badge.current {
    background: rgba(99, 102, 241, 0.1);
    color: #818cf8;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.education-badge.success {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.education-degree {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.4;
    transition: var(--transition);
}

.education-card:hover .education-degree {
    color: var(--gold-light);
}

.education-school {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-muted);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.education-school i {
    color: var(--gold);
    font-size: 11px;
}

.education-description {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.85;
}

.education-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}

.skill-tag {
    font-size: 10px;
    font-weight: 500;
    color: var(--text-muted);
    background: var(--bg-secondary);
    padding: 8px 16px;
    border: 1px solid var(--border-subtle);
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.skill-tag:hover {
    background: var(--gold);
    color: var(--bg-dark);
    border-color: var(--gold);
}

/* ========================================
   Projects Section
======================================== */
.projects {
    background: var(--bg-primary);
    position: relative;
}

.projects::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.project-featured {
    max-width: 1000px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.project-featured.visible {
    opacity: 1;
    transform: translateY(0);
}

.project-card.featured {
    background: var(--gradient-card);
    overflow: hidden;
    display: grid;
    grid-template-columns: 400px 1fr;
    border: 1px solid var(--border-subtle);
    transition: var(--transition);
}

.project-card.featured:hover {
    border-color: var(--border-gold);
    box-shadow: var(--shadow-glow);
}

.project-image {
    background: linear-gradient(145deg, var(--bg-elevated) 0%, var(--bg-dark) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 44px;
    border-right: 1px solid var(--border-subtle);
    position: relative;
    overflow: hidden;
}

.project-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent 0deg, var(--gold-muted) 60deg, transparent 120deg);
    animation: projectRotate 20s linear infinite;
    opacity: 0;
    transition: var(--transition);
}

.project-card.featured:hover .project-image::before {
    opacity: 1;
}

@keyframes projectRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.project-icon-large {
    width: 120px;
    height: 120px;
    background: var(--gold-muted);
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 52px;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.project-card.featured:hover .project-icon-large {
    transform: scale(1.1) rotate(10deg);
    box-shadow: var(--shadow-gold);
}

.project-icon-large i {
    font-size: 44px;
    color: var(--gold);
    transition: var(--transition);
}

.project-card.featured:hover .project-icon-large i {
    transform: scale(1.1);
}

.project-stats-overlay {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.project-stat {
    text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    padding: 28px;
    transition: var(--transition);
}

.project-stat:hover {
    border-color: var(--gold);
    transform: translateX(8px);
}

.project-stat .stat-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 500;
    color: var(--gold);
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.project-stat .stat-desc {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 8px;
}

.project-content {
    padding: 60px;
}

.project-date {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    color: var(--gold);
    background: var(--gold-muted);
    padding: 10px 20px;
    margin-bottom: 28px;
    letter-spacing: 1px;
    transition: var(--transition);
}

.project-card.featured:hover .project-date {
    background: var(--gold);
    color: var(--bg-dark);
}

.project-title {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 12px;
    transition: var(--transition);
}

.project-card.featured:hover .project-title {
    color: var(--gold-light);
}

.project-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 32px;
    letter-spacing: 0.5px;
}

.project-quote {
    background: var(--bg-secondary);
    padding: 32px;
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 36px;
    border-left: 3px solid var(--gold);
    font-size: 15px;
    position: relative;
    transition: var(--transition);
}

.project-quote:hover {
    background: var(--gold-muted);
    transform: translateX(8px);
}

.project-quote i {
    color: var(--gold);
    margin-right: 14px;
    opacity: 0.5;
}

.project-description {
    color: var(--text-secondary);
    line-height: 1.9;
    font-size: 16px;
}

.project-description p {
    margin-bottom: 18px;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--border-subtle);
}

/* ========================================
   Contact Section
======================================== */
.contact {
    background: var(--bg-secondary);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(201, 169, 98, 0.05) 0%, transparent 40%),
        radial-gradient(ellipse at 70% 80%, rgba(201, 169, 98, 0.03) 0%, transparent 40%);
    pointer-events: none;
}

.contact-center {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease;
}

.contact-center.visible {
    opacity: 1;
    transform: translateY(0);
}

.contact-headline {
    margin-bottom: 60px;
}

.contact-headline h3 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 28px;
    position: relative;
    display: inline-block;
}

.contact-headline h3::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: var(--gradient-gold);
}

.contact-headline p {
    color: var(--text-secondary);
    line-height: 1.9;
    font-size: 18px;
    max-width: 650px;
    margin: 0 auto;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 32px;
    background: var(--gradient-card);
    border: 1px solid var(--border-subtle);
    transition: var(--transition);
    text-align: left;
}

.contact-card:hover {
    border-color: var(--gold);
    transform: translateY(-6px);
    box-shadow: var(--shadow-glow);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: var(--gold-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 22px;
    transition: var(--transition);
}

.contact-card:hover .contact-card-icon {
    background: var(--gold);
    color: var(--bg-dark);
    transform: rotate(10deg) scale(1.05);
}

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

.contact-card-label {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-card-value {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
    transition: var(--transition);
}

a.contact-card:hover .contact-card-value {
    color: var(--gold);
}

.contact-card-arrow {
    color: var(--text-muted);
    font-size: 14px;
    transition: var(--transition);
}

.contact-card:hover .contact-card-arrow {
    color: var(--gold);
    transform: translateX(4px);
}

.btn-large {
    padding: 22px 56px;
    font-size: 14px;
}

/* ========================================
   Footer
======================================== */
.footer {
    background: var(--bg-dark);
    color: var(--text-secondary);
    padding: 100px 0 40px;
    border-top: 1px solid var(--border-subtle);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gradient-gold);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 64px;
    padding-bottom: 64px;
    border-bottom: 1px solid var(--border-subtle);
}

.footer-logo-container {
    margin-bottom: 28px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: 3px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo-sub {
    display: block;
    font-size: 10px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-top: 12px;
}

.footer-brand p {
    color: var(--text-muted);
    max-width: 320px;
    line-height: 1.9;
    font-size: 13px;
}

.footer-links h4,
.footer-social h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 36px;
    color: var(--text-primary);
    position: relative;
}

.footer-links h4::after,
.footer-social h4::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 30px;
    height: 1px;
    background: var(--gold);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 13px;
    transition: var(--transition);
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
    transform: translateX(8px);
}

.footer-links a:hover::before {
    width: 100%;
}

.footer-social .social-links {
    display: flex;
    gap: 12px;
}

.footer-social .social-links a {
    width: 52px;
    height: 52px;
    background: transparent;
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 18px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.footer-social .social-links a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: translateY(100%);
    transition: var(--transition);
}

.footer-social .social-links a i {
    position: relative;
    z-index: 1;
}

.footer-social .social-links a:hover {
    border-color: var(--gold);
    transform: translateY(-4px) rotate(5deg);
}

.footer-social .social-links a:hover::before {
    transform: translateY(0);
}

.footer-social .social-links a:hover i {
    color: var(--bg-dark);
}

.footer-info {
    margin-top: 36px;
}

.footer-info p {
    color: var(--text-muted);
    font-size: 12px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.footer-info p:hover {
    color: var(--text-secondary);
}

.footer-info i {
    color: var(--gold);
    width: 14px;
    font-size: 11px;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    padding-top: 40px;
    color: var(--text-muted);
    font-size: 12px;
    letter-spacing: 1px;
}

/* ========================================
   Back to Top Button
======================================== */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 56px;
    height: 56px;
    background: var(--bg-elevated);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border: 1px solid var(--border-gold);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) rotate(45deg);
    transition: var(--transition);
    z-index: 999;
}

.back-to-top i {
    transition: var(--transition);
    transform: rotate(-45deg);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) rotate(45deg);
}

.back-to-top:hover {
    background: var(--gold);
    color: var(--bg-dark);
    box-shadow: var(--shadow-gold);
    transform: translateY(-4px) rotate(45deg);
}

.back-to-top:hover i {
    animation: arrowUp 0.6s infinite;
}

@keyframes arrowUp {
    0%, 100% { transform: rotate(-45deg) translateY(0); }
    50% { transform: rotate(-45deg) translateY(-4px); }
}

/* ========================================
   Responsive Design
======================================== */
@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 64px;
    }

    .hero-intro {
        justify-content: center;
    }

    .hero-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-description {
        text-align: center;
    }

    .hero-location {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-social {
        justify-content: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 64px;
    }

    .about-img-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }

    .contact-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 100px 0;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        padding: 48px 0;
        gap: 0;
        border-bottom: 1px solid var(--border-subtle);
        transform: translateY(-150%);
        transition: var(--transition);
        z-index: 999;
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .nav-menu .nav-link {
        padding: 20px 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    .hero-name {
        font-size: 48px;
    }

    .hero-centered .hero-name {
        font-size: 56px;
    }

    .hero-title {
        font-size: 16px;
    }

    .contact-headline h3 {
        font-size: 36px;
    }

    .contact-headline p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
    }

    .btn {
        justify-content: center;
    }

    .section-title {
        font-size: 40px;
    }

    .skills-grid,
    .education-grid {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        padding-left: 72px;
    }

    .timeline-marker {
        left: 5px;
        width: 30px;
        height: 30px;
        font-size: 11px;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-links h4::after,
    .footer-social h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links a:hover {
        transform: translateX(0);
    }

    .footer-social .social-links {
        justify-content: center;
    }

    .footer-info p {
        justify-content: center;
    }

    .project-card.featured {
        grid-template-columns: 1fr;
    }

    .project-image {
        padding: 48px;
        border-right: none;
        border-bottom: 1px solid var(--border-subtle);
    }

    .project-stats-overlay {
        flex-direction: row;
        gap: 16px;
    }

    .project-stat {
        flex: 1;
        padding: 20px;
    }

    .project-content {
        padding: 40px;
    }

    /* Hide custom cursor on mobile */
    .cursor,
    .cursor-dot {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-name {
        font-size: 36px;
    }

    .hero-centered .hero-name {
        font-size: 42px;
    }

    .contact-headline h3 {
        font-size: 28px;
    }

    .contact-card {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }

    .contact-card-icon {
        margin: 0 auto;
    }

    .education-card {
        flex-direction: column;
        text-align: center;
        padding: 32px;
    }

    .education-icon {
        margin: 0 auto;
    }

    .project-stats-overlay {
        flex-direction: column;
    }

    .project-content {
        padding: 32px;
    }

    .project-title {
        font-size: 28px;
    }

    .skill-category {
        padding: 32px;
    }

    .timeline-content {
        padding: 28px;
    }

    .section-title {
        font-size: 32px;
    }
}

/* ========================================
   Utility Classes
======================================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* Staggered Animation */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* Loading Animation */
.loading {
    position: fixed;
    inset: 0;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

.loading.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 2px solid var(--border-subtle);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Text Gradient */
.text-gradient {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glassmorphism */
.glass {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-subtle);
}
