/* ===== BASE STYLES ===== */
/* @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Newsreader:ital,opsz,wght@0,6..72,400;1,6..72,300;1,6..72,400&display=swap'); */
 
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Neon Void (single theme defaults) */
    --bg-primary: #3a5d57;
    --bg-secondary: #0F1218;
    --bg-card: rgba(23, 31, 30, 0.607);
    --text-primary: #F6FAFF;
    --text-secondary: #F6FAFF;
    --text-tertiary: rgba(246, 250, 255, 0.72);

    /* Accent and neon tones */
    --accent: #14e7ee;
    --accent-alt: #BF5FFF;
    --accent-light: #6FFBFF;

    --nav-bg: rgba(8, 8, 14, 0.95);
    --border-light: rgba(246, 250, 255, 0.04);
    --border-lighter: rgba(246, 250, 255, 0.02);
    --border-hover: rgba(246, 250, 255, 0.08);

    /* Theme selector defaults */
    --theme-select-bg: rgba(16, 16, 28, 0.72);
    --theme-select-color: var(--text-primary);
    --theme-select-border: var(--border-lighter);
    --theme-select-hover-bg: rgba(100, 255, 218, 0.04);

    /* Logo visibility */
    --logo-border: rgba(246, 250, 255, 0.06);
    --logo-bg: rgba(255, 255, 255, 0.02);
    --logo-color: var(--text-primary);
    --logo-shadow: 0 6px 18px rgba(0,0,0,0.63);
    --logo-hover-shadow: 0 10px 40px -8px rgba(20,231,238,0.36);

    /* Neon-specific utilities */
    --glow: rgba(0, 245, 255, 0.32);
    --btn-hover-bg: rgba(0,0,0,0.6);

    /* Button defaults */
    --btn-bg: rgba(0,245,255,0.08);
    --btn-color: var(--text-primary);
    --btn-secondary-bg: transparent;
    --btn-secondary-color: var(--text-primary);
}

/* Grey — Light theme removed */

/* (grey-dark removed) */

/* Neon variables moved to :root (Neon is default) */

/* Neon card tweaks to avoid overly dark cards */
.project-card,
.skill-category {
    background: var(--bg-card);
    border-color: rgba(0,245,255,0.06);
    box-shadow: 0 8px 30px -18px rgba(0,245,255,0.06);
}

/* Neon-only: make primary button hover use a black glow instead of cyan */
/* Neon: only apply a special hover to the Live Demo (modal) primary button */
.modal-live-link:hover,
.modal-live-link:focus-visible {
    background: rgba(39, 40, 39, 0.69); /* light mint glow */
    transform: translateY(-2px);
    box-shadow: 0 10px 40px -12px rgba(100, 255, 219, 0.452);
    color: var(--btn-color);
}

/* Neon-only: hero primary button (View My Work) should use a dark hover, not cyan */
.hero .btn-primary:hover,
.hero .btn-primary:focus-visible,
.contact-form .btn-primary:hover,
.contact-form .btn-primary:focus-visible {
    background: rgba(0,0,0,0.6);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px -12px rgba(4, 4, 4, 0.838);
    color: var(--btn-color);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
    line-height: 1.625;
    font-weight: 300;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Smooth fade-in animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in-delay-1 {
    animation-delay: 0.1s;
    opacity: 0;
}

.fade-in-delay-2 {
    animation-delay: 0.2s;
    opacity: 0;
}

.fade-in-delay-3 {
    animation-delay: 0.3s;
    opacity: 0;
}

.fade-in-delay-4 {
    animation-delay: 0.4s;
    opacity: 0;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 64px;
    min-height: 64px;
    background: var(--nav-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border-lighter);
    z-index: 100;
    transition: transform 0.3s ease;
}

#site-nav {
    min-height: 64px;
    display: block;
}

.theme-switcher {
    display: inline-flex;
    align-items: center;
}

.theme-select {
    background: var(--theme-select-bg);
    color: var(--theme-select-color);
    border: 1px solid var(--theme-select-border);
    padding: 8px 10px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    transition: background 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
}

.theme-select:hover {
    background: var(--theme-select-hover-bg);
}

.theme-select:focus {
    box-shadow: 0 6px 20px -10px var(--accent);
    border-color: var(--accent);
}

/* Ensure native dropdown options are readable and follow theme vars where supported */
.theme-select,
.theme-select option {
    background: var(--theme-select-bg) !important;
    color: var(--theme-select-color) !important;
}

/* Option hover / active states (may be supported in some browsers) */
.theme-select option:hover,
.theme-select option:active {
    background: var(--theme-select-hover-bg) !important;
    color: var(--theme-select-color) !important;
}

/* WebKit override for text color in certain browsers */
.theme-select {
    -webkit-text-fill-color: var(--theme-select-color);
}

.sr-only { /* accessible label helper */
    position: absolute !important;
    width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

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

.logo {
    font-family: 'Newsreader', serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--logo-color);
    background: var(--logo-bg);
    text-decoration: none;
    transition: opacity 0.2s ease, transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    padding: 0;
    margin: 0;
    line-height: 1;
    flex: 0 0 auto;
    border: 1.5px solid var(--logo-border);
    box-shadow: var(--logo-shadow);
    backdrop-filter: blur(4px);
}

.logo:hover {
    opacity: 0.99;
    transform: scale(1.03);
    border-color: var(--accent);
    box-shadow: var(--logo-hover-shadow);
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    margin-left: auto; /* push navigation links to the right */
}

.nav-links a {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-secondary);
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

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

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

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

/* Mobile menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    margin: 5px 0;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--bg-secondary);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--border-lighter);
    }

    .nav-links.open {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }
}

/* ===== MAIN CONTENT ===== */
main {
    /* padding-top: 64px; */
    min-height: 100vh;
}

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

/* ===== HERO SECTION ===== */
.hero {
    min-height: calc(100vh - 64px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 80px 24px;
    position: relative;
    /* clip-path instead of overflow:hidden — clips the ::before glow blob
       without creating a new GPU compositing layer, which was causing
       backdrop-filter on the fixed .navbar to fail on the Home page,
       making the navbar appear transparent in Chromium-based browsers. */
    clip-path: inset(0);
}

.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(100, 255, 218, 0.035);
    filter: blur(100px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-lighter);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

/* (removed grey-light-only hero-badge override) */

.hero-badge .dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.hero-title {
    font-family: 'Newsreader', serif;
    font-size: clamp(48px, 10vw, 120px);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.hero-title .italic {
    font-style: italic;
    font-weight: 300;
}

.hero-subtitle {
    font-size: clamp(18px, 3vw, 24px);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--accent);
    color: var(--bg-primary);
}

.btn-primary {
    background: var(--btn-bg);
    color: var(--btn-color);
}
.btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 40px -12px rgba(0,0,0,0.25);
}
.btn-secondary {
    background: var(--btn-secondary-bg, transparent);
    color: var(--btn-secondary-color, var(--text-primary));
    border: 1px solid var(--border-light);
}
.btn-secondary:hover {
    border-color: var(--border-hover);
    background: var(--bg-card);
}

/* (removed grey-light button overrides) */

/* ===== PAGE HEADERS ===== */
.page-header {
    padding: 80px 24px 48px;
    text-align: center;
    position: relative;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-light), transparent);
}

/* Theme-driven cards (skill categories, projects, modal cards) */
.skill-category,
.project-card,
.project-content,
.modal,
.card {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    box-shadow: 0 8px 30px -18px rgba(0,0,0,0.35);
    transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

/* Inner content spacing */
.skill-category,
.project-card {
    padding: 16px;
}

/* Tag / pill styles (use theme text / border) */
.project-tag,
.skill-tag {
    display: inline-block;
    font-size: 13px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.03);
    color: var(--text-secondary);
    border: 1px solid var(--border-lighter);
}

/* Card hover (slight lift & surface change) */
.project-card:hover,
.skill-category:hover {
    transform: translateY(-4px);
    background: var(--bg-secondary);
    box-shadow: 0 18px 60px -30px rgba(0,0,0,0.45);
}

/* Example: if you want the 'grey-light' theme to keep a specific static look */
/* (removed grey-light-specific card overrides) */

/* Neon theme: stronger glow for cards / tags */
.project-card,
.skill-category {
    box-shadow: 0 10px 40px -20px rgba(0,245,255,0.08), 0 8px 30px -18px rgba(191,95,255,0.06);
    border-color: rgba(240,244,255,0.04);
}

.page-title {
    font-family: 'Newsreader', serif;
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 400;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.page-description {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== SECTION STYLES ===== */
.section {
    padding: 80px 24px;
}

.section-title {
    font-family: 'Newsreader', serif;
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 48px;
    letter-spacing: -0.02em;
    text-align: center;
}

/* ===== CARDS ===== */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border-lighter);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.5s ease;
}

.card:hover {
    border-color: var(--border-light);
    transform: translateY(-4px);
}

/* ===== ABOUT PAGE ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    justify-content: center;
    gap: 64px;
    align-items: start;
}

.about-image {
    position: sticky;
    top: 100px;
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .about-image {
        position: relative !important;
        top: 0 !important;
    }
}

.profile-img {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 24px;
    border: 1px solid var(--border-lighter);
}

.about-content h2 {
    font-family: 'Newsreader', serif;
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.8;
}

.personal-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.info-item {
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-lighter);
    border-radius: 12px;
}

.info-item .label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-tertiary);
    margin-bottom: 8px;
}

.info-item .value {
    font-size: 18px;
    color: var(--text-primary);
}

/* ===== SKILLS PAGE ===== */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 32px;
}

.skill-category {
    background: var(--bg-card);
    border: 1px solid var(--border-lighter);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.5s ease;
}

.skill-category:hover {
    border-color: var(--border-light);
}

.skill-category h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.skill-category h3 svg {
    width: 24px;
    height: 24px;
    color: var(--text-secondary);
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.skill-tag {
    padding: 10px 20px;
    background: rgba(124, 58, 237, 0.06); /* subtle purple */
    border: 1px solid rgba(124, 58, 237, 0.12);
    border-radius: 100px;
    font-size: 14px;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.skill-tag:hover {
    background: rgba(124, 58, 237, 0.12);
    color: var(--text-primary);
    border-color: rgba(124, 58, 237, 0.22);
}

/* Experience Section */
.experience-timeline {
    margin-top: 80px;
}

.experience-item {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 32px;
    padding: 32px 0;
    border-bottom: 1px solid var(--border-lighter);
}

@media (max-width: 768px) {
    .experience-item {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.experience-year {
    font-size: 14px;
    color: var(--text-tertiary);
    font-weight: 500;
}

.experience-content h4 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 8px;
}

.experience-content .company {
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.experience-list {
    padding-left: 20px;
    margin-top: 10px;
}

.experience-list li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.experience-content p {
    color: var(--text-tertiary);
    font-size: 15px;
}

/* ===== PROJECTS PAGE ===== */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
    gap: 32px;
    justify-content: center;
    width: 100%;
}

.project-card {
    background: var(--bg-card);
    border: 1px solid var(--border-lighter);
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s ease;
}

.project-card:hover {
    border-color: var(--border-light);
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.project-image {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    border-bottom: 1px solid var(--border-lighter);
}

.project-content {
    padding: 32px;
}

.project-content h3 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 12px;
}

.project-content p {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.project-tag {
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 6px;
    font-size: 12px;
    color: var(--text-tertiary);
}

/* ===== MODAL ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    overflow-y: auto;
    padding: 40px 24px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--bg-secondary);
    border: 1px solid var(--border-lighter);
    border-radius: 24px;
    max-width: 900px;
    margin: 0 auto;
    transform: translateY(30px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal {
    transform: translateY(0);
}

.modal-header {
    position: relative;
}

.modal-image {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 24px 24px 0 0;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: rgba(0, 0, 0, 0.24);
    border: 1px solid var(--border-lighter);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.modal-close svg {
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.7)
}

.modal-body {
    padding: 48px;
}

.modal-title {
    font-family: 'Newsreader', serif;
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.modal-description {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 32px;
}

.modal-section {
    margin-bottom: 32px;
}

.modal-section h4 {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-tertiary);
    margin-bottom: 16px;
}

.modal-section ul {
    list-style: none;
}

.modal-section li {
    color: var(--text-secondary);
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.modal-section li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 6px;
    height: 6px;
    background: var(--text-tertiary);
    border-radius: 50%;
}

.modal-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.modal-tech span {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-lighter);
    border-radius: 100px;
    font-size: 14px;
    color: var(--text-secondary);
}

.modal-links {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--border-lighter);
}

/* ===== AMBITIONS PAGE ===== */
.ambitions-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.ambitions-intro p {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.ambitions-grid {
    display: grid;
    gap: 32px;
}

.ambition-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 32px;
    padding: 48px;
    background: var(--bg-card);
    border: 1px solid var(--border-lighter);
    border-radius: 24px;
    transition: all 0.5s ease;
}

.ambition-card:hover {
    border-color: var(--border-light);
}

@media (max-width: 768px) {
    .ambition-card {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 32px;
    }
}

.ambition-number {
    font-family: 'Newsreader', serif;
    font-size: 72px;
    font-weight: 400;
    line-height: 1;
    color: var(--text-tertiary);
    opacity: 0.5;
}

.ambition-content h3 {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 16px;
}

.ambition-content p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.8;
}

/* ===== CONTACT PAGE ===== */
/* ----- CONTACT PAGE ----- */
.contact-grid {
    display: grid;
    grid-template-columns: minmax(280px, 805px);
    justify-content: center;
    gap: 64px;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }
}

.contact-info {
    width: 100%;
    margin: 0 auto;
}

.contact-info h2 {
    font-family: 'Newsreader', serif;
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.contact-info p {
    color: var(--text-secondary);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 48px;
}

.contact-info h2,
.contact-info p {
    text-align: center;
}

.contact-info p {
    margin-left: auto;
    margin-right: auto;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 550px;
    margin: 0 auto;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-lighter);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.contact-link:hover {
    border-color: var(--border-light);
    background: rgba(255, 255, 255, 0.05);
}

.contact-link svg {
    width: 24px;
    height: 24px;
    color: var(--text-secondary);
}

.contact-link span {
    font-size: 16px;
}

/* Contact Form */
/*.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border-lighter);
    border-radius: 24px;
    padding: 48px;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-lighter);
    border-radius: 12px;
    font-family: inherit;
    font-size: 16px;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--border-light);
    background: rgba(255, 255, 255, 0.08);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-tertiary);
} */

/* ===== FOOTER ===== */
.footer {
    padding: 48px 24px;
    border-top: 1px solid var(--border-lighter);
    margin-top: 80px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer p {
    font-size: 14px;
    color: var(--text-tertiary);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-lighter);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border-color: var(--border-light);
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

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

/* Headings: use Space Grotesk for the Neural Dark theme look */
h1, h2, h3, h4, h5, h6, .page-title, .hero-title, .section-title {
    font-family: 'Space Grotesk', 'Newsreader', serif;
}