:root {
  /* ── Core Brand ── */
  --black: #000000;
  --white: #faf8f2;
  --yellow: #f0c000;
  --yellow-bright: #f5d000;
  --yellow-dark: #c49900;

  /* ── New Accent — Deep Ink Navy ── */
  --navy: #000000;
  --navy-mid: #000000;
  --teal: #00897b;

  /* ── Light Surfaces ── */
  --surface: #f3ede0;
  --surface-mid: #ebe3d3;
  --border: #d9d0be;
  --border-strong: #b8ae9c;
  --muted: #6b6257;

  /* ── Dark Sections ── */
  --dark-bg: #000000;
  --dark-surface: #000000;
  --dark-border: #000000;
  --dark-muted: #000000;

  --overlay: rgba(28, 24, 20, 0.82);
  --maxw: 1400px;
  --pad-desktop: 60px;
  --pad-mobile: 24px;
  --section-py-desktop: 80px;
  --section-py-tablet: 76px;
  --section-py-mobile: 68px;
  --transition-smooth: cubic-bezier(0.22, 1, 0.36, 1);
  --transition-bounce: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Reset ── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

/* FIX: selection — dark bg so text is readable even on yellow */
::selection {
  background: var(--black);
  color: var(--yellow-bright);
}

h1,
h2,
h3,
h4,
h5,
h6,
.display {
  font-family: "Antonio", sans-serif;
  letter-spacing: -0.02em;
}

body,
p,
a,
span,
input,
button,
textarea,
select,
label {
  font-family: "Poppins", sans-serif;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--surface);
}

::-webkit-scrollbar-thumb {
  background: var(--border-strong);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--yellow);
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.text-muted-brand {
  color: var(--muted) !important;
}

.maxw-500 {
  max-width: 500px;
}

.bg-surface {
  background: var(--surface);
}

.bg-dark-brand {
  background: var(--dark-bg);
}

.label-eyebrow {
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--yellow-dark);
}

.section-dark .label-eyebrow,
#hero .label-eyebrow,
.section-navy .label-eyebrow {
  color: var(--yellow-bright);
}

.section-title {
  font-weight: 700;
  margin: 10px 0 0;
}

.section-sub {
  font-weight: 400;
  font-size: 17px;
  line-height: 1.8;
  color: var(--muted);
  margin: 16px 0 0;
}

/* Layout */
section {
  width: 100vw;
  margin: 0;
  padding: 0;
  position: relative;
}

.section-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad-desktop);
  padding-right: var(--pad-desktop);
}

.section-py {
  padding-top: var(--section-py-desktop);
  padding-bottom: var(--section-py-desktop);
}

section+section {
  margin-top: 0;
}

/* Dark / Navy sections */
.section-dark {
  background: var(--dark-bg) !important;
  color: var(--white) !important;
}

.section-dark .section-sub,
.section-dark p {
  color: rgba(255, 255, 255, 0.65);
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-navy {
  background: var(--navy) !important;
  color: var(--white) !important;
}

.section-navy .section-sub,
.section-navy p {
  color: rgba(255, 255, 255, 0.6);
}

.section-navy h2,
.section-navy h3 {
  color: var(--white);
}

/* Grain on hero */
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
}

/* ── MARQUEE — smaller/tighter than before ── */
.marquee-strip {
  background: var(--black);
  padding: 9px 0;
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 10;
  border-top: 1px solid rgb(255 255 255 / 10%);
  border-bottom: 1px solid rgb(255 255 255 / 10%);
}
.marquee-track {
    display: inline-flex;
    align-items: center;
    animation: marqueeScroll 25s linear infinite; /* الافتراضي شمال */
    will-change: transform;
}

/* لما يبقى عربي */
.marquee-strip.rtl .marquee-track {
    animation: marqueeScroll1 25s linear infinite; /* يمين */
}

.marquee-strip:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 0 22px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: bold !important;
}

.marquee-sep {
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--white);
  border-radius: 50%;
  opacity: 0.4;
  flex-shrink: 0;
}

.marquee-strip.marquee-dark {
  background: var(--navy);
  border-top-color: rgba(255, 255, 255, 0.06);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

.marquee-strip.marquee-dark .marquee-item {
  color: var(--yellow-bright);
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: bold !important;
}

.marquee-strip.marquee-dark .marquee-sep {
  background: var(--yellow-bright);
  opacity: 0.6;
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes marqueeScroll1 {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(50%);
  }
}

/* ── PRELOADER ── */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--dark-bg);
  display: grid;
  place-items: center;
}

.preloader-inner {
  text-align: center;
  display: grid;
  gap: 18px;
  justify-items: center;
}

.preloader-logo {
  width: 200px;
  opacity: 0;
  transform: scale(0.85);
  transition:
    transform 0.5s var(--transition-smooth),
    opacity 0.5s var(--transition-smooth);
}

.preloader--ready .preloader-logo {
  opacity: 1;
  transform: scale(1);
}

.preloader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.preloader-bar>span {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--yellow-bright);
}

.preloader-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.4em;
  color: rgba(255, 255, 255, 0.3);
}

/* ── NAVBAR ── */
#mainNav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  width: 100%;
  padding: 24px 0;
  background: transparent;
  transition:
    background 0.35s var(--transition-smooth),
    padding 0.35s var(--transition-smooth),
    box-shadow 0.35s var(--transition-smooth);
}

#mainNav .nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad-desktop);
  padding-right: var(--pad-desktop);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  height: 50px;
  width: auto;
  transition: filter 0.35s var(--transition-smooth);
}

/* FIX: invert logo to black when scrolled on light bg */
.navbar--scrolled .nav-logo img {
  filter: brightness(0);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-link {
  position: relative;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  padding: 10px 2px;
  transition: color 0.25s var(--transition-smooth);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 6px;
  height: 2px;
  width: 100%;
  background: var(--yellow-bright);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--transition-smooth);
}

.nav-link:hover {
  color: var(--yellow-bright);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-link.is-active {
  color: var(--yellow-bright);
}

.nav-link.is-active::after {
  transform: scaleX(1);
}

.navbar--scrolled {
  background: rgba(250, 248, 242, 0.97) !important;
  backdrop-filter: blur(20px) saturate(180%);
  box-shadow:
    0 1px 0 var(--border),
    0 4px 20px rgba(28, 24, 20, 0.06);
  padding: 10px 0 !important;
}

.navbar--scrolled .nav-link {
  color: var(--black);
}

.navbar--scrolled .nav-link:hover,
.navbar--scrolled .nav-link.is-active {
  color: var(--black);
}

.navbar--scrolled .nav-link::after {
  background: var(--yellow-dark);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  flex-direction: column;
  cursor: pointer;
}

.navbar--scrolled .nav-toggle {
  border-color: var(--border-strong);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition:
    transform 0.35s var(--transition-smooth),
    opacity 0.2s var(--transition-smooth);
}

.navbar--scrolled .nav-toggle span {
  background: var(--black);
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--transition-smooth);
  z-index: 999;
}

.mobile-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(300px, 80vw);
  height: 100vh;
  background: var(--navy);
  transform: translateX(100%);
  transition: transform 0.45s var(--transition-smooth);
  z-index: 1000;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  padding: 88px 22px 26px;
}

.mobile-drawer.is-open {
  transform: translateX(0);
}

.mobile-links {
  display: grid;
  gap: 12px;
}

.mobile-links a {
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.8);
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid transparent;
  transform: translateX(28px);
  opacity: 0;
  transition:
    transform 0.5s var(--transition-smooth),
    opacity 0.5s var(--transition-smooth),
    border-color 0.3s var(--transition-smooth),
    color 0.3s var(--transition-smooth);
}

.mobile-drawer.is-open .mobile-links a {
  transform: translateX(0);
  opacity: 1;
}

.mobile-links a:hover {
  color: var(--yellow-bright);
  border-color: rgba(245, 208, 0, 0.25);
}

/* ── FLOATING QUOTE BUTTON ── */
#floatQuote {
  position: fixed;
  right: 28px;
  bottom: 90px;
  z-index: 998;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #131313;
  color: var(--yellow-bright);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 12px 20px;
  border-radius: 999px;
  box-shadow: 0 8px 28px rgba(13, 27, 46, 0.35);
  opacity: 0;
  transform: translateY(14px) scale(0.9);
  pointer-events: none;
  transition:
    opacity 0.3s var(--transition-smooth),
    transform 0.3s var(--transition-bounce),
    box-shadow 0.3s var(--transition-smooth);
  border: 0;
  cursor: pointer;
}

#floatQuote.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

#floatQuote:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 14px 36px rgba(13, 27, 46, 0.45);
}

#floatQuote i {
  font-size: 11px;
}

/* ── HERO ── */
#hero {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: var(--dark-bg);
}

#heroSwiper {
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1);
  filter: saturate(108%);
}

.swiper-slide-active .hero-bg {
  animation: kenBurns 8s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(13, 27, 46, 0.82) 0%,
      rgba(28, 24, 20, 0.58) 55%,
      rgba(28, 24, 20, 0.35) 100%);
}

.hero-content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 3;
}

.hero-content .section-inner {
  width: 100%;
}

.hero-label {
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.44em;
  color: var(--yellow-bright);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.hero-title {
  font-weight: 700;
  font-size: 76px;
  line-height: 1;
  margin: 0;
  color: var(--white);
  max-width: 62%;
}

.hero-title .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}

.hero-title .word-inner {
  display: block;
  will-change: transform;
}

.hero-sub {
  font-weight: 300;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  margin: 18px 0 0;
  max-width: 52ch;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  padding: 16px 46px;
  background: var(--yellow-bright);
  color: var(--black);
  border: 0;
  cursor: pointer;
  transition:
    transform 0.25s var(--transition-smooth),
    filter 0.25s var(--transition-smooth),
    box-shadow 0.25s var(--transition-smooth);
}

.hero-cta:hover {
  transform: translateY(-2px);
  filter: brightness(0.96);
  color: var(--black);
  box-shadow: 0 12px 32px rgba(245, 208, 0, 0.35);
}

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  background: rgba(0, 0, 0, 0.18);
  color: rgba(255, 255, 255, 0.9);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition:
    border-color 0.25s var(--transition-smooth),
    color 0.25s var(--transition-smooth),
    transform 0.25s var(--transition-smooth);
}

.hero-nav:hover {
  border-color: var(--yellow-bright);
  color: var(--yellow-bright);
  transform: translateY(-50%) scale(1.06);
}

.hero-prev {
  left: 22px;
}

.hero-next {
  right: 22px;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-dots .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  opacity: 1;
  transition:
    width 0.25s var(--transition-smooth),
    background 0.25s var(--transition-smooth);
}

.hero-dots .swiper-pagination-bullet-active {
  width: 28px;
  background: var(--yellow-bright);
}

/* ── SHOWREEL (light) ── */
#showreel {
  background: var(--surface);
}

.showreel-header {
  display: grid;
  gap: 10px;
}

.showreel-title {
  font-size: clamp(44px, 5.6vw, 80px);
  line-height: 1;
  margin: 0;
  color: var(--black);
}

.showreel-wrapper {
  position: relative;
  max-width: 960px;
  margin: 60px auto 0;
  aspect-ratio: 16/9;
  overflow: hidden;
  box-shadow:
    0 50px 100px rgba(28, 24, 20, 0.18),
    0 0 0 1px var(--border);
  border-radius: 5px;
}

.showreel-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: var(--dark-bg);
  border-radius: 5px;
}

.showreel-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 50% 55%,
      rgba(28, 24, 20, 0.08) 0%,
      rgba(28, 24, 20, 0.55) 55%,
      rgba(28, 24, 20, 0.75) 100%);
  transition: opacity 0.35s var(--transition-smooth);
}

.play-btn {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 0;
  background: var(--yellow);
  color: var(--black);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition:
    transform 0.35s var(--transition-bounce),
    box-shadow 0.35s var(--transition-smooth);
}

.play-btn i {
  font-size: 28px;
}

.play-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 0 0 20px rgba(240, 192, 0, 0.18);
}

/* ── CLIENTS STRIP ── */
#clients {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.clients-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 36px var(--pad-desktop);
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.clients-label {
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.clients-logos {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.clients-track {
  display: inline-flex;
  align-items: center;
  animation: marqueeScroll 25s linear infinite;
  will-change: transform;
}

.clients-logos:hover .clients-track {
  animation-play-state: paused;
}

.client-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  opacity: 0.28;
  transition: opacity 0.3s var(--transition-smooth);
  cursor: default;
}

.client-logo:hover {
  opacity: 0.7;
}

.client-logo-text {
  font-family: "Antonio", sans-serif;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--black);
  white-space: nowrap;
}

.clients-track .brand-logo img {
  width: 80px;
  max-width: 80px;
  height: 80px;
}

/* ── WHO WE ARE ── */
#who-we-are {
  background: var(--white);
}

.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.who-bar {
  width: 3px;
  height: 64px;
  background: var(--yellow);
  margin-bottom: 36px;
}

.who-title {
  font-size: clamp(52px, 6vw, 100px);
  line-height: 0.96;
  margin: 12px 0 0;
  color: var(--black);
}

.who-copy {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.9;
  color: var(--muted);
  margin: 0;
}

.who-points {
  margin-top: 32px;
  display: grid;
  gap: 14px;
}

.who-point {
  display: flex;
  align-items: center;
  gap: 14px;
}

.who-bullet {
  width: 6px;
  height: 6px;
  background: var(--yellow);
  flex: 0 0 auto;
  border-radius: 1px;
}

.who-point span {
  font-weight: 500;
  font-size: 14px;
  color: var(--black);
}

.who-cta {
  display: inline-flex;
  margin-top: 40px;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--black);
  gap: 10px;
  align-items: center;
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 4px;
  transition: gap 0.3s var(--transition-smooth);
}

.who-cta:hover {
  gap: 16px;
}

/* ── PROCESS TEASER ── */
#process-teaser {
  background: var(--surface);
}

.process-teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 56px;
}

.process-teaser-item {
  background: var(--surface);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s var(--transition-smooth);
}

.process-teaser-item::before {
  content: attr(data-step);
  position: absolute;
  right: 16px;
  top: 12px;
  font-family: "Antonio", sans-serif;
  font-weight: 700;
  font-size: 88px;
  line-height: 1;
  color: var(--yellow);
  opacity: 0.09;
  pointer-events: none;
  transition: opacity 0.3s var(--transition-smooth);
}

.process-teaser-item:hover {
  background: var(--white);
}

.process-teaser-item:hover::before {
  opacity: 0.18;
}

.process-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: var(--yellow-bright);
  margin-bottom: 22px;
}

.process-icon-box i {
  font-size: 20px;
}

.process-teaser-num {
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--yellow-dark);
  margin-bottom: 10px;
}

.process-teaser-title {
  font-family: "Antonio", sans-serif;
  font-weight: 700;
  font-size: 26px;
  margin: 0 0 12px;
  color: var(--black);
}

.process-teaser-text {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.85;
  color: var(--muted);
  margin: 0;
}

/* ── LATEST WORK ── */
#latest-work {
  background: var(--surface);
}

.section-head {
  display: grid;
  gap: 12px;
  align-items: start;
}

.section-head h2 {
  font-size: clamp(46px, 5.6vw, 86px);
  margin: 0;
  line-height: 1;
  color: var(--black);
}

.section-underline {
  width: 60px;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
}

.work-swiper-wrap {
  padding-left: var(--pad-desktop);
  padding-right: var(--pad-desktop);
  margin-top: 40px;
}

.work-card {
  position: relative;
  overflow: hidden;
  cursor: grab;
  background: var(--surface);
  border: 1px solid var(--border);
  transition:
    box-shadow 0.35s var(--transition-smooth),
    transform 0.35s var(--transition-smooth);
  height: 380px;
}

.work-card:active {
  cursor: grabbing;
}

.work-card__img-wrap,
.work-card__img-wrap img {
  width: 100%;
  height: 100%;
}

.work-card__img-wrap img {
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.7s var(--transition-smooth);
}

.work-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(13, 27, 46, 0.96) 0%,
      rgba(13, 27, 46, 0.3) 52%,
      transparent 100%);
  opacity: 0.88;
  transition: opacity 0.4s var(--transition-smooth);
}

.work-card__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px;
}

.work-card__tag {
  position: absolute;
  top: 18px;
  right: 18px;
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--yellow);
  color: var(--black);
  padding: 5px 12px;
}

.work-card__title {
  font-weight: 700;
  font-size: 24px;
  margin: 0;
  color: var(--white);
  line-height: 1.1;
}

.work-card__desc {
  font-weight: 300;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.68);
  margin: 8px 0 12px;
}

.work-card__arrow {
  font-weight: 700;
  font-size: 20px;
  color: var(--yellow-bright);
  transform: translateX(-10px);
  opacity: 0;
  transition:
    transform 0.35s var(--transition-smooth),
    opacity 0.35s var(--transition-smooth);
}

.work-card:hover .work-card__img-wrap img {
  transform: scale(1.06);
}

.work-card:hover .work-card__overlay {
  opacity: 1;
}

.work-card:hover .work-card__arrow {
  transform: translateX(0);
  opacity: 1;
}

.work-card:hover {
  box-shadow:
    0 24px 60px rgba(13, 27, 46, 0.15),
    0 0 0 2px var(--yellow);
  transform: translateY(-3px);
}

.work-cta {
  margin-top: 56px;
  display: flex;
  justify-content: center;
}

.btn-outline-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 14px 46px;
  border: 2px solid var(--black);
  color: var(--black);
  background: transparent;
  cursor: pointer;
  transition:
    background 0.25s var(--transition-smooth),
    color 0.25s var(--transition-smooth),
    transform 0.25s var(--transition-smooth);
}

.btn-outline-brand:hover {
  background: var(--black);
  color: var(--yellow-bright);
  transform: translateY(-1px);
}

/* ── STATS — Numbers That Speak ── Navy dark ── */
#stats {
  /* background: var(--navy); */
  /* background: #0c0b06; */
  background: var(--black);
  position: relative;
  overflow: hidden;
}

#stats::before {
  content: "7M";
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Antonio", sans-serif;
  font-weight: 700;
  font-size: 480px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.022);
  pointer-events: none;
  z-index: 0;
  letter-spacing: -0.05em;
  white-space: nowrap;
}

.stats-inner {
  position: relative;
  z-index: 1;
}

.stats-head h2 {
  font-size: clamp(48px, 5.5vw, 84px);
  margin: 10px 0 0;
  line-height: 1;
  color: var(--white);
}

.stats-head .section-sub {
  color: rgba(255, 255, 255, 0.48);
  margin-top: 14px;
}

.stats-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-box {
  padding: 50px 26px 44px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
  transition: background 0.4s var(--transition-smooth);
}

.stat-box:last-child {
  border-right: none;
}

.stat-box::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background: var(--yellow-bright);
  transition: height 0.4s var(--transition-smooth);
}

.stat-box:hover {
  background: rgba(245, 208, 0, 0.04);
}

.stat-box:hover::after {
  height: 3px;
}

.stat-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  background: rgba(245, 208, 0, 0.08);
  border: 1px solid rgba(245, 208, 0, 0.16);
}

.stat-box i {
  font-size: 20px;
  color: var(--yellow-bright);
}

.stat-number {
  display: block;
  font-family: "Antonio", sans-serif;
  font-weight: 700;
  font-size: 74px;
  line-height: 0.9;
  color: var(--yellow-bright);
}

.stat-label {
  margin-top: 16px;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.stat-desc {
  margin-top: 8px;
  font-weight: 300;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.3);
}

/* ── TESTIMONIALS ── */
#testimonials {
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 32px 28px;
  transition:
    transform 0.35s var(--transition-smooth),
    box-shadow 0.35s var(--transition-smooth),
    border-color 0.35s var(--transition-smooth);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(28, 24, 20, 0.1);
  border-color: var(--yellow);
}

.testimonial-quote-mark {
  font-family: "Antonio", sans-serif;
  font-weight: 700;
  font-size: 60px;
  line-height: 0.5;
  color: var(--yellow);
  margin-bottom: 16px;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}

.testimonial-stars i {
  font-size: 11px;
  color: var(--yellow-dark);
}

.testimonial-text {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.85;
  color: var(--black);
  margin: 0 0 22px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}

.author-initial {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  display: grid;
  place-items: center;
  font-family: "Antonio", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--yellow-bright);
  flex-shrink: 0;
}

.author-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--black);
}

.author-role {
  font-weight: 400;
  font-size: 12px;
  color: var(--muted);
  margin-top: 1px;
}

/* ── CTA BANNER ── */
#cta-banner {
  background: var(--yellow);
  position: relative;
  overflow: hidden;
}

#cta-banner::after {
  content: "MOVE";
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Antonio", sans-serif;
  font-weight: 700;
  font-size: 320px;
  line-height: 1;
  color: rgba(28, 24, 20, 0.06);
  pointer-events: none;
  letter-spacing: -0.05em;
}

.cta-banner-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 80px var(--pad-desktop);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.cta-banner-title {
  font-family: "Antonio", sans-serif;
  font-weight: 700;
  font-size: clamp(46px, 5.5vw, 90px);
  line-height: 0.94;
  color: var(--black);
  margin: 0;
}

.cta-banner-sub {
  font-weight: 400;
  font-size: 15px;
  color: rgba(28, 24, 20, 0.62);
  margin: 14px 0 0;
}

.cta-banner-actions {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #131313;
  color: var(--yellow-bright);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 16px 40px;
  border: 0;
  cursor: pointer;
  transition:
    transform 0.25s var(--transition-smooth),
    filter 0.25s var(--transition-smooth),
    box-shadow 0.25s var(--transition-smooth);
}

.btn-dark:hover {
  transform: translateY(-2px);
  color: var(--yellow-bright);
  box-shadow: 0 10px 28px rgba(13, 27, 46, 0.35);
}

.cta-note {
  font-weight: 400;
  font-size: 12px;
  color: var(--white);
}

/* ── FOOTER ── */
#mainFooter {
  background: var(--dark-bg);
}

.footer-newsletter {
  border-bottom: 1px solid var(--dark-border);
  padding: 56px 0;
}

.footer-newsletter-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad-desktop);
  padding-right: var(--pad-desktop);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.footer-nl-headline {
  font-family: "Poppins", sans-serif;

  font-weight: 700;
  font-size: clamp(26px, 3vw, 44px);
  line-height: 1.05;
  color: var(--white);
  margin: 0;
}

.footer-nl-headline span {
  color: var(--yellow-bright);
}

.footer-nl-sub {
  font-weight: 300;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.38);
  margin: 8px 0 0;
}

.footer-nl-form {
  display: flex;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 6px;
}

.footer-nl-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 0;
  color: var(--white);
  padding: 14px 16px;
  outline: none;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  transition: background 0.25s var(--transition-smooth);
}

.footer-nl-input::placeholder {
  color: rgba(255, 255, 255, 0.26);
}

.footer-nl-input:focus {
  background: rgba(255, 255, 255, 0.07);
}

.footer-nl-btn {
  background: var(--yellow-bright);
  color: var(--black);
  border: 0;
  padding: 14px 22px;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  font-family: "Poppins", sans-serif;
  transition: filter 0.25s var(--transition-smooth);
}

.footer-nl-btn:hover {
  filter: brightness(0.94);
}

.footer-main {
  padding: 72px 0 44px;
}

.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad-desktop);
  padding-right: var(--pad-desktop);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 46px;
}

.footer-brand img {
  height: 70px;
  width: auto;
  margin-bottom: 14px;
}

.footer-tagline {
  font-weight: 700;
  font-size: 18px;
  color: var(--yellow-bright);
  margin: 0;
}

.footer-desc {
  font-weight: 300;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.32);
  margin: 8px 0 0;
  line-height: 1.8;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.42);
  transition:
    background 0.3s var(--transition-smooth),
    border-color 0.3s var(--transition-smooth),
    color 0.3s var(--transition-smooth),
    transform 0.3s var(--transition-smooth);
}

.footer-social a i {
  font-size: 13px;
}

.footer-social a:hover {
  background: var(--yellow-bright);
  border-color: var(--yellow-bright);
  color: var(--black);
  transform: scale(1.1);
}

.footer-col h4 {
  font-weight: bolder;
  font-size: 10px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--yellow-bright);
  margin: 0 0 22px;
  font-family: "Poppins", sans-serif;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li+li {
  margin-top: 2px;
}

.footer-links a {
  display: block;
  font-weight: 300;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.44);
  padding: 5px 0;
  transition:
    color 0.25s var(--transition-smooth),
    padding-left 0.25s var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 8px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-contact-item i {
  font-size: 13px;
  color: var(--yellow-bright);
  margin-top: 3px;
  flex-shrink: 0;
  width: 14px;
}

.footer-contact-label {
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
}

.footer-contact-val {
  font-weight: 300;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.62);
  margin-top: 2px;
  line-height: 1.6;
}

.footer-bar {
  border-top: 1px solid var(--dark-border);
  padding: 20px 0;
}

.footer-bar-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad-desktop);
  padding-right: var(--pad-desktop);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
}

.footer-bar p {
  margin: 0;
  font-weight: 300;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.26);
}

.footer-heart {
  color: var(--yellow-bright);
}

/* ── BACK TO TOP ── */
#backToTop {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 999;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--border-strong);
  background: var(--white);
  color: var(--black);
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition:
    opacity 0.25s var(--transition-smooth),
    transform 0.25s var(--transition-smooth),
    background 0.25s var(--transition-smooth),
    color 0.25s var(--transition-smooth);
  cursor: pointer;
}

#backToTop i {
  font-size: 14px;
}

#backToTop.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

#backToTop:hover {
  background: var(--navy);
  color: var(--yellow-bright);
  border-color: var(--navy);
  transform: translateY(-3px);
}

/* ── CUSTOM CURSOR ── */
body.has-custom-cursor {
  cursor: none;
}

#cursorDot,
#cursorRing {
  position: fixed;
  top: 0;
  left: 0;
  transform: translate3d(-100px, -100px, 0);
  pointer-events: none;
  z-index: 9998;
}

#cursorDot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
}

#cursorRing {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--yellow);
  opacity: 0.55;
  z-index: 9997;
}

body.has-custom-cursor .cursor-hover #cursorRing {
  opacity: 0.2;
}

body.has-custom-cursor .cursor-hover #cursorDot {
  transform: translate3d(-100px, -100px, 0) scale(0);
}

/* ── INNER PAGE HERO ── */
.page-hero {
  position: relative;
  min-height: 420px;
  height: 50vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--navy);
}

.page-hero .hero-bg {
  filter: saturate(112%) contrast(102%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 64px;
}

.breadcrumb-brand {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 11px;
  color: var(--yellow-bright);
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.breadcrumb-brand a {
  color: rgba(255, 255, 255, 0.48);
  transition: color 0.25s var(--transition-smooth);
}

.breadcrumb-brand a:hover {
  color: var(--yellow-bright);
}

.page-title {
  margin: 8px 0 0;
  font-weight: 700;
  font-size: clamp(40px, 5.5vw, 96px);
  line-height: 1;
  color: var(--white);
}

.page-subtitle {
  margin: 12px 0 0;
  font-weight: 300;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.7;
  max-width: 70ch;
}

/* ── SHARED INNER PAGE BLOCKS ── */
.card-surface {
  background: var(--surface);
  border: 1px solid var(--border);
}

.icon-pill {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: var(--yellow-bright);
  border: 1px solid rgba(13, 27, 46, 0.15);
}

.btn-yellow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: var(--yellow);
  color: var(--black);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 30px;
  cursor: pointer;
  transition:
    transform 0.25s var(--transition-bounce),
    filter 0.25s var(--transition-smooth),
    box-shadow 0.25s var(--transition-smooth);
}

.btn-yellow:hover {
  transform: translateY(-1px);
  filter: brightness(0.96);
  color: var(--black);
  box-shadow: 0 8px 24px rgba(240, 192, 0, 0.3);
}

.form-control-brand,
.form-select-brand {
  width: 100%;
  background: rgba(28, 24, 20, 0.04);
  border: 1.5px solid var(--border);
  color: var(--black);
  padding: 12px 14px;
  outline: none;
  font-family: "Poppins", sans-serif;
  transition:
    border-color 0.25s var(--transition-smooth),
    background 0.25s var(--transition-smooth);
}

.form-control-brand:focus,
.form-select-brand:focus {
  border-color: var(--yellow-dark);
  background: rgba(240, 192, 0, 0.03);
}

.form-control-brand::placeholder {
  color: var(--muted);
}

textarea.form-control-brand {
  resize: vertical;
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-btn {
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--muted);
  padding: 9px 18px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  transition:
    border-color 0.25s var(--transition-smooth),
    color 0.25s var(--transition-smooth),
    background 0.25s var(--transition-smooth),
    transform 0.2s;
}

@media (max-width:767.9px) {
  .filter-tabs {
    justify-content: center;
  }

  .filter-btn {
    width: 45%;
  }
}

@media (max-width:500px) {

  .filter-btn {
    width: 100%;
  }
}

.filter-btn:hover {
  transform: translateY(-1px);
}

.filter-btn.is-active,
.filter-btn:hover {
  border-color: var(--navy);
  color: var(--navy);
  background: rgba(13, 27, 46, 0.05);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.projects-grid-item {
  display: flex;
  flex-direction: column;
}

.project-tile {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.project-tile__img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  flex-shrink: 0;
}

.project-tile__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 0.7s var(--transition-smooth);
}

.project-tile:hover .project-tile__img-wrap img {
  transform: scale(1.04);
}

.project-tile__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(13, 27, 46, 0.92) 0%,
      rgba(13, 27, 46, 0.2) 55%,
      transparent 100%);
  pointer-events: none;
}

.project-tile__body {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  /* background: rgba(13, 27, 46, 0.93); */
  background: rgb(0 0 0 / 40%) !important;

  position: absolute;
  width: 100%;
  height: 100%;
  left: -100%;
  top: 0;
  transition: left 0.38s var(--transition-smooth);
}

.projects-grid-item:hover .project-tile__body {
  left: 0;
}

.project-tile__tag {
  display: inline-block;
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--yellow);
  color: var(--black);
  padding: 5px 10px;
  align-self: flex-start;
}

.project-tile__title {
  margin: 0;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  color: var(--white);
}

.project-tile__meta {
  margin: 0;
  font-weight: 300;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.7;
}

.project-tile__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow-bright);
  margin-top: 4px;
  transition: gap 0.3s var(--transition-smooth);
}

.project-tile:hover .project-tile__link {
  gap: 10px;
}

.load-more-wrap {
  margin-top: 44px;
  display: flex;
  justify-content: center;
}

.job-accordion .accordion-item {
  background: transparent;
  border: 1.5px solid var(--border);
  overflow: hidden;
  margin-bottom: 12px;
}

.job-accordion .accordion-button {
  background: var(--surface);
  color: var(--black);
  box-shadow: none;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 12px;
}

.job-accordion .accordion-button:not(.collapsed) {
  background: rgba(13, 27, 46, 0.06);
  color: var(--navy);
}

.job-accordion .accordion-button::after {
  filter: brightness(0);
}

.job-accordion .accordion-body {
  background: var(--white);
  color: var(--muted);
  line-height: 1.9;
  font-weight: 400;
  font-size: 14px;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.job-chip {
  border: 1.5px solid var(--border);
  padding: 7px 12px;
  font-size: 11px;
  color: var(--black);
  font-weight: 500;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.social-links a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--muted);
  transition:
    transform 0.3s var(--transition-smooth),
    background 0.3s var(--transition-smooth),
    border-color 0.3s var(--transition-smooth),
    color 0.3s var(--transition-smooth);
}

.social-links a i {
  font-size: 16px;
}

.social-links a:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
  transform: scale(1.1);
}

.timeline {
  position: relative;
  margin-top: 28px;
  padding-left: 22px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  padding: 0 0 20px 0;
}

.timeline-dot {
  position: absolute;
  left: 2px;
  top: 20px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(240, 192, 0, 0.12);
  border: 1.5px solid var(--yellow-dark);
  box-shadow: 0 0 0 5px rgba(240, 192, 0, 0.06);
}

.timeline-card {
  padding: 22px 22px 18px;
  margin-left: 24px;
}

.timeline-year {
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--muted);
}

.timeline-title {
  margin: 10px 0 0;
  font-weight: 700;
  font-size: 22px;
  color: var(--black);
}

.timeline-text {
  margin: 10px 0 0;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.9;
  font-size: 15px;
}

.mission-text {
  font-size: clamp(44px, 5.4vw, 86px);
  line-height: 1;
  margin: 12px 0 0;
  color: var(--black);
}

.value-card {
  padding: 26px 24px;
}

.value-title {
  margin: 14px 0 0;
  font-weight: 700;
  font-size: 22px;
  color: var(--black);
}

.value-text {
  margin: 10px 0 0;
  font-weight: 400;
  line-height: 1.9;
  color: var(--muted);
  font-size: 14px;
}

.cta-strip {
  padding: 34px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.cta-title {
  margin: 10px 0 0;
  font-weight: 700;
  font-size: clamp(38px, 4.2vw, 64px);
  line-height: 1.04;
  color: var(--black);
}

.cta-actions {
  flex: 0 0 auto;
}

.service-card {
  padding: 26px 24px;
  transition:
    transform 0.35s var(--transition-smooth),
    box-shadow 0.35s var(--transition-smooth),
    border-color 0.35s var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(28, 24, 20, 0.08);
  border-color: var(--yellow);
}

.service-title {
  margin: 14px 0 0;
  font-size: 22px;
  font-weight: 700;
  color: var(--black);
}

.service-text {
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.9;
  font-size: 14px;
}

.service-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--navy);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: letter-spacing 0.3s var(--transition-smooth);
}

.service-link:hover {
  letter-spacing: 0.28em;
}

.process {
  margin-top: 44px;
  display: grid;
  gap: 10px;
}

.process-step {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 18px;
  align-items: start;
  padding: 20px 20px;
}

.process-kicker {
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 10px;
  color: var(--yellow-dark);
}

.process-step h3 {
  margin: 0;
  font-weight: 700;
  font-size: 22px;
  color: var(--black);
}

.process-step p {
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.9;
  font-size: 14px;
}

.info-card {
  padding: 22px 22px;
}

.info-title {
  margin: 12px 0 0;
  font-weight: 700;
  font-size: 20px;
  color: var(--black);
}

.info-text {
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.9;
  font-size: 14px;
}

.small-note {
  font-size: 13px;
}

@media (max-width: 991.98px) {
  .cta-strip {
    flex-direction: column;
    align-items: flex-start;
  }

  .process-step {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   CAREER / CONTACT PAGE STYLES (design-only UI)
   ============================================================ */

/* Shared form layout */
.form-card-dark {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 26px;
  backdrop-filter: blur(10px);
}

[data-theme="dark"] .form-card-dark {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
}

.contact-form-card {
  margin-top: 26px;
}

.form-status {
  min-height: 22px;
  /* Reserve space so layout doesn't jump */
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  display: none;
}

.form-status:not(:empty) {
  display: block;
}

.field-label-brand {
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.required-star {
  color: var(--yellow-bright);
  font-weight: 800;
}

.form-field-error {
  display: none;
  font-size: 12px;
  color: rgba(255, 120, 120, 0.95);
  margin-top: 8px;
}

.form-field-error:not(:empty) {
  display: block;
}

/* Career page */
#career-join {
  color: var(--white);
  position: relative;
  overflow: hidden;
}

#career-join::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(circle at 10% 0%,
      rgba(245, 208, 0, 0.22) 0%,
      rgba(13, 27, 46, 0) 58%);
  pointer-events: none;
}

#career-join .section-inner {
  position: relative;
  z-index: 1;
}

.career-join-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.career-join-copy {
  padding-top: 6px;
}

.career-join-title {
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 700;
  line-height: 1.02;
  margin: 10px 0 18px;
}

.career-join-desc {
  font-size: 15px;
  line-height: 1.95;
  color: rgba(255, 255, 255, 0.66);
  font-weight: 300;
}

.career-join-desc strong {
  color: var(--yellow-bright);
  font-weight: 600;
}

.career-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.career-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.career-form-grid .career-field-full {
  grid-column: 1 / -1;
}

.career-field input.form-control-brand,
.career-field textarea.form-control-brand,
.career-field select.form-select-brand {
  margin-top: 0;
}

/* Resume upload */
.career-upload {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.career-file-box {
  position: relative;
  border-radius: 14px;
  border: 1.5px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  padding: 16px 14px;
  cursor: pointer;
  overflow: hidden;
  min-height: 68px;
}

[data-theme="dark"] .career-file-box {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.career-file-box:hover {
  border-color: rgba(245, 208, 0, 0.35);
  background: rgba(245, 208, 0, 0.05);
}

.career-file-box-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 1;
  position: relative;
}

.career-file-box-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--yellow);
  display: grid;
  place-items: center;
  color: var(--black);
  flex-shrink: 0;
}

.career-file-box-icon i {
  font-size: 18px;
}

.career-file-box-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.career-file-box-title {
  font-weight: 700;
  color: var(--white);
  font-size: 14px;
}

.career-file-box-sub {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  line-height: 1.6;
}

.career-file-link {
  color: var(--yellow-bright);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.career-file-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.career-submit-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  margin-top: 4px;
}

.career-submit-row .btn-yellow {
  white-space: nowrap;
}

.contact-submit-row {
  margin-top: 20px;
}

/* Contact page */
#contact-hero {
  background: var(--navy);
}

#get-in-touch-section {
  position: relative;
  overflow: hidden;
}

#get-in-touch-section::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(circle at 90% 0%,
      rgba(245, 208, 0, 0.18) 0%,
      rgba(13, 27, 46, 0) 55%);
  pointer-events: none;
}

#get-in-touch-section .section-inner {
  position: relative;
  z-index: 1;
}

#work-with-us {
  position: relative;
  overflow: hidden;
}

#work-with-us::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(circle at 0% 20%,
      rgba(245, 208, 0, 0.16) 0%,
      rgba(13, 27, 46, 0) 55%);
  pointer-events: none;
}

#work-with-us .section-inner {
  position: relative;
  z-index: 1;
}

.contact-work-with-us {
  padding-top: 6px;
}

.contact-work-email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  font-weight: 700;
  color: var(--yellow-bright);
  letter-spacing: 0.05em;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form-grid .contact-field-full {
  grid-column: 1 / -1;
}

/* Forms: align inputs with label sizing */
.career-field .form-control-brand,
.career-field .form-select-brand,
.contact-field .form-control-brand,
.contact-field .form-select-brand {
  font-size: 13px;
}

@media (max-width: 900px) {

  .career-join-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .career-form-grid,
  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .career-form-grid .career-field-full,
  .contact-form-grid .contact-field-full {
    grid-column: auto;
  }
}

/* =========================
   ABOUT.CSS — merged below
   ========================= */

/* ============================================================
   ABOUT.CSS — Marketeer Agency
   About Page — Additional & Override Styles
   ============================================================ */

/* ── PAGE HERO OVERRIDES (base in style.css) ── */
.about-page .page-hero {
  height: 60vh;
  min-height: 420px;
  align-items: flex-end;
}

.about-page .page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: kenBurns 14s ease-in-out alternate infinite;
}

.about-page .page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(28, 24, 20, 0.5) 0%,
      rgba(28, 24, 20, 0.7) 55%,
      rgba(28, 24, 20, 0.93) 100%);
}

.about-page .page-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: 72px;
}

.about-page .page-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 18px;
}

.about-page .page-hero-breadcrumb a {
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.22s;
}

.about-page .page-hero-breadcrumb a:hover {
  color: var(--yellow-bright);
}

.about-page .page-hero-breadcrumb .sep {
  color: var(--yellow-bright);
}

.about-page .page-hero-breadcrumb .current {
  color: var(--yellow-bright);
}

.about-page .page-hero-title {
  font-size: clamp(44px, 7vw, 90px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}

.about-page .page-hero-sub {
  font-size: clamp(14px, 1.6vw, 18px);
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  margin: 0;
  max-width: 560px;
}

/* ── SHARED: MARQUEE STRIP (yellow) ── */
.about-page .marquee-strip-about {
  background: var(--black);
  overflow: hidden;
  white-space: nowrap;
  padding: 14px 0;
  border-top: 1px solid rgb(255 255 255 / 10%);
  border-bottom: 1px solid rgb(255 255 255 / 10%);
}

.about-page .marquee-strip-about .marquee-track {
  display: inline-block;
  animation: marqueeScroll 25s linear infinite;
}

.about-page .marquee-strip-about .marquee-item {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: bold !important;
  /* letter-spacing: 0.28em; */
  text-transform: uppercase;
  color: var(--white);
  padding: 0 28px;
}

.about-page .marquee-strip-about .marquee-sep {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--white);
  vertical-align: middle;
  margin-left: 28px;
}

/* ══════════════════════════════════════
   ABOUT SECTION
   ══════════════════════════════════════ */
#about-section {
  background: var(--black);
  color: var(--white);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0;
  min-height: 540px;
  align-items: stretch;
}

.about-divider {
  background: rgba(255, 255, 255, 0.13);
  width: 1px;
  margin: 60px 0;
}

/* ── Left Side ── */
.about-left {
  padding: 80px 70px 0 0;
}

.about-left .eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--yellow-bright);
  margin-bottom: 18px;
}

.about-left-title {
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin: 0 0 28px;
}

.about-left-desc {
  font-size: 15px;
  line-height: 1.95;
  color: rgba(255, 255, 255, 0.62);
  font-weight: 300;
  margin: 0;
}

.about-left-desc strong {
  color: var(--yellow-bright);
  font-weight: 600;
}

/* ── Right Side ── */
.about-right {
  padding: 80px 0 0 70px;
  display: flex;
  flex-direction: column;
}

/* 4 Animated Sentences */
.about-sentences {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 28px;
}

.sentence-item {
  font-size: clamp(22px, 2.8vw, 38px);
  font-family: "Antonio", sans-serif;
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.01em;
  opacity: 0;
  transform: translateX(32px);
  background: linear-gradient(100deg,
      var(--yellow-bright) 0%,
      #ffffff 55%,
      var(--yellow) 100%);
  background-size: 200% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation:
    sentenceReveal 0.65s var(--transition-smooth) forwards,
    colorPulse 5s ease-in-out infinite alternate;
  cursor: default;
  user-select: none;
}

.sentence-item:nth-child(1) {
  animation-delay: 0.18s, 0.3s;
}

.sentence-item:nth-child(2) {
  animation-delay: 0.34s, 1s;
}

.sentence-item:nth-child(3) {
  animation-delay: 0.5s, 1.7s;
}

.sentence-item:nth-child(4) {
  animation-delay: 0.66s, 2.4s;
}

@keyframes sentenceReveal {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes colorPulse {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

/* Static 5th sentence */
.sentence-static {
  font-size: clamp(13px, 1.4vw, 16px);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 400;
  line-height: 1.78;
  padding-top: 22px;
  margin-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  animation: sentenceReveal 0.8s var(--transition-smooth) 1s forwards;
}

/* ── Card Below Sentences ── */
.about-card {
  margin-top: 36px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  padding: 26px 30px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  backdrop-filter: blur(12px);
  transition:
    border-color 0.3s,
    background 0.3s,
    transform 0.35s var(--transition-smooth);
  opacity: 0;
  animation: sentenceReveal 0.8s var(--transition-smooth) 1.2s forwards;
}

.about-card:hover {
  border-color: rgba(240, 192, 0, 0.38);
  background: rgba(240, 192, 0, 0.05);
  transform: translateY(-3px);
}

.about-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 22px;
  color: var(--black);
}

.about-card-body {
  flex: 1;
}

.about-card-title {
  font-family: "Antonio", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}

.about-card-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.48);
  margin: 0;
  line-height: 1.65;
}

/* ══════════════════════════════════════
   STATS STRIP
   ══════════════════════════════════════ */
#about-stats {
  background: var(--black);
  color: var(--white);
  padding: 60px 0;
}

#about-stats .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 0;
  border: none;
}

#about-stats .stat-item {
  text-align: center;
  padding: 16px 24px;
  border-right: 1px solid rgba(0, 0, 0, 0.12);
}

#about-stats .stat-item:last-child {
  border-right: none;
}

#about-stats .stat-number {
  font-family: "Antonio", sans-serif;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 700;
  color: var(--black);
  line-height: 1;
  margin-bottom: 8px;
}

#about-stats .stat-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.58);
}

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 900px) {
  .about-inner {
    grid-template-columns: 1fr;
  }

  .about-divider {
    width: 100%;
    height: 1px;
    margin: 0;
  }

  .about-left {
    padding: 56px 0 36px;
  }

  .about-right {
    padding: 36px 0 56px;
  }

  #about-stats .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  #about-stats .stat-item:nth-child(2) {
    border-right: none;
  }

  [data-theme="light"] #about-stats .stat-item:nth-child(1),
  [data-theme="light"] #about-stats .stat-item:nth-child(2) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    padding-bottom: 28px;
  }

  [data-theme="dark"] #about-stats .stat-item:nth-child(1),
  [data-theme="dark"] #about-stats .stat-item:nth-child(2) {
    padding-bottom: 28px;
    border-bottom: 1px solid #ffffff1f !important;
  }

  #about-stats .stat-item:nth-child(3),
  #about-stats .stat-item:nth-child(4) {
    padding-top: 28px;
  }
}

@media (max-width: 576px) {
  .about-page .page-hero {
    height: 55vh;
    min-height: 360px;
  }

  .about-page .page-hero-content {
    padding-bottom: 48px;
  }

  .about-card {
    flex-direction: column;
    gap: 12px;
  }
}

/* Brands Section */
#brands .brand-img-wrap {
  width: 200px;
  height: 200px;
}

@media (max-width: 767px) {
  #brands .brand-img-wrap {
    width: 150px;
    height: 150px;
  }
}

/* ════════════════════════════════════════════════════════════
   CAREER PAGE STYLES
   ════════════════════════════════════════════════════════════ */

/* ── PAGE HERO (Career) ── */
.career-page .page-hero {
  height: 75vh;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
}

.career-page .page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  animation: kenBurns 16s ease-in-out alternate infinite;
}

.career-page .page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(13, 27, 46, 0.4) 0%,
      rgba(13, 27, 46, 0.65) 45%,
      rgba(13, 27, 46, 0.92) 100%);
}

.career-page .page-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: 80px;
}

.career-page .page-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
}

.career-page .page-hero-breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.22s;
}

.career-page .page-hero-breadcrumb a:hover {
  color: var(--yellow-bright);
}

.career-page .page-hero-breadcrumb .sep,
.career-page .page-hero-breadcrumb .current {
  color: var(--yellow-bright);
}

.career-page .page-hero-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--yellow-bright);
  margin-bottom: 16px;
  display: block;
}

.career-page .page-hero-title {
  font-family: "Antonio", sans-serif;
  font-size: clamp(52px, 8.5vw, 110px);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin: 0 0 20px;
  letter-spacing: -0.03em;
}

.career-page .page-hero-title .hero-accent {
  color: var(--yellow-bright);
  display: block;
}

.career-page .page-hero-sub {
  font-size: clamp(14px, 1.5vw, 17px);
  color: rgba(255, 255, 255, 0.68);
  font-weight: 400;
  margin: 0;
  max-width: 520px;
  line-height: 1.75;
}

.career-hero-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.career-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
  backdrop-filter: blur(10px);
}

.career-hero-badge i {
  color: var(--yellow-bright);
  font-size: 13px;
}

/* ── CAREER INTRO ── */
#career-intro {
  background: #111009;
  padding: 110px 0;
}

.career-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.career-intro-left .eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--yellow-bright);
  margin-bottom: 18px;
  display: block;
}

.career-intro-title {
  font-family: "Antonio", sans-serif;
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -2px !important;
  margin: 0 0 24px;
}

.career-intro-title em {
  font-style: normal;
  color: var(--yellow-bright);
}

.career-intro-desc {
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.58);
  margin: 0 0 36px;
}

.career-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.career-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.03em;
  transition:
    border-color 0.25s,
    background 0.25s,
    color 0.25s;
}

.career-pill:hover {
  border-color: var(--yellow);
  background: rgba(240, 192, 0, 0.08);
  color: var(--yellow-bright);
}

.career-pill i {
  color: var(--yellow-bright);
  font-size: 12px;
}

/* Right side visual grid */
.career-intro-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.career-stat-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  transition:
    border-color 0.3s,
    background 0.3s,
    transform 0.3s var(--transition-smooth);
}

.career-stat-card:hover {
  border-color: rgba(240, 192, 0, 0.3);
  background: rgba(240, 192, 0, 0.04);
  transform: translateY(-4px);
}

.career-stat-card.featured {
  grid-column: span 2;
  background: var(--yellow);
  border-color: transparent;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 32px;
  text-align: left;
}

.career-stat-card.featured:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(240, 192, 0, 0.25);
}

.career-stat-num {
  font-family: "Antonio", sans-serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.career-stat-card.featured .career-stat-num {
  color: var(--black);
}

.career-stat-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.career-stat-card.featured .career-stat-label {
  color: rgba(0, 0, 0, 0.55);
}

.career-featured-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--black);
  flex-shrink: 0;
}

/* ── WORK WITH US ── */
#work-with-us {
  background: #1a1916;
  padding: 110px 0;
}

.ww-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 72px;
}

.ww-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--yellow-bright);
  margin-bottom: 18px;
  display: block;
}

.ww-title {
  font-family: "Antonio", sans-serif;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
}

.ww-sub {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

.ww-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.ww-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 36px 30px;
  transition:
    border-color 0.3s,
    background 0.3s,
    transform 0.35s var(--transition-smooth),
    box-shadow 0.35s;
}

.ww-card:hover {
  border-color: var(--yellow);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.ww-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--black);
  margin-bottom: 22px;
  transition: transform 0.3s var(--transition-smooth);
}

.ww-card:hover .ww-icon-wrap {
  transform: scale(1.08) rotate(-3deg);
}

.ww-card h3 {
  font-family: "Antonio", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  margin: 0 0 10px;
}

.ww-card p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.52);
  margin: 0;
}

/* Email Contact Block */
.ww-email-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 36px 40px;
  flex-wrap: wrap;
}

.ww-email-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.ww-email-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--black);
  flex-shrink: 0;
}

.ww-email-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 4px;
}

.ww-email-link {
  font-family: "Antonio", sans-serif;
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  transition: color 0.25s;
}

.ww-email-link:hover {
  color: var(--yellow-bright);
}

.ww-email-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--yellow);
  color: var(--black);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border-radius: 100px;
  transition:
    transform 0.25s var(--transition-smooth),
    box-shadow 0.25s,
    filter 0.25s;
  white-space: nowrap;
}

.ww-email-cta:hover {
  transform: translateY(-2px);
  filter: brightness(0.96);
  box-shadow: 0 12px 30px rgba(240, 192, 0, 0.3);
}

/* ── APPLY FORM ── */
#apply-form {
  /* background: #111009; */
  background: var(--black);
  padding: 60px 0;
}

.apply-form-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.apply-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--yellow-bright);
  margin-bottom: 18px;
  display: block;
}

.apply-title {
  font-family: "Antonio", sans-serif;
  font-size: clamp(30px, 3.5vw, 45px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}

.apply-sub {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.52);
  margin: 0;
}

.form-wrapper {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 52px;
  max-width: 860px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-field-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.form-field-label .required {
  color: var(--yellow-dark);
  margin-left: 3px;
}

.career-input,
.career-select {
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 14px 18px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: var(--white);
  outline: none;
  transition:
    border-color 0.25s,
    background 0.25s,
    box-shadow 0.25s;
  width: 100%;
}

.career-input:focus,
.career-select:focus {
  border-color: var(--yellow-bright);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(245, 208, 0, 0.12);
}

.career-input::placeholder {
  color: rgba(255, 255, 255, 0.28);
}

.career-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='rgba(255,255,255,0.4)' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
  cursor: pointer;
}

.career-select option {
  background: #1a1916;
  color: var(--white);
}

/* Upload zone */
.upload-zone {
  border: 2px dashed rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 44px 24px;
  text-align: center;
  cursor: pointer;
  transition:
    border-color 0.3s,
    background 0.3s,
    transform 0.25s;
  position: relative;
  background: rgba(255, 255, 255, 0.02);
}

.upload-zone:hover,
.upload-zone.drag-over {
  border-color: var(--yellow-bright);
  background: rgba(245, 208, 0, 0.04);
  transform: translateY(-2px);
}

.upload-zone input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.upload-icon {
  font-size: 36px;
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: 14px;
  transition:
    color 0.3s,
    transform 0.3s;
}

.upload-zone:hover .upload-icon {
  color: var(--yellow-bright);
  transform: translateY(-4px);
}

.upload-text {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 6px;
}

.upload-text strong {
  color: var(--yellow-bright);
}

.upload-hint {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.04em;
}

.upload-filename {
  margin-top: 12px;
  font-size: 12px;
  color: var(--yellow-bright);
  font-weight: 600;
  display: none;
}

.upload-filename.visible {
  display: block;
}

/* Submit Button */
.form-submit-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.form-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.6;
  margin: 0;
}

[data-theme="light"] .form-note {
  color: var(--muted) !important;
}

.btn-submit-career {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--yellow);
  color: var(--black);
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 16px 40px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition:
    transform 0.25s var(--transition-smooth),
    filter 0.25s,
    box-shadow 0.25s;
  white-space: nowrap;
}

.btn-submit-career:hover {
  transform: translateY(-2px);
  filter: brightness(0.96);
  box-shadow: 0 14px 36px rgba(240, 192, 0, 0.32);
}

.btn-submit-career i {
  font-size: 15px;
  transition: transform 0.3s var(--transition-smooth);
}

.btn-submit-career:hover i {
  transform: translateX(4px);
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  .career-intro-inner {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .ww-grid {
    grid-template-columns: 1fr 1fr;
  }

  .form-wrapper {
    padding: 36px 28px;
  }

  .career-page .page-hero {
    height: 65vh;
    min-height: 440px;
  }
}

@media (max-width: 767px) {

  #career-intro,
  #work-with-us,
  #apply-form {
    padding: 72px 0;
  }

  .ww-grid {
    grid-template-columns: 1fr;
  }

  .career-intro-visual {
    grid-template-columns: 1fr 1fr;
  }

  .career-stat-card.featured {
    grid-column: span 2;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-group.full-width {
    grid-column: span 1;
  }

  .ww-email-block {
    padding: 28px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .form-submit-wrap {
    flex-direction: column;
    align-items: center;
  }

  .career-page .page-hero {
    height: 60vh;
    min-height: 380px;
  }

  .career-page .page-hero-content {
    padding-bottom: 52px;
  }

  .career-hero-meta {
    flex-direction: column;
    gap: 8px;
  }

  .ww-header {
    margin-bottom: 44px;
  }

  .apply-form-header {
    margin-bottom: 40px;
  }
}

@media (max-width: 480px) {
  .career-intro-visual {
    grid-template-columns: 1fr;
  }

  .career-stat-card.featured {
    grid-column: span 1;
  }

  .form-wrapper {
    padding: 28px 20px;
  }
}

/* Career Page */
.work-with-us {
  padding: 60px 0;
}

.career-intro-left .eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--yellow-bright);
  margin-bottom: 18px;
}

.career-intro-title {
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin: 0 0 24px;
}

.career-intro-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.9;
  font-weight: 300;
  margin: 0;
}

.career-intro-right {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 5px;
  padding: 40px 30px;
  border-left: 5px solid #ffc107;
}

.work-with-us-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.32);
  margin-bottom: 20px;
}

.work-with-us-title {
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 700;
  color: var(--white);
  margin: 0 0 14px;
}

.work-with-us-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.8;
  margin-bottom: 28px;
}

.email-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--yellow-bright);
  text-decoration: none;
  border-bottom: 1px solid rgba(240, 192, 0, 0.3);
  padding-bottom: 3px;
  transition:
    color 0.2s,
    border-color 0.2s;
}

.email-link:hover {
  color: var(--yellow);
  border-color: var(--yellow);
}

.email-link i {
  font-size: 14px;
}

#showreel .splitting .word,
#who-we-are .splitting .word,
#latest-work .splitting .word,
#testimonials .splitting .word,
#stats .splitting .word {
  letter-spacing: -5px;
  font-weight: bold !important;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  word-spacing: 4px;
}


@media (max-width:991.9px) {
  span.char {
    margin-right: 3px !important;
  }
}

.page-hero-title,
.career-intro-title,
.apply-title,
.contact-info-title {
  letter-spacing: -3px;
  font-weight: bold !important;
  text-transform: uppercase;
  word-spacing: 4px;
  font-family: "Poppins", sans-serif;
}

/* ── Page Hero ── */
.contact-page .page-hero {
  height: 60vh;
  min-height: 420px;
  align-items: flex-end;
}

.contact-page .page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.contact-page .page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(28, 24, 20, 0.5) 0%,
      rgba(28, 24, 20, 0.7) 55%,
      rgba(28, 24, 20, 0.93) 100%);
}

.contact-page .page-hero-content {
  padding-bottom: 60px;
  position: relative;
  z-index: 2;
  width: 100%;
}

.contact-page .page-hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 18px;
    position: relative;
}

.contact-page .page-hero-breadcrumb a {
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
}

.contact-page .page-hero-breadcrumb a:hover {
  color: var(--yellow-bright);
}

.contact-page .page-hero-breadcrumb .sep {
  color: rgba(255, 255, 255, 0.3);
}

.contact-page .page-hero-breadcrumb .current {
  color: var(--yellow-bright);
}

.contact-page .page-hero-title {
  font-family: "Antonio", sans-serif;
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}

.contact-page .page-hero-sub {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  max-width: 520px;
  line-height: 1.7;
  margin: 0;
}

/* ── Marquee Strip (Contact) ── */
.contact-page .marquee-strip-contact {
  background: var(--black);
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid rgb(255 255 255 / 10%);
  border-bottom: 1px solid rgb(255 255 255 / 10%);
}

.contact-page .marquee-strip-contact .marquee-track {
  display: flex;
  gap: 0;
  animation: marqueeScroll 25s linear infinite;
}

.contact-page .marquee-strip-contact .marquee-item {
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: bold !important;
  /* letter-spacing: 0.22em; */
  text-transform: uppercase;
  color: var(--white);
  white-space: nowrap;
  padding: 0 28px;
}

.contact-page .marquee-strip-contact .marquee-sep {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--white);
  border-radius: 50%;
  vertical-align: middle;
  margin-left: 28px;
  opacity: 0.4;
}

/* ── Contact Layout ── */
#contact-main {
  background: var(--black);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}

/* #contact-main::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(
    circle at 90% 0%,
    rgba(245, 208, 0, 0.18) 0%,
    transparent 55%
  );
  pointer-events: none;
} */

#contact-main .section-inner {
  position: relative;
  z-index: 1;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

/* ── Left: Info Panel ── */
.contact-info-panel {
  padding-top: 8px;
}

.contact-info-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--yellow-dark);
  margin-bottom: 18px;
  display: block;
}

.contact-info-title {
  font-family: "Antonio", sans-serif;
  font-size: clamp(40px, 4vw, 55px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}

.contact-info-desc {
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.52);
  font-weight: 300;
  margin: 0 0 40px;
}

.contact-info-desc strong {
  color: var(--yellow-bright);
  font-weight: 600;
}

/* Info Items */
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 44px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(245, 208, 0, 0.12);
  border: 1px solid rgba(245, 208, 0, 0.2);
  display: grid;
  place-items: center;
  color: var(--yellow-dark);
  font-size: 15px;
  flex-shrink: 0;
  transition:
    background 0.3s,
    transform 0.3s;
}

.contact-info-item:hover .contact-info-icon {
  background: rgba(245, 208, 0, 0.2);
  transform: scale(1.05);
}

.contact-info-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.contact-info-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

.contact-info-val {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.5;
}

/* Social Icons */
.contact-social-heading {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 16px;
}

.contact-social-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-social-btn {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.65);
  font-size: 17px;
  transition:
    background 0.25s,
    border-color 0.25s,
    color 0.25s,
    transform 0.25s var(--transition-bounce);
  text-decoration: none;
}

.contact-social-btn:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
  transform: translateY(-3px);
}

/* ── Right: Form Panel ── */
.contact-form-panel {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 52px;
  position: relative;
  overflow: hidden;
}

/* .contact-form-panel::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(245, 208, 0, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
} */

.contact-form-title {
  font-family: "Antonio", sans-serif;
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  margin: 0 0 6px;
}

.contact-form-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin: 0 0 36px;
  line-height: 1.6;
}

/* Success Message */
.contact-success {
  display: none;
  text-align: center;
  padding: 48px 24px;
}

.contact-success.is-visible {
  display: block;
}

.contact-success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(245, 208, 0, 0.15);
  border: 2px solid var(--yellow-bright);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--yellow-bright);
  margin: 0 auto 24px;
}

.contact-success-title {
  font-family: "Antonio", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 12px;
}

.contact-success-text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  max-width: 380px;
  margin: 0 auto;
}

.services-slider .work-card {
  height: 300px !important;
}