/*
Theme Name: BYCN IT VN
Theme URI: https://www.bycnitvn.com
Author: BYCN IT VN
Description: BYCN IT Vietnam recruitment landing page theme
Version: 1.0
License: GNU General Public License v2 or later
*/

/* ── Reset & Base ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  background: #fff;
  color: #0B1628;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
button, a { font-family: inherit; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: #F97316; border-radius: 3px; }

/* ── Animations ───────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}
@keyframes tabInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes tabInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ── Reveal on scroll ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }
.reveal-d5 { transition-delay: 0.40s; }
.reveal-d6 { transition-delay: 0.48s; }

/* ── Typography ───────────────────────────────────────────────── */
.section-label {
  display: flex; justify-content: center; margin-bottom: 0.75rem;
}
.section-label span {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: #F97316; font-weight: 700; font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 0.12em;
}
.section-label span::before,
.section-label span::after {
  content: ''; width: 24px; height: 2px; background: #F97316; display: inline-block;
}
.section-label.left { justify-content: flex-start; }

h2.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800; color: #0B1628;
  line-height: 1.2; letter-spacing: -0.025em;
  margin-bottom: 1rem; text-wrap: balance;
}
h2.section-title.centered { text-align: center; }

/* ── Layout helpers ───────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section    { padding: 6rem 2rem; }

/* ── Navbar ───────────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(11,22,40,0.55);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s ease;
}
.navbar.scrolled {
  background: rgba(11,22,40,0.92);
  box-shadow: 0 2px 24px rgba(0,0,0,0.25);
  border-bottom: 1px solid rgba(249,115,22,0.2);
}
.navbar-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 2rem; height: 88px;
  display: flex; align-items: center; justify-content: space-between;
}
.navbar-logo {
  display: flex; align-items: center; gap: 0.75rem; text-decoration: none;
}
.navbar-logo img { height: 52px; width: auto; object-fit: contain; background: #fff; padding: 4px 6px; border-radius: 6px; }
.navbar-logo .wordmark {
  color: #fff; font-weight: 800; font-size: 1rem; letter-spacing: -0.02em;
  border-left: 1px solid rgba(255,255,255,0.25); padding-left: 0.75rem;
}
.navbar-logo .wordmark span { color: #F97316; }
.navbar-links { display: flex; align-items: center; gap: 2rem; }
.navbar-links a {
  text-decoration: none; font-size: 0.9rem; font-weight: 500;
  color: rgba(255,255,255,0.85); transition: color 0.2s;
}
.navbar-links a:hover { color: #F97316; }
.navbar-cta {
  background: #F97316; color: #fff;
  padding: 0.5rem 1.25rem; border-radius: 4px;
  text-decoration: none; font-weight: 600; font-size: 0.88rem;
  transition: background 0.2s, transform 0.2s;
}
.navbar-cta:hover { background: #ea6a0a; }
.navbar-burger {
  display: none; background: none; border: none; cursor: pointer; padding: 0.5rem;
}
.navbar-mobile-menu {
  display: none; flex-direction: column; gap: 0.25rem;
  background: #0B1628; padding: 1rem 0 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.navbar-mobile-menu.open { display: flex; }
.navbar-mobile-menu a {
  text-decoration: none; color: rgba(255,255,255,0.85); font-weight: 500;
  padding: 0.75rem 1.5rem; font-size: 0.95rem;
}
.navbar-mobile-menu .navbar-cta { margin: 0.5rem 1.5rem; display: inline-block; text-align: center; }

/* ── Hero ─────────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 60vh;
  display: flex; align-items: center;
  overflow: hidden; padding-top: 88px;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 30%;
  opacity: 0; transition: opacity 1.2s ease-in-out;
  pointer-events: none;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0.5) 100%);
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 3rem 2rem 5rem; width: 100%;
}
.hero-title {
  font-size: clamp(1.6rem, 3.5vw, 3.25rem);
  font-weight: 900; color: #fff;
  text-shadow: 0 2px 24px rgba(0,0,0,0.5), 0 1px 4px rgba(0,0,0,0.4);
  line-height: 1.1; letter-spacing: -0.03em;
  margin-bottom: 1.25rem; max-width: 760px;
}
.hero-sub {
  font-size: clamp(0.9rem, 1.8vw, 1.1rem);
  color: #fff;
  text-shadow: 0 1px 3px rgba(0,0,0,0.9), 0 2px 16px rgba(0,0,0,0.8);
  margin-bottom: 2.5rem; font-weight: 500; letter-spacing: 0.02em;
  background: rgba(0,0,0,0.38);
  display: inline-block;
  padding: 0.45rem 1.1rem;
  border-radius: 6px;
}
.hero-sub .stat { color: #F97316; font-weight: 700; }
.hero-sub .sep  { margin: 0 0.75rem; opacity: 0.8; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 4rem; }
.btn-primary {
  background: #F97316; color: #fff;
  border: none; border-radius: 4px;
  padding: 0.85rem 2rem; font-size: 1rem; font-weight: 700;
  cursor: pointer; box-shadow: 0 4px 24px rgba(249,115,22,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(249,115,22,0.5); }
.btn-secondary {
  background: rgba(255,255,255,0.15); color: #fff;
  border: 1.5px solid rgba(255,255,255,0.6); border-radius: 4px;
  backdrop-filter: blur(8px);
  padding: 0.85rem 2rem; font-size: 1rem; font-weight: 600;
  cursor: pointer; transition: border-color 0.2s, background 0.2s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.25); }
.hero-indicators {
  position: absolute; bottom: 1.5rem; left: 50%;
  transform: translateX(-50%); z-index: 3;
  display: flex; gap: 0.5rem;
}
.hero-dot {
  height: 6px; border-radius: 3px; border: none; cursor: pointer;
  background: rgba(255,255,255,0.5); width: 10px;
  transition: all 0.3s ease; padding: 0;
}
.hero-dot.active { background: #F97316; width: 32px; }

/* ── About ────────────────────────────────────────────────────── */
.about-section { padding: 1rem 2rem 2rem; }
.about-card {
  max-width: 1200px; margin: 2rem auto 0;
  border: 1px solid rgba(11,22,40,0.10); border-radius: 8px;
  overflow: hidden; position: relative; z-index: 5;
  box-shadow: 0 20px 50px -12px rgba(11,22,40,0.18), 0 4px 12px rgba(11,22,40,0.06);
}
.about-tabs {
  display: grid; grid-template-columns: repeat(3,1fr);
  background: #fff;
}
.about-tab {
  display: flex; align-items: center; gap: 0.9rem;
  padding: 1.25rem 1.4rem;
  background: #fff; border: none; cursor: pointer;
  font-family: inherit; text-align: left; position: relative;
  border-right: 1px solid rgba(11,22,40,0.06);
  transition: background 0.35s ease;
}
.about-tab:last-child { border-right: none; }
.about-tab.active { background: linear-gradient(180deg,#fff5ed 0%,#fff 100%); }
.tab-icon {
  width: 42px; height: 42px; border-radius: 6px; flex-shrink: 0;
  background: rgba(11,22,40,0.05); color: #475569;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease;
}
@keyframes tab-icon-bounce {
  0%   { transform: scale(1); }
  30%  { transform: scale(1.32) rotate(-8deg); }
  55%  { transform: scale(0.88) rotate(4deg); }
  75%  { transform: scale(1.1); }
  100% { transform: scale(1); }
}
@keyframes tab-icon-ring {
  0%   { box-shadow: 0 4px 12px rgba(249,115,22,0.35), 0 0 0 0 rgba(249,115,22,0.45); }
  70%  { box-shadow: 0 4px 12px rgba(249,115,22,0.35), 0 0 0 10px rgba(249,115,22,0); }
  100% { box-shadow: 0 4px 12px rgba(249,115,22,0.35), 0 0 0 0 rgba(249,115,22,0); }
}
/* Persistent idle: slow breathing glow on the active icon */
@keyframes tab-icon-breathe {
  0%, 100% {
    box-shadow: 0 4px 12px rgba(249,115,22,0.35), 0 0 0 0 rgba(249,115,22,0);
    background: #F97316;
  }
  50% {
    box-shadow: 0 6px 20px rgba(249,115,22,0.55), 0 0 14px 4px rgba(249,115,22,0.22);
    background: #fb8c38;
  }
}
.about-tab.active .tab-icon {
  background: #F97316; color: #fff;
  box-shadow: 0 4px 12px rgba(249,115,22,0.35);
  animation: tab-icon-breathe 2.8s ease-in-out infinite;
}
.about-tab.active .tab-icon.animating {
  /* Click bounce+ring takes over; breathe resumes after they finish */
  animation:
    tab-icon-bounce 0.52s cubic-bezier(0.34, 1.56, 0.64, 1) both,
    tab-icon-ring   0.65s ease-out both,
    tab-icon-breathe 2.8s ease-in-out 0.65s infinite;
}
.tab-sub  { font-size: 0.65rem; font-weight: 700; color: #94a3b8; letter-spacing: 0.08em; text-transform: uppercase; }
.tab-name { font-size: 0.95rem; font-weight: 800; color: #475569; line-height: 1.2; letter-spacing: -0.015em; }
.about-tab.active .tab-sub  { color: #F97316; }
.about-tab.active .tab-name { color: #0B1628; }
.about-panel {
  background: #fff; padding: 1.5rem 2.5rem 2.5rem;
  position: relative; overflow: hidden; min-height: 380px;
}
.tab-indicator {
  position: absolute; top: 0; left: 0; height: 3px; background: #F97316;
  transition: width 0.35s cubic-bezier(0.4,0,0.2,1);
}
.about-panel-content { display: none; }
.about-panel-content.active {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 3rem; align-items: flex-start;
  animation: tabInRight 0.5s cubic-bezier(0.4,0,0.2,1);
}
.about-panel-content h3 {
  font-size: 1.65rem; font-weight: 800; color: #0B1628;
  margin-bottom: 0.5rem; line-height: 1.25; letter-spacing: -0.02em;
}
.about-panel-content p {
  color: #475569; font-size: 0.92rem; line-height: 1.75; margin-bottom: 1rem;
}
.about-link {
  display: inline-flex; align-items: center; gap: 0.3rem;
  color: #F97316; font-weight: 600; font-size: 0.9rem;
  text-decoration: none; margin-top: 0.25rem;
}
.about-link:hover { text-decoration: underline; }
.about-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
.about-stat-card {
  background: #fff; border-radius: 6px; padding: 1.4rem 1.2rem 1.2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  display: flex; flex-direction: column; gap: 0.6rem;
  border: 1.5px solid #e2e8f0;
  animation: fadeUp 0.4s ease both;
}
.about-stat-card .icon {
  width: 34px; height: 34px; border-radius: 4px;
  background: rgba(249,115,22,0.13); color: #F97316;
  display: flex; align-items: center; justify-content: center;
}
.about-stat-card .num  { font-size: 1.4rem; font-weight: 800; color: #0B1628; line-height: 1; letter-spacing: -0.02em; }
.about-stat-card .lbl  { font-size: 0.65rem; color: #94a3b8; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }

/* GPW */
.gpw-block {
  display: flex; align-items: center; gap: 0.85rem;
  margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid #e8eaf0;
}
.gpw-block img { height: 52px; width: auto; flex-shrink: 0; object-fit: contain; }
.gpw-title { font-size: 0.8rem; font-weight: 800; color: #0B1628; margin-bottom: 0.2rem; }
.gpw-desc  { font-size: 0.75rem; color: #64748b; line-height: 1.5; }
.gpw-meta  { font-size: 0.68rem; font-weight: 700; color: #94a3b8; letter-spacing: 0.06em; text-transform: uppercase; margin-top: 0.25rem; }

/* Group pillars */
.group-img-wrap {
  background: linear-gradient(135deg,#f8faff,#fff5ed);
  border-radius: 8px; padding: 1.25rem; margin-bottom: 1rem;
  border: 1px solid #fed7aa;
}
.pillars-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }
.pillar-card {
  background: #f1f5f9; border-radius: 8px; padding: 0.7rem 0.85rem;
  border-left: 3px solid #F97316;
}
.pillar-name { font-size: 0.75rem; font-weight: 800; color: #0B1628; margin-bottom: 0.15rem; }
.pillar-desc { font-size: 0.7rem; color: #64748b; line-height: 1.4; }

/* ── Our Values ──────────────────────────────────────────────── */
.values-section {
  padding: 0 2rem 5rem;
  background: #fff;
}
.values-layout {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}
.values-img-wrap {
  position: relative;
  background: #fff;
  flex: 0 0 auto;
}
.values-content {
  flex: 1;
  min-width: 0;
}
.values-img {
  display: block;
  max-width: 300px;
  height: auto;
  margin: 0 0 0 auto;
}
.values-img-sweep { display: none; }
h2.values-title {
  white-space: nowrap;
  text-wrap: nowrap;
  font-size: 2rem;
}
@media (max-width: 1100px) {
  h2.values-title { white-space: normal; text-wrap: wrap; font-size: clamp(1.1rem, 3vw, 1.5rem); }
}
.values-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.value-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 8px;
  background: rgba(249,115,22,0.1);
  color: #F97316;
  display: flex; align-items: center; justify-content: center;
}
.value-title {
  font-size: 1rem;
  font-weight: 700;
  color: #0B1628;
  margin-bottom: 0.25rem;
}
.value-desc {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .values-layout { flex-direction: column; gap: 2rem; align-items: center; }
  .values-img-wrap { width: 100%; }
  .values-img { max-width: 100%; margin: 0 auto; }
}

/* ── Services ─────────────────────────────────────────────────── */
.services-section {
  padding: 0 2rem 4rem;
  background: #fff;
}
.services-layout {
  display: grid; grid-template-columns: 1fr 1.3fr 1fr;
  gap: 2.5rem; align-items: stretch; margin-top: 3.5rem;
}
.services-col { display: flex; flex-direction: column; justify-content: space-between; gap: 3rem; }
.service-card {
  border-left: 3px solid transparent;
  border-radius: 8px;
  padding: 1.25rem 1rem 1.25rem 1.25rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease,
              border-color 0.25s ease, background 0.25s ease;
  cursor: default;
}
.service-card:hover {
  transform: translateY(-5px);
  border-left-color: #F97316;
  background: #fff8f4;
  box-shadow: 0 12px 32px rgba(249,115,22,0.12), 0 2px 8px rgba(0,0,0,0.06);
}
.service-card .svc-icon {
  width: 52px; height: 52px; border-radius: 6px;
  background: rgba(249,115,22,0.13); color: #F97316;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  transition: background 0.25s ease, transform 0.25s ease;
}
.service-card:hover .svc-icon {
  background: rgba(249,115,22,0.25);
  transform: scale(1.08);
}
.service-card h3 { font-weight: 700; font-size: 1.1rem; color: #0B1628; margin-bottom: 0.6rem; }
.service-card p  { color: #64748b; font-size: 0.9rem; line-height: 1.75; margin-bottom: 0.85rem; }
.tag-list { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.tag {
  background: #fff5ed; color: #F97316;
  font-size: 0.72rem; font-weight: 600;
  padding: 0.2rem 0.6rem; border-radius: 100px;
  border: 1px solid #fed7aa;
}
.services-img {
  width: 100%; height: 440px; object-fit: cover;
  border-radius: 8px; box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

/* ─────────────────────────────────────────────────────────────────
   Services photo — premium entrance animation
   Strategy:
     1. Pre-reveal: image clipped to a thin horizontal slit + tilted
        in 3D perspective + invisible.
     2. On .visible: clip-path expands to full rect (iris open),
        3D tilt returns to flat, opacity rises.
     3. After reveal: a light-sweep shimmer passes once across
        the surface (::before pseudo-element driven by CSS animation).
     4. Glow border breathes on a slow loop (box-shadow keyframe).
   All transitions are CSS-only — JS only adds the .visible class
   via the existing IntersectionObserver.
   ──────────────────────────────────────────────────────────────── */

/* ── Keyframes ─────────────────────────────────────────────────── */

/* Clip-path iris: opens from a thin horizontal band to full rectangle */
@keyframes svcs-iris-open {
  0%   { clip-path: inset(48% 8% 48% 8% round 6px); }
  40%  { clip-path: inset(8%  4%  8%  4% round 6px); }
  100% { clip-path: inset(0%  0%  0%  0% round 8px); }
}

/* 3D perspective tilt — settles from slight tilt to flat */
@keyframes svcs-tilt-settle {
  0%   { transform: perspective(900px) rotateY(-14deg) rotateX(6deg) scale(0.92); }
  55%  { transform: perspective(900px) rotateY(3deg)   rotateX(-2deg) scale(1.01); }
  100% { transform: perspective(900px) rotateY(0deg)   rotateX(0deg)  scale(1); }
}

/* Light sweep — a diagonal glare passes left → right once */
@keyframes svcs-sweep {
  0%   { transform: translateX(-120%) skewX(-18deg); opacity: 0;   }
  15%  { opacity: 1; }
  85%  { opacity: 0.55; }
  100% { transform: translateX(220%)  skewX(-18deg); opacity: 0;   }
}

/* Border glow — enters bright then settles to a soft idle pulse */
@keyframes svcs-glow-enter {
  0%   { box-shadow:
    0 0 0 0   rgba(249,115,22,0),
    0 20px 60px rgba(0,0,0,0.15); }
  30%  { box-shadow:
    0 0 0 4px  rgba(249,115,22,0.55),
    0 0  40px  rgba(249,115,22,0.35),
    0 20px 60px rgba(0,0,0,0.20); }
  65%  { box-shadow:
    0 0 0 2px  rgba(249,115,22,0.28),
    0 0  20px  rgba(249,115,22,0.15),
    0 20px 60px rgba(0,0,0,0.18); }
  100% { box-shadow:
    0 0 0 1.5px rgba(30,95,168,0.22),
    0 0  12px   rgba(30,95,168,0.08),
    0 20px 60px rgba(0,0,0,0.15); }
}

/* Idle glow pulse — runs after enter animation finishes */
@keyframes svcs-glow-idle {
  0%, 100% { box-shadow:
    0 0 0 1.5px rgba(30,95,168,0.20),
    0 0  12px   rgba(30,95,168,0.06),
    0 20px 60px rgba(0,0,0,0.15); }
  50% { box-shadow:
    0 0 0 2px   rgba(249,115,22,0.28),
    0 0  22px   rgba(249,115,22,0.12),
    0 22px 64px rgba(0,0,0,0.18); }
}


/* ── Wrapper ────────────────────────────────────────────────────── */
.services-img-wrap {
  /* Override the generic reveal transform so this element starts
     in the clipped / tilted state rather than the plain translateY */
  position: relative;
  border-radius: 8px;
  align-self: center;

  /* Pre-reveal state — override generic .reveal defaults */
  opacity: 0;
  transform: perspective(900px) rotateY(-14deg) rotateX(6deg) scale(0.92);
  /* No transition here — animation is driven by keyframes on .visible */
}

/* Remove the generic reveal transition that would fight the keyframes */
.services-img-wrap {
  transition: none !important;
}

/* ── Revealed state ─────────────────────────────────────────────── */
.services-img-wrap.visible {
  opacity: 1; /* ensure visibility after animation */
  transform: none;

  /* Tilt settle on the wrapper itself */
  animation:
    svcs-tilt-settle  0.85s cubic-bezier(0.22, 1, 0.36, 1) both,
    svcs-glow-enter   1.1s  cubic-bezier(0.22, 1, 0.36, 1) both,
    svcs-glow-idle    3.4s  ease-in-out 1.2s infinite;
}

/* ── Inner image — iris clip reveal ────────────────────────────── */
.services-img-wrap .services-img {
  /* Ensure the clip respects the image, not the wrapper */
  clip-path: inset(48% 8% 48% 8% round 6px);
  box-shadow: none; /* wrapper handles the shadow/glow */
}

.services-img-wrap.visible .services-img {
  animation: svcs-iris-open 0.90s cubic-bezier(0.22, 1, 0.36, 1) 0.05s both;
}

/* ── Light sweep overlay ────────────────────────────────────────── */
.services-img-sweep {
  position: absolute;
  inset: 0;
  border-radius: 8px;
  overflow: hidden;
  pointer-events: none;
  /* Clip sweep to image bounds */
  clip-path: inset(0 0 0 0 round 8px);
}

.services-img-sweep::after {
  content: '';
  position: absolute;
  top: -20%;
  left: 0;
  width: 55%;
  height: 140%;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(255,255,255,0.0)  30%,
    rgba(255,255,255,0.38) 50%,
    rgba(255,255,255,0.0)  70%,
    transparent 100%
  );
  transform: translateX(-120%) skewX(-18deg);
  opacity: 0;
}

.services-img-wrap.visible .services-img-sweep::after {
  /* Fires once, after iris is mostly open */
  animation: svcs-sweep 0.80s ease-out 0.70s 1 forwards;
}


/* ── Reduced motion — respect user preference ───────────────────── */
@media (prefers-reduced-motion: reduce) {
  .services-img-wrap,
  .services-img-wrap.visible,
  .services-img-wrap .services-img,
  .services-img-wrap.visible .services-img,
  .services-img-wrap.visible .services-img-sweep::after {
    animation: none !important;
    transition: opacity 0.4s ease !important;
    clip-path: none !important;
    transform: none !important;
  }
  .services-img-wrap.visible {
    opacity: 1;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  }
}

/* ══════════════════════════════════════════════════════════════
   Why Join — light redesign
   Soft neutral background, seamless with Services and Jobs
   ══════════════════════════════════════════════════════════════ */

/* ── Section shell ─────────────────────────────────────────── */
.whyjoin-section {
  position: relative;
  padding: 3.5rem 2rem 5rem;
  /* Photo base — modern office. Overlay is applied via ::before */
  background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1600&q=80');
  background-size: cover;
  background-position: center 40%;
  background-attachment: scroll;
  border-top: none;
  border-bottom: none;
  overflow: hidden;
}

/* Dark multi-stop overlay: opaque navy at edges, slightly lighter at center.
   Creates depth without fully hiding the photo. */
.whyjoin-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg,
      rgba(11,22,40,0.95) 0%,
      rgba(11,22,40,0.88) 40%,
      rgba(30,60,100,0.90) 70%,
      rgba(11,22,40,0.96) 100%);
  pointer-events: none;
  z-index: 0;
}

/* Dot pattern sits above the photo overlay — kept but made white-toned for dark bg */
.wj-bg-grid {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 100%);
}

/* ── Section header ─────────────────────────────────────────── */
.wj-header {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

/* The section-label pill adapts naturally to the light background —
   the default .section-label span already uses #F97316 on transparent,
   which reads well here. .section-label--light is retained as a no-op
   alias so HTML need not change. */
.section-label--light span {
  color: #F97316;
}

.wj-title-wrap {
  position: relative;
  display: inline-block;
  margin: 0.5rem 0 0.75rem;
}

/* Watermark text — white-toned ghost stroke visible on dark photo overlay */
.wj-title-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(5rem, 18vw, 14rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.07);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

.wj-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.85rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  /* White on dark photo overlay — high contrast */
  color: #fff;
  position: relative;
  z-index: 1;
}
.wj-title em {
  font-style: normal;
  /* Orange gradient stays — pops well against the dark overlay */
  background: linear-gradient(135deg, #F97316 0%, #FBBF24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.wj-subtitle {
  /* Soft white-blue on dark background — readable without being glaring */
  color: rgba(226,232,240,0.85);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 480px;
  margin: 0 auto;
}

/* ── Stat counters ──────────────────────────────────────────── */
.wj-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 3rem;
  /* Glass surface — frosted white on the dark photo background */
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 32px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.15);
}

.wj-stat {
  padding: 1.75rem 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.12);
  background: transparent;
  transition: background 0.3s ease;
}
.wj-stat:last-child { border-right: none; }
/* Warm orange tint on hover — semi-transparent to keep glass feel */
.wj-stat:hover { background: rgba(249,115,22,0.12); }

/* Entrance override for stat items — slide up */
.wj-stat.reveal        { transform: translateY(20px) scale(0.96); }
.wj-stat.reveal.visible { transform: translateY(0) scale(1); }

.wj-stat__number {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 900;
  color: #F97316;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}

.wj-stat__label {
  font-size: 0.78rem;
  font-weight: 600;
  /* Soft white-slate — legible on the glass stat surface */
  color: rgba(203,213,225,0.9);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── Bento mosaic grid ──────────────────────────────────────── */
.wj-simple-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.75rem 5rem;
  position: relative; z-index: 2;
  margin-bottom: 2.75rem;
}
.wj-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: rgba(0,0,0,0.35);
  border-radius: 10px;
  padding: 1.25rem;
}
.wj-item__icon {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: 10px;
  background: rgba(249,115,22,0.3);
  color: #F97316;
  display: flex; align-items: center; justify-content: center;
}
.wj-item__title {
  font-size: 1.05rem; font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
  margin: 0 0 0.45rem;
}
.wj-item__body {
  font-size: 0.9rem; line-height: 1.75;
  color: rgba(255,255,255,0.9);
  text-shadow: 0 1px 3px rgba(0,0,0,0.7);
  margin: 0;
}
@media (max-width: 640px) {
  .wj-simple-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* legacy bento — kept for reference, unused */
.wj-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(180px, auto);
  position: relative; z-index: 2;
  gap: 1rem;
  margin-bottom: 2.75rem;
  position: relative;
  z-index: 1;
}

/* Column/row placement for each card in the mosaic */
/* Card 1: Global Exposure — tall, left side (col 1-4, row 1-2) */
.wj-bento > article:nth-child(1) { grid-column: 1 / 5; grid-row: 1 / 3; }
/* Card 2: Real Ownership — wide featured (col 5-12, row 1) */
.wj-bento > article:nth-child(2) { grid-column: 5 / 13; grid-row: 1 / 2; }
/* Card 3: Modern Tech Stack (col 5-8, row 2) */
.wj-bento > article:nth-child(3) { grid-column: 5 / 9;  grid-row: 2 / 3; }
/* Card 4: Career Acceleration (col 9-12, row 2) */
.wj-bento > article:nth-child(4) { grid-column: 9 / 13; grid-row: 2 / 3; }
/* Card 5: Competitive Rewards (col 1-4, row 3) */
.wj-bento > article:nth-child(5) { grid-column: 1 / 5;  grid-row: 3 / 4; }
/* Card 6: Strong Team Culture — wide bottom (col 5-12, row 3) */
.wj-bento > article:nth-child(6) { grid-column: 5 / 13; grid-row: 3 / 4; }

/* ── Base card styles ───────────────────────────────────────── */
.wj-card {
  /* Glass card — frosted white on dark photo background */
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 16px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.22), inset 0 1px 0 rgba(255,255,255,0.8);
  /* Entrance animation: lift + scale */
  transition:
    opacity 0.6s ease,
    transform 0.65s cubic-bezier(0.34, 1.56, 0.64, 1),
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

/* Staggered entrance — dramatic scale-up preserved */
.wj-card.reveal        { transform: translateY(40px) scale(0.85); }
.wj-card.reveal.visible { transform: translateY(0) scale(1); }

/* Subtle orange radial on hover — works on white surface */
.wj-card::after {
  content: '';
  position: absolute;
  top: -60%;
  left: -60%;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle at 30% 30%, rgba(249,115,22,0.05), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.wj-card:hover {
  /* Lift — slightly more opaque on hover, orange border accent */
  background: rgba(255,255,255,0.97);
  border-color: rgba(249,115,22,0.45);
  box-shadow: 0 16px 44px rgba(0,0,0,0.28), 0 4px 16px rgba(249,115,22,0.14), inset 0 1px 0 rgba(255,255,255,0.9);
  transform: translateY(-4px) scale(1.01);
}
.wj-card:hover::after { opacity: 1; }

/* ── Icon wrapper ───────────────────────────────────────────── */
.wj-card__icon-wrap {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: rgba(249,115,22,0.12);
  border: 1px solid rgba(249,115,22,0.2);
  color: #F97316;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.wj-card:hover .wj-card__icon-wrap {
  background: rgba(249,115,22,0.22);
  transform: scale(1.12) rotate(6deg);
}

/* SVG stroke draw-in: each path starts with stroke-dashoffset = its length,
   then animates to 0 once the card gets .visible                             */
.wj-icon { overflow: visible; }
.wj-icon circle,
.wj-icon ellipse,
.wj-icon line,
.wj-icon polyline,
.wj-icon path,
.wj-icon rect {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  transition: stroke-dashoffset 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.wj-card.visible .wj-icon circle,
.wj-card.visible .wj-icon ellipse,
.wj-card.visible .wj-icon line,
.wj-card.visible .wj-icon polyline,
.wj-card.visible .wj-icon path,
.wj-card.visible .wj-icon rect {
  stroke-dashoffset: 0;
}
/* Stagger the stroke draw between paths inside the same icon */
.wj-icon *:nth-child(1) { transition-delay: 0.25s; }
.wj-icon *:nth-child(2) { transition-delay: 0.42s; }
.wj-icon *:nth-child(3) { transition-delay: 0.58s; }
.wj-icon *:nth-child(4) { transition-delay: 0.72s; }

/* ── Card typography ────────────────────────────────────────── */
.wj-card__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  /* Dark navy — same as service-card h3 and job-card h3 */
  color: #0B1628;
  margin: 0;
  line-height: 1.3;
}
.wj-card__body {
  font-size: 0.875rem;
  line-height: 1.7;
  /* Slate — same as service-card p and job-desc */
  color: #64748b;
  margin: 0;
}
.wj-card__tag {
  display: inline-block;
  margin-top: auto;
  padding: 0.3rem 0.75rem;
  /* Matches the .tag pill in the Services section */
  background: #fff5ed;
  border: 1px solid #fed7aa;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #F97316;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  width: fit-content;
}

/* ── Featured card (Real Ownership) ────────────────────────── */
.wj-card--featured {
  /* Warm pale-orange glass — slightly warmer tint than the white base cards */
  background: linear-gradient(135deg, rgba(255,247,240,0.97) 0%, rgba(255,255,255,0.95) 100%);
  border-color: rgba(251,191,36,0.55);
  box-shadow: 0 8px 32px rgba(249,115,22,0.18), 0 2px 8px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.9);
}
.wj-card--featured:hover {
  box-shadow: 0 18px 48px rgba(249,115,22,0.22), 0 4px 16px rgba(0,0,0,0.22), inset 0 1px 0 rgba(255,255,255,0.9);
}
.wj-card--featured .wj-card__icon-wrap {
  background: rgba(249,115,22,0.14);
  border-color: rgba(249,115,22,0.3);
}
.wj-card--featured .wj-card__title { font-size: 1.25rem; }

/* Top accent line on the featured card */
.wj-card__accent-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #F97316, #FBBF24, #F97316);
  background-size: 200% 100%;
  animation: accentSlide 3s linear infinite;
}
@keyframes accentSlide {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.wj-card__quote {
  margin-top: auto;
  padding: 0.875rem 1rem;
  border-left: 3px solid rgba(249,115,22,0.45);
  /* Warm off-white tint — matches the group-img-wrap aesthetic */
  background: rgba(249,115,22,0.05);
  border-radius: 0 8px 8px 0;
  font-size: 0.82rem;
  font-style: italic;
  /* Readable slate on light bg */
  color: #64748b;
  line-height: 1.65;
}

/* ── Wide card layout helper ────────────────────────────────── */
.wj-card--wide { flex-direction: row; flex-wrap: wrap; align-items: flex-start; gap: 1.25rem; }
.wj-card--wide .wj-card__icon-wrap { flex-shrink: 0; }
.wj-card--wide .wj-card__quote { flex: 1 1 100%; }

/* ── Culture card (Strong Team) ─────────────────────────────── */
.wj-card--culture { align-items: flex-start; }
.wj-card__culture-text { flex: 1 1 auto; display: flex; flex-direction: column; gap: 0.5rem; }

.wj-card__avatars {
  display: flex;
  align-items: center;
  gap: -0.5rem;
  margin-top: auto;
  align-self: center;
}
.wj-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  /* Soft blue gradient — visible and on-brand against white card surface */
  background: linear-gradient(135deg, #1e5fa8, #3b82f6);
  /* White ring separator between overlapping avatars */
  border: 2px solid #fff;
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  display: flex; align-items: center; justify-content: center;
  margin-left: -0.5rem;
  transition: transform 0.25s ease;
  flex-shrink: 0;
  box-shadow: 0 1px 4px rgba(11,22,40,0.12);
}
.wj-avatar:first-child { margin-left: 0; }
.wj-avatar--more {
  background: #fff5ed;
  border-color: #fed7aa;
  color: #F97316;
  font-size: 0.58rem;
  box-shadow: 0 1px 4px rgba(249,115,22,0.15);
}
.wj-card__avatars:hover .wj-avatar { transform: translateX(4px); }
.wj-card__avatars:hover .wj-avatar:first-child { transform: none; }

/* ── CTA row ────────────────────────────────────────────────── */
.wj-cta { text-align: center; position: relative; z-index: 2; }
.wj-cta__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: linear-gradient(135deg, #F97316, #C2410C);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 100px;
  box-shadow: 0 8px 28px rgba(249,115,22,0.35);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.3s ease;
}
.wj-cta__link:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 14px 40px rgba(249,115,22,0.5);
}
.wj-cta__link svg {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.wj-cta__link:hover svg { transform: translateX(4px); }

/* ── Responsive overrides ───────────────────────────────────── */
/* 768px: flatten bento to 2-col stack, stats to 2x2 */
@media (max-width: 768px) {
  .whyjoin-section { padding: 2.5rem 1.25rem 3rem; }
  .wj-stats {
    grid-template-columns: repeat(2, 1fr);
    border-radius: 12px;
  }
  .wj-stat:nth-child(2) { border-right: none; }
  .wj-stat:nth-child(1),
  .wj-stat:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.12); }

  /* Collapse the 12-col bento to 2-col auto grid */
  .wj-bento {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
  }
  .wj-bento > article:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
  }
  /* Featured card spans full width on tablet */
  .wj-bento > article:nth-child(2) { grid-column: 1 / -1; }
  /* Culture card spans full width on tablet */
  .wj-bento > article:nth-child(6) { grid-column: 1 / -1; }

  .wj-card--wide { flex-direction: column; }
  .wj-card__avatars { align-self: flex-start; }
}

/* 480px: single column, stats 2x2 stays but stat numbers shrink */
@media (max-width: 480px) {
  .wj-bento {
    grid-template-columns: 1fr;
  }
  .wj-bento > article:nth-child(n) { grid-column: 1 / -1; }
  .wj-stat { padding: 1.25rem 1rem; }
  .wj-title { font-size: 1.65rem; }
}

/* ── Jobs ─────────────────────────────────────────────────────── */
.jobs-section {
  padding: 4rem 2rem; background: #fff; border-top: 1px solid #f1f5f9;
}
.filter-bar {
  display: flex; gap: 0.5rem; flex-wrap: wrap;
  justify-content: center; margin-bottom: 2.5rem;
}
.filter-btn {
  padding: 0.5rem 1.25rem; border-radius: 6px;
  border: 1.5px solid #e2e8f0;
  background: #fff; color: #64748b;
  font-weight: 600; font-size: 0.85rem; cursor: pointer;
  transition: all 0.2s; font-family: inherit;
}
.filter-btn.active {
  background: #F97316; border-color: #F97316; color: #fff;
}
.jobs-grid {
  display: grid; grid-template-columns: repeat(auto-fill,minmax(320px,1fr));
  gap: 1.25rem;
}
.jobs-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3rem 1.5rem;
  margin-top: 1.5rem;
  background: #fff;
  border: 1.5px dashed #fed7aa;
  border-radius: 16px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.jobs-empty__icon {
  width: 56px; height: 56px;
  background: #fff5ed;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #F97316;
  margin-bottom: 1rem;
}
.jobs-empty__heading {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0B1628;
  margin: 0 0 0.4rem;
}
.jobs-empty__sub {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.7;
  margin: 0 0 1.25rem;
}
.jobs-empty__cta {
  display: inline-block;
  background: #F97316;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.6rem 1.4rem;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.jobs-empty__cta:hover { background: #ea6a0a; transform: translateY(-1px); }
.job-card {
  background: #fff; border: 1.5px solid #e8eaf0;
  border-radius: 8px; padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: all 0.25s ease;
  display: flex; flex-direction: column; gap: 0.75rem;
  animation: fadeUp 0.4s ease both;
}
.job-card:hover {
  border-color: #F97316;
  box-shadow: 0 8px 32px rgba(249,115,22,0.12);
  transform: translateY(-4px);
}
.job-badges { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-bottom: 0.5rem; }
.badge-lang {
  font-size: 0.7rem; font-weight: 700;
  padding: 0.15rem 0.5rem; border-radius: 4px; letter-spacing: 0.05em;
}
.badge-lang.fr { background: #dbeafe; color: #1d4ed8; }
.badge-lang.en { background: #dcfce7; color: #15803d; }
.badge-type {
  background: #f1f5f9; color: #64748b;
  font-size: 0.7rem; font-weight: 600;
  padding: 0.15rem 0.5rem; border-radius: 4px;
}
.badge-hot {
  background: #fff5ed; color: #F97316; font-size: 0.7rem; font-weight: 700;
  padding: 0.2rem 0.6rem; border-radius: 4px;
  border: 1px solid #fed7aa; white-space: nowrap; margin-left: auto;
}
.job-card h3 { font-weight: 700; color: #0B1628; font-size: 1rem; margin-bottom: 0.25rem; }
.job-category { color: #F97316; font-size: 0.8rem; font-weight: 600; }
.job-desc { color: #64748b; font-size: 0.85rem; line-height: 1.65; margin: 0; }
.apply-btn {
  display: inline-block; margin-top: 0.25rem;
  background: transparent; color: #F97316;
  border: 1.5px solid #F97316; border-radius: 4px;
  padding: 0.55rem 1.25rem; font-weight: 700; font-size: 0.85rem;
  cursor: pointer; transition: all 0.2s; text-decoration: none; align-self: flex-start;
}
.job-card:hover .apply-btn { background: #F97316; color: #fff; }

/* ── Footer ───────────────────────────────────────────────────── */
.footer {
  background: #060e1c; padding: 4rem 2rem 2rem;
  color: rgba(255,255,255,0.6);
}
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand .logo-row {
  display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem;
}
.footer-brand img { height: 40px; width: auto; background: #fff; padding: 4px 6px; border-radius: 6px; }
.footer-wordmark {
  color: #fff; font-weight: 800; font-size: 1rem;
  border-left: 1px solid rgba(255,255,255,0.2); padding-left: 0.75rem;
}
.footer-wordmark span { color: #F97316; }
.footer-brand p { font-size: 0.875rem; line-height: 1.75; margin-bottom: 1.25rem; }
.social-links { display: flex; gap: 0.75rem; }
.social-links a {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 0.85rem; text-decoration: none;
}
.footer-col h4 {
  color: #fff; font-weight: 700; margin-bottom: 1rem;
  font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.08em;
}
.footer-col a {
  display: block; color: rgba(255,255,255,0.55); font-size: 0.875rem;
  margin-bottom: 0.6rem; text-decoration: none; transition: color 0.2s;
}
.footer-col a:hover { color: #F97316; }
.contact-item { display: flex; gap: 0.6rem; margin-bottom: 0.85rem; align-items: flex-start; }
.contact-item span { font-size: 0.85rem; line-height: 1.55; }
.group-box {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px; padding: 1rem;
}
.group-box p { font-size: 0.82rem; line-height: 1.7; margin: 0; }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.06); padding-top: 1.5rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom span { font-size: 0.8rem; }
.footer-bottom .tagline { color: #F97316; }

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 768px) {
  .navbar-links { display: none; }
  .navbar-burger { display: flex; }

  /* About */
  .about-tab .tab-sub  { display: none; }
  .about-tab { padding: 0.75rem 0.5rem; gap: 0.4rem; }
  .tab-icon  { width: 32px; height: 32px; }
  .tab-name  { font-size: 0.72rem; white-space: normal; }
  .about-panel { padding: 1rem 1rem 1.5rem; min-height: auto; }
  .about-panel-content.active { grid-template-columns: 1fr; gap: 1.5rem; }

  /* Our Values */
  .values-section { padding: 0 1.25rem 2.5rem; }
  .values-content { width: 100%; }

  /* Services */
  .services-section { padding: 0 1.25rem 2.5rem; }
  .services-layout { grid-template-columns: 1fr; }
  .services-col   { gap: 1.5rem; }
  .services-img-wrap { display: none; }

  /* Hero */
  .hero-ctas { flex-direction: column; gap: 0.75rem; }
  .btn-primary, .btn-secondary { width: 100%; text-align: center; }

  /* Jobs */
  .jobs-grid { grid-template-columns: 1fr; }
  .jobs-section { padding: 2.5rem 1.25rem; }

  .section { padding: 4rem 1rem; }
}
@media (max-width: 480px) {
  .services-layout { grid-template-columns: 1fr; }
  .values-layout { gap: 1.5rem; }
  .about-stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-title { font-size: 1.5rem; }
  .navbar-inner { padding: 0 1rem; }
  .container { padding: 0 1rem; }
}

/* ── Activity Slideshow ──────────────────────────────────────────── */
.act-slideshow-section {
  padding: 3.5rem 0;
  background: #f8fafc;
}
.act-slideshow {
  position: relative;
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
}
.act-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}
.act-slide {
  min-width: 100%;
  aspect-ratio: 16/7;
}
.act-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.act-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.85); border: none; cursor: pointer;
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  color: #0B1628; transition: background 0.2s, transform 0.2s;
  z-index: 2;
}
.act-btn:hover { background: #fff; transform: translateY(-50%) scale(1.08); }
.act-btn--prev { left: 1rem; }
.act-btn--next { right: 1rem; }
.act-dots {
  position: absolute; bottom: 0.85rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: 0.45rem; z-index: 2;
}
.act-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.5); border: none; cursor: pointer;
  padding: 0; transition: background 0.25s, transform 0.25s;
}
.act-dot.active { background: #F97316; transform: scale(1.3); }

@media (max-width: 768px) {
  .act-slideshow { border-radius: 0; max-width: 100%; }
  .act-slide { aspect-ratio: 4/3; }
  .act-btn { width: 36px; height: 36px; }
}
@media (max-width: 480px) {
  .act-slide { aspect-ratio: 1/1; }
  .act-btn--prev { left: 0.5rem; }
  .act-btn--next { right: 0.5rem; }
}
