/* ════════════════════════════════════════════════
   ENAD H. KANAAN — Personal Portfolio
   Theme: Bright · Royal Blue (#1a4fd6) + Silver (#c8d4e8)
   ════════════════════════════════════════════════ */

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

:root {
  /* ── Palette ── */
  --royal:       #1a4fd6;
  --royal-dark:  #1240b0;
  --royal-light: #2e63f0;
  --royal-pale:  #e8eeff;
  --royal-mid:   #d0dbff;

  --silver:      #c8d4e8;
  --silver-dark: #8fa3c0;
  --silver-light:#f0f4fb;
  --silver-pale: #f8fafd;

  --white:       #ffffff;
  --text-dark:   #0d1a35;
  --text-mid:    #3a4d6b;
  --text-soft:   #6b7fa0;

  --border:      #d8e2f4;
  --border-2:    #c0cfea;

  --shadow-sm:   0 2px 12px rgba(26,79,214,0.10);
  --shadow-md:   0 6px 28px rgba(26,79,214,0.14);
  --shadow-lg:   0 16px 56px rgba(26,79,214,0.18);
  --shadow-xl:   0 28px 80px rgba(26,79,214,0.22);

  --radius:      16px;
  --radius-sm:   10px;
  --radius-lg:   24px;
  --radius-xl:   32px;

  --font-sans:   'Inter', system-ui, sans-serif;
  --font-disp:   'Space Grotesk', system-ui, sans-serif;
}

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

body {
  background: var(--white);
  color: var(--text-dark);
  font-family: var(--font-sans);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
strong { font-weight: 700; }
em { font-style: italic; color: var(--royal); }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--silver-pale); }
::-webkit-scrollbar-thumb { background: var(--royal); border-radius: 3px; }

/* ── Container ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }

/* ── Section Shared ── */
.section { padding: 110px 0; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--royal);
  margin-bottom: 14px;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 26px; height: 2px;
  background: var(--royal);
  border-radius: 1px;
}
.section-eyebrow.light { color: rgba(255,255,255,0.75); }
.section-eyebrow.light::before { background: rgba(255,255,255,0.6); }

.section-title {
  font-family: var(--font-disp);
  font-size: clamp(2rem, 3.8vw, 2.9rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 48px;
}
.section-title.small { font-size: clamp(1.5rem, 2.8vw, 2rem); }
.section-title.light { color: var(--white); }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  transition: all 0.3s ease;
}
.nav.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 14px 48px;
  box-shadow: var(--shadow-sm);
}
.nav-logo {
  font-family: var(--font-disp);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--royal);
  letter-spacing: -0.02em;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--royal); }
.nav-cta {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 50px;
  background: var(--royal);
  color: var(--white);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(26,79,214,0.3);
}
.nav-cta:hover {
  background: var(--royal-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(26,79,214,0.4);
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-dark);
  border-radius: 1px;
  transition: all 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  background: linear-gradient(145deg, #f0f5ff 0%, #e4eeff 40%, #dce8ff 100%);
  padding-top: 90px;
  position: relative;
  overflow: hidden;
}
.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
}
.shape-1 {
  width: 700px; height: 700px;
  background: var(--royal);
  top: -200px; right: -200px;
  filter: blur(80px);
}
.shape-2 {
  width: 400px; height: 400px;
  background: var(--royal-light);
  bottom: 60px; left: -100px;
  filter: blur(60px);
  opacity: 0.08;
}
.shape-3 {
  width: 300px; height: 300px;
  background: var(--silver);
  top: 50%; left: 40%;
  filter: blur(50px);
  opacity: 0.2;
}
.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--royal) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.05;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  padding-top: 70px;
  padding-bottom: 60px;
}

/* ── Hero Content ── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--royal);
  background: rgba(26,79,214,0.1);
  border: 1px solid rgba(26,79,214,0.2);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  animation: fadeUp 0.6s ease both;
}
.badge-dot {
  width: 7px; height: 7px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.5; transform:scale(1.5); }
}

.hero-title {
  font-family: var(--font-disp);
  font-size: clamp(3.2rem, 7vw, 6rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.line-1 {
  display: block;
  color: var(--text-dark);
  animation: fadeUp 0.7s 0.1s ease both;
}
.line-2 {
  display: block;
  color: var(--royal);
  animation: fadeUp 0.7s 0.2s ease both;
}
@keyframes fadeUp {
  from { opacity:0; transform:translateY(24px); }
  to   { opacity:1; transform:translateY(0); }
}

.hero-role {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-mid);
  margin-bottom: 10px;
  animation: fadeUp 0.7s 0.3s ease both;
}
.hero-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  color: var(--text-soft);
  margin-bottom: 24px;
  animation: fadeUp 0.7s 0.35s ease both;
}
.hero-summary {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 36px;
  animation: fadeUp 0.7s 0.4s ease both;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.5s ease both;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 50px;
  transition: all 0.22s ease;
  cursor: pointer;
}
.btn-primary {
  background: var(--royal);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(26,79,214,0.35);
}
.btn-primary:hover {
  background: var(--royal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26,79,214,0.45);
}
.btn-outline {
  background: var(--white);
  color: var(--royal);
  border: 2px solid var(--royal);
}
.btn-outline:hover {
  background: var(--royal-pale);
  transform: translateY(-2px);
}

/* ── Hero Photo ── */
.hero-photo-wrap {
  position: relative;
  width: 360px;
  height: 420px;
  flex-shrink: 0;
  animation: fadeUp 0.8s 0.3s ease both;
}
.photo-ring-outer {
  position: absolute;
  inset: -16px;
  border-radius: var(--radius-xl);
  border: 2px dashed rgba(26,79,214,0.2);
  animation: spinSlow 20s linear infinite;
}
.photo-ring-inner {
  position: absolute;
  inset: -6px;
  border-radius: calc(var(--radius-xl) - 4px);
  border: 2px solid rgba(26,79,214,0.12);
}
@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.photo-frame {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(160deg, var(--royal-pale), var(--royal-mid));
  box-shadow: var(--shadow-xl);
  border: 3px solid var(--white);
}
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.photo-badge {
  position: absolute;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  min-width: 90px;
}
.badge-top { top: 20px; left: -30px; }
.badge-bottom { bottom: 30px; right: -30px; }
.pb-num {
  font-family: var(--font-disp);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--royal);
  line-height: 1;
}
.pb-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── Hero Stats Bar ── */
.hero-stats {
  position: relative;
  z-index: 1;
  background: var(--royal);
  padding: 32px 0;
}
.stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 56px;
  gap: 4px;
}
.stat-number {
  font-family: var(--font-disp);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  display: inline;
}
.stat-suf {
  font-family: var(--font-disp);
  font-size: 1.2rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  display: inline;
}
.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

/* ── ABOUT ── */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 72px;
  align-items: start;
}
.about-text p {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-quote {
  margin-top: 32px;
  padding: 20px 24px;
  border-left: 4px solid var(--royal);
  background: var(--royal-pale);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.about-quote blockquote {
  font-size: 1.02rem;
  font-style: italic;
  color: var(--royal-dark);
  line-height: 1.7;
}
.tags-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 20px;
}
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tag {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 50px;
  transition: all 0.2s;
}
.t-solid {
  background: var(--royal);
  color: var(--white);
}
.t-solid:hover { background: var(--royal-dark); }
.t-outline {
  background: var(--white);
  color: var(--royal);
  border: 1.5px solid var(--royal);
}
.t-outline:hover { background: var(--royal-pale); }

/* ── EXPERIENCE ── */
.experience { background: var(--silver-pale); }
.timeline {
  position: relative;
  padding-left: 44px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 10px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--royal), var(--silver), transparent);
}
.tl-item {
  position: relative;
  margin-bottom: 32px;
}
.tl-marker {
  position: absolute;
  left: -38px;
  top: 28px;
}
.tl-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--white);
  border: 2.5px solid var(--silver-dark);
}
.tl-marker.active .tl-dot {
  background: var(--royal);
  border-color: var(--royal);
}
.tl-pulse {
  position: absolute;
  top: -5px; left: -5px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(26,79,214,0.2);
  animation: pulsing 2s ease infinite;
}
@keyframes pulsing {
  0%,100% { transform:scale(1); opacity:0.8; }
  50%      { transform:scale(1.7); opacity:0; }
}

.tl-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.tl-card:hover {
  border-color: var(--royal);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
.tl-item:has(.tl-marker.active) .tl-card {
  border-color: rgba(26,79,214,0.3);
  background: linear-gradient(135deg, #fafcff, #f0f5ff);
}

.tl-card-top {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.tl-logo-wrap {
  width: 56px; height: 56px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--silver-light);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tl-logo-wrap.epsilon-logo {
  background: linear-gradient(135deg, var(--royal), var(--royal-light));
  font-family: var(--font-disp);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  border: none;
}
.tl-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}
.tl-header { flex: 1; min-width: 0; }
.tl-header h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.tl-org { font-size: 0.85rem; color: var(--text-soft); }
.tl-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  flex-shrink: 0;
}
.tl-date { font-size: 0.8rem; color: var(--text-soft); white-space: nowrap; }
.tl-badge {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.active-badge {
  background: rgba(26,79,214,0.1);
  color: var(--royal);
  border: 1px solid rgba(26,79,214,0.25);
}
.tl-desc {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 16px;
}
.tl-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tl-tags span {
  font-size: 0.72rem;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 50px;
  background: var(--royal-pale);
  color: var(--royal);
  border: 1px solid var(--royal-mid);
}

/* ── IMPACT ── */
.impact {
  background: linear-gradient(145deg, var(--royal-dark) 0%, var(--royal) 50%, var(--royal-light) 100%);
  position: relative;
  overflow: hidden;
}
.impact::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
}
.impact > .container { position: relative; z-index: 1; }
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.impact-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}
.impact-card:hover {
  background: rgba(255,255,255,0.16);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.2);
}
.impact-card.impact-featured {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.35);
}
.impact-icon { font-size: 2.2rem; margin-bottom: 16px; }
.impact-num-row { margin-bottom: 8px; }
.impact-number {
  font-family: var(--font-disp);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  display: inline;
}
.impact-suf {
  font-family: var(--font-disp);
  font-size: 1.4rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  display: inline;
}
.impact-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.impact-card p {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

/* ── SKILLS ── */
.skills { background: var(--white); }
.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.skill-card {
  background: var(--silver-pale);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.3s ease;
}
.skill-card:hover {
  border-color: var(--royal);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  background: var(--white);
}
.skill-icon-wrap {
  width: 52px; height: 52px;
  background: var(--royal-pale);
  border: 1.5px solid var(--royal-mid);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.skill-icon-wrap svg {
  width: 24px; height: 24px;
  color: var(--royal);
}
.skill-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.skill-card p {
  font-size: 0.87rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 20px;
}
.skill-bar {
  height: 5px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}
.skill-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--royal), var(--royal-light));
  border-radius: 3px;
  transition: width 1.2s cubic-bezier(0.4,0,0.2,1);
}

/* ── EDUCATION ── */
.edu { background: var(--silver-pale); }
.edu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.edu-list { display: flex; flex-direction: column; gap: 16px; }
.edu-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.3s, transform 0.3s;
}
.edu-card:hover { border-color: var(--royal); transform: translateX(4px); }
.edu-card.cert { border-color: rgba(26,79,214,0.3); background: var(--royal-pale); }
.edu-icon { font-size: 1.6rem; flex-shrink: 0; }
.edu-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.edu-card p { font-size: 0.82rem; color: var(--text-soft); }

.vol-card {
  background: var(--white);
  border: 1.5px solid rgba(26,79,214,0.25);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}
.vol-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.vol-top h3 { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 2px; }
.vol-top p { font-size: 0.82rem; color: var(--text-soft); }
.vol-card > p { font-size: 0.87rem; color: var(--text-mid); line-height: 1.65; }

.mentor-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: var(--royal-pale);
  border: 1.5px solid var(--royal-mid);
  border-radius: var(--radius);
}
.mentor-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.mentor-card p { font-size: 0.82rem; color: var(--text-soft); margin-bottom: 6px; }
.mentor-tags { font-size: 0.78rem; color: var(--royal); font-weight: 500; }

/* ── TESTIMONIAL ── */
.testimonial { background: var(--white); }
.testimonial-card {
  max-width: 860px;
  margin: 0 auto;
  background: var(--silver-pale);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 52px 56px;
  position: relative;
  box-shadow: var(--shadow-md);
}
.quote-icon {
  font-family: Georgia, serif;
  font-size: 8rem;
  line-height: 0.5;
  color: var(--royal);
  opacity: 0.15;
  position: absolute;
  top: 32px; left: 40px;
}
.testimonial-card blockquote {
  font-size: 1.02rem;
  color: var(--text-mid);
  line-height: 1.85;
  font-style: italic;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-av {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--royal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.testimonial-author strong { font-size: 0.95rem; color: var(--text-dark); display: block; margin-bottom: 2px; }
.testimonial-author p { font-size: 0.82rem; color: var(--text-soft); }

/* ── CONTACT ── */
.contact { padding: 0; }
.contact-inner {
  background: linear-gradient(145deg, var(--royal-dark), var(--royal), var(--royal-light));
  padding: 110px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 32px 32px;
}
.contact-inner > .container { position: relative; z-index: 1; }
.contact-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  max-width: 540px;
  margin: -28px auto 44px;
  line-height: 1.75;
}
.contact-btns {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.cbtn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 15px 34px;
  border-radius: 50px;
  transition: all 0.25s ease;
}
.cbtn-linkedin {
  background: var(--white);
  color: var(--royal);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.cbtn-linkedin:hover {
  background: var(--royal-pale);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
}
.cbtn-ig {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(8px);
}
.cbtn-ig:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-2px);
}
.contact-info {
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}
.contact-info span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.7);
}

/* ── FOOTER ── */
.footer {
  background: var(--text-dark);
  padding: 28px 0;
}
.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-logo {
  font-family: var(--font-disp);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--royal-light);
}
.footer p { font-size: 0.82rem; color: var(--silver-dark); }
.footer a { font-size: 0.82rem; color: var(--silver); transition: color 0.2s; }
.footer a:hover { color: var(--white); }

/* ── Scroll Reveal ── */
.section {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.section.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal,
.tl-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible,
.tl-item.visible {
  opacity: 1;
  transform: translateY(0);
}
.tl-item:nth-child(1) .reveal, .tl-item:nth-child(1) { transition-delay: 0.05s; }
.tl-item:nth-child(2) { transition-delay: 0.1s; }
.tl-item:nth-child(3) { transition-delay: 0.15s; }
.tl-item:nth-child(4) { transition-delay: 0.2s; }
.tl-item:nth-child(5) { transition-delay: 0.25s; }
.tl-item:nth-child(6) { transition-delay: 0.3s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-photo-wrap { width: 300px; height: 350px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .skills-grid { grid-template-columns: repeat(2, 1fr); }
  .edu-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .nav.scrolled { padding: 12px 24px; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(16px);
    justify-content: center;
    align-items: center;
    gap: 0;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links li { padding: 18px 0; }
  .nav-links a { font-size: 1.4rem; color: var(--text-dark); }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; z-index: 1001; }
  .hero { padding-top: 80px; }
  .hero-inner { padding-top: 40px; padding-bottom: 40px; }
  .hero-photo-wrap { width: 260px; height: 300px; }
  .badge-top { left: -10px; }
  .badge-bottom { right: -10px; }
  .stat-item { padding: 0 28px; }
  .impact-grid { grid-template-columns: 1fr 1fr; }
  .skills-grid { grid-template-columns: 1fr; }
  .testimonial-card { padding: 36px 28px; }
  .quote-icon { font-size: 5rem; }
  .section { padding: 72px 0; }
  .tl-card-top { flex-direction: column; }
  .tl-meta { align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-title { font-size: clamp(2.6rem, 12vw, 4rem); }
  .hero-photo-wrap { width: 220px; height: 260px; }
  .impact-grid { grid-template-columns: 1fr; }
  .stats-row { flex-direction: column; gap: 24px; }
  .stat-divider { display: none; }
  .contact-btns { flex-direction: column; align-items: center; }
  .cbtn { width: 100%; justify-content: center; }
  .footer-row { flex-direction: column; text-align: center; }
}
