/*
Theme Name: Shaheer Nasir
Theme URI: https://shaheernasir.com
Author: Shaheer Nasir
Author URI: https://shaheernasir.com
Description: Personal portfolio theme for Shaheer Nasir — Entrepreneur & Publisher
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: shaheer-nasir
*/

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #07080C;
  --bg2: #0f1117;
  --bg3: #161a24;
  --accent: #6c63ff;
  --accent2: #00d4aa;
  --text: #e8eaf0;
  --muted: #8b92a5;
  --border: rgba(255,255,255,0.07);
  --card: rgba(255,255,255,0.04);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 5%;
  background: rgba(7,8,12,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-size: 1.25rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
}

.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #8b85ff);
  color: #fff !important;
  box-shadow: 0 4px 24px rgba(108,99,255,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(108,99,255,0.5); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-outline:hover { background: var(--card); border-color: rgba(255,255,255,0.15); }

/* NAV LOGO IMAGE */
.nav-logo-img {
  height: 38px;
  width: auto;
  display: block;
}

/* NAV LOGO TEXT */
.nav-logo-text {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}

.logo-first {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-last {
  color: var(--text);
  -webkit-text-fill-color: var(--text);
}

/* HERO */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  padding: 8rem 5% 4rem;
  position: relative;
}

#hero::before {
  content: '';
  position: absolute;
  top: -200px; left: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(108,99,255,0.15) 0%, transparent 70%);
  pointer-events: none;
}

#hero::after {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,212,170,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 1; }

/* HERO NETWORK */
.hero-network {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.net-grid {
  display: grid;
  grid-template-columns: 110px 90px 110px;
  grid-template-rows: 110px 90px 110px;
  gap: 0;
}

/* Brand nodes */
.net-node {
  width: 110px; height: 110px;
  border-radius: 50%;
  background: var(--nb);
  border: 1.5px solid var(--ns);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: default;
}

.net-node:hover {
  transform: scale(1.07);
  box-shadow: 0 0 20px var(--nb);
}

.nn-icon { font-size: 1.4rem; margin-bottom: 4px; line-height: 1; }

.nn-name {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--nc);
  line-height: 1.2;
  margin-bottom: 2px;
}

.nn-stat {
  font-size: 0.55rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.4;
}

/* Spacer cells with dashed connector lines */
.net-spacer {
  display: flex;
  align-items: center;
  justify-content: center;
}

.net-spacer--top,
.net-spacer--bottom {
  flex-direction: column;
}

.net-spacer--top::after,
.net-spacer--bottom::before {
  content: '';
  width: 1px;
  height: 100%;
  border-left: 1.5px dashed rgba(108,99,255,0.25);
}

.net-spacer--left::after,
.net-spacer--right::before {
  content: '';
  height: 1px;
  width: 100%;
  border-top: 1.5px dashed rgba(108,99,255,0.25);
}

/* Center node */
.net-center-node {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: rgba(108,99,255,0.14);
  border: 2px solid rgba(108,99,255,0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  box-shadow: 0 0 35px rgba(108,99,255,0.35);
}

.ncn-glow {
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108,99,255,0.18), transparent 70%);
  pointer-events: none;
}

.ncn-initials {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  position: relative;
}

.ncn-label {
  font-size: 0.5rem;
  color: rgba(255,255,255,0.5);
  margin-top: 3px;
  line-height: 1.2;
  position: relative;
}

/* Footer pill */
.net-footer-pill {
  background: rgba(108,99,255,0.1);
  border: 1px solid rgba(108,99,255,0.22);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.45);
  white-space: nowrap;
}

@media (max-width: 960px) {
  #hero { grid-template-columns: 1fr; padding-bottom: 3rem; }
  .hero-network { margin-top: 2rem; }
}

/* HERO STATS PANEL */
.hero-stats-panel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 420px;
}

.hsp-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 1.3rem 1.5rem;
  transition: border-color 0.3s, transform 0.3s;
}

.hsp-card:hover {
  border-color: rgba(108,99,255,0.35);
  transform: translateY(-2px);
}

.hsp-big { padding: 1.6rem 1.8rem; }

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

.hsp-icon { font-size: 1.4rem; margin-bottom: 0.5rem; }

.hsp-num {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.hsp-big .hsp-num { font-size: 2.6rem; }

.hsp-label {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 0.8rem;
}

.hsp-bar {
  height: 3px;
  background: rgba(255,255,255,0.07);
  border-radius: 10px;
  overflow: hidden;
}

.hsp-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  border-radius: 10px;
  width: 0;
  animation: barGrow 1.5s ease forwards 0.5s;
}

@keyframes barGrow {
  from { width: 0 !important; }
}

.hsp-live {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--muted);
  padding: 0 0.2rem;
}

.hsp-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent2);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

.hero-photo-box {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4/5;
  border-radius: 28px;
  overflow: hidden;
  cursor: pointer;
  background: linear-gradient(135deg, var(--bg3), var(--bg2));
  border: 1px solid var(--border);
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px var(--border);
}

/* decorative glow ring */
.hero-photo-box::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  z-index: -1;
  opacity: 0.4;
}

.hero-photo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: none;
  border-radius: 28px;
}

.hero-illustration {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-upload-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  opacity: 0;
  transition: opacity 0.25s;
  border-radius: 28px;
  cursor: pointer;
}

.hero-photo-box:hover .hero-upload-overlay { opacity: 1; }
.hero-upload-overlay .uo-icon { font-size: 2rem; }
.hero-upload-overlay .uo-text { font-size: 0.85rem; color: #fff; font-weight: 600; }
.hero-upload-overlay .uo-sub { font-size: 0.72rem; color: rgba(255,255,255,0.6); }

/* floating badges on photo */
.hero-badge-float {
  position: absolute;
  background: rgba(15,17,23,0.92);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 0.7rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 10;
  white-space: nowrap;
}

.hero-badge-float.bottom-left { bottom: 10px; left: 0; }
.hero-badge-float.top-right   { top: 10px; right: 0; }

.hbf-icon { font-size: 1.3rem; }
.hbf-text strong { display: block; font-size: 0.82rem; font-weight: 700; color: var(--text); }
.hbf-text span { font-size: 0.72rem; color: var(--muted); }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(108,99,255,0.12);
  border: 1px solid rgba(108,99,255,0.3);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

h1 span {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

.stats { display: flex; gap: 2.5rem; margin-top: 3rem; flex-wrap: wrap; }
.stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: 0.8rem; color: var(--muted); font-weight: 500; }

/* SECTIONS */
section { padding: 6rem 5%; }

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-desc {
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 3rem;
  font-size: 1.05rem;
}

/* ABOUT */
#about { background: var(--bg2); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}

.about-avatar {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--bg3), var(--bg));
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.about-avatar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(108,99,255,0.1), rgba(0,212,170,0.05));
  z-index: 1;
}

.about-avatar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 24px;
  z-index: 0;
}

.upload-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  opacity: 0;
  transition: opacity 0.25s;
  z-index: 2;
  border-radius: 24px;
}

.about-avatar:hover .upload-overlay { opacity: 1; }
.upload-overlay span { font-size: 0.78rem; color: #fff; font-weight: 600; letter-spacing: 0.05em; }
.upload-overlay .upload-icon { font-size: 1.8rem; }

.about-text p { color: var(--muted); margin-bottom: 1.2rem; font-size: 1rem; line-height: 1.8; }

.about-tags { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.5rem; }
.tag {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.4rem 0.9rem;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
}

/* SKILLS */
#skills { background: var(--bg); }

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

.skill-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.8rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.skill-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  opacity: 0;
  transition: opacity 0.3s;
}

.skill-card:hover { transform: translateY(-4px); border-color: rgba(108,99,255,0.3); }
.skill-card:hover::before { opacity: 1; }
.skill-icon { font-size: 2rem; margin-bottom: 1rem; }
.skill-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; }
.skill-card p { font-size: 0.87rem; color: var(--muted); line-height: 1.6; }

/* PROJECTS */
#projects { background: var(--bg2); }

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

.project-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s;
}

.project-card:hover { transform: translateY(-5px); border-color: rgba(108,99,255,0.3); box-shadow: 0 20px 60px rgba(0,0,0,0.3); }

.project-header { padding: 1.8rem 1.8rem 1rem; display: flex; align-items: center; gap: 1rem; }

.project-logo {
  width: 50px; height: 50px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; flex-shrink: 0;
}

.project-card h3 { font-size: 1.05rem; font-weight: 700; }
.project-card .proj-url { font-size: 0.78rem; color: var(--accent2); text-decoration: none; }
.project-body { padding: 0 1.8rem 1.5rem; }
.project-body p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; margin-bottom: 1rem; }

.project-stats { display: flex; gap: 1.2rem; }
.ps { font-size: 0.78rem; color: var(--muted); }
.ps strong { display: block; font-size: 0.95rem; color: var(--text); font-weight: 700; }

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

.status-dot {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.75rem; color: var(--accent2); font-weight: 600;
}
.status-dot::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--accent2); }

.proj-link { font-size: 0.8rem; color: var(--muted); text-decoration: none; font-weight: 500; transition: color 0.2s; }
.proj-link:hover { color: var(--accent); }

/* CONTACT SECTION */
#contact { background: var(--bg); }
.contact-wrap { max-width: 640px; }
.contact-links { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }

.contact-item {
  display: flex; align-items: center; gap: 1rem;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 14px; padding: 1.2rem 1.5rem;
  text-decoration: none; color: var(--text); transition: all 0.2s;
}
.contact-item:hover { border-color: rgba(108,99,255,0.4); background: rgba(108,99,255,0.06); }
.contact-icon { width: 42px; height: 42px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.contact-info { flex: 1; }
.contact-info strong { display: block; font-size: 0.9rem; font-weight: 600; }
.contact-info span { font-size: 0.82rem; color: var(--muted); }
.contact-arrow { color: var(--muted); font-size: 1.1rem; }

/* CONTACT PAGE */
.page-hero {
  padding: 10rem 5% 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(108,99,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.contact-section {
  padding: 2rem 5% 6rem;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-info h2 { font-size: 1.4rem; font-weight: 700; margin-bottom: 0.5rem; }
.contact-info > p { color: var(--muted); font-size: 0.92rem; margin-bottom: 2rem; line-height: 1.7; }
.info-cards { display: flex; flex-direction: column; gap: 1rem; }

.info-card {
  display: flex; align-items: center; gap: 1rem;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 14px; padding: 1.1rem 1.3rem;
  text-decoration: none; color: var(--text); transition: all 0.2s;
}
.info-card:hover { border-color: rgba(108,99,255,0.4); background: rgba(108,99,255,0.06); transform: translateX(4px); }
.info-icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.info-text strong { display: block; font-size: 0.88rem; font-weight: 600; margin-bottom: 0.1rem; }
.info-text span { font-size: 0.8rem; color: var(--muted); }
.info-arrow { margin-left: auto; color: var(--muted); font-size: 1rem; }
.divider { border: none; border-top: 1px solid var(--border); margin: 1.8rem 0; }
.socials-label { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 1rem; }
.social-pills { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.social-pill {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 50px; padding: 0.45rem 1rem;
  font-size: 0.8rem; color: var(--muted); text-decoration: none; font-weight: 500; transition: all 0.2s;
}
.social-pill:hover { border-color: rgba(108,99,255,0.4); color: var(--text); }

.contact-form-wrap {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; padding: 2.5rem;
}
.contact-form-wrap h2 { font-size: 1.3rem; font-weight: 700; margin-bottom: 0.4rem; }
.contact-form-wrap > p { color: var(--muted); font-size: 0.87rem; margin-bottom: 2rem; }

.form-group { margin-bottom: 1.2rem; }
label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--muted); margin-bottom: 0.5rem; }
input, textarea, select {
  width: 100%; background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: 10px; padding: 0.85rem 1rem; color: var(--text);
  font-family: 'Inter', sans-serif; font-size: 0.9rem; outline: none;
  transition: border-color 0.2s, box-shadow 0.2s; resize: none;
}
input::placeholder, textarea::placeholder { color: var(--muted); opacity: 0.6; }
input:focus, textarea:focus, select:focus { border-color: rgba(108,99,255,0.5); box-shadow: 0 0 0 3px rgba(108,99,255,0.1); }
select option { background: var(--bg2); }
textarea { min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.submit-btn {
  width: 100%; padding: 0.95rem; border-radius: 10px;
  font-size: 0.95rem; font-weight: 700;
  background: linear-gradient(135deg, var(--accent), #8b85ff);
  color: #fff; border: none; cursor: pointer;
  box-shadow: 0 4px 24px rgba(108,99,255,0.35);
  transition: all 0.2s; margin-top: 0.5rem; font-family: 'Inter', sans-serif;
}
.submit-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(108,99,255,0.5); }
.form-note { text-align: center; font-size: 0.75rem; color: var(--muted); margin-top: 0.9rem; }

.success-msg { display: none; text-align: center; padding: 2rem; }
.success-msg .checkmark { font-size: 3rem; margin-bottom: 1rem; }
.success-msg h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.5rem; }
.success-msg p { font-size: 0.87rem; color: var(--muted); }

/* FOOTER */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 2rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logo {
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
footer p { font-size: 0.82rem; color: var(--muted); }

/* RESPONSIVE */
@media (max-width: 900px) {
  #hero { grid-template-columns: 1fr; }
  .hero-photo-wrap { order: -1; }
  .hero-photo-box { max-width: 300px; }
  .hero-badge-float.bottom-left { left: 0; }
  .hero-badge-float.top-right { right: 0; }
}
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-avatar { max-width: 240px; margin: 0 auto; }
  .nav-links { display: none; }
  .stats { gap: 1.5rem; }
  .contact-section { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
}
