.scroll-header,
.scroll-footer {
    height: 20px;
    background: linear-gradient(135deg, var(--grey-600), var(--grey-500));
    border-radius: 6px;
    margin: 8px;
    position: relative;
}

.scroll-header::before,
.scroll-footer::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 2px;
    background: var(--purple-400);
}

.scroll-body {
    flex: 1;
    padding: calc(var(--spacing-unit) / 2);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.scroll-line {
    height: 2px;
    background: linear-gradient(90deg, var(--purple-500), transparent);
    border-radius: 1px;
}

.scroll-line:nth-child(1) { width: 90%; }
.scroll-line:nth-child(2) { width: 100%; }
.scroll-line:nth-child(3) { width: 85%; }
.scroll-line:nth-child(4) { width: 75%; }
.scroll-line:nth-child(5) { width: 95%; }

.wax-seal {
    position: absolute;
    right: -20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--purple-600), var(--purple-700));
    border-radius: 50%;
    border: 3px solid var(--purple-400);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-tech);
    animation: seal-glow 3s ease-in-out infinite;
}

.seal-inner {
    width: 40px;
    height: 40px;
    border: 2px solid var(--purple-300);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple-200);
    font-size: 1.2rem;
}

@keyframes seal-glow {
    0%, 100% { 
        box-shadow: var(--shadow-tech);
    }
    50% { 
        box-shadow: 0 0 30px rgba(168, 85, 247, 0.6);
    }
}

/* Resume Navigation */
.resume-nav {
    padding: calc(var(--spacing-unit) * 2) 0;
    background: var(--grey-900);
    border-top: 1px solid var(--grey-800);
    border-bottom: 2px solid var(--grey-800);
    position: sticky;
    top: calc(var(--spacing-unit) * 4);
    z-index: 100;
    backdrop-filter: blur(20px);
}

.resume-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--purple-500), transparent);
}

.nav-tabs {
    display: flex;
    justify-content: center;
    gap: calc(var(--spacing-unit) / 2);
    flex-wrap: wrap;
}

.nav-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(var(--spacing-unit) / 4);
    background: transparent;
    border: 1px solid var(--grey-700);
    color: var(--grey-400);
    padding: calc(var(--spacing-unit) / 2) var(--spacing-unit);
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-primary);
    position: relative;
    min-width: 100px;
}

.nav-tab::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 20%;
    right: 20%;
    height: 2px;
    background: var(--purple-500);
    opacity: 0;
    transition: var(--transition);
}

.nav-tab:hover,
.nav-tab.active {
    background: rgba(168, 85, 247, 0.1);
    border-color: var(--purple-500);
    color: var(--white);
}

.nav-tab.active::before {
    opacity: 1;
}

.tab-icon {
    font-size: 1.2rem;
    color: inherit;
}

/* Resume Content Sections */
.resume-content {
    padding: calc(var(--spacing-unit) * 4) 0;
    background: var(--black);
}

.content-section {
    display: none;
}

.content-section.active {
    display: block;
}

.section-temple {
    margin-bottom: calc(var(--spacing-unit) * 4);
}

.temple-header {
    text-align: center;
    margin-bottom: calc(var(--spacing-unit) * 4);
}

.temple-pediment {
    position: relative;
    display: inline-block;
    padding: calc(var(--spacing-unit) * 2) calc(var(--spacing-unit) * 4);
    background: linear-gradient(135deg, var(--grey-900), var(--black));
    border: 2px solid var(--grey-700);
    clip-path: polygon(15% 100%, 85% 100%, 100% 0%, 0% 0%);
}

.section-title {
    font-family: var(--font-classical);
    font-size: 2rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.1em;
    margin-bottom: calc(var(--spacing-unit) / 2);
}

.pediment-ornament {
    width: 40px;
    height: 2px;
    background: var(--purple-500);
    margin: 0 auto;
}

/* Overview Section */
.overview-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: calc(var(--spacing-unit) * 2);
}

.profile-card,
.summary-card,
.metrics-card {
    background: var(--grey-900);
    border: 1px solid var(--grey-800);
    border-radius: 12px;
    padding: calc(var(--spacing-unit) * 2);
    position: relative;
    transition: var(--transition);
}

.profile-card::before,
.summary-card::before,
.metrics-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--purple-600), var(--purple-400), var(--purple-600));
    opacity: 0;
    transition: var(--transition);
}

.profile-card:hover,
.summary-card:hover,
.metrics-card:hover {
    border-color: var(--purple-500);
    transform: translateY(-4px);
    box-shadow: var(--shadow-classical);
}

.profile-card:hover::before,
.summary-card:hover::before,
.metrics-card:hover::before {
    opacity: 1;
}

.profile-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: calc(var(--spacing-unit) * 1.5);
    align-items: center;
}

.card-pillar {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 120px;
}

.pillar-capital {
    width: 20px;
    height: 8px;
    background: linear-gradient(135deg, var(--purple-500), var(--purple-400));
    border-radius: 4px 4px 0 0;
    position: relative;
}

.pillar-capital::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    height: 4px;
    background: var(--purple-400);
    border-radius: 4px;
}

.pillar-shaft {
    flex: 1;
    width: 16px;
    background: linear-gradient(180deg, var(--purple-600), var(--purple-700));
    margin: 2px 0;
}

.pillar-base {
    width: 20px;
    height: 8px;
    background: linear-gradient(135deg, var(--purple-700), var(--purple-800));
    border-radius: 0 0 4px 4px;
}

.profile-content {
    display: flex;
    align-items: center;
    gap: calc(var(--spacing-unit) * 1.5);
}

.profile-avatar {
    position: relative;
    width: 80px;
    height: 80px;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--grey-700), var(--grey-600));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--grey-400);
    border: 2px solid var(--grey-600);
}

.avatar-ring {
    position: absolute;
    inset: -6px;
    border: 2px solid var(--purple-500);
    border-radius: 50%;
    opacity: 0.5;
}

.profile-name {
    font-family: var(--font-classical);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: calc(var(--spacing-unit) / 4);
}

.profile-title {
    color: var(--purple-400);
    font-size: 1rem;
    margin-bottom: calc(var(--spacing-unit) / 2);
}

.profile-location {
    display: flex;
    align-items: center;
    gap: calc(var(--spacing-unit) / 3);
    color: var(--grey-400);
    font-size: 0.9rem;
}

.watermark-resume {
    position: absolute;
    top: calc(var(--spacing-unit) / 2);
    right: calc(var(--spacing-unit) / 2);
    background: rgba(0, 0, 0, 0.9);
    color: var(--white);
    padding: calc(var(--spacing-unit) / 4) calc(var(--spacing-unit) / 2);
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    border: 1px solid var(--grey-700);
}

.card-header {
    margin-bottom: calc(var(--spacing-unit) * 1.5);
    text-align: center;
}

.card-title {
    font-family: var(--font-classical);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: calc(var(--spacing-unit) / 2);
}

.title-ornament {
    width: 30px;
    height: 2px;
    background: var(--purple-500);
    margin: 0 auto;
}

.card-content p {
    color: var(--grey-300);
    line-height: var(--golden-ratio);
    margin-bottom: var(--spacing-unit);
}

.card-content p:last-child {
    margin-bottom: 0;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: calc(var(--spacing-unit) * 1.5);
}

.metric-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-unit);
    padding: var(--spacing-unit);
    background: var(--black);
    border: 1px solid var(--grey-800);
    border-radius: 8px;
    transition: var(--transition);
}

.metric-item:hover {
    border-color: var(--purple-500);
    transform: translateY(-2px);
}

.metric-icon {
    width: 40px;
    height: 40px;
    background: rgba(168, 85, 247, 0.1);
    border: 2px solid var(--purple-500);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple-400);
    font-size: 1rem;
}

.metric-number {
    font-family: var(--font-classical);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.metric-label {
    color: var(--grey-400);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Experience Timeline */
.timeline {
    position: relative;
    padding-left: calc(var(--spacing-unit) * 2);
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--purple-500), var(--purple-600));
}

.timeline-item {
    position: relative;
    margin-bottom: calc(var(--spacing-unit) * 3);
}

.timeline-marker {
    position: absolute;
    left: -28px;
    top: calc(var(--spacing-unit) * 1.5);
    width: 16px;
    height: 16px;
}

.marker-ring {
    width: 100%;
    height: 100%;
    border: 2px solid var(--purple-500);
    border-radius: 50%;
    background: var(--black);
    position: relative;
}

.marker-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: var(--purple-400);
    border-radius: 50%;
}

.experience-card {
    background: var(--grey-900);
    border: 1px solid var(--grey-800);
    border-radius: 12px;
    padding: calc(var(--spacing-unit) * 2);
    transition: var(--transition);
    position: relative;
}

.experience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--purple-600), var(--purple-400), var(--purple-600));
    opacity: 0;
    transition: var(--transition);
}

.experience-card:hover {
    border-color: var(--purple-500);
    transform: translateY(-4px);
    box-shadow: var(--shadow-classical);
}

.experience-card:hover::before {
    opacity: 1;
}

.experience-header {
    margin-bottom: var(--spacing-unit);
}

.job-title {
    font-family: var(--font-classical);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: calc(var(--spacing-unit) / 2);
}

.job-meta {
    display: flex;
    gap: var(--spacing-unit);
    flex-wrap: wrap;
    color: var(--grey-400);
    font-size: 0.9rem;
}

.company {
    color: var(--purple-400);
    font-weight: 500;
}

.job-description {
    color: var(--grey-300);
    line-height: var(--golden-ratio);
    margin-bottom: var(--spacing-unit);
}

.achievements {
    list-style: none;
    margin-bottom: var(--spacing-unit);
}

.achievements li {
    position: relative;
    padding-left: calc(var(--spacing-unit) * 1.5);
    color: var(--grey-300);
    margin-bottom: calc(var(--spacing-unit) / 2);
    line-height: var(--golden-ratio);
}

.achievements li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--purple-400);
    font-size: 0.8rem;
}

.tech-stack {
    display: flex;
    gap: calc(var(--spacing-unit) / 2);
    flex-wrap: wrap;
}

.tech-tag {
    background: var(--grey-800);
    color: var(--grey-300);
    padding: calc(var(--spacing-unit) / 4) calc(var(--spacing-unit) / 2);
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid var(--grey-700);
    transition: var(--transition);
}

.tech-tag:hover {
    background: rgba(168, 85, 247, 0.1);
    border-color: var(--purple-500);
    color: var(--purple-300);
}

/* Skills Section */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: calc(var(--spacing-unit) * 2);
}

.skill-category {
    background: var(--grey-900);
    border: 1px solid var(--grey-800);
    border-radius: 12px;
    padding: calc(var(--spacing-unit) * 2);
    transition: var(--transition);
    position: relative;
}

.skill-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--purple-600), var(--purple-400), var(--purple-600));
    opacity: 0;
    transition: var(--transition);
}

.skill-category:hover {
    border-color: var(--purple-500);
    transform: translateY(-4px);
    box-shadow: var(--shadow-classical);
}

.skill-category:hover::before {
    opacity: 1;
}

.category-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-unit);
    margin-bottom: calc(var(--spacing-unit) * 2);
}

.category-icon {
    width: 50px;
    height: 50px;
    background: rgba(168, 85, 247, 0.1);
    border: 2px solid var(--purple-500);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple-400);
    font-size: 1.3rem;
}

.category-title {
    font-family: var(--font-classical);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
}

.skills-list {
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing-unit) * 1.5);
}

.skill-item {
    background: var(--black);
    border: 1px solid var(--grey-800);
    border-radius: 8px;
    padding: var(--spacing-unit);
    transition: var(--transition);
}

.skill-item:hover {
    border-color: var(--purple-500);
    transform: translateY(-2px);
}

.skill-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: calc(var(--spacing-unit) / 2);
}

.skill-name {
    color: var(--white);
    font-weight: 500;
}

.skill-level {
    color: var(--purple-400);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--purple-600), var(--purple-400));
    border-radius: 2px;
    width: var(--progress);
    transition: width 1s ease-in-out;
    position: relative;
}

.skill-progress::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3));
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-20px); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(20px); opacity: 0; }
}

/* Education Section */
.education-grid {
    display: grid;
    gap: calc(var(--spacing-unit) * 3);
}

.education-card {
    background: var(--grey-900);
    border: 1px solid var(--grey-800);
    border-radius: 12px;
    padding: calc(var(--spacing-unit) * 2);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: calc(var(--spacing-unit) * 2);
    align-items: center;
    transition: var(--transition);
    position: relative;
}

.education-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--purple-600), var(--purple-400), var(--purple-600));
    opacity: 0;
    transition: var(--transition);
}

.education-card:hover {
    border-color: var(--purple-500);
    transform: translateY(-4px);
    box-shadow: var(--shadow-classical);
}

.education-card:hover::before {
    opacity: 1;
}

.education-content {
    display: flex;
    align-items: center;
    gap: calc(var(--spacing-unit) * 1.5);
}

.education-icon {
    width: 60px;
    height: 60px;
    background: rgba(168, 85, 247, 0.1);
    border: 2px solid var(--purple-500);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple-400);
    font-size: 1.5rem;
}

.degree-title {
    font-family: var(--font-classical);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: calc(var(--spacing-unit) / 4);
}

.institution {
    color: var(--purple-400);
    font-weight: 500;
    margin-bottom: calc(var(--spacing-unit) / 4);
}

.education-period {
    color: var(--grey-400);
    font-size: 0.9rem;
    margin-bottom: calc(var(--spacing-unit) / 2);
}

.education-details {
    color: var(--grey-300);
    line-height: var(--golden-ratio);
    margin-bottom: var(--spacing-unit);
}

.education-achievements {
    display: flex;
    gap: calc(var(--spacing-unit) / 2);
    flex-wrap: wrap;
}

.achievement {
    background: var(--grey-800);
    color: var(--grey-300);
    padding: calc(var(--spacing-unit) / 4) calc(var(--spacing-unit) / 2);
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid var(--grey-700);
}

.certifications-section {
    margin-top: calc(var(--spacing-unit) * 3);
}

.certifications-title {
    font-family: var(--font-classical);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: calc(var(--spacing-unit) * 2);
    text-align: center;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: calc(var(--spacing-unit) * 1.5);
}

.cert-item {
    background: var(--black);
    border: 1px solid var(--grey-800);
    border-radius: 8px;
    padding: calc(var(--spacing-unit) * 1.5);
    display: flex;
    align-items: center;
    gap: var(--spacing-unit);
    transition: var(--transition);
}

.cert-item:hover {
    border-color: var(--purple-500);
    transform: translateY(-2px);
}

.cert-icon {
    width: 40px;
    height: 40px;
    background: rgba(168, 85, 247, 0.1);
    border: 2px solid var(--purple-500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple-400);
    font-size: 1rem;
    flex-shrink: 0;
}

.cert-name {
    font-weight: 600;
    color: var(--white);
    margin-bottom: calc(var(--spacing-unit) / 4);
    font-size: 0.9rem;
}

.cert-issuer {
    color: var(--purple-400);
    font-size: 0.8rem;
    margin-bottom: calc(var(--spacing-unit) / 4);
}

.cert-date {
    color: var(--grey-400);
    font-size: 0.8rem;
}

/* Projects Section */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: calc(var(--spacing-unit) * 2);
}

.project-card {
    background: var(--grey-900);
    border: 1px solid var(--grey-800);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--purple-600), var(--purple-400), var(--purple-600));
    opacity: 0;
    transition: var(--transition);
    z-index: 5;
}

.project-card:hover {
    border-color: var(--purple-500);
    transform: translateY(-6px);
    box-shadow: var(--shadow-classical);
}

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

.project-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--grey-800), var(--grey-700));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--grey-500);
    font-size: 3rem;
    position: relative;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    inset: var(--spacing-unit);
    border: 2px dashed var(--grey-600);
    border-radius: 6px;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}

.project-image:hover .project-overlay {
    opacity: 1;
}

.view-project-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple-600), var(--purple-500));
    border: 2px solid var(--purple-400);
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.view-project-btn:hover {
    background: linear-gradient(135deg, var(--purple-500), var(--purple-400));
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.4);
}

.project-content {
    padding: calc(var(--spacing-unit) * 2);
}

.project-title {
    font-family: var(--font-classical);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: calc(var(--spacing-unit) / 3);
}

.project-category {
    color: var(--purple-400);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: calc(var(--spacing-unit) / 2);
}

.project-description {
    color: var(--grey-300);
    line-height: var(--golden-ratio);
    margin-bottom: var(--spacing-unit);
}

.project-tech {
    display: flex;
    gap: calc(var(--spacing-unit) / 2);
    flex-wrap: wrap;
    margin-bottom: var(--spacing-unit);
}

.project-metrics {
    display: flex;
    gap: var(--spacing-unit);
    flex-wrap: wrap;
}

.metric {
    display: flex;
    align-items: center;
    gap: calc(var(--spacing-unit) / 3);
    color: var(--grey-400);
    font-size: 0.8rem;
}

.metric i {
    color: var(--purple-400);
}

/* Modal Enhancements */
.edit-form {
    margin: calc(var(--spacing-unit) * 2) 0;
}

.form-tabs {
    display: flex;
    gap: calc(var(--spacing-unit) / 2);
    margin-bottom: calc(var(--spacing-unit) * 2);
    border-bottom: 1px solid var(--grey-700);
}

.form-tab {
    background: transparent;
    border: none;
    color: var(--grey-400);
    padding: calc(var(--spacing-unit) / 2) var(--spacing-unit);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 2px solid transparent;
    font-family: var(--font-primary);
}

.form-tab:hover,
.form-tab.active {
    color: var(--white);
    border-bottom-color: var(--purple-500);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.form-group {
    margin-bottom: calc(var(--spacing-unit) * 1.5);
}

.form-group label {
    display: block;
    color: var(--grey-300);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: calc(var(--spacing-unit) / 2);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: calc(var(--spacing-unit) * 0.75);
    background: var(--grey-800);
    border: 1px solid var(--grey-700);
    border-radius: 6px;
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition);
    font-family: var(--font-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--purple-500);
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-unit);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .overview-grid {
        grid-template-columns: 1fr;
    }
    
    .profile-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-unit);
    }
    
    .card-pillar {
        display: none;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-content {
        grid-template-columns: 1fr;
        gap: calc(var(--spacing-unit) * 2);
        text-align: center;
    }
    
    .nav-tabs {
        gap: calc(var(--spacing-unit) / 4);
    }
    
    .nav-tab {
        min-width: 80px;
        padding: calc(var(--spacing-unit) / 3) calc(var(--spacing-unit) / 2);
        font-size: 0.7rem;
    }
    
    .tab-icon {
        font-size: 1rem;
    }
    
    .timeline {
        padding-left: var(--spacing-unit);
    }
    
    .timeline::before {
        left: 10px;
    }
    
    .timeline-marker {
        left: -18px;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .certifications-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .job-meta {
        flex-direction: column;
        gap: calc(var(--spacing-unit) / 2);
    }
    
    .project-metrics {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .profile-content {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-unit);
    }
    
    .category-header {
        flex-direction: column;
        text-align: center;
        gap: calc(var(--spacing-unit) / 2);
    }
    
    .education-content {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-unit);
    }
    
    .form-tabs {
        flex-wrap: wrap;
        justify-content: center;
    }
}/* Resume Page Styles - Greek Classical Architecture */

.resume-main {
    padding-top: calc(var(--spacing-unit) * 4);
}

/* Page Header with Classical Elements */
.page-header {
    padding: calc(var(--spacing-unit) * 6) 0 calc(var(--spacing-unit) * 8);
    background: linear-gradient(135deg, var(--black) 0%, var(--grey-900) 100%);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--purple-500), transparent);
}

.header-content {
    display: grid;
    grid-template-columns: 1.618fr 1fr;
    gap: calc(var(--spacing-unit) * 4);
    align-items: center;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: calc(var(--spacing-unit) / 2);
    margin-bottom: calc(var(--spacing-unit) * 2);
    font-size: 0.875rem;
    color: var(--grey-400);
    font-family: var(--font-mono);
}

.breadcrumb a {
    color: var(--purple-400);
    text-decoration: none;
    transition: var(--transition);
    padding: calc(var(--spacing-unit) / 4) calc(var(--spacing-unit) / 2);
    border-radius: 4px;
}

.breadcrumb a:hover {
    color: var(--purple-300);
    background: rgba(168, 85, 247, 0.1);
}

.separator {
    color: var(--grey-600);
    font-weight: bold;
}

.current {
    color: var(--white);
    font-weight: 600;
}

.page-title {
    margin-bottom: var(--spacing-unit);
}

.title-main {
    display: block;
    font-family: var(--font-classical);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 0.9;
    margin-bottom: calc(var(--spacing-unit) / 2);
    position: relative;
}

.title-main::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--purple-500), var(--purple-400));
}

.title-subtitle {
    display: block;
    font-size: 1.25rem;
    color: var(--purple-400);
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.page-subtitle {
    font-size: 1.125rem;
    color: var(--grey-300);
    line-height: var(--golden-ratio);
    max-width: 500px;
}

/* Header Visual - Ancient Scroll */
.header-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
    position: relative;
}

.scroll-container {
    width: 200px;
    height: 150px;
    position: relative;
    background: linear-gradient(135deg, var(--grey-700), var(--grey-600));
    border-radius: 8px;
    box-shadow: var(--shadow-classical);
    border: 2px solid var(--grey-600);
}

.scroll-header,
.scroll-footer {
    height: 20px;
    background: linear-gradient(135deg, var(--grey-600), var(--grey-500));