/* =========================================================
   AQSA MIRZA PORTFOLIO – Premium CSS
   =========================================================*/

/* ── Google Fonts: Playfair Display + Inter ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── CSS Custom Properties ── */
:root {
  --cream:        #f8f5f0;
  --cream-dark:   #ede9e1;
  --dark:         #0d0d0f;
  --dark-2:       #141418;
  --dark-3:       #1c1c22;
  --gold:         #c9a84c;
  --gold-light:   #e5c97a;
  --gold-dim:     rgba(201,168,76,.15);
  --teal:         #2dd4bf;
  --teal-dim:     rgba(45,212,191,.12);
  --text-primary: #1a1a2e;
  --text-muted:   #6b6b7b;
  --text-light:   #a0a0b0;
  --white:        #ffffff;
  --card-bg:      #ffffff;
  --card-border:  rgba(0,0,0,.07);
  --section-gap:  120px;
  --radius-sm:    8px;
  --radius:       16px;
  --radius-lg:    24px;
  --shadow-sm:    0 2px 12px rgba(0,0,0,.06);
  --shadow:       0 8px 40px rgba(0,0,0,.10);
  --shadow-lg:    0 20px 60px rgba(0,0,0,.15);
  --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

a { color: inherit; text-decoration: none; }

img { max-width: 100%; }

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

.section {
  padding: var(--section-gap) 0;
}

.section-dark {
  background: var(--dark-2);
  color: var(--white);
}

.section-dark .section-title { color: var(--white); }
.section-dark .section-tag   { color: var(--gold); border-color: var(--gold-dim); background: var(--gold-dim); }
.section-dark .text-muted     { color: var(--text-light); }

/* ── Section Header ── */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid var(--gold-dim);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

/* ========================================================= */
/*  NAVBAR                                                    */
/* ========================================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(13, 13, 15, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 2px 30px rgba(0,0,0,.3);
}

.nav-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: .03em;
}

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

.nav-links a {
  font-size: .88rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  letter-spacing: .03em;
  position: relative;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active { color: var(--white); }

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

.nav-cta {
  background: var(--gold) !important;
  color: var(--dark) !important;
  padding: 8px 20px;
  border-radius: 100px;
  font-weight: 600 !important;
  transition: transform var(--transition), box-shadow var(--transition) !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,168,76,.4);
}

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

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ========================================================= */
/*  HERO                                                      */
/* ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.18;
  animation: orbFloat 8s ease-in-out infinite alternate;
}

.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #c9a84c 0%, transparent 70%);
  top: -200px; left: -200px;
  animation-duration: 9s;
}

.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #2dd4bf 0%, transparent 70%);
  bottom: -150px; right: -100px;
  animation-duration: 11s;
}

.orb-3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, #7c3aed 0%, transparent 70%);
  top: 40%; left: 60%;
  animation-duration: 13s;
  opacity: 0.12;
}

@keyframes orbFloat {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(30px, 20px) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 0 24px;
}

.hero-badge {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,.3);
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}

.hero-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  font-weight: 900;
  line-height: 1.0;
  color: var(--white);
  letter-spacing: -.02em;
  margin-bottom: 16px;
}

.hero-name span { color: var(--gold); }

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 300;
  color: rgba(255,255,255,.6);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-description {
  font-size: 1.05rem;
  color: rgba(255,255,255,.75);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.8;
}

.hero-description strong { color: var(--gold-light); font-weight: 600; }

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 48px;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-suffix {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,.12);
}

/* Hero Actions */
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll Hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.3);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(201,168,76,.6), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: .4; transform: scaleY(1); }
  50%       { opacity: 1;  transform: scaleY(1.1); }
}

/* ========================================================= */
/*  BUTTONS                                                   */
/* ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .02em;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, #a87c2e 100%);
  color: var(--dark);
  box-shadow: 0 4px 20px rgba(201,168,76,.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.25);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-full { width: 100%; justify-content: center; }

/* ========================================================= */
/*  ABOUT                                                     */
/* ========================================================= */
.about-grid {
  display: grid;
  grid-template-columns: 280px 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* ── Profile Photo ── */
.about-photo-wrap {
  display: flex;
  justify-content: center;
}

.about-photo-frame {
  position: relative;
  width: 260px;
  flex-shrink: 0;
}

.about-photo-frame::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--teal) 100%);
  z-index: 0;
  opacity: 0.55;
}

.about-photo-frame::after {
  content: '';
  position: absolute;
  top: 14px;
  left: 14px;
  right: -14px;
  bottom: -14px;
  border-radius: 20px;
  background: var(--gold-dim);
  z-index: -1;
}

.about-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top;
  border-radius: 16px;
  display: block;
  box-shadow: var(--shadow-lg);
}

.photo-badge {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  background: linear-gradient(135deg, var(--gold) 0%, #a87c2e 100%);
  color: var(--dark);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(201,168,76,.45);
}

.about-text p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.85;
}

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

.about-info-grid {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .9rem;
  color: var(--text-muted);
}

.info-item a { color: var(--gold); }
.info-item a:hover { text-decoration: underline; }

.info-icon { font-size: 1.1rem; flex-shrink: 0; }

.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.highlight-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--card-border);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.highlight-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: var(--radius) var(--radius) 0 0;
}

.card-gold::before  { background: linear-gradient(90deg, #c9a84c, #e5c97a); }
.card-silver::before { background: linear-gradient(90deg, #94a3b8, #cbd5e1); }
.card-blue::before  { background: linear-gradient(90deg, #3b82f6, #60a5fa); }
.card-teal::before  { background: linear-gradient(90deg, #2dd4bf, #5eead4); }

.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.hcard-icon { font-size: 1.8rem; margin-bottom: 10px; }

.hcard-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.hcard-value {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
}

/* ========================================================= */
/*  TIMELINE (EXPERIENCE)                                     */
/* ========================================================= */
.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 12px;
  width: 1.5px;
  background: linear-gradient(to bottom, var(--gold), rgba(201,168,76,.1));
}

.timeline-item {
  position: relative;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.timeline-item.visible {
  opacity: 1;
  transform: translateX(0);
}

.timeline-dot {
  position: absolute;
  left: -34px;
  top: 24px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--dark-2);
  box-shadow: 0 0 0 3px rgba(201,168,76,.3);
}

.timeline-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 28px 32px;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.timeline-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(201,168,76,.2);
  transform: translateX(6px);
}

.project-card:hover { border-color: rgba(45,212,191,.5); }
.program-card:hover { border-color: rgba(201,168,76,.5); }

.tc-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.tc-org {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.tc-role {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold);
}

.tc-date {
  font-size: .78rem;
  color: rgba(255,255,255,.35);
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 4px;
}

.tc-desc {
  font-size: .93rem;
  color: rgba(255,255,255,.65);
  line-height: 1.75;
  margin-bottom: 16px;
}

.tc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tc-tags span {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: rgba(201,168,76,.1);
  color: var(--gold-light);
  border: 1px solid rgba(201,168,76,.15);
  padding: 3px 10px;
  border-radius: 100px;
}

/* ========================================================= */
/*  EDUCATION                                                 */
/* ========================================================= */
.edu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.edu-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.edu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.edu-primary {
  background: linear-gradient(135deg, #0d0d0f 0%, #1a1030 100%);
  color: var(--white);
  border-color: transparent;
}

.edu-primary h3 { color: var(--white); }
.edu-primary .edu-institute, .edu-primary .edu-univ { color: rgba(255,255,255,.6); }
.edu-primary .score-label { color: rgba(255,255,255,.5); }

.edu-course {
  background: linear-gradient(135deg, #023020 0%, #064e3b 100%);
  color: var(--white);
  border-color: transparent;
}
.edu-course h3 { color: var(--white); }
.edu-course .edu-institute, .edu-course .edu-univ { color: rgba(255,255,255,.6); }
.edu-course .score-label { color: rgba(255,255,255,.5); }

.edu-year-badge {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--gold-dim);
  color: var(--gold);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.edu-primary .edu-year-badge { background: rgba(201,168,76,.2); }
.edu-course  .edu-year-badge  { background: rgba(45,212,191,.2); color: var(--teal); }

.edu-icon { font-size: 2rem; margin-bottom: 16px; }

.edu-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.edu-institute {
  font-size: .88rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.edu-univ {
  font-size: .8rem;
  color: var(--text-light);
  margin-bottom: 24px;
  min-height: 20px;
}

.edu-score {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,.07);
}

.edu-primary .edu-score,
.edu-course  .edu-score { border-top-color: rgba(255,255,255,.1); }

.score-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
}

.grade-o { color: var(--teal); }

.score-label {
  font-size: .75rem;
  color: var(--text-muted);
}

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

.ach-card {
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.07);
  transition: transform var(--transition), box-shadow var(--transition);
  background: rgba(255,255,255,.03);
}

.ach-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity var(--transition);
}

.ach-card:hover { transform: translateY(-5px); }
.ach-card:hover::before { opacity: 1; }

.ach-gold   { border-color: rgba(201,168,76,.25); }
.ach-gold::before { background: rgba(201,168,76,.05); }

.ach-silver { border-color: rgba(148,163,184,.2); }
.ach-silver::before { background: rgba(148,163,184,.04); }

.ach-bronze { border-color: rgba(217,119,87,.2); }
.ach-bronze::before { background: rgba(217,119,87,.04); }

.ach-clat, .ach-ailet {
  border-color: rgba(45,212,191,.2);
  background: rgba(45,212,191,.03);
}

.ach-ribbon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.ach-gold   .ach-ribbon { background: rgba(201,168,76,.15); color: var(--gold-light); }
.ach-silver .ach-ribbon { background: rgba(148,163,184,.12); color: #cbd5e1; }
.ach-bronze .ach-ribbon { background: rgba(217,119,87,.12); color: #fca07d; }
.ach-clat   .ach-ribbon,
.ach-ailet  .ach-ribbon { background: var(--teal-dim); color: var(--teal); }

.ach-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.ach-card p {
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  line-height: 1.6;
}

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

.skill-block {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.skill-block:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.skill-icon { font-size: 2rem; margin-bottom: 16px; }

.skill-block h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.skill-block p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.skill-block p strong { color: var(--text-primary); }

.skill-bar {
  height: 4px;
  background: var(--cream-dark);
  border-radius: 2px;
  overflow: hidden;
}

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

.skill-fill.animated { width: var(--fill); }

/* ========================================================= */
/*  CONTACT                                                   */
/* ========================================================= */
.contact-section {
  background: linear-gradient(135deg, var(--cream) 0%, #f0ebe0 100%);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.contact-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 40px;
}

.contact-items { display: flex; flex-direction: column; gap: 16px; }

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: inherit;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.contact-item:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow);
  border-color: var(--gold);
}

.ci-icon { font-size: 1.5rem; flex-shrink: 0; }

.ci-label {
  display: block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.ci-value {
  display: block;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-primary);
}

/* Contact Form */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  color: var(--text-primary);
  background: var(--cream);
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  outline: none;
  resize: vertical;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.1);
}

.form-note {
  margin-top: 12px;
  font-size: .82rem;
  text-align: center;
  min-height: 20px;
  color: var(--text-muted);
}

/* ========================================================= */
/*  FOOTER                                                    */
/* ========================================================= */
.footer {
  background: var(--dark);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.footer-copy {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
}

.footer-sub {
  font-size: .78rem;
  color: rgba(255,255,255,.3);
}

/* ========================================================= */
/*  SCROLL ANIMATIONS                                         */
/* ========================================================= */
[data-animate="fade-up"] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate="fade-up"].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================================= */
/*  RESPONSIVE                                                */
/* ========================================================= */
@media (max-width: 900px) {
  :root { --section-gap: 80px; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-cards { order: -1; }

  .contact-layout { grid-template-columns: 1fr; gap: 40px; }

  .hero-stats { gap: 24px; }
  .stat-number, .stat-suffix { font-size: 2rem; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10,10,14,.97);
    backdrop-filter: blur(20px);
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 999;
  }

  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.2rem; }

  .hamburger { display: flex; z-index: 1001; }
  .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .hero-stats { gap: 20px; }
  .stat-divider { height: 36px; }

  .timeline { padding-left: 28px; }
  .timeline-dot { left: -22px; top: 22px; }
  .tc-header { flex-direction: column; gap: 6px; }

  .contact-form { padding: 28px 20px; }

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

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-divider { width: 60px; height: 1px; }
  .about-cards { grid-template-columns: 1fr 1fr; }
}

/* ========================================================= */
/*  ONLINE PROFILES SECTION                                   */
/* ========================================================= */
.profiles-lead {
  text-align: center;
  color: rgba(255,255,255,.55);
  font-size: 1rem;
  max-width: 560px;
  margin: -32px auto 52px;
  line-height: 1.75;
}

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

.profile-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 20px 22px;
  text-decoration: none;
  color: inherit;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}

.profile-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}

.profile-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(201,168,76,.3);
  transform: translateY(-3px);
}

.profile-card:hover::before { opacity: 1; }

.pc-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  font-weight: 700;
  letter-spacing: 0;
}

.pc-linkedin {
  background: #0077b5;
  color: #fff;
  font-size: .9rem;
  font-family: 'Inter', sans-serif;
}

.pc-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  min-width: 0;
}

.pc-platform {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--gold);
}

.pc-handle {
  font-size: .85rem;
  color: rgba(255,255,255,.65);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pc-arrow {
  font-size: 1.2rem;
  color: rgba(255,255,255,.2);
  flex-shrink: 0;
  transition: color var(--transition), transform var(--transition);
}

.profile-card:hover .pc-arrow {
  color: var(--gold);
  transform: translate(2px, -2px);
}

/* ========================================================= */
/*  FOOTER SOCIALS                                            */
/* ========================================================= */
.footer-inner {
  gap: 14px !important;
}

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

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 700;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}

.footer-socials a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
  transform: translateY(-2px);
}

.footer-links {
  font-size: .78rem;
  color: rgba(255,255,255,.25);
}

.footer-links a {
  color: rgba(255,255,255,.35);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--gold); }

@media (max-width: 480px) {
  .profiles-grid { grid-template-columns: 1fr; }
}

/* ── About photo responsive ── */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .about-photo-wrap {
    grid-column: 1 / -1;
    justify-content: center;
  }
  .about-photo-frame { width: 220px; }
  .about-photo { aspect-ratio: 1 / 1; }
}

@media (max-width: 640px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-cards {
    grid-template-columns: 1fr 1fr;
  }
  .about-photo-frame { width: 180px; }
}

/* ── Full Legal Name Display ── */
.hero-fullname {
  font-family: 'Inter', sans-serif;
  font-size: clamp(.8rem, 1.8vw, 1rem);
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
  margin-bottom: 10px;
  margin-top: -8px;
}