/* ══════════════════════════════════════════════════════════
     HERO SECTION
  ══════════════════════════════════════════════════════════ */
  #hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 5rem;
  }

  /* Animated background grid */
  #hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(0,212,255,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0,212,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
    animation: gridMove 20s linear infinite;
  }

  @keyframes gridMove {
    0%   { background-position: 0 0, 0 0; }
    100% { background-position: 60px 60px, 60px 60px; }
  }

  /* Glowing orbs */
  .hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
  }

  .hero-orb-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(0,212,255,0.12), transparent 70%);
    top: -100px; right: -100px;
    animation: orbFloat 8s ease-in-out infinite;
  }

  .hero-orb-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(123,94,167,0.15), transparent 70%);
    bottom: -50px; left: -50px;
    animation: orbFloat 10s ease-in-out infinite reverse;
  }

  .hero-orb-3 {
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(255,107,107,0.1), transparent 70%);
    top: 40%; left: 40%;
    animation: orbFloat 6s ease-in-out infinite;
  }

  @keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%       { transform: translate(30px, -20px) scale(1.05); }
    66%       { transform: translate(-20px, 20px) scale(0.95); }
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }

  .hero-left {}

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0,212,255,0.08);
    border: 1px solid rgba(0,212,255,0.2);
    border-radius: 50px;
    padding: 0.375rem 1rem;
    font-size: 0.8rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    animation: fadeSlideDown 0.8s ease forwards;
  }

  .hero-badge::before {
    content: '';
    width: 7px; height: 7px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s ease infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(1.4); }
  }

  .hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.25rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.04em;
    color: var(--white);
    margin-bottom: 1.5rem;
    animation: fadeSlideUp 0.9s 0.2s ease forwards;
    opacity: 0;
  }

  .hero-title .line { display: block; overflow: hidden; }

  .hero-title .highlight {
    background: linear-gradient(135deg, var(--accent), #7b5ea7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .hero-title .outline-text {
    -webkit-text-stroke: 1.5px rgba(255,255,255,0.25);
    color: transparent;
  }

  .hero-desc {
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 460px;
    line-height: 1.75;
    margin-bottom: 2.5rem;
    animation: fadeSlideUp 0.9s 0.35s ease forwards;
    opacity: 0;
  }

  .hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeSlideUp 0.9s 0.5s ease forwards;
    opacity: 0;
  }

  .hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    animation: fadeSlideUp 0.9s 0.65s ease forwards;
    opacity: 0;
  }

  .stat-item {}

  .stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
  }

  .stat-number span { color: var(--accent); }

  .stat-label {
    font-size: 0.8rem;
    color: var(--muted);
    margin-top: 0.25rem;
  }

  /* Hero Right — Avatar */
  .hero-right {
    display: flex;
    justify-content: center;
    animation: fadeSlideUp 1s 0.3s ease forwards;
    opacity: 0;
  }

  .hero-avatar-wrap {
    position: relative;
    width: 340px;
    height: 340px;
  }

  .avatar-ring {
    position: absolute; inset: -20px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, var(--accent), var(--accent2), var(--accent3), var(--accent));
    animation: spin 8s linear infinite;
    opacity: 0.5;
  }

  .avatar-ring::before {
    content: '';
    position: absolute; inset: 3px;
    background: var(--bg);
    border-radius: 50%;
  }

  @keyframes spin { to { transform: rotate(360deg); } }

  .avatar-img {
    position: absolute; inset: 0;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--bg);
    background: linear-gradient(135deg, var(--bg2), var(--bg3));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: var(--muted);
  }

  .avatar-img img {
    width: 100%; height: 100%;
    object-fit: cover;
  }

  /* Floating skill badges */
  .float-badge {
    position: absolute;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 0.5rem 0.875rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 0.375rem;
    white-space: nowrap;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    animation: floatBadge 3s ease-in-out infinite;
  }

  .float-badge i { font-size: 1rem; }
  .float-badge-1 { top: 10%; right: -30px; animation-delay: 0s; }
  .float-badge-2 { bottom: 20%; right: -20px; animation-delay: 0.7s; }
  .float-badge-3 { bottom: 5%;  left: -20px; animation-delay: 1.4s; }

  @keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
  }

  /* scroll indicator */
  .scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: fadeIn 1s 1.5s ease forwards;
    opacity: 0;
    z-index: 2;
  }

  .scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollLine 2s ease-in-out infinite;
  }

  @keyframes scrollLine {
    0%   { transform: scaleY(0); transform-origin: top; }
    50%  { transform: scaleY(1); transform-origin: top; }
    51%  { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
  }

  @keyframes fadeSlideDown {
    from { opacity: 0; transform: translateY(-15px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn {
    to { opacity: 1; }
  }

  /* ══════════════════════════════════════════════════════════
     ABOUT SECTION
  ══════════════════════════════════════════════════════════ */
  #about {
    background: var(--bg2);
    position: relative;
    z-index: 1;
  }

  #about::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(0,212,255,0.04), transparent);
    pointer-events: none;
  }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
    align-items: center;
  }

  .about-image-wrap {
    position: relative;
  }

  .about-image-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg3), var(--bg));
    aspect-ratio: 4/5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--muted);
    border: 1px solid var(--border);
    position: relative;
  }

  .about-image-frame img {
    width: 100%; height: 100%;
    object-fit: cover;
  }

  .about-image-frame::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(8,12,20,0.5), transparent);
  }

  .about-accent-box {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: var(--accent);
    color: var(--bg);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    box-shadow: 0 8px 30px rgba(0,212,255,0.3);
  }

  .about-accent-box .num {
    font-size: 2rem;
    display: block;
  }

  .about-accent-box .lbl {
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0.85;
  }

  /* .about-text {} */

  .about-text p {
    color: var(--muted);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
  }

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

  .about-traits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    margin: 2rem 0;
  }

  .trait-tag {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 0.375rem 1rem;
    font-size: 0.82rem;
    color: var(--text);
    transition: var(--transition);
  }

  .trait-tag:hover {
    border-color: var(--accent);
    color: var(--accent);
  }

  .about-cta {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 2rem;
  }

  /* ══════════════════════════════════════════════════════════
     SKILLS SECTION
  ══════════════════════════════════════════════════════════ */
  /* #skills {} */

  .skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3.5rem;
  }

  .skill-category {
    padding: 2rem;
  }

  .skill-cat-header {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    margin-bottom: 1.75rem;
  }

  .skill-cat-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    background: rgba(0,212,255,0.1);
    color: var(--accent);
    flex-shrink: 0;
  }

  .skill-cat-icon.purple { background: rgba(123,94,167,0.15); color: var(--accent2); }
  .skill-cat-icon.coral  { background: rgba(255,107,107,0.1); color: var(--accent3); }

  .skill-cat-name {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
  }

  .skill-list {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
  }

  /* .skill-item {} */

  .skill-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.375rem;
  }

  .skill-name {
    font-size: 0.875rem;
    color: var(--text);
    font-weight: 500;
  }

  .skill-pct {
    font-size: 0.78rem;
    color: var(--muted);
  }

  .skill-bar-track {
    height: 4px;
    background: var(--surface);
    border-radius: 4px;
    overflow: hidden;
  }

  .skill-bar-fill {
    height: 100%;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    width: 0;
    transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .skill-bar-fill.purple { background: linear-gradient(90deg, var(--accent2), #a78bda); }
  .skill-bar-fill.coral  { background: linear-gradient(90deg, var(--accent3), #ff9a9a); }

  /* tech tags */
  .tech-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 3.5rem;
  }

  .tech-tag {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-size: 0.82rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 0.375rem;
    transition: var(--transition);
    cursor: default;
  }

  .tech-tag:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
  }

  .tech-tag i { font-size: 1rem; }

  /* ══════════════════════════════════════════════════════════
     PROJECTS SECTION
  ══════════════════════════════════════════════════════════ */
  #projects {
    background: var(--bg2);
    position: relative;
  }

  .projects-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  /* Filter tabs */
  .project-filters {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  .filter-btn {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 0.4rem 1rem;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--muted);
    cursor: pointer;
    transition: var(--transition);
  }

  .filter-btn:hover,
  .filter-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg);
  }

  /* Project Grid */
  .projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.5rem;
  }

  /* ─ Individual Project Card ─────────────────────────────── */
  .project-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    flex-direction: column;
  }

  .project-card:hover {
    border-color: rgba(0,212,255,0.25);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4), var(--glow);
  }

  .project-thumb {
    height: 200px;
    background: linear-gradient(135deg, var(--bg3), var(--bg));
    position: relative;
    overflow: hidden;
  }

  .project-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }

  .project-card:hover .project-thumb img {
    transform: scale(1.05);
  }

  .project-thumb-placeholder {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: var(--border);
    background: linear-gradient(135deg, var(--bg2) 0%, var(--bg3) 100%);
  }

  .project-overlay {
    position: absolute; inset: 0;
    background: rgba(8,12,20,0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    transition: var(--transition);
  }

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

  .project-overlay a {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--white);
    color: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
  }

  .project-overlay a:hover { transform: scale(1.1); background: var(--accent); }

  .project-featured-badge {
    position: absolute;
    top: 1rem; left: 1rem;
    background: var(--accent);
    color: var(--bg);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.25rem 0.625rem;
    border-radius: 4px;
  }

  .project-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .project-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.875rem;
  }

  .project-tag {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--accent);
    background: rgba(0,212,255,0.08);
    border-radius: 4px;
    padding: 0.2rem 0.5rem;
  }

  .project-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.625rem;
    line-height: 1.3;
  }

  .project-desc {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.65;
    flex: 1;
    margin-bottom: 1.25rem;
  }

  .project-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
  }

  .project-tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    flex: 1;
  }

  .project-tech-stack span {
    font-size: 0.72rem;
    color: var(--muted);
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 0.15rem 0.45rem;
  }

  .project-links {
    display: flex;
    gap: 0.625rem;
  }

  .project-links a {
    color: var(--muted);
    font-size: 0.95rem;
    transition: var(--transition);
  }

  .project-links a:hover { color: var(--accent); }

  /* featured card (full width) */
  .project-card.featured {
    grid-column: 1 / -1;
    flex-direction: row;
  }

  .project-card.featured .project-thumb {
    width: 45%;
    height: auto;
    flex-shrink: 0;
    min-height: 240px;
  }

  .project-card.featured .project-body {
    padding: 2rem;
  }

  .project-card.featured .project-title { font-size: 1.4rem; }

  /* ══════════════════════════════════════════════════════════
     EXPERIENCE & EDUCATION SECTION
  ══════════════════════════════════════════════════════════ */
  /* #experience {} */

  .exp-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 3rem;
  }

  .exp-tab {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--muted);
    cursor: pointer;
    transition: var(--transition);
  }

  .exp-tab.active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg);
  }

  .exp-panel { display: none; }
  .exp-panel.active { display: block; }

  /* Timeline */
  .timeline {
    position: relative;
    padding-left: 2rem;
  }

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

  /* ─ Timeline Item — rendered by Django loop ─────────────── */
  .timeline-item {
    position: relative;
    padding: 0 0 2.5rem 2rem;
  }

  .timeline-item:last-child { padding-bottom: 0; }

  .timeline-dot {
    position: absolute;
    left: -2.5rem;
    top: 6px;
    width: 14px; height: 14px;
    border-radius: 50%;
    background: var(--accent);
    border: 3px solid var(--bg);
    box-shadow: 0 0 0 4px rgba(0,212,255,0.15);
    transition: var(--transition);
  }

  .timeline-item:hover .timeline-dot {
    box-shadow: 0 0 0 8px rgba(0,212,255,0.1);
  }

  .timeline-dot.education {
    background: var(--accent2);
    box-shadow: 0 0 0 4px rgba(123,94,167,0.15);
  }

  .timeline-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: var(--transition);
  }

  .timeline-card:hover {
    border-color: rgba(0,212,255,0.2);
    transform: translateX(4px);
  }

  .timeline-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.625rem;
  }

  .timeline-period {
    font-size: 0.78rem;
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 0.05em;
    background: rgba(0,212,255,0.08);
    padding: 0.2rem 0.625rem;
    border-radius: 4px;
  }

  .timeline-period.education {
    color: var(--accent2);
    background: rgba(123,94,167,0.1);
  }

  .timeline-company {
    font-size: 0.82rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 0.35rem;
  }

  .timeline-role {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.375rem;
  }

  .timeline-desc {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.65;
  }

  .timeline-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.875rem;
  }

  .timeline-skill-tag {
    font-size: 0.72rem;
    color: var(--muted);
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 0.175rem 0.45rem;
  }

  /* Modal Image View Css */
  .modal {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;

    background-color: rgba(0, 0, 0, 0.85);

    display: none;
    justify-content: center;
    align-items: center;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    }

    .modal-content {
    max-width: 80%;
    max-height: 80%;
    transform: scale(1);
    transition: transform 0.3s ease;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    }

    /* Navigation buttons */
    .nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: none;

    color: white;
    font-size: 28px;

    padding: 12px 16px;
    cursor: pointer;
    border-radius: 50%;

    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);

    width: 60px;    
    }

    .nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.15);
    }

    .prev {
    left: 20px;
    }

    .next {
    right: 20px;
    }

  /* ══════════════════════════════════════════════════════════
     CONTACT SECTION
  ══════════════════════════════════════════════════════════ */
  #contact {
    background: var(--bg2);
    position: relative;
    overflow: hidden;
  }

  #contact::before {
    content: '';
    position: absolute;
    bottom: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(0,212,255,0.06), transparent 70%);
    pointer-events: none;
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: start;
  }
/* 
  .contact-info {} */

  .contact-info h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.03em;
    margin: 1rem 0;
    line-height: 1.2;
  }

  .contact-info p {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 2rem;
  }

  .contact-links {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
  }

  .contact-link-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text);
    transition: var(--transition);
  }

  .contact-link-item:hover { color: var(--accent); transform: translateX(4px); }

  .contact-link-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    background: var(--surface);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: var(--transition);
  }

  .contact-link-item:hover .contact-link-icon {
    background: rgba(0,212,255,0.1);
    border-color: rgba(0,212,255,0.3);
    color: var(--accent);
  }

  .contact-link-text {
    font-size: 0.9rem;
  }

  .contact-link-label {
    color: var(--muted);
    font-size: 0.75rem;
    margin-bottom: 0.1rem;
  }

  /* Contact Form */
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }

  .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .form-group label {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--muted);
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.875rem 1rem;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition);
    outline: none;
    resize: none;
  }

  .form-group input:focus,
  .form-group textarea:focus {
    border-color: var(--accent);
    background: rgba(0,212,255,0.04);
    box-shadow: 0 0 0 3px rgba(0,212,255,0.08);
  }

  .form-group textarea { min-height: 130px; }

  .form-submit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
  }

  /* ══════════════════════════════════════════════════════════
     RESPONSIVE
  ══════════════════════════════════════════════════════════ */
  @media (max-width: 1024px) {
    .project-card.featured { flex-direction: column; }
    .project-card.featured .project-thumb { width: 100%; height: 220px; }
  }

  @media (max-width: 768px) {
    .hero-content    { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
    .hero-right      { order: -1; }
    .hero-actions    { justify-content: center; }
    .hero-stats      { justify-content: center; }
    .hero-desc       { margin: 0 auto 2.5rem; }
    .hero-avatar-wrap { width: 240px; height: 240px; }
    .float-badge-1, .float-badge-2, .float-badge-3 { display: none; }

    .about-grid      { grid-template-columns: 1fr; }
    .about-image-wrap { display: none; }

    .projects-header { flex-direction: column; align-items: flex-start; }
    .projects-grid   { grid-template-columns: 1fr; }
    .project-card.featured { flex-direction: column; }

    .contact-grid    { grid-template-columns: 1fr; }
    .form-row        { grid-template-columns: 1fr; }
  }