/* ============================================================
   SERVICES PAGE — services.css
   PART 1: Services Hero only.
   Reuses global.css tokens/utilities (variables, .btn, .section-eyebrow,
   .reveal-fade/.reveal-right). Page-specific classes prefixed "services-".
   Full width — no max-width containers, per page brief.
   ============================================================ */

.services-hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: center;
  width: 100%;
  padding: calc(var(--nav-h) + 60px) clamp(40px, 6vw, 120px) 80px;
  overflow: hidden;
}

/* ---- background ---- */
.services-hero__bg { position: absolute; inset: 0; z-index: -1; }
.services-hero__glow {
  position: absolute;
  top: -20%;
  left: -8%;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--c-copper) 0%, transparent 70%);
  filter: blur(120px);
  opacity: 0.36;
  animation: auroraFloat 17s ease-in-out infinite;
  will-change: transform;
}
.services-hero__radial {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 75% 40%, rgba(227,172,130,0.08), transparent 60%);
}
.services-hero__noise {
  position: absolute; inset: 0;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-repeat: repeat;
}

/* ---- layout (full width, no container cap) ---- */
.services-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}

/* ---- left copy ---- */
.services-hero__heading {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1.18;
  letter-spacing: 0.2px;
  color: var(--c-text-1);
  margin-top: 18px;
}

.services-hero__desc {
  margin-top: 22px;
  max-width: 480px;
  color: var(--c-text-2);
  font-size: 1rem;
  line-height: 1.75;
}

.services-hero__actions {
  margin-top: 34px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---- right: pure CSS/HTML abstract recruitment composition ---- */
.services-hero__visual { display: flex; align-items: center; justify-content: center; }

.services-hero__composition {
  position: relative;
  width: min(400px, 92%);
  aspect-ratio: 1/1;
}

.services-hero__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(217,155,110,0.3);
}
.services-hero__ring--1 {
  inset: 12%;
  animation: servicesRingSpin 26s linear infinite;
}
.services-hero__ring--2 {
  inset: -2%;
  border-style: dashed;
  border-color: rgba(227,172,130,0.2);
  animation: servicesRingSpin 36s linear infinite reverse;
}
@keyframes servicesRingSpin { to { transform: rotate(360deg); } }

.services-hero__lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.services-hero__connector {
  stroke: rgba(217,155,110,0.4);
  stroke-width: 1;
  stroke-dasharray: 5 7;
  animation: servicesLineDash 3s linear infinite;
  animation-delay: var(--ld, 0s);
}
@keyframes servicesLineDash { to { stroke-dashoffset: -120; } }

/* floating "resume card" elements */
.services-hero__card {
  position: absolute;
  width: 116px;
  padding: 14px;
  border-radius: 12px;
  background: var(--c-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--c-line);
  display: flex;
  flex-direction: column;
  gap: 7px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
  will-change: transform;
}
.services-hero__card--1 {
  top: 6%;
  left: 4%;
  animation: servicesCardFloat 6s ease-in-out infinite;
}
.services-hero__card--2 {
  bottom: 8%;
  right: 2%;
  width: 100px;
  animation: servicesCardFloat 7s ease-in-out infinite reverse;
  animation-delay: -1.5s;
}
@keyframes servicesCardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.services-hero__card-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--c-copper-light), var(--c-copper-deep));
  margin-bottom: 2px;
}
.services-hero__card-line {
  display: block;
  height: 4px;
  border-radius: 2px;
  background: rgba(217,155,110,0.25);
}
.services-hero__card-line--wide { width: 90%; }
.services-hero__card-line--mid { width: 65%; }
.services-hero__card-line--narrow { width: 45%; }

/* connection nodes */
.services-hero__node {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--c-copper-light);
  box-shadow: 0 0 12px 3px rgba(217,155,110,0.55);
  will-change: transform;
}
.services-hero__node--1 { top: 24%; left: 20%; animation: servicesNodeDrift 5s ease-in-out infinite; }
.services-hero__node--2 { top: 30%; right: 16%; animation: servicesNodeDrift 6s ease-in-out infinite reverse; }
.services-hero__node--3 { bottom: 22%; left: 22%; animation: servicesNodeDrift 4.5s ease-in-out infinite; animation-delay: -2s; }
@keyframes servicesNodeDrift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(6px, -10px); }
}

/* ---- responsive ---- */
@media (max-width: 1080px) {
  .services-hero { padding-inline: 40px; text-align: center; }
  .services-hero__inner { grid-template-columns: 1fr; gap: 46px; }
  .services-hero__desc { margin-inline: auto; }
  .services-hero__actions { justify-content: center; }
  .services-hero__visual { order: -1; }
}
@media (max-width: 640px) {
  .services-hero { padding-inline: 20px; min-height: auto; padding-top: calc(var(--nav-h) + 40px); padding-bottom: 60px; }
  .services-hero__actions { flex-direction: column; align-items: stretch; }
  .services-hero__actions .btn { justify-content: center; }
  .services-hero__composition { width: min(300px, 88%); }
  .services-hero__card { width: 98px; padding: 11px; }
  .services-hero__card--2 { width: 88px; }
}

/* ============================================================
   OUR RECRUITMENT SERVICES — PART 2
   Premium editorial panels — deliberately NOT the Homepage's
   glassmorphism service-card treatment. No rotating borders,
   no oversized shadows. Full width, no max-width container.
   ============================================================ */

.services-list {
  position: relative;
  width: 100%;
  padding-block: 0 160px;
  padding-inline: clamp(40px, 6vw, 120px);
}

.services-list__header {
  max-width: 720px;
  margin-bottom: 90px;
}

.services-list__heading {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.2;
  color: var(--c-text-1);
  margin: 16px 0 22px;
}

.services-list__desc {
  max-width: 620px;
  color: var(--c-text-2);
  font-size: 1rem;
  line-height: 1.8;
}

/* ---- editorial panel grid: 2 columns x 3 rows desktop ---- */
.services-panel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 70px;
  row-gap: 70px;
}

.services-panel {
  position: relative;
  background: linear-gradient(160deg, rgba(217,155,110,0.035), transparent 60%);
  border: 1px solid transparent;
  border-radius: var(--radius-m);
  padding: 30px 28px;
  transition: transform var(--dur-fast) var(--ease-out), border-color var(--dur-med), box-shadow var(--dur-med);
}
.services-panel:hover {
  transform: translateY(-7px);
  border-color: rgba(217,155,110,0.4);
  box-shadow: 0 0 30px rgba(217,155,110,0.14);
}

.services-panel__icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--c-line);
  margin-bottom: 22px;
  transition: transform var(--dur-med) var(--ease-out), border-color var(--dur-med);
}
.services-panel:hover .services-panel__icon {
  transform: rotate(8deg);
  border-color: rgba(217,155,110,0.5);
}
.services-panel__icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--c-copper-light);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.services-panel__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--c-text-1);
  margin-bottom: 14px;
}

.services-panel__desc {
  color: var(--c-text-2);
  font-size: 0.96rem;
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: 24px;
}

.services-panel__divider {
  display: block;
  width: 44px;
  height: 1px;
  background: var(--c-copper-light);
  opacity: 0.5;
  margin-bottom: 18px;
  transition: width var(--dur-med) var(--ease-out);
}
.services-panel:hover .services-panel__divider {
  width: 74px;
}

.services-panel__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--c-copper-light);
  font-size: 0.88rem;
  font-weight: 600;
}
.services-panel__link span {
  display: inline-block;
  transition: transform var(--dur-fast) var(--ease-out);
}
.services-panel:hover .services-panel__link span {
  transform: translateX(6px);
}

/* ---- responsive ---- */
@media (max-width: 1400px) {
  .services-list { padding-inline: 60px; }
}
@media (max-width: 1080px) {
  .services-list { padding-inline: 40px; }
  .services-panel-grid { grid-template-columns: repeat(2, 1fr); column-gap: 40px; row-gap: 56px; }
}
@media (max-width: 640px) {
  .services-list { padding-block: 0 110px; padding-inline: 20px; }
  .services-panel-grid { grid-template-columns: 1fr; row-gap: 46px; }
  .services-panel { padding: 26px 22px; }
  .services-panel:hover { transform: translateY(-4px); }
}

/* ============================================================
   HOW WE HELP EMPLOYERS / JOB SEEKERS — PART 3
   Alternating (zig-zag) editorial layout. Deliberately no
   glassmorphism, no rotating borders, no oversized shadows —
   thin copper accents and generous whitespace instead.
   ============================================================ */

.services-audience {
  position: relative;
  width: 100%;
  padding-block: 0 140px;
  padding-inline: clamp(40px, 6vw, 120px);
}

.services-audience__divider {
  height: 1px;
  width: 100%;
  max-width: 480px;
  margin: 0 auto 140px;
  background: linear-gradient(90deg, transparent, rgba(217,155,110,0.4), transparent);
}

.services-audience__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.services-audience__heading {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  line-height: 1.22;
  color: var(--c-text-1);
  margin: 16px 0 22px;
}

.services-audience__desc {
  color: var(--c-text-2);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 460px;
  margin-bottom: 34px;
}

.services-audience__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---- Center Glass Node w/ Logo ---- */
.services-hero__center-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(18, 18, 22, 0.85); /* Dark Glass Backdrop so logo colors never blur */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(217, 155, 110, 0.4); /* Premium Copper Border */
  box-shadow: 0 0 45px rgba(217, 155, 110, 0.3),
              0 15px 35px rgba(0, 0, 0, 0.7),
              inset 0 1px 2px rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  z-index: 5;
  transition: transform var(--dur-med) var(--ease-out), border-color var(--dur-med), box-shadow var(--dur-med);
}

.services-hero__brand-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* Soft Backlight Glow to pop the logo out from background */
  filter: drop-shadow(0 0 12px rgba(217, 155, 110, 0.35)) drop-shadow(0 4px 12px rgba(0, 0, 0, 0.8));
  transition: transform var(--dur-fast) var(--ease-out);
}

/* Subtle Hover Glow and Lift */
.services-hero__composition:hover .services-hero__center-logo {
  transform: translate(-50%, -52%) scale(1.06);
  border-color: rgba(217, 155, 110, 0.7);
  box-shadow: 0 0 60px rgba(217, 155, 110, 0.45),
              0 20px 40px rgba(0, 0, 0, 0.8);
}

/* Responsive adjustment for Mobile */
@media (max-width: 640px) {
  .services-hero__center-logo {
    width: 96px;
    height: 96px;
    padding: 16px;
  }
}

/* ---- feature panels (2x2) ---- */
.services-audience__features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 32px;
}

.services-feature {
  position: relative;
  padding: 8px 0;
  transition: transform var(--dur-fast) var(--ease-out);
}
.services-feature:hover { transform: translateY(-5px); }

.services-feature__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--c-line);
  margin-bottom: 18px;
  animation: servicesIconFloat 4.5s ease-in-out infinite;
  transition: border-color var(--dur-med), box-shadow var(--dur-med);
  will-change: transform;
}
.services-feature:hover .services-feature__icon {
  border-color: rgba(217,155,110,0.5);
  box-shadow: 0 0 18px rgba(217,155,110,0.25);
}
@keyframes servicesIconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.services-feature__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--c-copper-light);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.services-feature h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--c-text-1);
  margin-bottom: 8px;
}

.services-feature p {
  color: var(--c-text-2);
  font-size: 0.86rem;
  line-height: 1.6;
  margin-bottom: 14px;
}

.services-feature__accent {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--c-copper-light);
  opacity: 0.5;
  transition: width var(--dur-med) var(--ease-out);
}
.services-feature:hover .services-feature__accent {
  width: 54px;
}

/* ---- responsive ---- */
@media (max-width: 1400px) {
  .services-audience { padding-inline: 60px; }
}
@media (max-width: 1080px) {
  .services-audience { padding-inline: 40px; }
  .services-audience__inner { grid-template-columns: 1fr; gap: 56px; text-align: center; }
  .services-audience__desc { margin-inline: auto; }
  .services-audience__actions { justify-content: center; }
  .services-audience__features { max-width: 560px; margin: 0 auto; text-align: left; }
}
@media (max-width: 640px) {
  .services-audience { padding-block: 0 100px; padding-inline: 20px; }
  .services-audience__divider { margin-bottom: 100px; }
  .services-audience__features { grid-template-columns: 1fr; gap: 34px; }
  .services-audience__actions { flex-direction: column; align-items: stretch; }
  .services-audience__actions .btn { justify-content: center; }
  .services-feature:hover { transform: none; }
}