/* =========================================
   BHAUTIK SHYARA PORTFOLIO — style.css
   Inspired by gauravchavda.in
   ========================================= */

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

:root {
  --accent:   #6366F1;
  --accent2:  #8B5CF6;
  --grad:     linear-gradient(135deg, #6366F1, #8B5CF6);
  --dark:     #0B0D17;
  --dark2:    #0F1120;
  --card:     #111827;
  --border:   rgba(99,102,241,0.15);
  --muted:    #6B7280;
  --white:    #F9FAFB;
  --radius:   16px;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--dark); color: var(--white); line-height: 1.7; font-size: 15px; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1000px; margin: 0 auto; padding: 0 2rem; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 4px; }

/* ── NAV ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem; height: 64px;
  background: rgba(11,13,23,0.8); backdrop-filter: blur(20px);
  border-bottom: 0.5px solid rgba(99,102,241,0.1);
  transition: background .3s;
}
#navbar.scrolled { background: rgba(11,13,23,0.97); }
.nav-logo { font-weight: 800; font-size: 17px; display: flex; align-items: center; gap: 10px; }
.nav-logo .logo-full { font-size: 14px; font-weight: 500; color: rgba(249,250,251,0.6); }
.nav-links { display: flex; gap: 2rem; }
.nav-links a { font-size: 13.5px; color: rgba(249,250,251,0.6); transition: color .2s; font-weight: 500; }
.nav-links a:hover { color: #fff; }
.nav-cta { background: var(--grad); color: #fff; border: none; border-radius: 8px; padding: 8px 20px; font-size: 13px; font-weight: 600; cursor: pointer; transition: opacity .2s; }
.nav-cta:hover { opacity: .85; }
.nav-burger { display: none; background: none; border: none; color: #fff; font-size: 22px; cursor: pointer; }
.nav-mobile { display: none; position: fixed; top: 64px; left: 0; right: 0; z-index: 999; background: rgba(11,13,23,0.98); backdrop-filter: blur(20px); border-bottom: 0.5px solid var(--border); flex-direction: column; padding: 1rem 2rem 1.5rem; gap: 1rem; }
.nav-mobile.open { display: flex; }
.nav-mobile a { font-size: 15px; color: rgba(249,250,251,0.7); font-weight: 500; padding: .5rem 0; border-bottom: 0.5px solid rgba(255,255,255,0.06); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding-top: 64px;
}
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(99,102,241,0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(99,102,241,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}
.hero-glow {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none; animation: glowFloat 8s ease-in-out infinite;
}
.g1 { width: 500px; height: 500px; background: rgba(99,102,241,0.12); top: -100px; right: -100px; animation-delay: 0s; }
.g2 { width: 350px; height: 350px; background: rgba(139,92,246,0.10); bottom: -80px; left: -80px; animation-delay: 4s; }
@keyframes glowFloat { 0%,100%{transform:translate(0,0)} 50%{transform:translate(20px,-20px)} }

.hero-inner { position: relative; z-index: 1; padding: 4rem 2rem; }

.avail-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(99,102,241,0.1); border: 0.5px solid rgba(99,102,241,0.3);
  border-radius: 20px; padding: 6px 16px; font-size: 12.5px; color: #A5B4FC;
  margin-bottom: 1.8rem; width: fit-content;
}
.pulse-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #4ADE80;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.8)} }

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 900; line-height: 1.06; letter-spacing: -2px;
  margin-bottom: 1.4rem;
}
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-sub { color: rgba(249,250,251,0.55); font-size: 1.05rem; max-width: 580px; margin-bottom: 1.8rem; line-height: 1.85; }

.pill-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 2rem; }
.pill { background: rgba(255,255,255,0.05); border: 0.5px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 5px 14px; font-size: 12.5px; color: rgba(249,250,251,0.7); }

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 2rem; }
.btn-primary { display: inline-flex; align-items: center; gap: 6px; background: var(--grad); color: #fff; border: none; border-radius: 9px; padding: 12px 26px; font-size: 14px; font-weight: 600; cursor: pointer; transition: opacity .2s, transform .2s; }
.btn-primary:hover { opacity: .88; transform: translateY(-1px); }
.btn-ghost { display: inline-flex; align-items: center; gap: 6px; background: transparent; color: rgba(249,250,251,0.8); border: 0.5px solid rgba(255,255,255,0.2); border-radius: 9px; padding: 12px 26px; font-size: 14px; font-weight: 500; cursor: pointer; transition: border-color .2s, color .2s, transform .2s; }
.btn-ghost:hover { border-color: rgba(255,255,255,0.5); color: #fff; transform: translateY(-1px); }

.hero-socials { display: flex; align-items: center; gap: 14px; margin-bottom: 2.5rem; }
.socials-label { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 1.5px; }
.social-icon { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.05); border: 0.5px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: rgba(249,250,251,0.6); transition: background .2s, color .2s, transform .2s; }
.social-icon:hover { background: rgba(99,102,241,0.2); color: #fff; transform: translateY(-2px); }

.hero-stats { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.stat { text-align: center; }
.stat-n { font-size: 1.9rem; font-weight: 800; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.stat-l { font-size: 11.5px; color: var(--muted); margin-top: 2px; }
.stat-div { width: 1px; height: 40px; background: rgba(255,255,255,0.1); }

.scroll-down { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; color: var(--muted); border: 0.5px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 6px 14px; transition: color .2s; animation: bounce 2s ease-in-out infinite; }
.scroll-down:hover { color: #fff; }
@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(5px)} }


/* ── HERO TWO-COLUMN ── */
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
  min-height: calc(100vh - 64px);
  padding: 5rem 2rem 3rem;
}
.hero-left { display: flex; flex-direction: column; }

/* ── HERO VISUAL ── */
.hero-right { display: flex; align-items: center; justify-content: center; }
.hero-visual {
  position: relative;
  width: 420px;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Orbit rings */
.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(99,102,241,0.2);
  animation: spin linear infinite;
}
.ring1 { width: 300px; height: 300px; animation-duration: 20s; }
.ring2 { width: 390px; height: 390px; animation-duration: 30s; animation-direction: reverse; }
@keyframes spin { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }

/* Center dev emoji */
.hero-dev-wrap {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-dev-bg {
  position: absolute;
  width: 140px; height: 55px;
  background: rgba(99,102,241,0.15);
  border-radius: 40px;
  bottom: -10px;
  filter: blur(12px);
}
.hero-dev-emoji {
  font-size: 90px;
  line-height: 1;
  filter: drop-shadow(0 0 30px rgba(99,102,241,0.4));
  animation: devFloat 4s ease-in-out infinite;
  display: block;
}
@keyframes devFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

/* Floating stat cards */
.float-card {
  position: absolute;
  background: rgba(15,17,32,0.9);
  border: 0.5px solid rgba(99,102,241,0.25);
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  z-index: 10;
  white-space: nowrap;
}
.fc-icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: rgba(99,102,241,0.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.fc-num   { font-size: 15px; font-weight: 800; color: var(--white); }
.fc-label { font-size: 11px; color: var(--muted); }

/* Card positions + individual float animations */
.card-projects {
  top: 60px; right: 10px;
  animation: float1 5s ease-in-out infinite;
}
.card-exp {
  top: 200px; right: -20px;
  animation: float2 6s ease-in-out infinite;
}
.card-mca {
  bottom: 80px; left: -10px;
  animation: float3 5.5s ease-in-out infinite;
}
@keyframes float1 { 0%,100%{transform:translateY(0) rotate(-1deg)} 50%{transform:translateY(-10px) rotate(1deg)} }
@keyframes float2 { 0%,100%{transform:translateY(0) rotate(1deg)}  50%{transform:translateY(-8px) rotate(-1deg)}  }
@keyframes float3 { 0%,100%{transform:translateY(0) rotate(-2deg)} 50%{transform:translateY(-12px) rotate(0deg)} }

/* Location tag */
.hero-loc-tag {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12.5px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  animation: float1 6s ease-in-out infinite;
}

/* Hide orbit on mobile */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; padding-top: 6rem; }
  .hero-right { display: none; }
}

/* ── FADE-UP ANIMATION ── */
.fade-up { opacity: 0; transform: translateY(24px); animation: fadeUp .7s ease forwards; animation-delay: var(--d, 0ms); }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* ── SECTIONS ── */
.section { padding: 6rem 0; }
.section-alt { background: var(--dark2); }
.sec-eye { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); margin-bottom: .6rem; font-weight: 600; }
.sec-title { font-size: clamp(1.8rem, 3.5vw, 2.4rem); font-weight: 800; letter-spacing: -1px; margin-bottom: 1rem; }
.sec-sub { color: rgba(249,250,251,0.5); font-size: 14.5px; max-width: 560px; margin-bottom: 2.5rem; line-height: 1.8; }

/* ── REVEAL ON SCROLL ── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem; align-items: start; margin-top: 1rem; }
.about-left p { color: rgba(249,250,251,0.65); font-size: 14.5px; line-height: 1.85; margin-bottom: 1rem; }
.about-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 1.2rem; }
.atag { background: rgba(99,102,241,0.1); border: 0.5px solid rgba(99,102,241,0.25); border-radius: 6px; padding: 4px 12px; font-size: 12px; color: #A5B4FC; }
.about-bullet { display: flex; align-items: flex-start; gap: 12px; padding: 10px 0; border-bottom: 0.5px solid rgba(255,255,255,0.05); font-size: 14px; color: rgba(249,250,251,0.72); }
.about-bullet:last-child { border-bottom: none; }
.ab-icon { color: var(--accent); font-size: 11px; margin-top: 5px; flex-shrink: 0; }

/* ── SKILLS ── */
.skills-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 1rem; margin-bottom: 1.5rem; }
.skill-card { background: var(--card); border: 0.5px solid var(--border); border-radius: var(--radius); padding: 1.4rem; transition: border-color .25s, transform .25s; }
.skill-card:hover { border-color: rgba(99,102,241,0.5); transform: translateY(-3px); }
.skill-card-title { font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--accent); margin-bottom: 12px; font-weight: 700; }
.skill-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.stag { background: rgba(255,255,255,0.04); border: 0.5px solid rgba(255,255,255,0.1); border-radius: 6px; padding: 4px 11px; font-size: 12.5px; color: rgba(249,250,251,0.75); }
.skills-note { font-size: 13.5px; color: var(--muted); text-align: center; }

/* ── PROJECTS ── */
.projects-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px,1fr)); gap: 1.25rem; }
.proj-card { background: var(--card); border: 0.5px solid var(--border); border-radius: var(--radius); padding: 1.8rem; transition: border-color .25s, transform .25s; display: flex; flex-direction: column; gap: .8rem; }
.proj-card:hover { border-color: rgba(99,102,241,0.5); transform: translateY(-4px); }
.proj-card-top { display: flex; align-items: center; justify-content: space-between; }
.proj-icon-wrap { width: 48px; height: 48px; border-radius: 12px; background: linear-gradient(135deg, rgba(99,102,241,0.2), rgba(139,92,246,0.2)); border: 0.5px solid var(--border); display: flex; align-items: center; justify-content: center; }
.proj-icon { font-size: 22px; }
.proj-links { display: flex; gap: 8px; }
.proj-link-icon { width: 32px; height: 32px; border-radius: 8px; background: rgba(255,255,255,0.05); border: 0.5px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: rgba(249,250,251,0.5); transition: background .2s, color .2s; }
.proj-link-icon:hover { background: rgba(99,102,241,0.2); color: #fff; }
.proj-title { font-size: 16px; font-weight: 700; }
.proj-tagline { font-size: 12px; color: var(--accent); font-weight: 500; }
.proj-desc { font-size: 13.5px; color: rgba(249,250,251,0.55); line-height: 1.75; }
.proj-bullets { display: flex; flex-direction: column; gap: 5px; }
.proj-bullets li { font-size: 12.5px; color: rgba(249,250,251,0.55); padding-left: 14px; position: relative; }
.proj-bullets li::before { content: '▸'; position: absolute; left: 0; color: var(--accent); font-size: 10px; top: 3px; }
.proj-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; }
.ptag { background: rgba(99,102,241,0.08); border: 0.5px solid rgba(99,102,241,0.2); border-radius: 6px; padding: 3px 10px; font-size: 11.5px; color: #A5B4FC; }

/* ── TIMELINE ── */
.timeline { display: flex; flex-direction: column; gap: 0; margin-bottom: 2.5rem; }
.tl-item { display: flex; gap: 1.5rem; position: relative; padding-bottom: 2.5rem; }
.tl-marker { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; padding-top: 4px; }
.tl-dot { width: 14px; height: 14px; border-radius: 50%; background: var(--grad); border: 2px solid var(--dark2); flex-shrink: 0; box-shadow: 0 0 0 4px rgba(99,102,241,0.15); }
.tl-line { width: 1.5px; flex: 1; background: linear-gradient(to bottom, rgba(99,102,241,0.4), rgba(99,102,241,0.05)); margin-top: 8px; }
.tl-content { flex: 1; padding-bottom: .5rem; }
.tl-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; flex-wrap: wrap; margin-bottom: .8rem; }
.tl-role { font-size: 15.5px; font-weight: 700; margin-bottom: 3px; }
.tl-company { font-size: 13px; color: var(--accent); font-weight: 500; }
.tl-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 5px; flex-shrink: 0; }
.tl-badge { display: inline-block; border-radius: 6px; padding: 3px 11px; font-size: 11px; font-weight: 600; }
.tl-badge.intern { background: rgba(74,222,128,0.1); border: 0.5px solid rgba(74,222,128,0.3); color: #4ADE80; }
.tl-badge.edu    { background: rgba(99,102,241,0.1); border: 0.5px solid rgba(99,102,241,0.3); color: #A5B4FC; }
.tl-date { font-size: 12px; color: var(--muted); white-space: nowrap; }
.tl-desc { font-size: 13.5px; color: rgba(249,250,251,0.6); line-height: 1.75; margin-bottom: .8rem; }
.tl-bullets { display: flex; flex-direction: column; gap: 5px; }
.tl-bullets li { font-size: 13px; color: rgba(249,250,251,0.55); padding-left: 14px; position: relative; }
.tl-bullets li::before { content: '▸'; position: absolute; left: 0; color: var(--accent); font-size: 10px; top: 3px; }

/* Cert */
.cert-wrap { margin-top: 1rem; }
.cert-card { background: var(--card); border: 0.5px solid var(--border); border-radius: var(--radius); padding: 1.4rem 1.6rem; display: flex; align-items: center; gap: 1.2rem; transition: border-color .2s; }
.cert-card:hover { border-color: rgba(99,102,241,0.4); }
.cert-icon { font-size: 28px; flex-shrink: 0; }
.cert-title { font-size: 14.5px; font-weight: 700; margin-bottom: 4px; }
.cert-by { font-size: 12.5px; color: var(--muted); }


footer { padding: 2.5rem 0; border-top: 0.5px solid rgba(255,255,255,0.06); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-logo { font-weight: 800; font-size: 15px; display: flex; align-items: center; gap: 8px; }
.footer-logo span { font-size: 13px; font-weight: 500; color: var(--muted); }
.footer-copy { font-size: 12.5px; color: var(--muted); }
.footer-socials { display: flex; gap: 8px; }


/* Location stat - plain text not big number */
.loc-stat { display: flex; align-items: center; }
.stat-loc { font-size: 13px; color: var(--muted); white-space: nowrap; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  #navbar { padding: 0 1.2rem; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: block; }
  .hero-title { letter-spacing: -1px; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .cf-row { grid-template-columns: 1fr; }
  .tl-header { flex-direction: column; }
  .tl-meta { align-items: flex-start; }
  .hero-stats { gap: 1rem; }
  .stat-div { display: none; }
  .footer-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .container { padding: 0 1.2rem; }
  .hero-inner { padding: 3rem 0; }
  .section { padding: 4rem 0; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
/* ── CONTACT ── */
.contact-box {
  background: var(--card);
  border: 0.5px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  margin-top: 1rem;
}
.cbox-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.4rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.cbox-name { font-size: 20px; font-weight: 800; margin-bottom: 4px; }
.cbox-role { font-size: 13.5px; color: var(--accent); font-weight: 500; }
.cbox-loc  {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--muted);
}
.cbox-avail {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(74,222,128,0.08);
  border: 0.5px solid rgba(74,222,128,0.25);
  border-radius: 20px; padding: 6px 16px;
  font-size: 13px; color: #4ADE80;
  margin-bottom: 2rem; width: fit-content;
}
.cbox-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
.cbox-card {
  background: rgba(255,255,255,0.03);
  border: 0.5px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 1.2rem;
  position: relative;
  transition: border-color .2s, transform .2s, background .2s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cbox-card:hover {
  border-color: rgba(99,102,241,0.4);
  background: rgba(99,102,241,0.06);
  transform: translateY(-2px);
}
.cbox-card-arrow {
  position: absolute; top: 12px; right: 14px;
  font-size: 14px; color: rgba(249,250,251,0.25);
  transition: color .2s;
}
.cbox-card:hover .cbox-card-arrow { color: rgba(249,250,251,0.7); }
.cbox-card-icon {
  width: 44px; height: 44px;
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
}
.email-ic    { background: rgba(37,99,235,0.2);  color: #60A5FA; }
.linkedin-ic { background: rgba(10,102,194,0.2); color: #60A5FA; }
.whatsapp-ic { background: rgba(37,211,102,0.2); color: #4ADE80; }
.cbox-card-label {
  font-size: 10.5px; letter-spacing: 1.5px;
  color: var(--muted); font-weight: 600;
  text-transform: uppercase;
}
.cbox-card-val {
  font-size: 13px; color: rgba(249,250,251,0.8);
  font-weight: 500;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.cbox-bottom {
  display: flex; align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 0.5px solid rgba(255,255,255,0.07);
  flex-wrap: wrap; gap: 1rem;
}
.response-time { font-size: 13px; color: var(--muted); }
.response-time strong { color: rgba(249,250,251,0.7); }

/* ── FOOTER ── */footer { padding: 2.5rem 0; border-top: 0.5px solid rgba(255,255,255,0.06); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-logo { font-weight: 800; font-size: 15px; display: flex; align-items: center; gap: 8px; }
.footer-logo span { font-size: 13px; font-weight: 500; color: var(--muted); }
.footer-copy { font-size: 12.5px; color: var(--muted); }
.footer-socials { display: flex; gap: 8px; }

/* Contact mobile */
@media (max-width: 640px) {
  .cbox-cards { grid-template-columns: 1fr; }
  .cbox-top { flex-direction: column; }
  .cbox-bottom { flex-direction: column; align-items: flex-start; }
}
