/* ============================================
   VARIABLES Y RESET
   ============================================ */
:root {
    --bg: #0f0f10;
    --panel: #121212;
    --panel-light: #1a1a1b;
    --muted: #6d6d6d;
    --text: #e6e6e6;
    --accent: #cfcfcf;
    --accent-bright: #ffffff;
    --primary: #4a9eff;
    --primary-hover: #3d8ae6;
    --success: #4ade80;
    --gap: 28px;
    --radius: 8px;
    --radius-sm: 4px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

html,
body {
    height: 100%;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Space Mono', monospace;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding: 20px;
    line-height: 1.6;
}

/* ============================================
   HEADER Y NAVEGACIÓN
   ============================================ */
.main-header {
    max-width: 900px;
    margin: 0 auto 30px;
    padding: 20px 0;
}

.nav-container {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.nav-link {
    color: var(--muted);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
    padding: 4px 0;
}

.nav-link:hover {
    color: var(--accent-bright);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* ============================================
   CARD PRINCIPAL
   ============================================ */
.card {
    max-width: 900px;
    margin: 0 auto;
    padding: 48px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border-radius: var(--radius);
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 56px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
    min-height: 600px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* ============================================
   SIDEBAR
   ============================================ */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--gap);
    position: sticky;
    top: 20px;
    height: fit-content;
}

.profile-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-bright);
    margin-bottom: 8px;
    box-shadow: 0 4px 12px rgba(74, 158, 255, 0.3);
}

.name {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-bright);
    line-height: 1.2;
}

.role {
    font-size: 14px;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 4px;
}

.contact {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 12px;
    color: var(--muted);
}

.contact a {
    color: var(--muted);
    text-decoration: none;
    transition: var(--transition);
}

.contact a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: var(--panel-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-link:hover {
    background: var(--primary);
    color: var(--accent-bright);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 158, 255, 0.3);
}

.labels {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    width: 100%;
}

.label {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    color: var(--muted);
    letter-spacing: 4px;
    font-size: 11px;
    text-transform: uppercase;
    opacity: 0.5;
}

/* ============================================
   CONTENT
   ============================================ */
.content {
    padding-top: 4px;
}

.section {
    margin-bottom: 48px;
}

.section-title {
    color: var(--text);
    margin: 0 0 12px 0;
    font-size: 15px;
    font-weight: 700;
}

.section-title-main {
    color: var(--accent-bright);
    margin: 0 0 24px 0;
    font-size: 18px;
    font-weight: 700;
    position: relative;
    padding-bottom: 12px;
}

.section-title-main::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.subsection-title {
    color: var(--accent);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-text {
    color: var(--muted);
    line-height: 1.7;
    font-size: 14px;
    max-width: 680px;
}

/* ============================================
   EXPERIENCE SECTION
   ============================================ */
.job {
    margin-bottom: 32px;
    padding: 24px;
    background: var(--panel-light);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.job:hover {
    border-color: rgba(74, 158, 255, 0.3);
    transform: translateX(4px);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 8px;
}

.job-title {
    font-weight: 700;
    color: var(--accent-bright);
    font-size: 15px;
    display: block;
    margin-bottom: 4px;
}

.company {
    font-weight: 700;
    color: var(--primary);
    font-size: 14px;
}

.dates {
    color: var(--muted);
    font-size: 12px;
    white-space: nowrap;
}

.job-description {
    color: var(--muted);
    line-height: 1.6;
    font-size: 13px;
    margin-bottom: 12px;
}

.achievements {
    list-style: none;
    margin: 16px 0;
    padding: 0;
}

.achievements li {
    color: var(--muted);
    font-size: 13px;
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
    line-height: 1.5;
}

.achievements li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.tag {
    background: rgba(74, 158, 255, 0.1);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    border: 1px solid rgba(74, 158, 255, 0.2);
}

/* ============================================
   PROJECTS SECTION
   ============================================ */
.project-card {
    background: var(--panel-light);
    padding: 24px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.project-card:hover {
    border-color: rgba(74, 158, 255, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.project-title {
    color: var(--accent-bright);
    font-size: 16px;
    font-weight: 700;
}

.project-year {
    color: var(--muted);
    font-size: 12px;
}

.project-description {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.project-stats {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-value {
    color: var(--primary);
    font-size: 18px;
    font-weight: 700;
}

.stat-label {
    color: var(--muted);
    font-size: 11px;
}

/* ============================================
   TWO COLUMNS LAYOUT
   ============================================ */
.two-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 48px;
}

/* ============================================
   EDUCATION SECTION
   ============================================ */
.education-item {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.education-item:last-of-type {
    border-bottom: none;
}

.education-school {
    color: var(--accent-bright);
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 4px;
}

.education-degree {
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 4px;
}

.education-year {
    color: var(--muted);
    font-size: 12px;
    opacity: 0.7;
}

.certifications {
    margin-top: 24px;
}

.cert-list {
    list-style: none;
    padding: 0;
}

.cert-list li {
    color: var(--muted);
    font-size: 13px;
    padding-left: 16px;
    position: relative;
    margin-bottom: 8px;
}

.cert-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

/* ============================================
   SKILLS SECTION
   ============================================ */
.skill-category {
    margin-bottom: 24px;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.skill-tag {
    background: var(--panel);
    color: var(--accent);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
}

.skill-tag:hover {
    background: var(--panel-light);
    border-color: var(--primary);
    color: var(--primary);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-text {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 600px;
}

.contact-methods {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.contact-button {
    padding: 12px 24px;
    background: var(--primary);
    color: var(--accent-bright);
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 700;
    transition: var(--transition);
    border: 2px solid var(--primary);
}

.contact-button:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(74, 158, 255, 0.3);
}

.contact-button.secondary {
    background: transparent;
    color: var(--primary);
}

.contact-button.secondary:hover {
    background: var(--primary);
    color: var(--accent-bright);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    margin-top: 56px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer p {
    color: var(--muted);
    font-size: 12px;
    margin-bottom: 8px;
}

.footer-note {
    opacity: 0.6;
    font-size: 11px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 860px) {
    .card {
        grid-template-columns: 1fr;
        padding: 32px;
        gap: 32px;
    }

    .sidebar {
        position: static;
    }

    .labels {
        flex-direction: row;
        gap: 16px;
        justify-content: flex-start;
        flex-wrap: wrap;
        margin-top: 24px;
    }

    .label {
        writing-mode: horizontal-tb;
        transform: none;
    }

    .two-cols {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .nav-container {
        gap: 16px;
    }

    .nav-link {
        font-size: 12px;
    }
}

@media (max-width: 600px) {
    body {
        padding: 12px;
    }

    .card {
        padding: 24px;
    }

    .main-header {
        margin-bottom: 20px;
    }

    .job-header {
        flex-direction: column;
    }

    .project-stats {
        gap: 16px;
    }

    .contact-methods {
        flex-direction: column;
    }

    .contact-button {
        text-align: center;
    }
}

/* ============================================
   ANIMACIONES
   ============================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section {
    animation: fadeIn 0.6s ease-out;
}

/* ============================================
   UTILIDADES
   ============================================ */
.text-center {
    text-align: center;
}

.mt-small {
    margin-top: 16px;
}

.mt-medium {
    margin-top: 24px;
}

.mt-large {
    margin-top: 48px;
}

.mb-small {
    margin-bottom: 16px;
}

.mb-medium {
    margin-bottom: 24px;
}

.mb-large {
    margin-bottom: 48px;
}

/* ============================================
SCROLL PERSONALIZADO
============================================ */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--panel-light);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--muted);
}

/* ============================================
ESTADOS DE ENFOQUE (ACCESIBILIDAD)
============================================ */
a:focus,
button:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* ============================================
MODO IMPRESIÓN
============================================ */
@media print {
    body {
        background: white;
        color: black;
        padding: 0;
    }

    .card {
        box-shadow: none;
        border: none;
        max-width: 100%;
    }

    .main-header,
    .social-links,
    .contact-button,
    .labels {
        display: none;
    }

    .sidebar {
        position: static;
    }

    .job,
    .project-card {
        page-break-inside: avoid;
    }
}




/* ============================================
   ESTILOS ADICIONALES PARA ICONOS
   ============================================ */

/* Iconos en navegación */
.nav-link i {
    margin-right: 6px;
    font-size: 12px;
}

/* Avatar con icono */
.avatar i {
    font-size: 32px;
}

/* Iconos en contacto sidebar */
.contact i {
    margin-right: 6px;
    font-size: 11px;
    color: var(--primary);
}

/* Social links */
.social-link i {
    font-size: 14px;
}

/* Labels con iconos */
.label i {
    margin-bottom: 8px;
    font-size: 14px;
}

/* Section titles con iconos */
.section-title-main i {
    margin-right: 8px;
    color: var(--primary);
}

/* Quote icons */
.quote-icon {
    color: var(--primary);
    opacity: 0.3;
    font-size: 12px;
    margin: 0 4px;
}

/* Highlights section */
.highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--panel-light);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.highlight-item i {
    font-size: 24px;
    color: var(--primary);
}

.highlight-item div {
    display: flex;
    flex-direction: column;
}

.highlight-item strong {
    color: var(--accent-bright);
    font-size: 18px;
    line-height: 1;
    margin-bottom: 4px;
}

.highlight-item span {
    color: var(--muted);
    font-size: 11px;
}

/* Job icons */
.job-title i,
.company i {
    margin-right: 6px;
    font-size: 13px;
}

.dates i {
    margin-right: 4px;
}

/* Achievements icons */
.achievements li i {
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 12px;
}

.achievements li {
    padding-left: 24px;
}

/* Tags con iconos */
.tag i {
    margin-right: 4px;
    font-size: 10px;
}

/* Project stats icons */
.stat-icon {
    color: var(--primary);
    font-size: 16px;
    margin-bottom: 4px;
}

/* Project links */
.project-links {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.project-link {
    color: var(--primary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.project-link:hover {
    color: var(--primary-hover);
    gap: 8px;
}

.project-link i {
    font-size: 11px;
}

/* Education icons */
.education-school i,
.education-degree i,
.education-year i {
    margin-right: 6px;
    color: var(--primary);
    font-size: 12px;
}

/* Cert list icons */
.cert-list li i {
    margin-right: 8px;
    color: var(--success);
    font-size: 14px;
}

/* Skill tags con iconos */
.skill-tag i {
    margin-right: 6px;
    font-size: 11px;
}

.subsection-title i {
    margin-right: 6px;
    color: var(--primary);
    font-size: 13px;
}

/* Contact section icons */
.contact-text i {
    color: var(--primary);
    margin-right: 6px;
}

.contact-button i {
    margin-right: 8px;
    font-size: 12px;
}

/* Contact info grid */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 32px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: var(--panel-light);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-info-item i {
    font-size: 20px;
    color: var(--primary);
    margin-top: 2px;
}

.contact-info-item div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-info-item strong {
    color: var(--accent-bright);
    font-size: 13px;
}

.contact-info-item span {
    color: var(--muted);
    font-size: 12px;
}

/* Footer social */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--panel-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--accent-bright);
    transform: translateY(-3px);
    box-shadow: 0 4px 12 px rgba(74, 158, 255, 0.3);
}

.footer-social a i {
    font-size: 16px;
}

.footer i {
    margin: 0 4px;
}

.footer .fa-heart {
    color: #ff4757;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    25% {
        transform: scale(1.1);
    }

    50% {
        transform: scale(1);
    }
}

/* Scroll to top button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--accent-bright);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(74, 158, 255, 0.4);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(74, 158, 255, 0.5);
}

.scroll-to-top i {
    font-size: 18px;
}

/* Animaciones para iconos */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-5px);
    }
}

.project-card:hover .project-title i {
    animation: float 1s ease-in-out infinite;
}

/* Responsive adjustments para iconos */
@media (max-width: 860px) {
    .highlights {
        grid-template-columns: 1fr;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 600px) {
    .nav-link i {
        margin-right: 4px;
    }

    .highlight-item {
        padding: 12px;
    }

    .highlight-item i {
        font-size: 20px;
    }

    .footer-social a {
        width: 36px;
        height: 36px;
    }

    .footer-social a i {
        font-size: 14px;
    }
}

/* Efectos hover adicionales para iconos */
.skill-tag:hover i {
    transform: scale(1.2);
    transition: transform 0.2s ease;
}

.social-link:hover i {
    transform: rotate(360deg);
    transition: transform 0.5s ease;
}

.contact-button:hover i {
    transform: translateX(3px);
    transition: transform 0.3s ease;
}

/* Iconos de loading (opcional para futuras implementaciones) */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.loading i {
    animation: spin 1s linear infinite;
}

/* Badges con iconos */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--panel-light);
    border-radius: 16px;
    font-size: 12px;
    color: var(--accent);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.badge i {
    font-size: 11px;
    color: var(--primary);
}

/* Status indicators con iconos */
.status-available {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--success);
    font-size: 12px;
    margin-top: 8px;
}

.status-available i {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* Tooltips con iconos (opcional) */
.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip i {
    cursor: help;
    color: var(--muted);
}

.tooltip:hover i {
    color: var(--primary);
}

/* Print styles para iconos */
@media print {

    .scroll-to-top,
    .social-links,
    .footer-social {
        display: none;
    }

    .nav-link i,
    .section-title-main i {
        color: #000;
    }
}


/* ============================================
   ESTILOS ADICIONALES PARA EVAN'S PORTFOLIO
   ============================================ */

/* Education description */
.education-description {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
  margin-top: 8px;
  padding-left: 24px;
}

/* Cert year */
.cert-year {
  display: block;
  color: var(--muted);
  font-size: 11px;
  margin-top: 2px;
  opacity: 0.7;
}

/* Features list in projects */
.features-list {
  margin-top: 16px;
  padding: 16px;
  background: rgba(255,255,255,0.02);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.05);
}

.features-list h4 {
  color: var(--accent);
  font-size: 13px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.features-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features-list li {
  color: var(--muted);
  font-size: 12px;
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}

.features-list li i {
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 11px;
  top: 8px;
}

/* CTA Section */
.cta-section {
  margin-top: 40px;
  padding: 24px;
  background: var(--panel-light);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.05);
}

.cta-section h3 {
  color: var(--accent-bright);
  font-size: 16px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.cta-item {
  text-align: center;
  padding: 16px;
  background: var(--panel);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
}

.cta-item:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

.cta-item i {
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 12px;
  display: block;
}

.cta-item h4 {
  color: var(--accent-bright);
  font-size: 14px;
  margin-bottom: 8px;
}

.cta-item p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
  margin: 0;
}

/* Footer links */
.footer-links {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 11px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-links span {
  color: var(--muted);
  opacity: 0.5;
}

/* Active nav link */
.nav-link.active {
  color: var(--primary);
  font-weight: 700;
}

.nav-link.active::after {
  width: 100%;
}

/* Responsive adjustments */
@media (max-width: 860px) {
  .cta-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .features-list {
    padding: 12px;
  }
}

@media (max-width: 600px) {
  .cta-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 8px;
  }
  
  .footer-links span {
    display: none;
  }
}

/* Animations for project cards */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.project-card {
  animation: slideInUp 0.6s ease-out;
}

.project-card:nth-child(2) {
  animation-delay: 0.1s;
}

.project-card:nth-child(3) {
  animation-delay: 0.2s;
}

/* Highlight hover effect */
.highlight-item:hover {
  transform: translateY(-2px);
  border-color: rgba(74, 158, 255, 0.3);
}

/* Skill tag hover with rotation */
.skill-tag:hover {
  transform: translateY(-2px) rotate(2deg);
}

/* Print optimizations */
@media print {
  .cta-section,
  .features-list,
  .project-links {
    page-break-inside: avoid;
  }
  
  .nav-link.active::after {
    display: none;
  }
}
