/* Root Variables - Shiny Metallic Gold Theme */
:root {
    --navy-dark: #0a0e1a;
    --navy-primary: #151b2e;
    --navy-medium: #1f2937;
    --navy-light: #2d3748;

    /* Metallic Gold Colors */
    --gold-metallic: #FFD700;
    --gold-light: #FFED4E;
    --gold-dark: #DAA520;
    --gold-deep: #B8860B;

    --white: #ffffff;
    --gray-light: #f5f5f5;
    --gray-medium: #e0e0e0;
    --accent-cyan: #00d9ff;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--white);
    background: var(--navy-dark);
    overflow-x: hidden;
}

/* Navigation - Glassmorphism Effect */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 14, 26, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1.2rem 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    color: var(--gold-metallic);
    font-size: 2rem;
    font-weight: 900;
    text-decoration: none;
    letter-spacing: 3px;
    position: relative;
    text-shadow:
        0 0 10px rgba(255, 215, 0, 0.8),
        0 0 20px rgba(255, 215, 0, 0.5),
        0 0 30px rgba(255, 215, 0, 0.3);
    transition: all 0.6s ease;
}

.nav-logo:hover {
    transform: scale(1.1);
    text-shadow:
        0 0 20px rgba(255, 215, 0, 1),
        0 0 40px rgba(255, 215, 0, 0.7),
        0 0 60px rgba(255, 215, 0, 0.5);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    transition: all 0.6s ease;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg,
        transparent,
        var(--gold-metallic),
        var(--gold-light),
        var(--gold-metallic),
        transparent
    );
    box-shadow: 0 0 10px var(--gold-metallic);
    transition: transform 0.7s ease;
}

.nav-link:hover {
    color: var(--gold-metallic);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.nav-link:hover::before {
    transform: translateX(-50%) scaleX(1);
}

/* Hero Section - Futuristic */
.hero {
    height: 100vh;
    background: linear-gradient(135deg,
        var(--navy-dark) 0%,
        #0f1419 25%,
        #1a1f35 50%,
        var(--navy-medium) 75%,
        var(--navy-dark) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--gold-metallic), transparent);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--accent-cyan), transparent);
    bottom: 20%;
    right: 15%;
    animation-delay: -7s;
}

.shape-3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--gold-dark), transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-50px, 50px) scale(0.9);
    }
}

/* Grid Overlay Animation */
.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255, 215, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 215, 0, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    opacity: 0.5;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

/* Particle Animation */
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold-metallic);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--gold-metallic);
    animation: particleFloat 25s ease-in-out infinite;
}

.particle-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle-2 {
    top: 60%;
    left: 80%;
    animation-delay: -5s;
}

.particle-3 {
    top: 80%;
    left: 20%;
    animation-delay: -10s;
}

.particle-4 {
    top: 30%;
    left: 70%;
    animation-delay: -15s;
}

.particle-5 {
    top: 50%;
    left: 50%;
    animation-delay: -20s;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    25% {
        transform: translate(100px, -100px);
    }
    50% {
        transform: translate(200px, 50px);
    }
    75% {
        transform: translate(-50px, -150px);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1.2s ease;
}

/* Headshot Styling */
.headshot-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
    animation: fadeInScale 1.5s ease;
}

.headshot-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: 4px solid var(--gold-metallic);
    box-shadow:
        0 0 30px rgba(255, 215, 0, 0.5),
        0 0 60px rgba(255, 215, 0, 0.3),
        0 10px 40px rgba(0, 0, 0, 0.5);
    transition: all 0.8s ease;
}

.headshot-image:hover {
    transform: scale(1.1);
    box-shadow:
        0 0 40px rgba(255, 215, 0, 0.8),
        0 0 80px rgba(255, 215, 0, 0.5),
        0 15px 50px rgba(0, 0, 0, 0.6);
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.glitch-wrapper {
    position: relative;
    display: inline-block;
}

.hero-title {
    top: 20px;
    font-size: 5.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 900;
    letter-spacing: 8px;
    text-transform: uppercase;
    position: relative;
    background: linear-gradient(135deg,
        var(--gold-light) 0%,
        var(--gold-metallic) 25%,
        var(--white) 50%,
        var(--gold-metallic) 75%,
        var(--gold-light) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
    text-shadow: none;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.5));
}

@keyframes shimmer {
    to {
        background-position: 200% center;
    }
}

.hero-subtitle {
    font-size: 1.8rem;
    color: var(--gold-metallic);
    margin-bottom: 0.5rem;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.hero-location {
    font-size: 1.3rem;
    color: var(--accent-cyan);
    margin-bottom: 2rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-shadow: 0 0 15px rgba(0, 217, 255, 0.5);
}

.hero-divider {
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg,
        transparent,
        var(--gold-metallic),
        transparent
    );
    margin: 2rem auto;
    box-shadow: 0 0 10px var(--gold-metallic);
}

.hero-description {
    font-size: 1.2rem;
    color: var(--gray-light);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg,
        var(--gold-dark),
        var(--gold-metallic),
        var(--gold-light),
        var(--gold-metallic),
        var(--gold-dark)
    );
    background-size: 200% auto;
    color: var(--navy-dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.7s ease;
    box-shadow:
        0 0 20px rgba(255, 215, 0, 0.5),
        0 10px 30px rgba(0, 0, 0, 0.4);
    border: 2px solid var(--gold-light);
}

.button-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.6),
        transparent
    );
    transition: left 1s ease;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow:
        0 0 40px rgba(255, 215, 0, 0.8),
        0 15px 40px rgba(0, 0, 0, 0.5);
    animation: shimmer 1.5s linear infinite;
}

.cta-button:hover .button-shine {
    left: 100%;
}

.button-text {
    position: relative;
    z-index: 1;
}

/* Section Styles */
.section {
    padding: 5rem 2rem;
    position: relative;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 215, 0, 0.3),
        transparent
    );
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 3.5rem;
    position: relative;
    text-align: center;
}

.title-text {
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.title-text::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg,
        transparent,
        var(--gold-metallic),
        transparent
    );
    box-shadow: 0 0 10px var(--gold-metallic);
}

/* About Section */
.about {
    background: linear-gradient(180deg,
        var(--navy-dark),
        var(--navy-primary),
        var(--navy-dark)
    );
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

.text-block {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 2rem;
}

.block-decorator {
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg,
        var(--gold-metallic),
        var(--gold-dark)
    );
    box-shadow: 0 0 10px var(--gold-metallic);
}

.about-text p {
    font-size: 1.15rem;
    line-height: 2;
    color: var(--gray-light);
    font-weight: 300;
}

.about-stats {
    display: flex;
    justify-content: center;
}

.stat-item-combined {
    text-align: center;
    padding: 2.5rem 3rem;
    background: linear-gradient(135deg,
        rgba(255, 215, 0, 0.05),
        rgba(255, 215, 0, 0.1)
    );
    border-radius: 20px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 0 20px rgba(255, 215, 0, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.7s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.stat-item-combined::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 215, 0, 0.1),
        transparent
    );
    transition: left 1s ease;
}

.stat-item-combined:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--gold-metallic);
    box-shadow:
        0 12px 40px rgba(255, 215, 0, 0.3),
        inset 0 0 30px rgba(255, 215, 0, 0.1);
}

.stat-item-combined:hover::before {
    left: 100%;
}

.stat-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
}

.stat-divider {
    width: 2px;
    height: 100px;
    background: linear-gradient(180deg,
        transparent,
        var(--gold-metallic),
        transparent
    );
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    color: var(--gold-metallic);
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
    transition: all 0.8s ease;
}

.stat-item-combined:hover .stat-icon {
    transform: scale(1.15);
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8));
}

.stat-number {
    font-size: 1.8rem;
    color: var(--gold-metallic);
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.stat-label {
    color: var(--white);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* Experience Section */
.experience {
    background: linear-gradient(135deg,
        var(--navy-primary),
        var(--navy-dark),
        var(--navy-medium)
    );
    color: var(--white);
    position: relative;
}

.experience::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 217, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

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

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg,
        transparent,
        var(--gold-metallic),
        var(--gold-metallic),
        transparent
    );
    box-shadow: 0 0 20px var(--gold-metallic);
}

.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
    padding-left: 3rem;
}

.timeline-marker {
    position: absolute;
    left: -3rem;
    top: 0;
    width: 24px;
    height: 24px;
    background: var(--navy-dark);
    border-radius: 50%;
    border: 3px solid var(--gold-metallic);
    box-shadow:
        0 0 0 8px rgba(255, 215, 0, 0.2),
        0 0 20px var(--gold-metallic);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.marker-inner {
    width: 8px;
    height: 8px;
    background: var(--gold-metallic);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--gold-metallic);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
}

.timeline-content {
    background: linear-gradient(135deg,
        rgba(255, 215, 0, 0.05),
        rgba(255, 215, 0, 0.02)
    );
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-left: 4px solid var(--gold-metallic);
    transition: all 0.7s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
        var(--gold-metallic),
        transparent
    );
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1s ease;
}

.timeline-content:hover {
    transform: translateX(15px);
    border-color: var(--gold-metallic);
    box-shadow:
        -5px 0 30px rgba(255, 215, 0, 0.3),
        0 10px 40px rgba(0, 0, 0, 0.3);
}

.timeline-content:hover::before {
    transform: scaleX(1);
}

.timeline-year {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--gold-metallic);
    border-radius: 20px;
    color: var(--gold-light);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-title {
    color: var(--gold-metallic);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.timeline-company {
    color: var(--accent-cyan);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 500;
    text-shadow: 0 0 8px rgba(0, 217, 255, 0.3);
}

.timeline-description {
    color: var(--gray-light);
    line-height: 1.8;
    font-size: 1.05rem;
    font-weight: 300;
}

/* Skills Section */
.skills {
    background: linear-gradient(180deg,
        var(--navy-dark),
        #0d1117,
        var(--navy-dark)
    );
    position: relative;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.skill-card {
    background: linear-gradient(135deg,
        rgba(21, 27, 46, 0.8),
        rgba(31, 41, 55, 0.6)
    );
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.4),
        inset 0 0 20px rgba(255, 215, 0, 0.03);
    backdrop-filter: blur(10px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.skill-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
        transparent,
        var(--gold-metallic),
        transparent
    );
    transform: scaleX(0);
    transition: transform 1s ease;
}

.skill-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--gold-metallic);
    box-shadow:
        0 20px 60px rgba(255, 215, 0, 0.3),
        0 0 40px rgba(255, 215, 0, 0.2),
        inset 0 0 30px rgba(255, 215, 0, 0.05);
}

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

.skill-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    color: var(--gold-metallic);
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.4));
    transition: all 0.8s ease;
}

.skill-card:hover .skill-icon {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 0 25px rgba(255, 215, 0, 0.8));
}

.skill-title {
    color: var(--gold-metallic);
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.skill-description {
    color: var(--gray-light);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.skill-bar {
    height: 4px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.skill-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg,
        var(--gold-dark),
        var(--gold-metallic),
        var(--gold-light)
    );
    box-shadow: 0 0 10px var(--gold-metallic);
    transition: width 2s ease 0.5s;
}

.skill-card:hover .skill-bar::after {
    width: 100%;
}

/* Projects Section */
.projects {
    background: linear-gradient(135deg,
        var(--navy-primary),
        var(--navy-dark),
        var(--navy-medium)
    );
    position: relative;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
}

.project-card {
    background: linear-gradient(135deg,
        rgba(10, 14, 26, 0.9),
        rgba(21, 27, 46, 0.7)
    );
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 215, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.project-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle,
        rgba(255, 215, 0, 0.1) 0%,
        transparent 70%
    );
    transform: scale(0);
    transition: transform 1.2s ease;
}

.project-card:hover::before {
    transform: scale(1);
}

.project-card:hover {
    transform: translateY(-20px) scale(1.02);
    border-color: var(--gold-metallic);
    box-shadow:
        0 20px 60px rgba(255, 215, 0, 0.4),
        0 0 50px rgba(255, 215, 0, 0.2);
}

.project-title {
    color: var(--gold-metallic);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.project-description {
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
    font-weight: 300;
}

.project-tags {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.tag {
    background: rgba(255, 215, 0, 0.1);
    color: var(--gold-light);
    padding: 0.6rem 1.3rem;
    border-radius: 25px;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.6s ease;
}

.tag:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: var(--gold-metallic);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* Contact Section */
.contact {
    background: linear-gradient(180deg,
        var(--navy-dark),
        var(--navy-primary)
    );
    position: relative;
}

.contact-content-centered {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-info-centered {
    background: linear-gradient(135deg,
        rgba(255, 215, 0, 0.05),
        rgba(255, 215, 0, 0.02)
    );
    padding: 3rem 4rem;
    border-radius: 20px;
    color: var(--white);
    border: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.4),
        inset 0 0 30px rgba(255, 215, 0, 0.05);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    max-width: 900px;
    text-align: center;
}

.contact-overlay {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle,
        rgba(255, 215, 0, 0.1) 0%,
        transparent 70%
    );
    animation: rotate 20s linear infinite;
}

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

.contact-heading {
    color: var(--gold-metallic);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.contact-text {
    color: var(--gray-light);
    margin-bottom: 3rem;
    line-height: 1.8;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
    font-weight: 300;
}

.contact-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

.contact-icon {
    width: 50px;
    height: 50px;
    color: var(--gold-metallic);
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
    transition: all 0.8s ease;
    margin-bottom: 0.5rem;
}

.contact-item:hover .contact-icon {
    transform: scale(1.2);
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8));
}

.contact-label {
    color: var(--gold-metallic);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
}

.contact-value {
    color: var(--white);
    text-decoration: none;
    font-size: 1.05rem;
    transition: all 0.6s ease;
    font-weight: 400;
    display: inline-block;
}

.contact-value:hover {
    color: var(--gold-light);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background: var(--navy-dark);
    color: var(--white);
    padding: 2rem 2rem;
    position: relative;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-line {
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg,
        transparent,
        var(--gold-metallic),
        transparent
    );
    margin: 1rem auto 0;
    box-shadow: 0 0 10px var(--gold-metallic);
}

.footer-text {
    font-size: 1rem;
    color: var(--gray-light);
    font-weight: 300;
    letter-spacing: 1px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }

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

    .stat-item-combined {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem;
    }

    .stat-divider {
        width: 100px;
        height: 2px;
        background: linear-gradient(90deg,
            transparent,
            var(--gold-metallic),
            transparent
        );
    }

    .contact-details-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-info-centered {
        padding: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 1.5rem;
    }

    .nav-menu {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-link {
        font-size: 0.85rem;
    }

    .hero {
        padding: 0 1rem;
        min-height: 100vh;
    }

    .headshot-image {
        width: 180px;
        height: 180px;
    }

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-location {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .section {
        padding: 3.5rem 1.5rem;
    }

    .stat-item-combined {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }

    .stat-divider {
        width: 80px;
        height: 2px;
    }

    .section-title {
        font-size: 2.5rem;
    }

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

    .timeline {
        padding-left: 3rem;
    }

    .contact-details-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info-centered {
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
        flex-direction: column;
        gap: 1rem;
    }

    .nav-logo {
        font-size: 1.5rem;
    }

    .nav-menu {
        gap: 1rem;
    }

    .nav-link {
        font-size: 0.75rem;
    }

    .hero {
        padding: 0 0.5rem;
    }

    .headshot-image {
        width: 150px;
        height: 150px;
    }

    .hero-title {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        letter-spacing: 2px;
    }

    .hero-location {
        font-size: 0.95rem;
        letter-spacing: 1px;
    }

    .hero-description {
        font-size: 1rem;
        padding: 0 0.5rem;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .section {
        padding: 3rem 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    .stat-item-combined {
        padding: 1.5rem 1rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .timeline {
        padding-left: 2rem;
    }

    .timeline-item {
        padding-left: 2rem;
    }

    .timeline-marker {
        left: -2.3rem;
    }

    .skill-card {
        padding: 2rem 1.5rem;
    }

    .project-card {
        padding: 2rem 1.5rem;
    }

    .contact-info-centered {
        padding: 2rem 1.5rem;
    }

    .contact-heading {
        font-size: 2rem;
    }
}