/* ═══════════════════════════════════════════════════════
   Suvashish Chakraborty — Portfolio
   Theme: Warm Dark + Orange/Amber
   ═══════════════════════════════════════════════════════ */

/* ── CSS Variables ────────────────────────────────────── */
:root {
  --bg: #0a0a0b;
  --bg-elevated: #111113;
  --bg-card: #18181b;
  --bg-card-hover: #1f1f23;
  --surface: #27272a;
  --surface-hover: #3f3f46;

  --amber-400: #fbbf24;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --orange-400: #fb923c;
  --orange-500: #f97316;
  --emerald-500: #10b981;
  --blue-500: #3b82f6;
  --violet-500: #8b5cf6;

  --text-primary: #fafafa;
  --text-secondary: #a1a1aa;
  --text-muted: #71717a;
  --border: #27272a;
  --border-hover: #3f3f46;

  --font-sans: "Inter", system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", "Fira Code", monospace;

  --container: 1152px;
  --transition: 0.3s cubic-bezier(0.25, 0.4, 0.25, 1);
}

/* ── Reset ────────────────────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-padding-top: 80px;
}

body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }

::selection {
  background: var(--amber-500);
  color: var(--bg);
}

/* ── Scrollbar ────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--surface); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--surface-hover); }

/* ── Utility Classes ──────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--amber-400), var(--orange-500), var(--amber-400));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 200% center; }
}

.text-amber { color: var(--amber-400); }
.color-amber { color: var(--amber-400); }
.color-emerald { color: var(--emerald-500); }
.color-blue { color: var(--blue-500); }
.color-violet { color: var(--violet-500); }

.section {
  padding: 128px 0;
  position: relative;
}

.section-divider {
  max-width: var(--container);
  margin: 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--surface) 20%, var(--amber-500) 50%, var(--surface) 80%, transparent);
  opacity: 0.4;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 48px;
}

.label-number {
  color: var(--amber-400);
  font-family: var(--font-mono);
  font-size: 14px;
}

.label-line {
  height: 1px;
  width: 48px;
  background: rgba(251, 191, 36, 0.4);
}

.label-text {
  font-size: 13px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.section-heading {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
}

.section-subtitle {
  color: var(--text-secondary);
  max-width: 640px;
  margin-bottom: 64px;
}

.body-text {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ── Ambient Glow ─────────────────────────────────────── */
.ambient-glow {
  position: fixed;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(251,191,36,0.03) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(249,115,22,0.02) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.noise-overlay {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.02'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
}

/* ── Reveal Animation ─────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.4, 0.25, 1),
              transform 0.7s cubic-bezier(0.25, 0.4, 0.25, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══ NAVBAR ═══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--transition), border-color var(--transition), backdrop-filter var(--transition);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(10, 10, 11, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: rgba(39, 39, 42, 0.5);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  transition: transform var(--transition);
}

.nav-logo:hover { transform: scale(1.05); }

.logo-dot {
  color: var(--text-secondary);
  font-weight: 300;
  margin-left: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 14px;
  color: var(--text-secondary);
  position: relative;
  transition: color var(--transition);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--amber-400);
  transition: width var(--transition);
}

.nav-link:hover { color: var(--amber-400); }
.nav-link:hover::after { width: 100%; }

.nav-btn-resume {
  font-size: 14px;
  padding: 8px 20px;
  border-radius: 100px;
  border: 1px solid rgba(251, 191, 36, 0.3);
  color: var(--amber-400);
  transition: all var(--transition);
}

.nav-btn-resume:hover {
  background: rgba(251, 191, 36, 0.1);
  border-color: rgba(251, 191, 36, 0.5);
}

/* Mobile toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: all var(--transition);
}

.mobile-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-toggle.active .hamburger-line:nth-child(2) { opacity: 0; }
.mobile-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  display: none;
  background: rgba(10, 10, 11, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(39, 39, 42, 0.5);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}

.mobile-menu.open { max-height: 400px; }

.mobile-links { padding: 16px 24px 24px; }

.mobile-link {
  display: block;
  padding: 12px 0;
  font-size: 18px;
  color: var(--text-secondary);
  transition: color var(--transition);
}

.mobile-link:hover { color: var(--amber-400); }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }
  .mobile-menu { display: block; }
}

/* ═══ HERO ═════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    linear-gradient(rgba(251,191,36,0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(251,191,36,0.3) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-orb {
  position: absolute;
  top: 15%; right: 15%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,0.08) 0%, transparent 70%);
  animation: orbFloat 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -20px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 24px;
}

/* Status badge */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: rgba(17, 17, 19, 0.6);
  backdrop-filter: blur(8px);
  margin-bottom: 32px;
}

.status-dot {
  position: relative;
  display: flex;
  width: 8px; height: 8px;
}

.status-ping {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--amber-400);
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
  75%, 100% { transform: scale(2); opacity: 0; }
}

.status-solid {
  position: relative;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--amber-400);
}

.status-text {
  font-size: 14px;
  color: var(--text-secondary);
}

/* Hero name */
.hero-name {
  color: var(--text-muted);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* Hero title */
.hero-title {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
  margin-bottom: 24px;
}

.title-word {
  font-size: clamp(42px, 8vw, 88px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

/* Subtitle */
.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* CTAs */
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--amber-400), var(--orange-500));
  color: var(--bg);
  font-weight: 600;
  font-size: 14px;
  transition: all var(--transition);
  border: none;
}

.btn-primary:hover {
  box-shadow: 0 0 30px rgba(251, 191, 36, 0.3);
  transform: translateY(-1px);
}

.btn-full { width: 100%; justify-content: center; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 100px;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 14px;
  transition: all var(--transition);
}

.btn-outline:hover {
  border-color: rgba(251, 191, 36, 0.5);
  color: var(--amber-400);
}

/* Social icons */
.hero-socials {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: all var(--transition);
}

.social-icon:hover {
  color: var(--amber-400);
  border-color: rgba(251, 191, 36, 0.3);
  transform: translateY(-2px);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-muted);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ═══ ABOUT ════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 64px;
}

.about-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.highlight-card {
  padding: 20px;
  border-radius: 12px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: border-color var(--transition);
}

.highlight-card:hover { border-color: rgba(251, 191, 36, 0.2); }

.hc-icon {
  padding: 8px;
  border-radius: 8px;
  background: rgba(251, 191, 36, 0.1);
  color: var(--amber-400);
  flex-shrink: 0;
}

.hc-label {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.hc-value {
  font-size: 14px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ═══ CASE STUDIES ═════════════════════════════════════ */
.case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.case-card {
  border-radius: 16px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.5s ease;
  position: relative;
}

.case-card:hover { border-color: var(--surface-hover); }

.case-accent {
  height: 3px;
  transition: opacity var(--transition);
  opacity: 0.6;
}

.case-card:hover .case-accent { opacity: 1; }

.case-card[data-color="amber"] .case-accent { background: linear-gradient(90deg, var(--amber-500), var(--orange-500)); }
.case-card[data-color="emerald"] .case-accent { background: linear-gradient(90deg, var(--emerald-500), #14b8a6); }
.case-card[data-color="blue"] .case-accent { background: linear-gradient(90deg, var(--blue-500), #6366f1); }
.case-card[data-color="violet"] .case-accent { background: linear-gradient(90deg, var(--violet-500), #a855f7); }

.case-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 32px 0;
  margin-bottom: 16px;
}

.case-company {
  font-size: 12px;
  font-family: var(--font-mono);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.case-period {
  font-size: 12px;
  color: var(--text-muted);
}

.case-title {
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 700;
  padding: 0 32px;
  margin-bottom: 8px;
  transition: color var(--transition);
}

.case-card:hover .case-title { color: var(--amber-400); }

.case-subtitle {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 0 32px;
  margin-bottom: 24px;
  line-height: 1.6;
}

.case-metric {
  margin: 0 32px 24px;
  padding: 16px;
  border-radius: 12px;
  background: rgba(10, 10, 11, 0.6);
  border: 1px solid var(--border);
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.metric-value {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 900;
  line-height: 1;
}

.metric-label {
  font-size: 14px;
  color: var(--text-secondary);
  padding-bottom: 4px;
}

.case-tags {
  padding: 0 32px;
  margin-bottom: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  padding: 4px 12px;
  font-size: 12px;
  border-radius: 100px;
  background: rgba(39, 39, 42, 0.5);
  border: 1px solid var(--border);
  color: var(--text-secondary);
}

/* Case study toggle & details */
.case-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 32px 24px;
  font-size: 14px;
  color: var(--amber-400);
  transition: color var(--transition);
}

.case-toggle:hover { color: rgba(251, 191, 36, 0.7); }

.toggle-chevron {
  transition: transform var(--transition);
}

.case-toggle.active .toggle-chevron {
  transform: rotate(180deg);
}

.case-toggle.active .toggle-text::after {
  content: "";
}

.case-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.25, 0.4, 0.25, 1),
              padding 0.5s cubic-bezier(0.25, 0.4, 0.25, 1);
  padding: 0 32px;
}

.case-details.open {
  max-height: 800px;
  padding: 0 32px 32px;
}

.detail-block { margin-bottom: 20px; }

.detail-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber-400);
  font-weight: 600;
  margin-bottom: 8px;
}

.detail-block p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.approach-list {
  counter-reset: step;
}

.approach-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 12px;
  line-height: 1.6;
}

.approach-list li::before {
  counter-increment: step;
  content: counter(step);
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(251, 191, 36, 0.1);
  color: var(--amber-400);
  font-size: 11px;
  font-family: var(--font-mono);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.outcome-block {
  padding: 16px;
  border-radius: 12px;
  background: rgba(251, 191, 36, 0.05);
  border: 1px solid rgba(251, 191, 36, 0.1);
}

.outcome-block p { color: var(--text-primary); }

@media (max-width: 768px) {
  .case-grid { grid-template-columns: 1fr; }
  .case-header, .case-title, .case-subtitle, .case-tags, .case-toggle { padding-left: 20px; padding-right: 20px; }
  .case-header { padding-top: 20px; }
  .case-metric { margin-left: 20px; margin-right: 20px; }
  .case-details { padding-left: 20px; padding-right: 20px; }
  .case-details.open { padding-left: 20px; padding-right: 20px; padding-bottom: 20px; }
}

/* ═══ EXPERIENCE (Timeline) ═══════════════════════════ */
.timeline {
  position: relative;
  padding-left: 48px;
}

.timeline-line {
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, rgba(251,191,36,0.4), var(--border), transparent);
}

.timeline-item {
  position: relative;
  margin-bottom: 48px;
}

.timeline-item:last-child { margin-bottom: 0; }

.timeline-dot {
  position: absolute;
  left: -44px;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--surface-hover);
  z-index: 2;
}

.timeline-dot.active {
  background: var(--amber-400);
  border: none;
  box-shadow: 0 0 12px rgba(251, 191, 36, 0.5);
}

.timeline-card {
  padding: 24px;
  border-radius: 12px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  transition: border-color var(--transition);
}

.timeline-card:hover { border-color: var(--surface-hover); }

.tc-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
  gap: 16px;
}

.tc-role {
  font-size: 18px;
  font-weight: 700;
}

.tc-company {
  font-size: 14px;
  color: var(--amber-400);
  font-weight: 500;
}

.tc-period {
  font-size: 12px;
  font-family: var(--font-mono);
  color: var(--text-muted);
  white-space: nowrap;
}

.tc-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.6;
}

.tc-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.tc-highlights li::before {
  content: "\203A"; /* › */
  color: var(--amber-400);
  flex-shrink: 0;
  margin-top: 1px;
}

@media (max-width: 768px) {
  .tc-header { flex-direction: column; }
  .timeline { padding-left: 32px; }
  .timeline-dot { left: -28px; }
  .timeline-line { left: 6px; }
}

/* ═══ SKILLS ══════════════════════════════════════════ */
.skills-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.skill-group {
  padding: 24px;
  border-radius: 12px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  transition: border-color var(--transition);
}

.skill-group:hover { border-color: rgba(251, 191, 36, 0.2); }

.sg-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--amber-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.sg-tags { display: flex; flex-wrap: wrap; gap: 8px; }

.skill-tag {
  padding: 6px 12px;
  font-size: 13px;
  border-radius: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  transition: all var(--transition);
}

.skill-tag:hover {
  background: rgba(251, 191, 36, 0.1);
  border-color: rgba(251, 191, 36, 0.3);
  color: var(--text-primary);
}

.cert-section {
  padding: 24px;
  border-radius: 12px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
}

.cert-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cert-card {
  padding: 16px;
  border-radius: 8px;
  background: var(--bg);
  border: 1px solid var(--border);
}

.cert-name {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 4px;
}

.cert-issuer {
  font-size: 12px;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .skills-grid { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: 1fr; }
}

/* ═══ CONTACT ═════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}

.contact-link-item {
  display: flex;
  align-items: center;
  gap: 16px;
  transition: color var(--transition);
}

.contact-link-item:hover .cl-value { color: var(--amber-400); }
.contact-link-item:hover .cl-icon { border-color: rgba(251, 191, 36, 0.3); }
.contact-link-item:hover .cl-arrow { color: var(--amber-400); }

.cl-icon {
  padding: 12px;
  border-radius: 8px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--amber-400);
  transition: border-color var(--transition);
  flex-shrink: 0;
}

.cl-text { flex: 1; }

.cl-label {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
}

.cl-value {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color var(--transition);
}

.cl-arrow {
  color: var(--text-muted);
  transition: color var(--transition);
  flex-shrink: 0;
}

/* Contact form */
.contact-form {
  padding: 32px;
  border-radius: 16px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
}

.form-group { margin-bottom: 24px; }

.form-label {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-size: 14px;
  font-family: var(--font-sans);
  transition: border-color var(--transition);
  outline: none;
}

.form-input::placeholder { color: var(--surface-hover); }
.form-input:focus { border-color: rgba(251, 191, 36, 0.5); }

.form-textarea { resize: none; }

.form-status {
  text-align: center;
  font-size: 13px;
  margin-top: 12px;
}

.form-status.success { color: var(--emerald-500); }
.form-status.error { color: #f87171; }

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ═══ FOOTER ══════════════════════════════════════════ */
.footer {
  padding: 48px 0;
  border-top: 1px solid rgba(39, 39, 42, 0.5);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-left {
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-sep { color: var(--border); }

.footer-right {
  display: flex;
  gap: 16px;
}

.footer-icon {
  color: var(--text-muted);
  transition: all var(--transition);
}

.footer-icon:hover {
  color: var(--amber-400);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .footer-inner { justify-content: center; text-align: center; flex-direction: column; }
}
