:root {
    /* Brand Colors */
    --brand-blue: #0b5884;
    --brand-orange: #ff8c00;
    
    /* Light Theme Core Colors */
    --bg-color: #f4f6f9; /* Soft, premium light silver/gray */
    --surface-dark: #ffffff; /* Clean white for cards */
    --surface-light: #e9ecef;
    
    --text-primary: #1e293b; /* Sleek dark slate */
    --text-secondary: #64748b; /* Soft slate */
    --border-color: rgba(11, 88, 132, 0.12); /* Very faint blue-grey border */
    
    /* Typography */
    --font-main: 'Outfit', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-family: var(--font-main);
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background Gradients / Soft Shadows */
.glow {
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--brand-blue) 0%, transparent 60%);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.08; /* Much softer opacity for light mode */
    z-index: -1;
    pointer-events: none;
}

.glow-1 { top: -10%; left: -10%; }
.glow-2 { bottom: -10%; right: -10%; background: radial-gradient(circle, var(--brand-orange) 0%, transparent 60%); opacity: 0.05; }
.glow-3 { top: 40%; left: 50%; width: 400px; height: 400px; opacity: 0.05; }

.container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 2rem 0;
    z-index: 1000;
    background: transparent;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: 2px;
}

.logo span {
    color: var(--brand-orange);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-item {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 2px;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.nav-item:hover, .nav-item.active {
    color: var(--brand-blue);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--brand-blue);
    color: #ffffff;
    border: 1px solid var(--brand-blue);
    box-shadow: 0 10px 20px rgba(11, 88, 132, 0.15);
}

.btn-primary:hover {
    background-color: #084366;
    border-color: #084366;
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(11, 88, 132, 0.25);
}

.btn-secondary {
    background-color: var(--surface-dark);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: var(--surface-light);
    border-color: var(--brand-blue);
    color: var(--brand-blue);
    transform: translateY(-2px);
}

.btn-sm { padding: 0.8rem 2rem; font-size: 0.8rem; }

.btn-link {
    color: var(--brand-orange);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}
.btn-link:hover {
    gap: 1rem;
}

/* Base Sections */
section {
    padding: 100px 0;
}

.section-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(11, 88, 132, 0.15), transparent);
    margin: 0;
}

.pt-top {
    padding-top: 140px;
}

.section-header {
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 2px;
}

.section-header h2 span {
    font-weight: 700;
    color: var(--brand-blue);
}

.section-header .line {
    width: 60px;
    height: 3px;
    background: var(--brand-orange);
    margin-top: 1rem;
    border-radius: 2px;
}

.section-header-center {
    text-align: center;
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.section-header-center h2 {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 2px;
}
.section-header-center h2 span {
    font-weight: 700;
    color: var(--brand-blue);
}
.section-header-center p {
    color: var(--text-secondary);
    margin-top: 1rem;
    font-size: 1.1rem;
}
.line-center {
    width: 60px; height: 3px; background: var(--brand-orange); margin-top: 1.5rem; border-radius: 2px;
}

.section-title-small {
    font-size: 0.8rem;
    color: var(--brand-orange);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 700;
}

/* Home Section */
.home-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.home-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
}

.hero-text { flex: 1.5; }

.tagline {
    font-size: 1rem;
    color: var(--brand-orange);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(3.5rem, 6vw, 6rem);
    font-weight: 300;
    line-height: 1;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.hero-title span { font-weight: 700; color: var(--brand-blue); }

.hero-intro {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 3rem;
    border-left: 3px solid var(--brand-orange);
    padding-left: 1.5rem;
    font-style: italic;
    background: linear-gradient(to right, rgba(255, 140, 0, 0.05), transparent);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Hero Visual - Updated for Light Mode */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.abstract-window {
    width: 380px;
    height: 260px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.8);
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(11, 88, 132, 0.08);
    display: flex;
    flex-direction: column;
    animation: float 6s ease-in-out infinite;
    z-index: 2;
}

.window-header {
    height: 40px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
    gap: 8px;
}

.window-header span {
    width: 10px; height: 10px; border-radius: 50%;
    background: var(--text-secondary); opacity: 0.3;
}

.window-body {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.code-line {
    height: 8px;
    border-radius: 4px;
    background: rgba(11, 88, 132, 0.1);
}

.w-70 { width: 70%; }
.w-40 { width: 40%; background: linear-gradient(90deg, rgba(255, 140, 0, 0.2), transparent); }
.w-80 { width: 80%; }
.w-50 { width: 50%; }

.floating-badge {
    position: absolute;
    width: 60px; height: 60px;
    background: #fff;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    color: var(--brand-blue);
    box-shadow: 0 15px 30px rgba(11, 88, 132, 0.1);
    z-index: 3;
    border: 1px solid var(--border-color);
    animation: float-offset 4s ease-in-out infinite alternate;
}

.badge-1 { top: 5%; right: 5%; }
.badge-2 { bottom: 10%; left: 0%; color: var(--brand-orange); animation-delay: 1.5s; }

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@keyframes float-offset {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-10px) rotate(5deg); }
}

/* Previews on Home Page */
.preview-section {
    background: linear-gradient(to bottom, transparent, rgba(11, 88, 132, 0.02), transparent);
}

.container-glass {
    background: var(--surface-dark);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 4rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.03);
}

.preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.preview-content h2 {
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
}
.preview-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

/* Journey Milestones */
.journey-preview {
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    border-radius: 8px;
}

.timeline-mini {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
}

.timeline-mini::before {
    content: '';
    position: absolute;
    left: 6px; top: 10px; bottom: 10px;
    width: 2px;
    background: var(--border-color);
}

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

.timeline-dot {
    position: absolute;
    left: -1px; top: 5px;
    width: 16px; height: 16px;
    border-radius: 50%;
    background: var(--brand-blue);
    border: 3px solid #fff;
    box-shadow: 0 0 0 1px var(--border-color);
}

.timeline-item h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
}

.timeline-item p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
}

.timeline-item:last-child .timeline-dot {
    background: var(--brand-orange);
}

/* Core Focus Section Grid */
.core-focus-section {
    padding: 60px 0 20px 0;
}

.focus-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.focus-card {
    background: var(--surface-dark);
    border: 1px solid var(--border-color);
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.02);
    transition: all 0.4s ease;
}

.focus-card:hover {
    transform: translateY(-8px);
    border-color: var(--brand-blue);
    box-shadow: 0 15px 30px rgba(11, 88, 132, 0.08);
}

.focus-card .focus-icon {
    width: 70px;
    height: 70px;
    background: rgba(11, 88, 132, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--brand-blue);
    margin: 0 auto 1.5rem auto;
    transition: all 0.3s ease;
}

.focus-card:hover .focus-icon {
    background: var(--brand-blue);
    color: #fff;
}

.focus-card:nth-child(2) .focus-icon {
    color: var(--brand-orange);
    background: rgba(255, 140, 0, 0.08);
}
.focus-card:nth-child(2):hover .focus-icon {
    background: var(--brand-orange);
    color: #fff;
}

.focus-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.focus-card p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Core Skills Home Preview */
.core-skills-section {
    padding: 80px 0;
}

.skills-highlight-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 4rem;
}

.skill-card-preview {
    background: var(--surface-dark);
    border: 1px solid var(--border-color);
    padding: 2.5rem 3rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    transition: all 0.3s ease;
    min-width: 160px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.02);
}
.skill-card-preview:hover {
    border-color: var(--brand-blue);
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(11, 88, 132, 0.08);
}
.skill-card-preview i {
    font-size: 2.5rem;
    color: var(--text-primary);
    transition: color 0.3s;
}
.skill-card-preview:hover i {
    color: var(--brand-blue);
}
.skill-card-preview span {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.skills-cta-center {
    text-align: center;
}

/* Social / Connect Widget */
.connect-section {
    padding-bottom: 80px;
}

.connect-box {
    background: var(--surface-dark);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 5rem 4rem;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
}
.connect-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--brand-blue), var(--brand-orange));
}

.connect-box h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
}
.connect-box p {
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.connect-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.connect-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    background: var(--bg-color);
}
.connect-btn:hover {
    background: var(--brand-blue);
    border-color: var(--brand-blue);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(11, 88, 132, 0.15);
}
.connect-btn.btn-primary-solid {
    background: var(--brand-orange);
    border-color: var(--brand-orange);
    color: #fff;
}
.connect-btn.btn-primary-solid:hover {
    background: #e67e00;
    box-shadow: 0 10px 20px rgba(255, 140, 0, 0.2);
}

/* About Page Specific Layout */
.about-grid {
    display: flex;
    gap: 5rem;
    align-items: flex-start;
    margin-bottom: 5rem;
}

.about-grid-hero {
    margin-bottom: 2rem;
}

.about-main-title {
    font-size: clamp(2.3rem, 5vw, 3.6rem);
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    position: relative;
}

.about-main-title::after {
    content: '';
    width: 90px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--brand-blue), var(--brand-orange));
    display: block;
    margin-top: 0.9rem;
}

.about-hero {
    padding-bottom: 50px;
}

.about-hero-kicker {
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--brand-orange);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.about-hero-title {
    font-size: clamp(2.1rem, 4.3vw, 3.3rem);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    max-width: 700px;
}

.about-hero-title span {
    color: var(--brand-blue);
    font-weight: 700;
}

.about-copy {
    font-size: 1.08rem;
    line-height: 1.85;
    color: var(--text-secondary);
    max-width: 880px;
}

.about-accent-row {
    margin-top: 1.8rem;
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.about-accent-chip {
    background: linear-gradient(120deg, rgba(11, 88, 132, 0.1), rgba(255, 140, 0, 0.08));
    border: 1px solid var(--border-color);
    padding: 0.55rem 1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.6px;
}

.about-story-section {
    padding: 70px 0;
}

.about-stripe {
    background: linear-gradient(to right, transparent, rgba(11, 88, 132, 0.03), transparent);
}

.about-simple-block {
    max-width: 900px;
    border-left: 3px solid var(--brand-blue);
    padding-left: 1.4rem;
}

.about-simple-orange {
    border-left-color: var(--brand-orange);
}

.about-panel {
    background: var(--surface-dark);
    border: 1px solid var(--border-color);
    border-left: 5px solid var(--brand-blue);
    border-radius: 14px;
    padding: 2.6rem 2.4rem;
    box-shadow: 0 14px 36px rgba(11, 88, 132, 0.06);
}

.about-panel-title {
    font-size: clamp(1.7rem, 3vw, 2.35rem);
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.about-panel-title span {
    font-weight: 700;
    color: var(--brand-blue);
}

.about-panel .line {
    width: 72px;
    height: 3px;
    background: var(--brand-orange);
    margin: 0 0 1.4rem 0;
    border-radius: 2px;
}

.about-duo-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
}

.about-section-header-left {
    margin-bottom: 2rem;
}

.about-section-header-left h2 {
    font-size: clamp(1.9rem, 4vw, 2.9rem);
}

.about-section-header-left p {
    margin-top: 0.8rem;
    color: var(--text-secondary);
    max-width: 760px;
}

.about-soft-left {
    justify-content: flex-start;
    max-width: 100%;
    margin: 0;
}

.about-connect-box {
    background: var(--surface-dark);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(11, 88, 132, 0.05);
    padding: 2.2rem 2rem;
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.about-connect-box::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-blue), var(--brand-orange));
}

.about-connect-text h2 {
    font-size: clamp(1.9rem, 4vw, 2.6rem);
    margin-bottom: 0.8rem;
    font-weight: 300;
}

.about-connect-text h2 span {
    color: var(--brand-blue);
    font-weight: 700;
}

.about-connect-text p {
    color: var(--text-secondary);
    max-width: 560px;
}

/* CV Page */
.cv-section {
    padding: 110px 0 90px;
}

.cv-header {
    margin-bottom: 2rem;
}

.cv-header h1 {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 300;
    margin-bottom: 0.8rem;
}

.cv-header h1 span {
    color: var(--brand-blue);
    font-weight: 700;
}

.cv-header p {
    color: var(--text-secondary);
    margin-bottom: 1.3rem;
}

.cv-preview-wrap {
    background: var(--surface-dark);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(11, 88, 132, 0.05);
    overflow: hidden;
}

.cv-preview {
    width: 100%;
    height: min(1200px, 75vh);
    border: 0;
    background: #fff;
}

.about-image-wrapper {
    flex: 0.8;
}

.profile-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: var(--surface-dark);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 6rem;
    color: rgba(11, 88, 132, 0.1);
    position: relative;
    overflow: hidden;
    box-shadow: 20px 20px 0 var(--border-color);
}

.profile-image {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 20px 20px 0 var(--border-color);
    border: 1px solid var(--border-color);
    display: block;
}

.profile-placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.8), transparent);
    transform: skewX(-20deg);
    animation: shine 6s infinite;
}

.about-text {
    flex: 1.2;
}

.about-text h3 {
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.about-text strong {
    color: var(--brand-blue);
    font-weight: 600;
}

.about-actions {
    margin-top: 3rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.about-actions-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cv-hero-btn {
    width: 100%;
    justify-content: center;
    padding: 1.2rem;
    font-size: 1rem;
}

.social-btn-row {
    display: flex;
    gap: 1rem;
}

.social-btn-row .btn-secondary {
    flex: 1;
    justify-content: center;
}

/* Skills Panel */
.skills-container {
    background: var(--surface-dark);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 4rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.02);
}

.skills-title {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-secondary);
    text-align: center;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.5rem;
}

.arsenal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.arsenal-category {
    background: var(--surface-dark);
    border: 1px solid var(--border-color);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(11, 88, 132, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.arsenal-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(11, 88, 132, 0.08);
}

.arsenal-category h4 {
    color: var(--brand-blue);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
}

.arsenal-category h4 i {
    color: var(--brand-orange);
}

.arsenal-category ul {
    list-style: none;
    padding: 0;
}

.arsenal-category ul li {
    padding: 0.8rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(0,0,0,0.02);
    display: flex;
    align-items: center;
    gap: 10px;
}

.arsenal-category ul li::before {
    content: "â€¢";
    color: var(--brand-orange);
    font-weight: bold;
}

.arsenal-category ul li:last-child {
    border-bottom: none;
}

@media (max-width: 992px) {
    .arsenal-grid {
        grid-template-columns: 1fr;
    }
}

.skill-card {
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    padding: 2rem 1.5rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.01);
}

.skill-card i {
    font-size: 2.8rem;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.skill-card span {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.skill-card:hover {
    border-color: var(--brand-blue);
    transform: translateY(-5px);
    background: #ffffff;
    box-shadow: 0 15px 30px rgba(11, 88, 132, 0.08);
}

.skill-card:hover i {
    color: var(--brand-blue);
}

.soft-skills-cluster {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.soft-skill-badge {
    background: var(--surface-dark);
    border: 1px solid var(--border-color);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.soft-skill-badge i {
    color: var(--brand-orange);
    font-size: 1.2rem;
}

.soft-skill-badge:hover {
    transform: translateY(-3px);
    border-color: var(--brand-blue);
    box-shadow: 0 10px 20px rgba(11, 88, 132, 0.08);
}

/* Responsive */
@media (max-width: 992px) {
    .home-content, .about-grid, .preview-grid, .focus-grid-3 {
        flex-direction: column;
    }
    .about-duo-grid,
    .about-connect-box {
        grid-template-columns: 1fr;
    }
    .focus-grid-3 {
        display: flex;
    }
    .hero-visual {
        margin-top: 4rem;
    }
    .glass-orb {
        width: 300px;
        height: 300px;
    }
    .preview-content, .journey-preview {
        width: 100%;
    }
    .container-glass {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
        .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        padding: 2rem;
        gap: 1.5rem;
        text-align: center;
        border-bottom: 1px solid rgba(0,0,0,0.05);
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }
    
    .nav-links.active {
        display: flex;
    }

    .hero h1 {
        font-size: 3rem;
    }

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

    .projects-grid, .about-content, .contact-container, .skills-container {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    .menu-toggle {
        display: block;
    }
    .container {
        width: 90%;
    }
    .skill-card-preview {
        padding: 1.5rem;
        min-width: 120px;
    }
    .connect-box {
        padding: 2rem;
    }
    .about-panel {
        padding: 2rem 1.4rem;
    }
    .about-simple-block {
        padding-left: 1rem;
    }
    .about-copy {
        font-size: 1rem;
    }
    .cv-preview {
        height: 70vh;
    }
}

/* Premium Footer */
.premium-footer {
    background: var(--surface-dark);
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 1rem 0;
    color: var(--text-secondary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 2.5rem;
}

.footer-brand h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}
.footer-brand h2 span { color: var(--brand-orange); }
.footer-brand p {
    font-size: 0.95rem;
    max-width: 350px;
    line-height: 1.8;
}

.footer-nav h4, .footer-social h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.footer-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-nav ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}
.footer-nav ul li a:hover {
    color: var(--brand-blue);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--brand-blue);
    color: #fff;
    border-color: var(--brand-blue);
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
    font-size: 0.85rem;
}

.footer-bottom p {
    margin: 0;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .footer-brand p {
        margin: 0 auto;
    }
    .social-icons {
        justify-content: center;
    }
}
