/* ============================================================
   YF U-Shine Limited — styles.css
   Design: Bold Light + Electric Blue
   Palette: white base, #2563EB primary, #4f46e5 indigo accent
   ============================================================ */

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

:root {
  /* Brand */
  --blue:        #2563EB;
  --blue-dark:   #1e40af;
  --blue-light:  #3b82f6;
  --indigo:      #4f46e5;
  --blue-glow:   rgba(37, 99, 235, 0.12);
  --blue-border: rgba(37, 99, 235, 0.2);
  --grad-cta:    linear-gradient(135deg, #2563EB 0%, #4f46e5 100%);

  /* Neutrals */
  --navy:        #0f172a;
  --charcoal:    #0f172a;
  --body:        #334155;
  --muted:       #64748b;
  --border:      #e2e8f0;
  --cream:       #f8faff;
  --white:       #ffffff;
  --section-alt: #f1f5fe;
}

html { scroll-behavior: smooth; }
body {
  font-family: "Inter", sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }

.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.9rem;
}
.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1.1;
  letter-spacing: -0.5px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  margin-top: 0.75rem;
  max-width: 600px;
  line-height: 1.75;
}

/* ── NAV ─────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 20px rgba(15, 23, 42, 0.08); }
.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo-img { height: 36px; width: auto; display: block; object-fit: contain; }
.nav-logo-text {
  font-size: 17px; font-weight: 800; color: var(--charcoal);
  letter-spacing: -0.3px; text-decoration: none;
}
.nav-logo-text span { color: var(--blue); }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  color: var(--body); text-decoration: none; font-size: 13px; font-weight: 500;
  padding: 8px 14px; border-radius: 6px; transition: all 0.18s;
}
.nav-links a:hover { color: var(--blue); background: var(--blue-glow); }
.nav-right { display: flex; align-items: center; gap: 12px; }
.lang-switcher {
  display: flex; gap: 3px; padding: 4px;
  background: var(--cream); border-radius: 8px; border: 1px solid var(--border);
}
.lang-btn {
  background: none; border: none; color: var(--muted); font-size: 11px;
  font-weight: 700; padding: 4px 10px; cursor: pointer; border-radius: 5px;
  font-family: "Inter", sans-serif; transition: all 0.18s; letter-spacing: 0.5px;
}
.lang-btn:hover { color: var(--blue); }
.lang-btn.active { background: var(--blue); color: #fff; }
.nav-cta {
  background: var(--grad-cta); color: #fff; font-size: 12px; font-weight: 700;
  padding: 9px 18px; border-radius: 8px; text-decoration: none; transition: all 0.2s;
  white-space: nowrap; letter-spacing: 0.2px;
}
.nav-cta:hover { opacity: 0.88; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37,99,235,0.32); }
.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  padding: 4px; flex-direction: column; gap: 5px;
}
.hamburger span {
  display: block; width: 20px; height: 1.5px;
  background: var(--charcoal); transition: all 0.2s; border-radius: 2px;
}
.mobile-menu {
  display: none; position: fixed; top: 64px; left: 0; right: 0;
  background: var(--white); z-index: 199;
  border-bottom: 1px solid var(--border); padding: 1.25rem 2rem 1.75rem;
  box-shadow: 0 8px 30px rgba(15,23,42,0.08);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; color: var(--body); text-decoration: none;
  padding: 12px 0; font-size: 15px; border-bottom: 1px solid var(--border);
}
.mobile-menu a:hover { color: var(--blue); }
.mobile-lang { display: flex; gap: 8px; margin-top: 1.25rem; }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--white);
  display: flex; align-items: center;
  position: relative; overflow: hidden; padding-top: 64px;
}
/* Subtle dot-grid background */
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle, rgba(37,99,235,0.12) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
/* Large blue gradient blob */
.hero-glow {
  position: absolute; top: -15%; right: -5%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(79,70,229,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero-glow2 {
  position: absolute; bottom: 0; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(37,99,235,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: 1100px; margin: 0 auto; padding: 5rem 2rem 4rem; width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--blue-glow); border: 1px solid var(--blue-border);
  border-radius: 20px; padding: 5px 14px; margin-bottom: 2rem;
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue); animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.35} }
.hero-badge-text { font-size: 12px; font-weight: 600; color: var(--blue); }
.hero-headline {
  font-size: clamp(3rem, 7vw, 5.8rem);
  font-weight: 900; color: var(--charcoal);
  line-height: 1.02; letter-spacing: -2px;
  margin-bottom: 1.5rem;
}
.hero-headline em {
  font-style: normal;
  background: linear-gradient(135deg, #2563EB 0%, #4f46e5 30%, #60a5fa 60%, #2563EB 100%);
  background-size: 300% 300%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-flow 4s ease-in-out infinite;
}
@keyframes gradient-flow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.hero-sub {
  font-size: 1.1rem; color: var(--muted);
  max-width: 600px; line-height: 1.8; margin-bottom: 2.5rem; font-weight: 400;
}
.hero-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--grad-cta); color: #fff;
  font-size: 14px; font-weight: 700; padding: 14px 26px;
  border-radius: 10px; text-decoration: none; transition: all 0.2s;
  box-shadow: 0 4px 15px rgba(37,99,235,0.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37,99,235,0.38);
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); color: var(--body);
  font-size: 14px; font-weight: 600; padding: 14px 26px;
  border-radius: 10px; text-decoration: none;
  border: 1.5px solid var(--border); transition: all 0.2s;
}
.btn-secondary:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-glow); }
.hero-stats {
  display: flex; gap: 3rem; margin-top: 4rem;
  padding-top: 3rem; border-top: 1px solid var(--border); flex-wrap: wrap;
}
.hs-num {
  font-size: 2.4rem; font-weight: 900; color: var(--blue);
  letter-spacing: -1.5px; line-height: 1;
}
.hs-num span { font-size: 1.6rem; }
.hs-label { font-size: 12px; color: var(--muted); margin-top: 5px; letter-spacing: 0.2px; }

/* ── SERVICES ────────────────────────────────────────────── */
.services { padding: 6rem 0; background: var(--cream); }
.services-header { text-align: center; margin-bottom: 4rem; }
.services-header .section-subtitle { margin: 0.75rem auto 0; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.svc-card {
  background: var(--white); padding: 2.5rem 2rem;
  border-radius: 16px; border: 1.5px solid var(--border);
  border-top: 4px solid var(--blue);
  transition: all 0.25s; position: relative; overflow: hidden;
}
.svc-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: var(--grad-cta);
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(37,99,235,0.12);
  border-color: var(--blue-border);
}
.svc-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  background: var(--blue-glow); border: 1px solid var(--blue-border);
}
.svc-icon svg {
  width: 24px; height: 24px;
  stroke: var(--blue); fill: none; stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round;
}
.svc-num {
  font-size: 11px; font-weight: 700; color: var(--blue);
  letter-spacing: 2px; margin-bottom: 0.6rem;
}
.svc-title { font-size: 1.15rem; font-weight: 800; color: var(--charcoal); margin-bottom: 0.7rem; }
.svc-text { font-size: 0.88rem; color: var(--muted); line-height: 1.8; margin-bottom: 1.25rem; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.svc-tag {
  font-size: 10px; font-weight: 700; letter-spacing: 0.5px;
  padding: 4px 10px; border-radius: 5px;
  background: var(--blue-glow); color: var(--blue); border: 1px solid var(--blue-border);
}

/* ── ABOUT ───────────────────────────────────────────────── */
.about { padding: 6rem 0; background: var(--white); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-label {
  font-size: 11px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--blue); margin-bottom: 1rem;
}
.about-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800; color: var(--charcoal); line-height: 1.15; letter-spacing: -0.5px;
}
.about-body {
  font-size: 0.9rem; color: var(--muted); line-height: 1.9; margin-top: 1.1rem;
}
.about-facts {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--border); border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden; margin-top: 2.5rem;
}
.fact { background: var(--cream); padding: 1.1rem 1.4rem; }
.fact-label {
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--muted); margin-bottom: 4px;
}
.fact-val { font-size: 0.88rem; font-weight: 700; color: var(--charcoal); }

/* About visual panel (blue card) */
.about-visual {
  background: linear-gradient(145deg, var(--blue) 0%, var(--indigo) 100%);
  border-radius: 20px; padding: 2.5rem; display: flex; flex-direction: column; gap: 0;
}
.av-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.1rem 0; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.av-item:last-child { border-bottom: none; padding-bottom: 0; }
.av-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.av-icon svg {
  width: 18px; height: 18px; stroke: #fff; fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
  animation: icon-float 4s ease-in-out infinite;
}
.av-item:nth-child(2) .av-icon svg { animation-delay: 0.5s; }
.av-item:nth-child(3) .av-icon svg { animation-delay: 1s; }
.av-item:nth-child(4) .av-icon svg { animation-delay: 1.5s; }
@keyframes icon-float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-4px)} }
.av-title { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 3px; }
.av-text { font-size: 12px; color: rgba(255,255,255,0.65); line-height: 1.6; }

/* ── LEADERSHIP ──────────────────────────────────────────── */
.leadership { padding: 6rem 0; background: var(--section-alt); }
.leadership-inner { display: grid; grid-template-columns: 320px 1fr; gap: 4rem; align-items: start; }
.leader-card {
  background: var(--white); border-radius: 18px; overflow: hidden;
  border: 1.5px solid var(--border);
  box-shadow: 0 4px 20px rgba(15,23,42,0.06);
}
.leader-photo {
  width: 100%; aspect-ratio: 4/3;
  background: linear-gradient(145deg, #1a3a5c 0%, #0f172a 100%);
  display: flex; align-items: center; justify-content: center; position: relative;
  overflow: hidden;
}
.leader-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block;
}
.leader-photo-badge {
  position: absolute; bottom: 12px; right: 12px;
  background: var(--blue); color: #fff;
  font-size: 10px; font-weight: 700; padding: 5px 12px;
  border-radius: 6px; letter-spacing: 0.5px; text-transform: uppercase;
}
.leader-info { padding: 1.5rem 1.75rem; }
.leader-name { font-size: 1.2rem; font-weight: 800; color: var(--charcoal); letter-spacing: -0.3px; }
.leader-role {
  font-size: 11px; font-weight: 700; color: var(--blue);
  letter-spacing: 1px; margin-top: 4px; text-transform: uppercase;
}
.leader-contact { margin-top: 1rem; font-size: 12px; color: var(--muted); line-height: 2.2; }
.leader-contact a { color: var(--muted); text-decoration: none; }
.leader-contact a:hover { color: var(--blue); }

.leader-bio-title {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800; color: var(--charcoal); letter-spacing: -0.4px;
  margin-bottom: 1rem; line-height: 1.2;
}
.leader-summary { font-size: 0.9rem; color: var(--body); line-height: 1.9; margin-bottom: 1.75rem; }
.key-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-bottom: 2rem; }
.ks {
  background: var(--white); border-radius: 12px;
  padding: 1.1rem 1.1rem; border: 1.5px solid var(--border);
  transition: border-color 0.2s;
}
.ks:hover { border-color: var(--blue-border); }
.ks-num { font-size: 1.7rem; font-weight: 900; color: var(--charcoal); letter-spacing: -1px; line-height: 1; }
.ks-num span { color: var(--blue); font-size: 1.1rem; }
.ks-label { font-size: 11px; color: var(--muted); margin-top: 4px; line-height: 1.4; }

.career-timeline { display: flex; flex-direction: column; }
.ci {
  display: flex; gap: 1rem; padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
}
.ci:last-child { border-bottom: none; padding-bottom: 0; }
.ci-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--blue); margin-top: 6px; flex-shrink: 0;
}
.ci-year {
  font-size: 11px; font-weight: 700; color: var(--muted);
  letter-spacing: 0.3px; width: 96px; flex-shrink: 0; padding-top: 2px;
}
.ci-role { font-size: 13px; font-weight: 700; color: var(--charcoal); line-height: 1.35; }
.ci-company { font-size: 12px; color: var(--muted); margin-top: 1px; }

/* ── WHY US ──────────────────────────────────────────────── */
.why { padding: 6rem 0; background: var(--white); }
.why-header { text-align: center; margin-bottom: 3.5rem; }
.why-header .section-subtitle { margin: 0.75rem auto 0; }
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.why-card {
  background: var(--white); padding: 2rem 1.75rem;
  border-radius: 14px; border: 1.5px solid var(--border); transition: all 0.25s;
}
.why-card:hover {
  border-color: var(--blue-border);
  box-shadow: 0 8px 32px rgba(37,99,235,0.09);
  transform: translateY(-3px);
}
.wi {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--blue-glow); border: 1px solid var(--blue-border);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.1rem;
}
.wi svg {
  width: 20px; height: 20px; stroke: var(--blue); fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
  transition: transform 0.35s cubic-bezier(.34,1.56,.64,1);
}
.why-card:hover .wi svg { transform: scale(1.25) rotate(10deg); }
.why-title { font-size: 14px; font-weight: 800; color: var(--charcoal); margin-bottom: 0.5rem; }
.why-text { font-size: 13px; color: var(--muted); line-height: 1.75; }

/* ── CONTACT ─────────────────────────────────────────────── */
.contact { padding: 6rem 0; background: var(--section-alt); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contact-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800; color: var(--charcoal); line-height: 1.2;
  letter-spacing: -0.4px; margin-bottom: 1rem;
}
.contact-desc { font-size: 0.9rem; color: var(--muted); line-height: 1.8; margin-bottom: 2.5rem; }
.office-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 14px; padding: 1.75rem;
  box-shadow: 0 2px 12px rgba(15,23,42,0.05);
}
.office-title {
  font-size: 10px; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase; color: var(--blue); margin-bottom: 1.25rem;
}
.oi { display: flex; gap: 12px; margin-bottom: 1rem; align-items: flex-start; }
.oi:last-child { margin-bottom: 0; }
.oi-icon { flex-shrink: 0; margin-top: 2px; }
.oi-icon svg {
  width: 16px; height: 16px; stroke: var(--blue); fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; opacity: 0.7;
}
.oi-text { font-size: 13px; color: var(--body); line-height: 1.65; }
.oi-text strong {
  color: var(--charcoal); font-weight: 700; display: block;
  margin-bottom: 1px; font-size: 10px; letter-spacing: 0.8px; text-transform: uppercase;
}

/* Contact Form */
.form-wrap {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 16px; padding: 2rem;
  box-shadow: 0 2px 12px rgba(15,23,42,0.05);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fg { margin-bottom: 1rem; }
.fg label {
  display: block; font-size: 10px; font-weight: 800;
  letter-spacing: 1px; text-transform: uppercase; color: var(--muted); margin-bottom: 6px;
}
.fg input, .fg select, .fg textarea {
  width: 100%; background: var(--cream);
  border: 1.5px solid var(--border); border-radius: 8px;
  color: var(--charcoal); font-family: "Inter", sans-serif;
  font-size: 13px; padding: 10px 14px; outline: none; transition: border-color 0.2s;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}
.fg textarea { resize: vertical; min-height: 90px; }
.fg select option { background: var(--white); }
.btn-submit {
  width: 100%; background: var(--grad-cta); color: #fff;
  border: none; font-family: "Inter", sans-serif;
  font-size: 14px; font-weight: 700; padding: 14px;
  border-radius: 9px; cursor: pointer; transition: all 0.2s;
  box-shadow: 0 4px 15px rgba(37,99,235,0.25);
}
.btn-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(37,99,235,0.35);
}

/* ── FOOTER ──────────────────────────────────────────────── */
footer {
  background: var(--navy); padding: 3.5rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand-name { font-size: 14px; font-weight: 800; color: #fff; }
.footer-brand-sub { font-size: 11px; color: rgba(255,255,255,0.3); }
.footer-desc {
  font-size: 12px; color: rgba(255,255,255,0.38);
  line-height: 1.8; margin-top: 1rem; max-width: 280px;
}
.fc-title {
  font-size: 10px; font-weight: 800; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,0.28); margin-bottom: 1rem;
}
.footer-col a {
  display: block; font-size: 12px; color: rgba(255,255,255,0.48);
  text-decoration: none; margin-bottom: 8px; transition: color 0.2s;
}
.footer-col a:hover { color: rgba(255,255,255,0.9); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05); padding-top: 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 0.75rem;
}
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.22); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 11px; color: rgba(255,255,255,0.22); text-decoration: none; }
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ── LANGUAGE SYSTEM ─────────────────────────────────────── */
[data-lang] { display: none; }
[data-lang].active { display: block; }
a>[data-lang].active,
button>[data-lang].active,
strong>[data-lang].active,
.hero-badge-text>[data-lang].active,
.hero-badge-text [data-lang].active,
.svc-tag>[data-lang].active,
.svc-tag [data-lang].active,
.nav-cta [data-lang].active,
.btn-submit [data-lang].active,
.footer-copy [data-lang].active,
.footer-legal [data-lang].active,
.footer-col a [data-lang].active,
.ci-role [data-lang].active,
.oi-text strong [data-lang].active { display: inline; }
[data-lang-i] { display: none; }
[data-lang-i].active { display: inline; }

/* ── ICON ANIMATIONS ─────────────────────────────────────── */
@keyframes icon-slide  { 0%,100%{transform:translateX(0)} 50%{transform:translateX(4px)} }
@keyframes icon-spin   { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
@keyframes icon-bounce {
  0%,100%{transform:translateY(0) scale(1)}
  30%{transform:translateY(-6px) scale(1.05)}
  60%{transform:translateY(-2px) scale(0.98)}
}
.svc-icon.anim-float svg { animation: icon-float 3s ease-in-out infinite; }
.svc-icon.anim-slide svg { animation: icon-slide 2.2s ease-in-out infinite; }
.svc-icon.anim-spin svg  { animation: icon-spin 7s linear infinite; }
.svc-icon.anim-bounce svg { animation: icon-bounce 2.8s ease-in-out infinite; }

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

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .about-inner, .contact-inner, .leadership-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .services-grid, .why-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 2rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .key-stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .form-row, .about-facts, .key-stats { grid-template-columns: 1fr; }
  .hero-headline { font-size: 2.6rem; letter-spacing: -0.5px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-stats { gap: 1.5rem; }
  .hs-num { font-size: 2rem; }
}
