/* =============================================
   CSS VARIABLES — Design System
   ============================================= */
:root {
    --bg-color: #0f0f15;
    --text-color: #e0e0e0;
    --text-muted: #a0a0b0;
    --primary-color: #7d2ae8;
    --secondary-color: #00d2ff;
    --accent-color: #ff3366;

    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);

    --font-main: 'Outfit', sans-serif;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition: 0.3s ease;
}

/* =============================================
   RESET & BASE
   ============================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

/* =============================================
   BACKGROUND BLOBS
   ============================================= */
.blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.45;
}
.blob-1 {
    width: 500px; height: 500px;
    background: var(--primary-color);
    top: -120px; left: -120px;
    animation: float 12s ease-in-out infinite alternate;
}
.blob-2 {
    width: 350px; height: 350px;
    background: var(--secondary-color);
    bottom: -60px; right: -60px;
    animation: float 14s ease-in-out infinite alternate-reverse;
}
@keyframes float {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(60px, 60px) scale(1.1); }
}

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4 { font-weight: 800; line-height: 1.2; }

.title-gradient {
    font-size: clamp(2.2rem, 4.5vw, 4rem);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}
.text-accent { color: var(--secondary-color); }

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 16px;
}
.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 680px;
    margin: 0 auto 55px;
    line-height: 1.8;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
    display: inline-block;
    padding: 13px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    transition: all var(--transition);
    cursor: pointer;
    border: none;
    font-family: var(--font-main);
    font-size: 0.95rem;
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 4px 20px rgba(125, 42, 232, 0.45);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(125, 42, 232, 0.65);
}
.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-color);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.16);
    transform: translateY(-3px);
}
.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--text-color);
    background: transparent;
}
.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}
.w-100 { width: 100%; }

/* =============================================
   GLASSMORPHISM UTILITY
   ============================================= */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--glass-shadow);
}

/* =============================================
   NAVIGATION
   ============================================= */
.glass-nav {
    position: fixed; top: 0; width: 100%;
    padding: 18px 5%;
    display: flex; justify-content: space-between; align-items: center;
    background: rgba(15, 15, 21, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    transition: padding var(--transition);
}
.logo { font-size: 1.4rem; font-weight: 800; }
.logo span { color: var(--primary-color); }
.nav-links { list-style: none; display: flex; gap: 28px; }
.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color var(--transition);
    letter-spacing: 0.3px;
}
.nav-links a:hover { color: var(--secondary-color); }
.hamburger { display: none; cursor: pointer; }
.hamburger span {
    display: block; width: 25px; height: 2.5px;
    background: var(--text-color); margin: 5px;
    transition: 0.3s; border-radius: 2px;
}

/* =============================================
   SECTION BASE
   ============================================= */
.section {
    padding: 120px 10%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    min-height: 100vh;
}
.hero-content { flex: 1; }
.subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
    font-weight: 600;
}
.description {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 34px;
    max-width: 520px;
    line-height: 1.8;
}
.description strong { color: var(--text-color); }
.cta-group { display: flex; gap: 15px; flex-wrap: wrap; }
.hero-visual { flex: 1; display: flex; justify-content: center; align-items: center; }

/* Hero Stats Card */
.hero-card {
    padding: 36px 40px;
    width: 100%;
    max-width: 420px;
    transition: transform 0.4s ease;
}
.hero-card:hover { transform: translateY(-6px); }
.hero-card-label {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 28px;
    font-weight: 600;
}
.hero-stats {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 28px;
}
.stat-item { text-align: center; flex: 1; }
.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}
.stat-suffix {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 6px;
    line-height: 1.3;
}
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.badge {
    font-size: 0.78rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    letter-spacing: 0.3px;
}
.badge--primary {
    background: rgba(125, 42, 232, 0.2);
    border: 1px solid rgba(125, 42, 232, 0.4);
    color: #b97aff;
}
.badge--cyan {
    background: rgba(0, 210, 255, 0.12);
    border: 1px solid rgba(0, 210, 255, 0.35);
    color: var(--secondary-color);
}
.badge--accent {
    background: rgba(255, 51, 102, 0.12);
    border: 1px solid rgba(255, 51, 102, 0.35);
    color: #ff7799;
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about-container {
    display: flex;
    align-items: flex-start;
    gap: 55px;
}
.about-image {
    flex: 0 0 280px;
    padding: 24px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}
.profile-img {
    width: 100%;
    max-width: 230px;
    border-radius: 14px;
    border: 2px solid var(--glass-border);
}
.cert-img {
    width: 110px;
    border-radius: 50%;
    border: 2px solid rgba(125, 42, 232, 0.4);
}
.about-authority-badges {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}
.auth-badge {
    font-size: 0.75rem;
    font-weight: 700;
    text-align: center;
    padding: 6px 12px;
    border-radius: 20px;
    background: rgba(125, 42, 232, 0.12);
    border: 1px solid rgba(125, 42, 232, 0.3);
    color: #b97aff;
    letter-spacing: 0.5px;
}
.about-text { flex: 1; }
.about-hook {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-color);
    border-left: 3px solid var(--primary-color);
    padding-left: 18px;
}
.about-text p {
    margin-bottom: 18px;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
}
.about-text strong { color: var(--text-color); }
.about-text em { color: var(--secondary-color); font-style: normal; font-weight: 600; }
.about-differentiator {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    border-radius: 12px;
    background: rgba(0, 210, 255, 0.06);
    border: 1px solid rgba(0, 210, 255, 0.2);
    margin: 22px 0 28px;
}
.diff-icon { font-size: 1.4rem; flex-shrink: 0; }
.about-differentiator p {
    margin: 0 !important;
    font-size: 0.95rem !important;
    color: var(--text-muted) !important;
}
.about-differentiator strong { color: var(--text-color) !important; }
.about-differentiator em { color: var(--secondary-color) !important; }

/* =============================================
   TIMELINE SECTION
   ============================================= */
.timeline-section { padding-bottom: 80px; }

.timeline {
    position: relative;
    padding: 20px 0;
    max-width: 1100px;
    margin: 0 auto;
}

/* Vertical center line */
.timeline-line {
    position: absolute;
    left: 50%;
    top: 0; bottom: 0;
    width: 2px;
    transform: translateX(-50%);
    background: linear-gradient(180deg,
        transparent,
        var(--primary-color) 5%,
        var(--secondary-color) 50%,
        var(--accent-color) 95%,
        transparent
    );
    opacity: 0.35;
}

/* Timeline item */
.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: calc(50% + 50px);
    margin-bottom: 60px;
    position: relative;
}
.timeline-item--right {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: calc(50% + 50px);
}

/* Node (dot on the line) */
.timeline-node {
    position: absolute;
    left: 50%;
    top: 24px;
    transform: translateX(-50%);
    width: 52px; height: 52px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-direction: column;
    z-index: 2;
    border: 2px solid var(--glass-border);
    background: var(--bg-color);
}
.tl-node-year {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    line-height: 1;
}
.timeline-node--1 { border-color: rgba(125, 42, 232, 0.6); color: #b97aff; }
.timeline-node--2 { border-color: rgba(0, 210, 255, 0.6); color: var(--secondary-color); }
.timeline-node--3 { border-color: rgba(255, 180, 0, 0.6); color: #ffcc44; }
.timeline-node--4 { border-color: rgba(255, 51, 102, 0.5); color: #ff7799; }
.timeline-node--5 {
    border-color: rgba(0, 255, 160, 0.7);
    color: #00ffa0;
    width: 60px; height: 60px;
    top: 18px;
}
.timeline-node--active {
    box-shadow: 0 0 0 6px rgba(0, 255, 160, 0.12), 0 0 24px rgba(0, 255, 160, 0.3);
}
.tl-node-pulse {
    position: absolute;
    width: 100%; height: 100%;
    border-radius: 50%;
    background: rgba(0, 255, 160, 0.15);
    animation: node-pulse 2.5s ease-in-out infinite;
}
@keyframes node-pulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.5); opacity: 0; }
}

/* Timeline Card */
.timeline-card {
    width: 100%;
    padding: 28px 30px;
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
    overflow: hidden;
}
.timeline-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.4s;
}
.timeline-card:hover::after { opacity: 1; }
.timeline-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.45);
}
.timeline-card--featured {
    border-color: rgba(0, 255, 160, 0.2);
    background: rgba(0, 255, 160, 0.03);
}
.timeline-card--featured::after {
    background: linear-gradient(90deg, #00ffa0, var(--secondary-color));
    opacity: 1;
}

.tl-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}
.tl-era-tag {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #b97aff;
    background: rgba(125, 42, 232, 0.15);
    border: 1px solid rgba(125, 42, 232, 0.3);
    border-radius: 20px;
    padding: 3px 12px;
}
.tl-era-tag--2 { color: var(--secondary-color); background: rgba(0, 210, 255, 0.1); border-color: rgba(0, 210, 255, 0.3); }
.tl-era-tag--3 { color: #ffcc44; background: rgba(255, 200, 0, 0.1); border-color: rgba(255, 200, 0, 0.3); }
.tl-era-tag--4 { color: #ff7799; background: rgba(255, 51, 102, 0.1); border-color: rgba(255, 51, 102, 0.3); }
.tl-era-tag--5 { color: #00ffa0; background: rgba(0, 255, 160, 0.1); border-color: rgba(0, 255, 160, 0.3); }
.tl-period { font-size: 0.78rem; color: var(--text-muted); font-weight: 600; }

.tl-role { font-size: 1.2rem; margin-bottom: 8px; font-weight: 800; }
.tl-hook {
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 14px;
    line-height: 1.6;
}
.tl-body {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 16px;
}
.tl-body strong { color: var(--text-color); }
.tl-body em { color: var(--secondary-color); font-style: italic; }

.tl-achievements {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}
.tl-badge {
    font-size: 0.75rem;
    padding: 4px 11px;
    border-radius: 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-muted);
    font-weight: 600;
}
.tl-badge--glow {
    background: rgba(0, 255, 160, 0.07);
    border-color: rgba(0, 255, 160, 0.25);
    color: #00ffa0;
}
.tl-lesson {
    padding: 11px 16px;
    border-left: 3px solid var(--primary-color);
    background: rgba(125, 42, 232, 0.07);
    border-radius: 0 8px 8px 0;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}
.tl-lesson strong { color: var(--text-color); }
.tl-lesson--featured {
    border-left-color: #00ffa0;
    background: rgba(0, 255, 160, 0.06);
}

/* =============================================
   PORTFOLIO / PROJECTS SECTION
   ============================================= */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.project-card {
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}
.project-card:hover { transform: translateY(-10px); box-shadow: 0 24px 60px rgba(0,0,0,0.5); }

.project-img-container { position: relative; overflow: hidden; }
.project-img-container img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-bottom: 1px solid var(--glass-border);
    transition: transform 0.5s ease;
}
.project-card:hover .project-img-container img { transform: scale(1.06); }
.project-overlay {
    position: absolute;
    top: 12px; left: 12px;
}
.project-category {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 16px;
    background: rgba(15, 15, 21, 0.85);
    border: 1px solid var(--glass-border);
    color: var(--secondary-color);
    letter-spacing: 0.5px;
    backdrop-filter: blur(6px);
}
.project-info { padding: 22px; }
.project-info h3 { margin-bottom: 10px; font-size: 1.1rem; }
.project-info p { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 14px; line-height: 1.7; }
.tech-tags { display: flex; gap: 8px; margin-bottom: 14px; flex-wrap: wrap; }
.tech-tags span {
    font-size: 0.75rem;
    padding: 4px 10px;
    background: rgba(125, 42, 232, 0.15);
    border: 1px solid rgba(125, 42, 232, 0.3);
    border-radius: 16px;
    color: #b97aff;
    font-weight: 600;
}
.project-impact {
    font-size: 0.82rem;
    color: var(--secondary-color);
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(0, 210, 255, 0.06);
    border: 1px solid rgba(0, 210, 255, 0.15);
}

/* Role badge (Full-Stack / Tech Lead) */
.project-role-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #b97aff;
    background: rgba(125, 42, 232, 0.15);
    border: 1px solid rgba(125, 42, 232, 0.3);
    border-radius: 20px;
    padding: 4px 13px;
    margin-bottom: 10px;
    margin-right: 6px;
}
.project-role-badge--lead {
    color: var(--secondary-color);
    background: rgba(0, 210, 255, 0.1);
    border-color: rgba(0, 210, 255, 0.3);
}

/* Activity list inside project cards */
.project-activities {
    list-style: none;
    padding: 0;
    margin: 0 0 14px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.project-activities li {
    position: relative;
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
    padding-left: 18px;
}
.project-activities li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.1rem;
    line-height: 1.2;
}


/* =============================================
   JOURNEY / METHOD SECTION
   ============================================= */
.journey { min-height: auto; padding-bottom: 80px; }
.journey-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 720px;
    margin: -10px auto 70px;
    line-height: 1.8;
}
.journey-intro strong { color: var(--text-color); }

/* Steps layout */
.journey-step {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
}
.journey-step--reverse { flex-direction: row-reverse; }

/* Icon column */
.journey-icon-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    position: relative;
    padding-top: 10px;
}
.journey-icon-bg {
    position: absolute;
    top: -8px; left: -8px;
    width: 72px; height: 72px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(125, 42, 232, 0.5), transparent 70%);
    animation: pulse-glow 3s ease-in-out infinite alternate;
}
.journey-icon-bg--process { background: radial-gradient(circle, rgba(0, 210, 255, 0.5), transparent 70%); }
.journey-icon-bg--value   { background: radial-gradient(circle, rgba(255, 51, 102, 0.5), transparent 70%); }
@keyframes pulse-glow {
    from { opacity: 0.5; transform: scale(0.9); }
    to   { opacity: 1;   transform: scale(1.15); }
}
.journey-icon { font-size: 2.8rem; z-index: 1; display: block; width: 56px; text-align: center; line-height: 1; }
.journey-connector {
    width: 2px; flex: 1; min-height: 60px;
    margin-top: 15px;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    opacity: 0.4; border-radius: 2px;
}

/* Content card */
.journey-content {
    flex: 1;
    padding: 35px 40px;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}
.journey-content::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.4s;
}
.journey-content:hover::before { opacity: 1; }
.journey-content:hover { transform: translateY(-4px); box-shadow: 0 22px 55px rgba(0,0,0,0.45); }

/* Journey tags */
.journey-tag {
    display: inline-block;
    font-size: 0.72rem; font-weight: 800;
    letter-spacing: 2px; text-transform: uppercase;
    color: #b97aff;
    background: rgba(125, 42, 232, 0.15);
    border: 1px solid rgba(125, 42, 232, 0.3);
    border-radius: 30px; padding: 4px 14px;
    margin-bottom: 16px;
}
.journey-tag--process { color: var(--secondary-color); background: rgba(0,210,255,0.1); border-color: rgba(0,210,255,0.3); }
.journey-tag--value   { color: #ff7799; background: rgba(255,51,102,0.1); border-color: rgba(255,51,102,0.3); }

.journey-content h3 { font-size: 1.6rem; margin-bottom: 8px; }
.journey-headline { font-size: 0.98rem; font-style: italic; color: var(--text-muted); margin-bottom: 16px; line-height: 1.6; }
.journey-content > p:not(.journey-headline) {
    color: var(--text-muted); line-height: 1.8; font-size: 0.97rem; margin-bottom: 20px;
}
.journey-content > p strong { color: var(--text-color); }
.journey-content > p em { color: var(--secondary-color); font-style: normal; font-weight: 600; }

/* Checklist */
.journey-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.journey-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.92rem; color: var(--text-color); }
.check { color: var(--secondary-color); font-weight: 800; font-size: 1rem; flex-shrink: 0; margin-top: 2px; }

/* Quote */
.journey-quote {
    border-left: 3px solid var(--primary-color);
    padding: 12px 18px;
    background: rgba(125,42,232,0.07);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.7;
}
.journey-quote--process { border-left-color: var(--secondary-color); background: rgba(0,210,255,0.05); }
.journey-quote--value   { border-left-color: var(--accent-color);    background: rgba(255,51,102,0.05); }

/* CTA Final */
.journey-cta {
    text-align: center;
    margin-top: 70px;
    padding: 55px 40px;
    border-radius: var(--radius-lg);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}
.journey-cta-pre {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 14px;
}
.journey-cta h3 { font-size: 1.65rem; margin-bottom: 18px; }
.journey-cta-body {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 580px;
    margin: 0 auto 30px;
}
.journey-cta-body em { color: var(--secondary-color); font-style: normal; font-weight: 600; }

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact { min-height: auto; padding-bottom: 100px; }
.contact-container { max-width: 620px; margin: 0 auto; width: 100%; }
#contact-form { padding: 44px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-size: 0.88rem; color: var(--text-muted); font-weight: 600; }
.form-group input, .form-group textarea {
    width: 100%; padding: 13px 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: var(--text-color);
    font-family: var(--font-main);
    font-size: 0.95rem;
    transition: border-color var(--transition);
}
.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255,255,255,0.08);
}
.form-status { margin-top: 16px; text-align: center; font-size: 0.9rem; }

/* =============================================
   FOOTER
   ============================================= */
footer {
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid var(--glass-border);
    background: rgba(0,0,0,0.25);
}
footer p { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 6px; }
.footer-tagline { font-size: 0.82rem !important; }
.heart { color: var(--accent-color); }
.social-links { margin-top: 18px; display: flex; justify-content: center; gap: 15px; }
.social-links a {
    color: var(--text-muted); text-decoration: none;
    font-weight: 700; font-size: 0.85rem;
    transition: color var(--transition);
}
.social-links a:hover { color: var(--secondary-color); }

/* =============================================
   ANIMATIONS
   ============================================= */
.fade-in {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.85s ease, transform 0.85s ease;
}
.fade-in-right {
    opacity: 0;
    transform: translateX(35px);
    transition: opacity 0.85s ease, transform 0.85s ease;
}
.visible {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 992px) {
    .timeline-item, .timeline-item--right {
        justify-content: flex-start;
        padding-right: 0;
        padding-left: 70px;
    }
    .timeline-node {
        left: 0;
        transform: none;
    }
    .timeline-line { left: 26px; }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute; top: 100%; left: 0;
        width: 100%;
        background: rgba(15,15,21,0.97);
        backdrop-filter: blur(20px);
        flex-direction: column; align-items: center;
        padding: 24px 0;
        border-bottom: 1px solid var(--glass-border);
    }
    .nav-links.active { display: flex; }
    .hamburger { display: block; }

    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 140px;
        min-height: auto;
    }
    .description { max-width: 100%; }
    .cta-group { justify-content: center; }
    .hero-visual { width: 100%; margin-top: 30px; }
    .hero-card { max-width: 100%; }
    .hero-stats { gap: 8px; }
    .stat-number { font-size: 2.2rem; }

    .about-container { flex-direction: column; }
    .about-image { flex: none; width: 100%; max-width: 320px; align-self: center; }

    .timeline-item, .timeline-item--right {
        padding-left: 60px;
    }
    .timeline-node { width: 42px; height: 42px; top: 20px; }
    .timeline-node--5 { width: 48px; height: 48px; }
    .tl-node-year { font-size: 0.58rem; }
    .timeline-card { padding: 20px; }
    .tl-role { font-size: 1rem; }

    .journey-step, .journey-step--reverse {
        flex-direction: column; gap: 20px;
    }
    .journey-icon-wrapper { flex-direction: row; align-items: center; gap: 15px; width: 100%; }
    .journey-connector { width: 100%; height: 2px; min-height: unset; margin-top: 0; background: linear-gradient(90deg, var(--primary-color), var(--secondary-color)); }
    .journey-content { padding: 24px 20px; }
    .journey-content h3 { font-size: 1.3rem; }
    .journey-cta { padding: 36px 24px; }
    .journey-cta h3 { font-size: 1.3rem; }

    .section { padding: 100px 5%; }
    #contact-form { padding: 28px 22px; }

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