/* ===== CSS Variables - Midnight Linen + Muted Teal + Warm Copper ===== */
:root {
    /* Backgrounds - deep ink, warm slate, never cold blue */
    --bg-primary: #0B1120;
    --bg-secondary: #111A2B;
    --bg-card: #161F33;
    --bg-card-hover: #1A253D;

    /* Primary accent - muted teal, trustworthy, organic */
    --accent-primary: #2A9D8F;
    --accent-secondary: #3DB8A8;
    --accent-muted: rgba(42, 157, 143, 0.06);
    --accent-border: rgba(42, 157, 143, 0.18);

    /* Secondary accent - warm copper, used sparingly for CTAs */
    --copper: #C87941;
    --copper-muted: rgba(200, 121, 65, 0.08);
    --copper-border: rgba(200, 121, 65, 0.2);

    /* Text - warm neutrals, never cold gray */
    --text-primary: #E8E4DC;
    --text-secondary: #9B9589;
    --text-muted: #6B6560;
    --text-subtle: #4A4540;

    /* Borders - barely there, organic */
    --border: rgba(255, 255, 255, 0.035);
    --border-hover: rgba(42, 157, 143, 0.12);

    /* Shadows - soft, grounded, natural depth */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.25);
    --shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 6px 20px rgba(0, 0, 0, 0.35);

    /* Transitions - slower, more deliberate */
    --transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    --transition-slow: all 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: rgba(42, 157, 143, 0.2);
    color: var(--text-primary);
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--text-subtle);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* ===== Utility Classes ===== */
.container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 32px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Buttons - Tactile, grounded ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.92rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: inherit;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: var(--copper);
    color: #fff;
    box-shadow: 0 2px 8px rgba(200, 121, 65, 0.2);
}

.btn-primary:hover {
    background: #D4894F;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(200, 121, 65, 0.3);
}

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

.btn-secondary:hover {
    border-color: var(--accent-border);
    color: var(--text-primary);
    background: var(--accent-muted);
}

/* ===== Navbar - Understated, grounded ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 32px;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(11, 17, 32, 0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom-color: var(--border);
}

.nav-container {
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.logo-dot {
    color: var(--accent-primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 36px;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.87rem;
    font-weight: 400;
    transition: var(--transition);
    position: relative;
    padding: 4px 0;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--copper);
    transition: var(--transition);
    border-radius: 1px;
}

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

.nav-cta {
    background: var(--copper);
    color: #fff;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.82rem;
    text-decoration: none;
    transition: var(--transition);
    letter-spacing: 0.01em;
}

.nav-cta:hover {
    background: #D4894F;
    transform: translateY(-1px);
    box-shadow: 0 2px 10px rgba(200, 121, 65, 0.25);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 22px;
    height: 1.5px;
    background: var(--text-secondary);
    transition: var(--transition);
    border-radius: 1px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(4.5px, 4.5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4.5px, -4.5px);
}

/* ===== Hero Section - Warm, grounded, no gimmicks ===== */
.hero {
    min-height: 95vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 100px 32px 80px;
    background: var(--bg-primary);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background: radial-gradient(ellipse at 75% 25%, rgba(42, 157, 143, 0.035) 0%, transparent 65%);
    pointer-events: none;
}

.hero-container {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-left {
    animation: fadeInUp 0.9s ease forwards;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(34, 197, 94, 0.05);
    border: 1px solid rgba(34, 197, 94, 0.12);
    border-radius: 50px;
    font-size: 0.8rem;
    color: #4ade80;
    margin-bottom: 28px;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.status-dot {
    width: 6px;
    height: 6px;
    background: #4ade80;
    border-radius: 50%;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 700;
    line-height: 1.12;
    margin-bottom: 18px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(0.95rem, 1.8vw, 1.15rem);
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-weight: 400;
    line-height: 1.6;
}

.hero-bio {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.85;
    margin-bottom: 36px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

/* Stats Row - Clean, static, grounded */
.stats-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px 26px;
    min-width: 110px;
    text-align: center;
    transition: var(--transition);
}

.stat-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-primary);
    display: block;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.stat-label {
    display: block;
    font-size: 0.74rem;
    color: var(--text-muted);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

/* Hero Right - Profile Image, natural feel */
.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 0.9s ease 0.2s forwards;
    opacity: 0;
}

.profile-wrapper {
    position: relative;
    width: 280px;
    height: 280px;
}

.profile-image {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--border);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.profile-image:hover {
    border-color: var(--accent-border);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
    filter: saturate(0.88) contrast(1.02);
}

.profile-image:hover img {
    transform: scale(1.03);
    filter: saturate(0.95) contrast(1.04);
}

/* Static badges - no animation */
.floating-badge {
    position: absolute;
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 7px 14px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: var(--shadow);
    letter-spacing: 0.01em;
}

.floating-badge i {
    color: var(--accent-primary);
    font-size: 0.85rem;
}

.badge-top {
    top: 16px;
    right: -10px;
}

.badge-bottom {
    bottom: 24px;
    right: -5px;
}

/* Hero Scroll Indicator - Subtle */
.hero-scroll {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
}

.hero-scroll a {
    color: var(--text-subtle);
    font-size: 1rem;
    transition: var(--transition);
}

.hero-scroll a:hover {
    color: var(--accent-primary);
}

/* ===== Section Styles - Consistent, breathing room ===== */
.section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-tag {
    display: inline-block;
    padding: 5px 14px;
    background: var(--accent-muted);
    border: 1px solid var(--accent-border);
    border-radius: 50px;
    font-size: 0.74rem;
    font-weight: 500;
    color: var(--accent-secondary);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 14px;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

/* ===== About Section ===== */
.about-section {
    background: var(--bg-secondary);
}

.about-content {
    max-width: 720px;
    margin: 0 auto;
}

.about-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.85;
    margin-bottom: 18px;
}

.about-content strong {
    color: var(--text-primary);
    font-weight: 500;
}

/* ===== Skills Section ===== */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.skill-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 32px;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.skill-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.skill-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.skill-icon {
    width: 44px;
    height: 44px;
    background: var(--accent-muted);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 1.1rem;
    color: var(--accent-primary);
    transition: var(--transition);
}

.skill-card:hover .skill-icon {
    background: var(--accent-primary);
    color: #fff;
}

.skill-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.skill-card p {
    font-size: 0.86rem;
    color: var(--text-muted);
    line-height: 1.75;
}

/* ===== Experience Section ===== */
.experience-section {
    background: var(--bg-secondary);
}

.timeline {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 8px;
    bottom: 0;
    width: 1.5px;
    background: linear-gradient(to bottom, var(--accent-primary), transparent);
    opacity: 0.25;
}

.timeline-item {
    position: relative;
    padding-left: 52px;
    padding-bottom: 32px;
}

.timeline-marker {
    position: absolute;
    left: 10px;
    top: 6px;
    width: 16px;
    height: 16px;
    background: var(--bg-primary);
    border: 2.5px solid var(--accent-primary);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(42, 157, 143, 0.06);
}

.timeline-content {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px;
    transition: var(--transition);
}

.timeline-content:hover {
    border-color: var(--border-hover);
}

.timeline-header {
    margin-bottom: 18px;
}

.timeline-header h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.timeline-company {
    display: block;
    color: var(--accent-secondary);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.timeline-date,
.timeline-location {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-right: 18px;
}

.timeline-list {
    list-style: none;
}

.timeline-list li {
    padding: 8px 0 8px 20px;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.87rem;
    line-height: 1.7;
}

.timeline-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    opacity: 0.5;
    font-weight: 300;
}

.timeline-list strong {
    color: var(--text-primary);
    font-weight: 500;
}

/* ===== Projects Section ===== */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
}

.project-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.project-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.project-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 18px;
    flex-wrap: wrap;
    gap: 10px;
}

.project-icon {
    width: 44px;
    height: 44px;
    background: var(--accent-muted);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--accent-primary);
}

.project-meta {
    text-align: right;
}

.project-role {
    display: block;
    font-size: 0.78rem;
    color: var(--accent-secondary);
    font-weight: 500;
    margin-bottom: 3px;
}

.project-tests {
    font-size: 0.78rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: flex-end;
}

.project-tests i {
    color: #4ade80;
    font-size: 0.7rem;
}

.project-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 3px;
    letter-spacing: -0.01em;
}

.project-type {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.project-card ul {
    list-style: none;
    margin-bottom: 18px;
}

.project-card li {
    padding: 6px 0 6px 20px;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.65;
}

.project-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    opacity: 0.6;
}

.project-card strong {
    color: var(--text-primary);
    font-weight: 500;
}

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

.project-tags span {
    padding: 4px 12px;
    background: var(--accent-muted);
    border: 1px solid var(--accent-border);
    border-radius: 50px;
    font-size: 0.72rem;
    color: var(--accent-secondary);
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* ===== Education Section ===== */
.education-section {
    background: var(--bg-secondary);
}

.education-card {
    max-width: 640px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 32px;
    display: flex;
    align-items: flex-start;
    gap: 22px;
    transition: var(--transition);
}

.education-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow);
}

.education-icon {
    width: 52px;
    height: 52px;
    background: var(--accent-muted);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--accent-primary);
    flex-shrink: 0;
}

.education-content h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.education-institution {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 6px;
}

.education-date {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.82rem;
    color: var(--accent-secondary);
    font-weight: 500;
}

/* ===== Certifications Section ===== */
.certs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

.cert-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px 18px;
    text-align: center;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.cert-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.cert-card:hover {
    border-color: var(--accent-border);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.cert-icon {
    width: 42px;
    height: 42px;
    background: var(--accent-muted);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 1rem;
    color: var(--accent-primary);
    transition: var(--transition);
}

.cert-card:hover .cert-icon {
    background: var(--accent-primary);
    color: #fff;
}

.cert-card h4 {
    font-size: 0.87rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
    line-height: 1.4;
}

.cert-card p {
    font-size: 0.77rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ===== Soft Skills Section ===== */
.softskills-section {
    background: var(--bg-secondary);
}

.softskills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.softskill-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 32px;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.softskill-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.softskill-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.softskill-icon {
    width: 44px;
    height: 44px;
    background: var(--accent-muted);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 1.1rem;
    color: var(--accent-primary);
    transition: var(--transition);
}

.softskill-card:hover .softskill-icon {
    background: var(--accent-primary);
    color: #fff;
}

.softskill-card h3 {
    font-size: 0.97rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.softskill-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.75;
}

/* ===== Languages Section ===== */
.languages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    max-width: 720px;
    margin: 0 auto;
}

.language-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px;
    text-align: center;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.language-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.language-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.language-flag {
    font-size: 2.4rem;
    display: block;
    margin-bottom: 14px;
    filter: saturate(0.85);
}

.language-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.language-card p {
    font-size: 0.84rem;
    color: var(--accent-secondary);
    font-weight: 500;
    margin-bottom: 3px;
}

.language-card p span {
    display: block;
    font-size: 0.77rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-top: 3px;
}

.language-bar {
    width: 100%;
    height: 4px;
    background: var(--bg-secondary);
    border-radius: 2px;
    margin-top: 14px;
    overflow: hidden;
}

.language-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 2px;
    transition: width 1.2s ease;
}

/* ===== Footer - Warm, understated ===== */
.footer {
    background: var(--bg-secondary);
    padding: 80px 0 40px;
    border-top: 1px solid var(--border);
}

.footer-content {
    text-align: center;
}

.footer-quote {
    max-width: 540px;
    margin: 0 auto 48px;
}

.footer-quote i {
    font-size: 1.5rem;
    color: var(--accent-primary);
    opacity: 0.35;
    margin-bottom: 14px;
}

.footer-quote p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 10px;
    font-weight: 300;
}

.footer-quote span {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 400;
}

.footer-contact {
    margin-bottom: 40px;
}

.footer-contact h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.footer-contact p {
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 0.9rem;
}

.footer-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.footer-socials a {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1rem;
    transition: var(--transition);
    text-decoration: none;
}

.footer-socials a:hover {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: #fff;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
}

.footer-bottom p {
    color: var(--text-subtle);
    font-size: 0.82rem;
}

.footer-made {
    margin-top: 6px;
}

.footer-made i {
    color: var(--copper);
    opacity: 0.7;
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 56px;
    }

    .hero-left {
        order: 2;
    }

    .hero-right {
        order: 1;
    }

    .hero-bio {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .stats-row {
        justify-content: center;
    }

    .profile-wrapper {
        width: 240px;
        height: 240px;
    }

    .floating-badge {
        font-size: 0.72rem;
        padding: 5px 10px;
    }

    .badge-top {
        right: -5px;
    }

    .badge-bottom {
        right: 0;
        bottom: 18px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(11, 17, 32, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 28px 24px;
        gap: 18px;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
        border-bottom: 1px solid var(--border);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .section {
        padding: 64px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

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

    .certs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline::before {
        left: 14px;
    }

    .timeline-item {
        padding-left: 42px;
    }

    .timeline-marker {
        left: 6px;
        width: 14px;
        height: 14px;
    }

    .education-card {
        flex-direction: column;
        text-align: center;
    }

    .education-icon {
        margin: 0 auto;
    }

    .project-header {
        flex-direction: column;
        text-align: left;
    }

    .project-meta {
        text-align: left;
    }

    .project-tests {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 90px 20px 60px;
    }

    .container {
        padding: 0 20px;
    }

    .stat-card {
        padding: 14px 18px;
        min-width: 90px;
    }

    .stat-number,
    .stat-suffix {
        font-size: 1.5rem;
    }

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

    .profile-wrapper {
        width: 200px;
        height: 200px;
    }

    .floating-badge {
        display: none;
    }

    .btn {
        padding: 11px 22px;
        font-size: 0.88rem;
    }

    .timeline-content {
        padding: 20px;
    }

    .skill-card,
    .project-card,
    .softskill-card {
        padding: 22px;
    }
}

/* ===== Animation Utilities - Subtle, one-time ===== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays - natural, not robotic */
[data-delay="0"] { transition-delay: 0ms; }
[data-delay="50"] { transition-delay: 60ms; }
[data-delay="100"] { transition-delay: 120ms; }
[data-delay="150"] { transition-delay: 180ms; }
[data-delay="200"] { transition-delay: 240ms; }
[data-delay="250"] { transition-delay: 300ms; }
[data-delay="300"] { transition-delay: 360ms; }
[data-delay="350"] { transition-delay: 420ms; }
[data-delay="400"] { transition-delay: 480ms; }
[data-delay="450"] { transition-delay: 540ms; }
[data-delay="500"] { transition-delay: 600ms; }
[data-delay="600"] { transition-delay: 720ms; }
