/* ============================================================
   SACHA MORIN PORTFOLIO — Design System v2.0
   Light premium theme · HR-friendly · High visual impact
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;600&display=swap');

/* ── VARIABLES ── */
:root {
  --bg-page:       #f0f2f8;
  --bg-sidebar:    #1e2a45;
  --bg-card:       #ffffff;
  --bg-card-hover: #f8f9ff;

  --text-primary:   #0f172a;
  --text-secondary: #475569;
  --text-muted:     #94a3b8;
  --text-sidebar:   #e2e8f0;
  --text-sidebar-muted: #94a3b8;

  --indigo:        #4f46e5;
  --indigo-light:  #818cf8;
  --indigo-glow:   rgba(79, 70, 229, 0.08);
  --gold:          #f59e0b;
  --gold-light:    #f59e0b;
  --gold-bg:       rgba(245, 158, 11, 0.10);
  --green:         #10b981;
  --green-bg:      rgba(16, 185, 129, 0.08);
  --red:           #ef4444;
  --purple:        #8b5cf6;

  --border:        #e2e8f0;
  --border-card:   #edf0f7;
  --shadow:        0 1px 3px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.04);
  --shadow-lg:     0 4px 24px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.04);
  --shadow-card:   0 2px 8px rgba(0,0,0,0.06);

  --sidebar-w:     260px;
  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     18px;

  --font-main:     'Inter', sans-serif;
  --font-mono:     'JetBrains Mono', monospace;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-main);
  background: var(--bg-page);
  color: var(--text-primary);
  line-height: 1.6;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

/* ============================================================
   LAYOUT
   ============================================================ */

.layout {
  display: flex;
  min-height: 100vh;
}

/* ── SIDEBAR ── */
.sidebar {
  width: var(--sidebar-w);
  background: var(--bg-sidebar);
  position: fixed;
  top: 0; left: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  z-index: 100;
  transition: transform 0.3s ease;
}

.sidebar-header {
  padding: 28px 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.sidebar-avatar {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--indigo), var(--purple));
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.sidebar-name {
  font-size: 16px; font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.sidebar-role {
  font-size: 11.5px;
  color: var(--text-sidebar-muted);
  line-height: 1.5;
  margin-bottom: 12px;
}

.availability-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  background: var(--green);
  border-radius: 20px;
  padding: 4px 10px;
}

.dot {
  width: 6px; height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

/* ── NAV ── */
.sidebar-nav {
  padding: 20px 12px;
  flex: 1;
}

.nav-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-sidebar-muted);
  padding: 0 8px;
  margin-bottom: 8px;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  color: var(--text-sidebar);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  transition: all 0.18s ease;
  margin-bottom: 2px;
}

.nav-item:hover {
  background: rgba(255,255,255,0.07);
  color: #fff;
}

.nav-item.active {
  background: rgba(79, 70, 229, 0.25);
  color: var(--indigo-light);
  font-weight: 600;
}

.nav-icon { font-size: 15px; width: 20px; text-align: center; }

/* ── SIDEBAR FOOTER ── */
.sidebar-footer {
  padding: 16px 16px 20px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.social-links {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  align-items: center;
}

.social-link {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  color: var(--text-sidebar-muted);
  text-decoration: none;
  transition: all 0.18s ease;
}

.social-link:hover {
  background: rgba(255,255,255,0.14);
  color: #fff;
  border-color: rgba(255,255,255,0.2);
}

.lang-btn {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
}

.cv-download-btn {
  width: 100%;
  display: flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 10px;
  background: var(--indigo);
  color: white;
  border: none; border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-size: 12.5px; font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
}

.cv-download-btn:hover {
  background: #4338ca;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(79, 70, 229, 0.4);
}

/* ── MAIN ── */
.main-content {
  margin-left: var(--sidebar-w);
  flex: 1;
  min-height: 100vh;
}

/* ============================================================
   HERO SECTION
   ============================================================ */

.hero-section {
  background: linear-gradient(135deg, #1e2a45 0%, #2d3a5e 50%, #1e2a45 100%);
  padding: 56px 52px 52px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(79,70,229,0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -60px; left: 30%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(245,158,11,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.hero-left { flex: 1; }

.hero-greeting {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--indigo-light);
  margin-bottom: 16px;
  opacity: 0.85;
}

.hero-name {
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 6px;
}

.hero-name .highlight {
  background: linear-gradient(135deg, var(--indigo-light), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
  font-weight: 400;
}

.hero-tagline {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 28px;
}

.hero-right {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

/* Availability badge — BIG and prominent */
.avail-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #1a1a1a;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 30px;
  white-space: nowrap;
  animation: badge-pulse 3s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,158,11,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(245,158,11,0); }
}

.avail-dot {
  width: 8px; height: 8px;
  background: #1a1a1a;
  border-radius: 50%;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 12px 22px;
  background: var(--indigo);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  border: none; cursor: pointer;
}

.btn-primary:hover {
  background: #4338ca;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(79,70,229,0.35);
}

.btn-secondary {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 12px 22px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.2s ease;
  backdrop-filter: blur(4px);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-2px);
}

/* ── PRIZE BADGES in hero ── */
.hero-prizes {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
  position: relative;
  z-index: 1;
}

.prize-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12.5px; font-weight: 600;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.20);
  color: rgba(255,255,255,0.90);
  backdrop-filter: blur(4px);
}

/* First badge gets the gold/amber treatment — 1st place */
.prize-badge:first-child {
  background: rgba(245, 158, 11, 0.18);
  border-color: rgba(245, 158, 11, 0.50);
  color: #fcd34d;
}

/* Keep old modifier classes as no-ops (no longer used) */
.prize-badge.gold { background: rgba(245,158,11,0.18); border-color: rgba(245,158,11,0.50); color: #fcd34d; }
.prize-badge.purple { background: rgba(255,255,255,0.10); border-color: rgba(255,255,255,0.20); color: rgba(255,255,255,0.90); }
.prize-badge.green { background: rgba(255,255,255,0.10); border-color: rgba(255,255,255,0.20); color: rgba(255,255,255,0.90); }
.prize-badge.blue { background: rgba(255,255,255,0.10); border-color: rgba(255,255,255,0.20); color: rgba(255,255,255,0.90); }

/* ── STATS STRIP ── */
.stats-strip {
  background: rgba(255,255,255,0.05);
  border-top: 1px solid rgba(255,255,255,0.08);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 1;
}

.stat-item {
  padding: 16px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.06);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
}

.stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 500;
  margin-top: 2px;
}

/* ============================================================
   CONTENT SECTIONS (below hero)
   ============================================================ */

.content-area {
  padding: 40px 48px 60px;
}

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

.section-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--indigo);
  margin-top: 12px;
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-card);
}

/* ── CARDS ── */
.card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-card);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

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

.card-grid {
  display: grid;
  gap: 16px;
}

.cols-2 { grid-template-columns: 1fr 1fr; }
.cols-3 { grid-template-columns: 1fr 1fr 1fr; }

/* ── "RECENT NEWS" GRID ── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.news-item {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 16px;
  border: 1px solid var(--border-card);
  border-left: 3px solid #e2e8f0;
  box-shadow: var(--shadow-card);
}

.news-item:first-child {
  border-left-color: var(--indigo);
}

.news-item-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 3px;
}

.news-item-sub {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.news-item-desc {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ── HIGHLIGHT CARDS ── */
.highlight-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-card);
  padding: 20px 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

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

.highlight-icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  background: #f1f5f9;
}

.highlight-icon.gold { background: #f1f5f9; }
.highlight-icon.purple { background: #f1f5f9; }
.highlight-icon.blue { background: #f1f5f9; }
.highlight-icon.green { background: #f1f5f9; }

.highlight-title {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
  line-height: 1.3;
}

.highlight-meta {
  font-size: 12px;
  color: var(--indigo);
  font-weight: 600;
  margin-bottom: 6px;
}

.highlight-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── WHO I AM cards ── */
.who-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 20px;
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-card);
  border-top: 2px solid var(--border);
  transition: transform 0.18s ease;
}

.who-card:hover {
  transform: translateY(-2px);
  border-top-color: var(--indigo);
}

.who-card-icon { font-size: 22px; margin-bottom: 10px; }
.who-card-title { font-size: 14px; font-weight: 700; color: var(--text-primary); margin-bottom: 6px; }
.who-card-text { font-size: 13px; color: var(--text-secondary); line-height: 1.65; }

/* ── GOAL BLOCK ── */
.goal-block {
  background: #1e2a45;
  border-radius: var(--radius-md);
  padding: 24px 28px;
  color: #fff;
}

.goal-block p {
  font-size: 14.5px;
  line-height: 1.75;
  color: rgba(255,255,255,0.80);
}

.goal-block strong { color: #fff; font-weight: 700; }

/* ── TECH TAGS ── */
.tech-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }

.tech-tag {
  font-size: 11.5px; font-weight: 500;
  padding: 3px 10px;
  background: #f1f5f9;
  color: #64748b;
  border-radius: 4px;
  border: 1px solid #e2e8f0;
}

.tech-tag.primary {
  background: #f1f5f9;
  color: #334155;
  border-color: #e2e8f0;
  font-weight: 600;
}

/* ============================================================
   PAGE HEADER (non-hero pages)
   ============================================================ */

.page-header {
  background: linear-gradient(135deg, #1e2a45 0%, #2d3a5e 100%);
  padding: 40px 48px 36px;
}

.page-header h1 {
  font-size: 36px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  margin-bottom: 6px;
}

.page-header p {
  font-size: 14.5px;
  color: rgba(255,255,255,0.55);
  font-weight: 400;
}

/* ============================================================
   TIMELINE
   ============================================================ */

.timeline { position: relative; }

.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 2px;
  height: calc(100% - 8px);
  background: var(--border);
}

.timeline-item {
  position: relative;
  padding-left: 28px;
  margin-bottom: 28px;
}

.timeline-dot {
  position: absolute;
  left: -5px; top: 6px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #fff;
  border: 2.5px solid var(--border);
}

.timeline-dot.filled {
  background: var(--indigo);
  border-color: var(--indigo);
}

.timeline-date {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--indigo);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 4px;
}

.timeline-title {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.timeline-subtitle {
  font-size: 12.5px;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 6px;
}

.timeline-desc {
  list-style: none;
  margin-top: 8px;
}

.timeline-desc li {
  font-size: 13.5px;
  color: var(--text-secondary);
  padding-left: 14px;
  position: relative;
  margin-bottom: 4px;
  line-height: 1.55;
}

.timeline-desc li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--indigo);
  font-size: 11px;
  top: 2px;
}

/* ── RNCP Badge – IN PROGRESS (not complete) ── */
.rncp-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11.5px; font-weight: 700;
  padding: 4px 12px;
  background: var(--gold-bg);
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: 20px;
  color: #b45309;
  margin-top: 6px;
}

/* ============================================================
   CERTIFICATIONS
   ============================================================ */

.cert-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-card);
  transition: transform 0.18s ease;
  border-top: 3px solid var(--indigo);
}

.cert-card.in-progress {
  border-top-color: var(--gold);
}

.cert-card.completed-ok {
  border-top-color: var(--green);
}

.cert-card:hover { transform: translateY(-2px); }

.cert-status {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 2px 9px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 8px;
}

.status-progress {
  background: var(--gold-bg);
  color: #b45309;
  border: 1px solid rgba(245,158,11,0.3);
}

.status-done {
  background: var(--green-bg);
  color: #065f46;
  border: 1px solid rgba(16,185,129,0.3);
}

.status-research {
  background: var(--indigo-glow);
  color: var(--indigo);
  border: 1px solid rgba(79,70,229,0.2);
}

.cert-title {
  font-size: 14px; font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.cert-desc {
  font-size: 12.5px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ============================================================
   SKILLS PAGE
   ============================================================ */

.skill-category {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-card);
  margin-bottom: 16px;
}

.skill-category-title {
  font-size: 14px; font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}

.skill-item {
  display: grid;
  grid-template-columns: 140px 1fr 40px;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.skill-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}

.skill-bar-container {
  height: 6px;
  background: #f1f5f9;
  border-radius: 3px;
  overflow: hidden;
}

.skill-bar {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--indigo), var(--indigo-light));
  transition: width 1s ease;
}

.skill-level {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--indigo);
  text-align: right;
}

/* ============================================================
   PROJECT CARDS
   ============================================================ */

.project-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-card);
  padding: 22px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

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

.project-card.featured {
  border-top: 3px solid var(--gold);
}

.project-card.top-finalist {
  border-top: 3px solid var(--purple);
}

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

.project-title {
  font-size: 16px; font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 3px;
}

.project-event {
  font-size: 12px; color: var(--text-secondary);
}

.project-prize {
  font-size: 12px; font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

.prize-gold { background: var(--gold-bg); color: #92400e; border: 1px solid rgba(245,158,11,0.3); }
.prize-purple { background: rgba(139,92,246,0.1); color: #6d28d9; border: 1px solid rgba(139,92,246,0.3); }
.prize-green { background: var(--green-bg); color: #065f46; border: 1px solid rgba(16,185,129,0.3); }
.prize-blue { background: var(--indigo-glow); color: var(--indigo); border: 1px solid rgba(79,70,229,0.2); }

.project-desc {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 14px;
}

.project-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.project-link {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--indigo);
  text-decoration: none;
  transition: color 0.15s ease;
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: 12px;
}

.project-link:hover { color: #4338ca; }

/* ============================================================
   CONTACT
   ============================================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 8px;
}

.contact-form { display: flex; flex-direction: column; gap: 14px; }

.form-group { display: flex; flex-direction: column; gap: 5px; }

.form-label {
  font-size: 12.5px; font-weight: 600;
  color: var(--text-secondary);
}

.form-input, .form-textarea {
  font-family: var(--font-main);
  font-size: 14px;
  color: var(--text-primary);
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  transition: border-color 0.15s ease;
  outline: none;
}

.form-input:focus, .form-textarea:focus {
  border-color: var(--indigo);
  box-shadow: 0 0 0 3px var(--indigo-glow);
}

.form-textarea { min-height: 120px; resize: vertical; }

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  transition: transform 0.18s ease;
}

.contact-item:hover { transform: translateX(3px); }
.contact-icon {
  width: 38px; height: 38px;
  background: var(--indigo-glow);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}

.contact-item-label { font-size: 11px; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.contact-item-value { font-size: 14px; color: var(--text-primary); font-weight: 600; }

/* ============================================================
   ANIMATIONS
   ============================================================ */

.animate-in {
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.5s ease forwards;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.animate-in:nth-child(1) { animation-delay: 0.05s; }
.animate-in:nth-child(2) { animation-delay: 0.1s; }
.animate-in:nth-child(3) { animation-delay: 0.15s; }
.animate-in:nth-child(4) { animation-delay: 0.2s; }
.animate-in:nth-child(5) { animation-delay: 0.25s; }
.animate-in:nth-child(6) { animation-delay: 0.3s; }

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(16,185,129,0); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

.hamburger {
  display: none;
  position: fixed;
  top: 14px; left: 14px;
  z-index: 200;
  width: 38px; height: 38px;
  background: var(--bg-sidebar);
  border-radius: 8px;
  flex-direction: column;
  align-items: center; justify-content: center;
  gap: 5px;
  cursor: pointer;
  border: none;
}

.hamburger span {
  width: 18px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: all 0.25s ease;
}

.sidebar-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 90;
}

.sidebar-overlay.visible { display: block; }

@media (max-width: 900px) {
  .sidebar {
    transform: translateX(-100%);
  }
  .sidebar.open {
    transform: translateX(0);
  }
  .main-content {
    margin-left: 0;
  }
  .hamburger { display: flex; }
  .hero-section, .page-header { padding: 48px 20px 32px; }
  .content-area { padding: 24px 18px 40px; }
  .hero-top { flex-direction: column; gap: 18px; }
  .hero-right { align-items: flex-start; }
  .cols-2 { grid-template-columns: 1fr; }
  .cols-3 { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}

/* ── Misc ── */
.section-title-sm {
  font-size: 14px; font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

a { color: inherit; }

/* scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #cbd5e1; }
