/* ═══════════════════════════════════════════════
   ZION Consultancy – Pure CSS (Tailwind-free)
   Pixel-perfect replica of the TSX/Tailwind build
   ═══════════════════════════════════════════════ */

/* ── CSS Variables (matching Tailwind @theme) ── */
:root {
  --font-inter: "Inter", sans-serif;
  --font-poppins: "Poppins", sans-serif;
  --font-oswald: "Oswald", sans-serif;
  --color-primary: #1e3a5f;
  --color-primary-light: #2c5282;
  --color-accent: #e8a838;
  --color-accent-dark: #d4922a;
  --color-glass: rgba(255, 255, 255, 0.4);
  --color-glass-border: rgba(255, 255, 255, 0.2);
  --color-backdrop: rgba(0, 0, 0, 0.5);
}

/* ── Base / Reset ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-poppins);
  color: #1a202c;
  background-color: #ffffff;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

#root {
  overflow-x: hidden;
}

::selection {
  background-color: #e8a838;
  color: #1e3a5f;
}

img {
  transition: opacity 0.3s ease;
}

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

button {
  border: none;
  background: none;
  font-family: inherit;
}

/* ── Scrollbar ── */
@media (min-width: 640px) {
  ::-webkit-scrollbar {
    width: 8px;
  }
  ::-webkit-scrollbar-track {
    background: #f8fafc;
  }
  ::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #1e3a5f, #2c5282);
    border-radius: 4px;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #2c5282, #3182ce);
  }
}

@media (max-width: 639px) {
  * {
    -webkit-tap-highlight-color: transparent;
  }
  button,
  a {
    touch-action: manipulation;
  }
  input,
  select,
  textarea {
    font-size: 16px !important;
  }
}

/* ── Utility Classes ── */
.min-h-screen {
  min-height: 100vh;
}
.bg-white {
  background-color: #ffffff;
}
.bg-transparent {
  background-color: transparent;
}
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.fixed {
  position: fixed;
}
.top-0 {
  top: 0;
}
.left-0 {
  left: 0;
}
.right-0 {
  right: 0;
}
.bottom-0 {
  bottom: 0;
}
.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.z-0 {
  z-index: 0;
}
.z-1 {
  z-index: 1;
}
.z-10 {
  z-index: 10;
}
.z-50 {
  z-index: 50;
}
.overflow-hidden {
  overflow: hidden;
}
.pointer-events-none {
  pointer-events: none;
}
.w-full {
  width: 100%;
}
.h-full {
  height: 100%;
}
.object-cover {
  object-fit: cover;
}
.flex {
  display: flex;
}
.inline-flex {
  display: inline-flex;
}
.block {
  display: block;
}
.hidden {
  display: none !important;
}
.items-center {
  align-items: center;
}
.items-start {
  align-items: flex-start;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.flex-col {
  flex-direction: column;
}
.flex-1 {
  flex: 1 1 0%;
}
.gap-1 {
  gap: 0.25rem;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-3 {
  gap: 0.75rem;
}
.gap-4 {
  gap: 1rem;
}
.shrink-0 {
  flex-shrink: 0;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}
.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}
.font-bold {
  font-weight: 700;
}
.font-extrabold {
  font-weight: 800;
}
.font-semibold {
  font-weight: 600;
}
.font-medium {
  font-weight: 500;
}
.font-poppins {
  font-family: var(--font-poppins);
}
.font-oswald {
  font-family: var(--font-oswald);
}
.font-mono {
  font-family: ui-monospace, SFMono-Regular, monospace;
}
.tracking-tight {
  letter-spacing: -0.025em;
}
.tracking-wide {
  letter-spacing: 0.025em;
}
.tracking-wider {
  letter-spacing: 0.05em;
}
.tracking-widest {
  letter-spacing: 0.1em;
}
.leading-none {
  line-height: 1;
}
.leading-relaxed {
  line-height: 1.625;
}
.leading-tight {
  line-height: 1.25;
}
.uppercase {
  text-transform: uppercase;
}
.rounded-full {
  border-radius: 9999px;
}
.rounded-lg {
  border-radius: 0.5rem;
}
.rounded-xl {
  border-radius: 0.75rem;
}
.rounded-2xl {
  border-radius: 1rem;
}
.rounded-3xl {
  border-radius: 1.5rem;
}
.shadow-lg {
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -4px rgba(0, 0, 0, 0.1);
}
.shadow-xl {
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 8px 10px -6px rgba(0, 0, 0, 0.1);
}
.shadow-2xl {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.shadow-sm {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.shadow-md {
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -2px rgba(0, 0, 0, 0.1);
}
.blur-3xl {
  filter: blur(64px);
}
.backdrop-blur-sm {
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.backdrop-blur-2xl {
  -webkit-backdrop-filter: blur(40px);
  backdrop-filter: blur(40px);
}
.backdrop-blur-xl {
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
}
.backdrop-blur-md {
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.cursor-pointer {
  cursor: pointer;
}
.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.transition-colors {
  transition-property: color, background-color, border-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.duration-200 {
  transition-duration: 200ms;
}
.duration-300 {
  transition-duration: 300ms;
}
.duration-500 {
  transition-duration: 500ms;
}
.max-w-7xl {
  max-width: 80rem;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-3 {
  margin-top: 0.75rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-8 {
  margin-top: 2rem;
}
.pt-1 {
  padding-top: 0.25rem;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.p-2 {
  padding: 0.5rem;
}
.max-w-sm {
  max-width: 24rem;
}
.max-w-xs {
  max-width: 20rem;
}
.max-w-md {
  max-width: 28rem;
}
.max-w-lg {
  max-width: 32rem;
}
.w-1 {
  width: 0.25rem;
}
.h-1 {
  height: 0.25rem;
}
.w-3 {
  width: 0.75rem;
}
.h-3 {
  height: 0.75rem;
}
.w-4 {
  width: 1rem;
}
.h-4 {
  height: 1rem;
}
.w-5 {
  width: 1.25rem;
}
.h-5 {
  height: 1.25rem;
}
.w-6 {
  width: 1.5rem;
}
.h-6 {
  height: 1.5rem;
}
.w-7 {
  width: 1.75rem;
}
.h-7 {
  height: 1.75rem;
}
.w-8 {
  width: 2rem;
}
.h-8 {
  height: 2rem;
}
.w-10 {
  width: 2.5rem;
}
.h-10 {
  height: 2.5rem;
}
.w-14 {
  width: 3.5rem;
}
.h-14 {
  height: 3.5rem;
}
.w-16 {
  width: 4rem;
}
.h-16 {
  height: 4rem;
}
.space-y-1 > * + * {
  margin-top: 0.25rem;
}
.space-y-3 > * + * {
  margin-top: 0.75rem;
}
.space-y-5 > * + * {
  margin-top: 1.25rem;
}

/* Color utilities */
.text-white {
  color: #ffffff;
}
.text-primary {
  color: var(--color-primary);
}
.text-amber-400 {
  color: #fbbf24;
}
.text-amber-500 {
  color: #f59e0b;
}
.text-amber-600 {
  color: #d97706;
}
.text-amber-700 {
  color: #b45309;
}
.text-gray-400 {
  color: #9ca3af;
}
.text-gray-500 {
  color: #6b7280;
}
.text-gray-600 {
  color: #4b5563;
}
.text-gray-700 {
  color: #374151;
}
.text-gray-800 {
  color: #1f2937;
}
.text-gray-900 {
  color: #111827;
}
.text-green-500 {
  color: #22c55e;
}
.text-green-600 {
  color: #16a34a;
}
.text-green-700 {
  color: #15803d;
}
.text-red-500 {
  color: #ef4444;
}
.text-red-600 {
  color: #dc2626;
}
.text-blue-600 {
  color: #2563eb;
}
.bg-primary {
  background-color: var(--color-primary);
}
.bg-primary-10 {
  background-color: rgba(30, 58, 95, 0.1);
}
.bg-white {
  background-color: #ffffff;
}
.bg-gray-100 {
  background-color: #f3f4f6;
}
.bg-gray-200 {
  background-color: #e5e7eb;
}
.bg-gray-900 {
  background-color: #111827;
}
.bg-green-100 {
  background-color: #dcfce7;
}
.bg-green-600 {
  background-color: #16a34a;
}
.bg-amber-100 {
  background-color: #fef3c7;
}
.bg-amber-400 {
  background-color: #fbbf24;
}
.border-white-50 {
  border-color: rgba(255, 255, 255, 0.5);
}

/* ── Animations ── */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}
@keyframes scrollDot {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(12px);
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes modalFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes modalSlideUp {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(24px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes timelineStepIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.animate-spin {
  animation: spin 1s linear infinite;
}
.animate-marquee {
  animation: marquee 25s linear infinite;
}
.animate-marquee:hover,
.animate-marquee:active {
  animation-play-state: paused;
}

/* ── Navbar-specific animation ── */
.navbar-hidden {
  opacity: 0;
  transform: translateY(-100px);
}
.navbar-visible {
  animation: fadeInDown 0.6s ease-out forwards;
}

/* Fallback: if JS never runs, still show navbar and scroll-reveal elements */
noscript ~ #root .navbar-hidden,
.no-js .navbar-hidden { opacity: 1 !important; transform: none !important; }
noscript ~ #root .reveal-on-scroll,
.no-js .reveal-on-scroll { opacity: 1 !important; transform: none !important; }

/* NavBar */
.nav-brand-text {
  color: #ffffff;
}
.nav-brand-accent {
  color: #fcd34d;
}
.nav-link {
  color: rgba(255, 255, 255, 0.8);
}
.nav-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}
.nav-check-status-btn {
  color: rgba(255, 255, 255, 0.7);
}
.nav-check-status-btn:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}
.nav-apply-btn {
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.nav-apply-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
}
.nav-toggle-text {
  color: #ffffff;
}
.logo-img {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
}

/* Scrolled state */
.nav-scrolled {
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(40px);
  backdrop-filter: blur(40px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.nav-scrolled .nav-brand-text {
  color: var(--color-primary);
}
.nav-scrolled .nav-brand-accent {
  color: var(--color-accent);
}
.nav-scrolled .nav-link {
  color: #4b5563;
}
.nav-scrolled .nav-link:hover {
  color: var(--color-primary);
  background: rgba(30, 58, 95, 0.05);
}
.nav-scrolled .nav-check-status-btn {
  color: rgba(30, 58, 95, 0.7);
}
.nav-scrolled .nav-check-status-btn:hover {
  color: var(--color-primary);
  background: rgba(30, 58, 95, 0.05);
}
.nav-scrolled .nav-apply-btn {
  background: rgba(30, 58, 95, 0.1);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(30, 58, 95, 0.2);
  color: var(--color-primary);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}
.nav-scrolled .nav-apply-btn:hover {
  background: rgba(30, 58, 95, 0.15);
  border-color: rgba(30, 58, 95, 0.3);
}
.nav-scrolled .nav-toggle-text {
  color: var(--color-primary);
}

@media (min-width: 640px) {
  .logo-img {
    width: 4rem;
    height: 4rem;
  }
  .nav-scrolled {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
}

/* Mobile menu */
.mobile-menu-closed {
  max-height: 0;
  opacity: 0;
  transition:
    max-height 0.3s ease,
    opacity 0.3s ease;
}
.mobile-menu-open {
  max-height: 500px;
  opacity: 1;
}
.bg-white-70 {
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(40px);
  backdrop-filter: blur(40px);
}
.mobile-nav-link:hover {
  color: var(--color-primary);
  background: rgba(30, 58, 95, 0.05);
}

/* Responsive display helpers */
.hidden-md-flex {
  display: none;
}
.md-hidden {
  display: block;
}
@media (min-width: 768px) {
  .hidden-md-flex {
    display: flex;
  }
  .md-hidden {
    display: none;
  }
}

.hidden-sm-block {
  display: none;
}
.hidden-sm-inline {
  display: none;
}
.hidden-sm-flex {
  display: none;
}
@media (min-width: 640px) {
  .hidden-sm-block {
    display: block;
  }
  .hidden-sm-inline {
    display: inline;
  }
  .hidden-sm-flex {
    display: flex;
  }
  .sm-text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .sm-text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
  .sm-text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
  .sm-text-sm {
    font-size: 0.875rem;
  }
  .sm-text-base {
    font-size: 1rem;
  }
  .sm-text-left {
    text-align: left;
  }
  .sm-text-right {
    text-align: right;
  }
  .sm-gap-3 {
    gap: 0.75rem;
  }
  .sm-py-5 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }
  .sm-px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .sm-gap-3 {
    gap: 0.75rem;
  }
  .sm-space-y-3 > * + * {
    margin-top: 0.75rem;
  }
  .sm-space-y-4 > * + * {
    margin-top: 1rem;
  }
  .sm-rounded-2xl {
    border-radius: 1rem;
  }
  .sm-pt-8 {
    padding-top: 2rem;
  }
  .sm-mb-6 {
    margin-bottom: 1.5rem;
  }
  .sm-mb-5 {
    margin-bottom: 1.25rem;
  }
  .sm-justify-start {
    justify-content: flex-start;
  }
  .sm-w-4 {
    width: 1rem;
  }
  .sm-h-4 {
    height: 1rem;
  }
  .sm-flex-row {
    flex-direction: row;
  }
}
@media (min-width: 1024px) {
  .lg-px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* ═══════════════ HERO SECTION ═══════════════ */
.hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-overlay-1 {
  background: linear-gradient(
    to bottom right,
    rgba(30, 58, 95, 0.9),
    rgba(30, 58, 95, 0.75),
    rgba(44, 82, 130, 0.7)
  );
}
.hero-overlay-2 {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.4),
    transparent,
    rgba(0, 0, 0, 0.2)
  );
}

.top-neg20 {
  top: -5rem;
}
.right-neg20 {
  right: -5rem;
}
.left-neg20 {
  left: -5rem;
}
.bottom-20 {
  bottom: 5rem;
}
.bg-amber-400-10 {
  background: rgba(251, 191, 36, 0.1);
}
.bg-blue-400-10 {
  background: rgba(96, 165, 250, 0.1);
}
.w-96 {
  width: 24rem;
}
.h-96 {
  height: 24rem;
}
.w-80 {
  width: 20rem;
}
.h-80 {
  height: 20rem;
}
.w-72 {
  width: 18rem;
}
.h-72 {
  height: 18rem;
}

.hero-content-padding {
  padding-top: 7rem;
  padding-bottom: 2.5rem;
}
@media (min-width: 640px) {
  .hero-content-padding {
    padding-top: 8rem;
    padding-bottom: 2rem;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 640px) {
  .hero-grid {
    gap: 4rem;
  }
}
@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}
@media (min-width: 1280px) {
  .hero-grid {
    gap: 5rem;
  }
}

.hero-left {
  text-align: center;
}
@media (min-width: 640px) {
  .hero-left {
    text-align: left;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(251, 191, 36, 0.2);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  color: #fcd34d;
  border: 1px solid rgba(251, 191, 36, 0.3);
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
@media (min-width: 640px) {
  .hero-badge {
    gap: 0.625rem;
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    margin-bottom: 2rem;
    margin-left: 0;
    margin-right: auto;
  }
}

.pulse-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: #ffffff;
  border-radius: 9999px;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.hero-title {
  font-family: var(--font-poppins);
  font-size: 2.25rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.12;
  letter-spacing: -0.025em;
}
@media (min-width: 640px) {
  .hero-title {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    line-height: 1.15;
  }
}
@media (min-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }
}
@media (min-width: 1280px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.hero-subtitle {
  display: block;
  font-size: 1.125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.25rem;
}
@media (min-width: 640px) {
  .hero-subtitle {
    font-size: 1.5rem;
    margin-top: 0.5rem;
  }
}
@media (min-width: 1024px) {
  .hero-subtitle {
    font-size: 1.875rem;
  }
}

.hero-description {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 32rem;
  line-height: 1.625;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 640px) {
  .hero-description {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    margin-left: 0;
    margin-right: 0;
  }
}

.hero-cta-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: stretch;
  justify-content: center;
}
@media (min-width: 640px) {
  .hero-cta-wrap {
    flex-direction: row;
    gap: 1rem;
    align-items: center;
    justify-content: flex-start;
  }
}

.hero-apply-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #fbbf24;
  color: var(--color-primary);
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: 1rem;
  font-size: 1rem;
  box-shadow: 0 20px 25px -5px rgba(251, 191, 36, 0.25);
  transition: all 0.3s;
  cursor: pointer;
  max-width: 20rem;
  width: 100%;
  margin: 0 auto;
}
.hero-apply-btn:hover {
  background: #f59e0b;
  box-shadow: 0 25px 50px -12px rgba(251, 191, 36, 0.3);
  transform: scale(1.04) translateY(-2px);
}
.hero-apply-btn:active {
  transform: scale(0.98);
}
@media (min-width: 640px) {
  .hero-apply-btn {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    width: auto;
    margin: 0;
  }
}

.hero-secondary-btn {
  display: block;
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 1rem;
  font-size: 1rem;
  transition: all 0.3s;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  max-width: 20rem;
  width: 100%;
  margin: 0 auto;
}
.hero-secondary-btn:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.04) translateY(-2px);
}
@media (min-width: 640px) {
  .hero-secondary-btn {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    width: auto;
    margin: 0;
  }
}

.group-hover-translate-x {
  transition: transform 0.3s;
}
.hero-apply-btn:hover .group-hover-translate-x {
  transform: translateX(4px);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2.5rem;
  padding: 1.25rem 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
@media (min-width: 640px) {
  .hero-stats {
    justify-content: flex-start;
    gap: 2rem;
    margin-top: 3rem;
    padding: 1.5rem 1.5rem;
  }
}
@media (min-width: 768px) {
  .hero-stats {
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 1.5rem;
  }
  .stat-item {
    flex: 1 1 0;
    min-width: 0;
  }
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 640px) {
  .stat-item {
    align-items: flex-start;
  }
}

.stat-value {
  font-family: var(--font-poppins);
  font-size: 1.25rem;
  font-weight: 700;
}
@media (min-width: 640px) {
  .stat-value {
    font-size: 1.5rem;
  }
}
@media (min-width: 768px) {
  .stat-value {
    font-size: 1.875rem;
  }
}

.stat-label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  margin-top: 0.125rem;
}
@media (min-width: 640px) {
  .stat-label {
    font-size: 0.75rem;
  }
}
@media (min-width: 768px) {
  .stat-label {
    font-size: 0.875rem;
  }
}

/* Hero right */
.hero-right {
  display: none;
}
@media (min-width: 1024px) {
  .hero-right {
    display: block;
  }
}

.hero-image-card {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.hero-card-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.hero-card-overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8),
    rgba(0, 0, 0, 0.3),
    transparent
  );
}
.hero-card-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
}
.text-white-80 {
  color: rgba(255, 255, 255, 0.8);
}
.drop-shadow-lg {
  filter: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.04))
    drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1));
}
.drop-shadow-md {
  filter: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07))
    drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06));
}

.hero-floating-card {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

/* Scroll indicator */
.scroll-indicator {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}
@media (min-width: 640px) {
  .scroll-indicator {
    margin-top: 4rem;
  }
}
@media (min-width: 1024px) {
  .scroll-indicator {
    margin-top: 3rem;
  }
}

.scroll-indicator-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.text-white-40 {
  color: rgba(255, 255, 255, 0.4);
}
.group-hover-text-white-60:hover {
  color: rgba(255, 255, 255, 0.6);
}

.scroll-mouse {
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 9999px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 0.375rem;
  transition: border-color 0.3s;
}
.scroll-indicator-link:hover .scroll-mouse {
  border-color: rgba(255, 255, 255, 0.5);
}

.scroll-dot {
  width: 0.375rem;
  height: 0.375rem;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 9999px;
  animation: scrollDot 1.5s ease-in-out infinite;
}

/* Animation helpers */
.anim-fade-in-left {
  opacity: 0;
  animation: fadeInLeft 0.7s ease-out forwards;
}
.anim-fade-in-right {
  opacity: 0;
  animation: fadeInRight 0.8s ease-out forwards;
}
.anim-fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.5s ease-out forwards;
}
.anim-fade-in {
  opacity: 0;
  animation: fadeIn 0.5s ease-out forwards;
}
.anim-delay-200 {
  animation-delay: 0.2s;
}
.anim-delay-300 {
  animation-delay: 0.3s;
}
.anim-delay-500 {
  animation-delay: 0.5s;
}
.anim-delay-700 {
  animation-delay: 0.7s;
}
.anim-delay-900 {
  animation-delay: 0.9s;
}
.anim-delay-1300 {
  animation-delay: 1.3s;
}
.anim-delay-1500 {
  animation-delay: 1.5s;
}

/* ═══════════════ WHY CHOOSE US ═══════════════ */
.about-section {
  padding: 4rem 1rem;
}
@media (min-width: 640px) {
  .about-section {
    padding: 6rem 1.5rem;
  }
}
@media (min-width: 768px) {
  .about-section {
    padding: 8rem 1.5rem;
  }
}
@media (min-width: 1024px) {
  .about-section {
    padding: 8rem 2rem;
  }
}

.bg-gradient-gray {
  background: linear-gradient(to bottom, #f9fafb, #ffffff, #f9fafb);
}
.bg-primary-3 {
  background: rgba(30, 58, 95, 0.03);
}
.bg-amber-5 {
  background: rgba(251, 191, 36, 0.05);
}
.translate-neg-half {
  transform: translateY(-50%) translateX(50%);
}
.translate-half {
  transform: translateY(50%) translateX(-50%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 3.5rem;
}
@media (min-width: 640px) {
  .about-grid {
    gap: 4rem;
    margin-bottom: 5rem;
  }
}
@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Reveal on scroll */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease-out,
    transform 0.7s ease-out;
}
.reveal-on-scroll[data-direction="left"] {
  transform: translateX(-40px);
}
.reveal-on-scroll[data-direction="right"] {
  transform: translateX(40px);
}
.reveal-on-scroll[data-direction="up"] {
  transform: translateY(30px);
}
.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

.image-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .image-collage {
    gap: 1rem;
  }
}

.collage-img-tall {
  width: 100%;
  height: 8rem;
  object-fit: cover;
}
.collage-img-short {
  width: 100%;
  height: 6rem;
  object-fit: cover;
}
@media (min-width: 640px) {
  .collage-img-tall {
    height: 13rem;
  }
  .collage-img-short {
    height: 10rem;
  }
}

.hover-scale {
  transition: transform 0.3s;
}
.hover-scale:hover {
  transform: scale(1.03);
}

.experience-badge {
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(30, 58, 95, 0.9);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  color: #ffffff;
  border-radius: 0.75rem;
  padding: 0.75rem 1.5rem;
  box-shadow: 0 20px 25px -5px rgba(30, 58, 95, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}
@media (min-width: 640px) {
  .experience-badge {
    bottom: -1.5rem;
    border-radius: 1rem;
    padding: 1rem 2rem;
  }
}

.about-label {
  display: inline-block;
  color: var(--color-accent);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
@media (min-width: 640px) {
  .about-label {
    font-size: 0.875rem;
    margin-bottom: 1rem;
  }
}

.about-title {
  font-family: var(--font-poppins);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1rem;
  line-height: 1.25;
}
@media (min-width: 640px) {
  .about-title {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 768px) {
  .about-title {
    font-size: 2.25rem;
  }
}
@media (min-width: 1024px) {
  .about-title {
    font-size: 3rem;
  }
}

.about-description {
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.625;
  margin-bottom: 1rem;
}
@media (min-width: 640px) {
  .about-description {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
  }
}

.about-subdesc {
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.625;
  margin-bottom: 1.5rem;
}
@media (min-width: 640px) {
  .about-subdesc {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}

.about-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .about-actions {
    justify-content: flex-start;
    gap: 2rem;
  }
}

.about-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: var(--color-primary);
  color: #ffffff;
  font-weight: 600;
  padding: 0.625rem 1rem;
  border-radius: 0.75rem;
  transition: all 0.3s;
  box-shadow: 0 4px 6px -1px rgba(30, 58, 95, 0.15);
  font-size: 0.75rem;
  white-space: nowrap;
}
@media (min-width: 640px) {
  .about-cta-btn {
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }
}
.about-cta-btn:hover {
  background: var(--color-primary-light);
}

.about-learn-more {
  color: var(--color-primary);
  font-weight: 600;
  transition: color 0.2s;
  font-size: 0.75rem;
  white-space: nowrap;
}
@media (min-width: 640px) {
  .about-learn-more {
    font-size: 1rem;
  }
}
.about-learn-more:hover {
  color: var(--color-accent);
}

/* Features grid */
.features-grid {
  display: none;
}
@media (min-width: 640px) {
  .features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.feature-card {
  background: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 1rem;
  padding: 1.75rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border-color: rgba(30, 58, 95, 0.2);
}

.feature-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(30, 58, 95, 0.08);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--color-primary);
  transition: all 0.3s;
}
.feature-card:hover .feature-icon {
  background: var(--color-primary);
  color: #ffffff;
}

.feature-title {
  font-family: var(--font-poppins);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}
.feature-desc {
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.625;
}

/* Mobile marquee */
.features-marquee {
  display: block;
  overflow: hidden;
  margin-left: -1rem;
  margin-right: -1rem;
}
@media (min-width: 640px) {
  .features-marquee {
    display: none;
  }
}

.marquee-track {
  display: flex;
  gap: 1rem;
  padding-left: 1rem;
  width: max-content;
}

.marquee-card {
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 1.25rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  width: 260px;
  flex-shrink: 0;
}
.marquee-card-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(30, 58, 95, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--color-primary);
}
.marquee-card-title {
  font-family: var(--font-poppins);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.375rem;
}
.marquee-card-desc {
  color: #6b7280;
  font-size: 0.75rem;
  line-height: 1.625;
}

/* ═══════════════ INTERVIEW DETAILS ═══════════════ */
.details-section {
  padding: 4rem 1rem;
}
@media (min-width: 640px) {
  .details-section {
    padding: 6rem 1.5rem;
  }
}
@media (min-width: 768px) {
  .details-section {
    padding: 8rem 1.5rem;
  }
}
@media (min-width: 1024px) {
  .details-section {
    padding: 8rem 2rem;
  }
}

.bg-gradient-primary {
  background: linear-gradient(
    to bottom right,
    var(--color-primary),
    var(--color-primary),
    var(--color-primary-light)
  );
}
.pattern-bg {
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='1' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}
.top-neg40 {
  top: -10rem;
}
.right-neg40 {
  right: -10rem;
}
.bottom-neg40 {
  bottom: -10rem;
}
.left-neg40 {
  left: -10rem;
}

.details-header {
  margin-bottom: 2.5rem;
}
@media (min-width: 640px) {
  .details-header {
    margin-bottom: 4rem;
  }
}

.details-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  color: #fcd34d;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
@media (min-width: 640px) {
  .details-badge {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
  }
}

.details-title {
  font-family: var(--font-poppins);
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}
@media (min-width: 640px) {
  .details-title {
    font-size: 1.875rem;
    margin-bottom: 1.25rem;
  }
}
@media (min-width: 768px) {
  .details-title {
    font-size: 2.25rem;
  }
}
@media (min-width: 1024px) {
  .details-title {
    font-size: 3rem;
  }
}

.details-subtitle {
  color: rgba(255, 255, 255, 0.6);
  max-width: 42rem;
  margin: 0 auto;
  font-size: 0.875rem;
}
@media (min-width: 640px) {
  .details-subtitle {
    font-size: 1rem;
  }
}
@media (min-width: 768px) {
  .details-subtitle {
    font-size: 1.125rem;
  }
}

.details-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .details-cards-grid {
    gap: 1.5rem;
  }
}
@media (min-width: 768px) {
  .details-cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

/* Info Card */
.info-card {
  position: relative;
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: all 0.4s;
  overflow: hidden;
  text-align: center;
}
@media (min-width: 640px) {
  .info-card {
    padding: 2rem;
    text-align: left;
  }
}
.info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
}

.info-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s;
}
.info-card:hover .info-card-accent {
  transform: scaleX(1);
}

.info-card-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--color-primary);
  transition: all 0.3s;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 640px) {
  .info-card-icon {
    width: 4rem;
    height: 4rem;
    margin-bottom: 1.5rem;
    margin-left: 0;
    margin-right: 0;
  }
}
.bg-amber-500-10 {
  background: rgba(245, 158, 11, 0.1);
}
.bg-blue-500-10 {
  background: rgba(59, 130, 246, 0.1);
}
.bg-green-500-10 {
  background: rgba(34, 197, 94, 0.1);
}
.info-card:hover .info-card-icon {
  color: #ffffff;
}
.info-card:hover .bg-amber-500-10 {
  background: #f59e0b;
}
.info-card:hover .bg-blue-500-10 {
  background: #3b82f6;
}
.info-card:hover .bg-green-500-10 {
  background: #22c55e;
}

.info-card-title {
  font-family: var(--font-poppins);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.info-card-big-text {
  font-size: 1.5rem;
  font-family: var(--font-poppins);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}
@media (min-width: 640px) {
  .info-card-big-text {
    font-size: 1.875rem;
  }
}

.info-card-venue-text {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.info-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 1rem;
}
@media (min-width: 640px) {
  .info-card-tag {
    display: flex;
  }
}
.tag-amber {
  color: #d97706;
  background: #fffbeb;
}
.tag-blue {
  color: #2563eb;
  background: #eff6ff;
}

.contact-phones {
  display: inline-flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .contact-phones {
    display: block;
  }
}

.contact-phone-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-primary);
  font-weight: 600;
  transition: color 0.2s;
  justify-content: center;
}
@media (min-width: 640px) {
  .contact-phone-link {
    justify-content: flex-start;
  }
}
.contact-phone-link:hover {
  color: var(--color-accent);
}

.phone-icon-wrap {
  width: 2rem;
  height: 2rem;
  background: #dcfce7;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}
.contact-phone-link:hover .phone-icon-wrap {
  background: #bbf7d0;
}

/* Details CTA Banner */
.details-cta-banner {
  margin-top: 2.5rem;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(40px);
  backdrop-filter: blur(40px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  text-align: center;
}
@media (min-width: 640px) {
  .details-cta-banner {
    flex-direction: row;
    gap: 1.5rem;
    padding: 2rem;
    margin-top: 4rem;
    text-align: left;
  }
}
@media (min-width: 768px) {
  .details-cta-banner {
    padding: 2.5rem;
  }
}

.details-cta-title {
  font-family: var(--font-poppins);
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.25rem;
}
@media (min-width: 640px) {
  .details-cta-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }
}
@media (min-width: 768px) {
  .details-cta-title {
    font-size: 1.5rem;
  }
}

.details-cta-subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
}
@media (min-width: 640px) {
  .details-cta-subtitle {
    font-size: 0.875rem;
  }
}
@media (min-width: 768px) {
  .details-cta-subtitle {
    font-size: 1rem;
  }
}

.details-cta-btn {
  flex-shrink: 0;
  background: #fbbf24;
  color: var(--color-primary);
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  justify-content: center;
}
@media (min-width: 640px) {
  .details-cta-btn {
    padding: 0.875rem 2rem;
    font-size: 1rem;
    width: auto;
  }
}
.details-cta-btn:hover {
  background: #f59e0b;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* ═══════════════ JOB POSITIONS ═══════════════ */
.positions-section {
  padding: 6rem 1rem 3rem;
}
@media (min-width: 640px) {
  .positions-section {
    padding: 6rem 1.5rem 3rem;
  }
}
@media (min-width: 1024px) {
  .positions-section {
    padding: 6rem 2rem 3rem;
  }
}

.top-half {
  top: 50%;
}
.top-quarter {
  top: 25%;
}
.translate-x-neg-half {
  transform: translateX(-50%);
}
.translate-x-half {
  transform: translateX(50%);
}

.positions-header {
  margin-bottom: 4rem;
}

.positions-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(30, 58, 95, 0.05);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  color: var(--color-primary);
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid rgba(30, 58, 95, 0.1);
}

.positions-divider {
  height: 3px;
  width: 5rem;
  margin-top: 0.75rem;
  border-radius: 9999px;
  background: linear-gradient(to right, var(--color-primary), transparent);
}
@media (min-width: 640px) {
  .positions-divider {
    width: 7rem;
  }
}

.positions-title {
  font-family: var(--font-poppins);
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1.25rem;
}
@media (min-width: 640px) {
  .positions-title {
    font-size: 2.25rem;
  }
}
@media (min-width: 1024px) {
  .positions-title {
    font-size: 3rem;
  }
}

.positions-subtitle {
  color: #6b7280;
  max-width: 42rem;
  margin: 0 auto;
  font-size: 1.125rem;
}

.positions-list > * + * {
  margin-top: 1.5rem;
}

/* Position Card */
.position-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: all 0.5s;
}
@media (min-width: 768px) {
  .position-card {
    flex-direction: row;
  }
}
.position-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.position-card.highlight {
  border-color: rgba(251, 191, 36, 0.6);
  box-shadow: 0 10px 15px -3px rgba(251, 191, 36, 0.15);
}

.position-ribbon {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  background: #fbbf24;
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.375rem 1rem;
  border-bottom-right-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.position-card-image {
  position: relative;
  width: 100%;
  height: 13rem;
  flex-shrink: 0;
  overflow: hidden;
}
@media (min-width: 768px) {
  .position-card-image {
    width: 18rem;
    height: auto;
  }
}
@media (min-width: 1024px) {
  .position-card-image {
    width: 20rem;
  }
}

.position-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.position-card-image .color-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  mix-blend-mode: multiply;
}
.position-card-image .side-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2));
  display: none;
}
@media (min-width: 768px) {
  .position-card-image .side-fade {
    display: block;
  }
}

.salary-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  border-radius: 0.75rem;
  padding: 0.5rem 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.salary-label {
  font-size: 11px;
  color: #9ca3af;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.salary-value {
  color: var(--color-primary);
  font-family: var(--font-poppins);
  font-weight: 800;
  font-size: 1.125rem;
  line-height: 1.25;
}

.position-card-content {
  flex: 1;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 640px) {
  .position-card-content {
    padding: 2rem;
  }
}

.position-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.position-icon-wrap {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.position-name {
  font-family: var(--font-poppins);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.25;
}
@media (min-width: 640px) {
  .position-name {
    font-size: 1.5rem;
  }
}
.position-type {
  color: #9ca3af;
  font-size: 0.875rem;
  margin-top: 0.125rem;
}

.spec-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.spec-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border-radius: 0.5rem;
  padding: 0.5rem 0.875rem;
  border: 1px solid rgba(229, 231, 235, 0.6);
  font-size: 0.875rem;
  color: #4b5563;
}
.spec-chip strong {
  font-weight: 600;
  color: #1f2937;
}
.spec-chip-amber {
  background: rgba(255, 251, 235, 0.6);
  border-color: rgba(253, 230, 138, 0.6);
  font-weight: 600;
  color: #b45309;
}

.benefits-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: #9ca3af;
  margin-bottom: 1.5rem;
}
.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.position-apply-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem 2rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s;
  cursor: pointer;
  justify-content: center;
}
@media (min-width: 640px) {
  .position-apply-btn {
    width: auto;
    align-self: flex-start;
  }
}
.position-apply-btn:hover {
  transform: scale(1.03);
}
.position-apply-btn:active {
  transform: scale(0.97);
}
.position-apply-btn.btn-highlight {
  background: #fbbf24;
  color: var(--color-primary);
  box-shadow: 0 10px 15px -3px rgba(251, 191, 36, 0.3);
}
.position-apply-btn.btn-highlight:hover {
  background: #f59e0b;
}
.position-apply-btn.btn-default {
  background: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 4px 6px -1px rgba(30, 58, 95, 0.2);
}
.position-apply-btn.btn-default:hover {
  background: var(--color-primary-light);
}

/* ═══════════════ HOW IT WORKS ═══════════════ */
.how-it-works-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 0;
}
@media (min-width: 640px) {
  .how-it-works-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .how-it-works-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.how-step-card {
  position: relative;
  background: rgba(255, 255, 255, 0.85);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  border-radius: 1.25rem;
  padding: 2.5rem 1.5rem 2rem;
  border: 1px solid rgba(230, 230, 240, 0.7);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  text-align: center;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  overflow: visible;
}
.how-step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(30, 58, 95, 0.1);
  border-color: rgba(30, 58, 95, 0.12);
}

.how-step-number {
  position: absolute;
  top: -0.875rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1.875rem;
  height: 1.875rem;
  border-radius: 50%;
  background: var(--color-primary);
  color: #ffffff;
  font-family: var(--font-poppins);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(30, 58, 95, 0.3);
  z-index: 2;
  line-height: 1;
}

.how-step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 4.5rem;
  min-width: 4.5rem;
  min-height: 4.5rem;
  max-width: 4.5rem;
  border-radius: 1.125rem;
  margin: 0 auto 1.25rem auto;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}
.how-step-card:hover .how-step-icon {
  transform: scale(1.08);
}
.how-step-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  flex-shrink: 0;
}

.how-step-title {
  font-family: var(--font-poppins);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.625rem;
  line-height: 1.3;
}

.how-step-desc {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 1.125rem;
}

.how-step-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-accent);
  transition:
    color 0.2s,
    gap 0.2s;
}
.how-step-link:hover {
  color: #b45309;
  gap: 0.625rem;
}

/* ═══════════════ COUNTRIES WE SERVE ═══════════════ */
.countries-section {
  padding: 2.5rem 0 2rem;
  background: linear-gradient(
    135deg,
    rgba(30, 58, 95, 0.03),
    rgba(245, 158, 11, 0.04)
  );
  border-top: 1px solid rgba(30, 58, 95, 0.06);
  border-bottom: 1px solid rgba(30, 58, 95, 0.06);
}

.countries-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-poppins);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
  opacity: 0.7;
  text-align: center;
}

.countries-marquee-wrap {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    black 5%,
    black 95%,
    transparent
  );
  mask-image: linear-gradient(
    90deg,
    transparent,
    black 5%,
    black 95%,
    transparent
  );
}

.countries-marquee-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: countriesScroll 30s linear infinite;
}
.countries-marquee-wrap:hover .countries-marquee-track {
  animation-play-state: paused;
}

@keyframes countriesScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.country-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(30, 58, 95, 0.08);
  border-radius: 9999px;
  padding: 0.5rem 1.25rem;
  white-space: nowrap;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  flex-shrink: 0;
}
.country-chip:hover {
  border-color: rgba(30, 58, 95, 0.18);
  box-shadow: 0 4px 12px rgba(30, 58, 95, 0.08);
}

.country-chip-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.country-chip-icon svg {
  width: 16px;
  height: 16px;
}
.country-chip-name {
  font-family: var(--font-poppins);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--color-primary);
}
.country-chip-dot {
  color: rgba(30, 58, 95, 0.2);
  font-weight: 700;
}
.country-chip-cities {
  font-size: 0.8rem;
  color: #6b7280;
}

.testimonials-section {
  padding: 4.25rem 0 4rem;
  background:
    radial-gradient(circle at 15% 10%, rgba(245, 158, 11, 0.08), transparent 45%),
    radial-gradient(circle at 85% 90%, rgba(30, 58, 95, 0.08), transparent 48%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-top: 1px solid rgba(30, 58, 95, 0.06);
  border-bottom: 1px solid rgba(30, 58, 95, 0.06);
}

.testimonials-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.9rem;
  margin: 0 auto;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-primary);
  background: rgba(30, 58, 95, 0.08);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.testimonials-title {
  font-family: var(--font-oswald);
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  font-weight: 700;
  color: #102741;
  letter-spacing: 0.01em;
  text-align: center;
  margin-top: 0.9rem;
  margin-bottom: 2rem;
}

.testimonials-marquee-grid {
  display: grid;
  gap: 0.9rem;
}

.testimonials-marquee-wrap {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    black 4%,
    black 96%,
    transparent
  );
  mask-image: linear-gradient(
    90deg,
    transparent,
    black 4%,
    black 96%,
    transparent
  );
}

.testimonials-marquee-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: testimonialsScroll calc(var(--testimonial-count, 12) * 4s) linear infinite;
  padding: 0.35rem 1rem;
}

.testimonials-marquee-track-row2 {
  animation-direction: reverse;
  animation-delay: -2s;
}

.testimonials-marquee-grid:hover .testimonials-marquee-track,
.testimonials-marquee-wrap:hover .testimonials-marquee-track {
  animation-play-state: paused;
}

@keyframes testimonialsScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.testimonial-card {
  width: min(90vw, 360px);
  min-height: 170px;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(30, 58, 95, 0.12);
  box-shadow:
    0 12px 30px rgba(15, 23, 42, 0.08),
    0 3px 10px rgba(15, 23, 42, 0.05);
  padding: 1.05rem 1.05rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.85rem;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(30, 58, 95, 0.22);
  box-shadow:
    0 16px 34px rgba(15, 23, 42, 0.12),
    0 5px 12px rgba(15, 23, 42, 0.06);
}

.testimonial-text {
  font-size: 0.92rem;
  line-height: 1.65;
  color: #334155;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.testimonial-avatar {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 9999px;
  object-fit: cover;
  border: 2px solid rgba(30, 58, 95, 0.2);
  background: #e2e8f0;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.14);
  flex-shrink: 0;
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.12rem;
  min-width: 0;
}

.testimonial-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #0f2744;
  line-height: 1.2;
}

.testimonial-divider {
  display: none;
}

.testimonial-role {
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.35;
}

@media (max-width: 767px) {
  .testimonials-section {
    padding: 3.5rem 0 3.25rem;
  }

  .testimonials-marquee-grid {
    gap: 0.65rem;
  }

  .testimonials-title {
    font-size: 1.65rem;
    margin-bottom: 1.5rem;
  }

  .testimonials-marquee-track {
    gap: 0.75rem;
    animation-duration: calc(var(--testimonial-count, 12) * 3.2s);
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .testimonial-card {
    width: min(88vw, 320px);
    min-height: 154px;
    padding: 0.95rem 0.9rem;
  }

  .testimonial-text {
    font-size: 0.86rem;
    line-height: 1.55;
  }

  .testimonial-avatar {
    width: 2.85rem;
    height: 2.85rem;
  }
}

.bg-amber-400-10 {
  background: rgba(251, 191, 36, 0.1);
}

/* ═══════════════ FAQ SECTION ═══════════════ */
.faq-section {
  padding: 5rem 1rem 5rem;
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
  position: relative;
}
.faq-container {
  max-width: 960px;
  margin: 0 auto;
}
.faq-header {
  text-align: center;
  margin-bottom: 3rem;
}
.faq-badge {
  display: inline-block;
  background: linear-gradient(
    135deg,
    rgba(30, 58, 95, 0.08),
    rgba(232, 168, 56, 0.12)
  );
  color: var(--color-primary);
  font-family: var(--font-poppins);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 1.2rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}
.faq-title {
  font-family: var(--font-oswald);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}
.faq-title-accent {
  background: linear-gradient(135deg, #e8a838, #d4872a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.faq-subtitle {
  font-family: var(--font-poppins);
  font-size: 0.95rem;
  color: #64748b;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.6;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  align-items: start;
}
.faq-item {
  background: #fff;
  border: 1px solid rgba(30, 58, 95, 0.08);
  border-radius: 12px;
  overflow: hidden;
  transition:
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}
.faq-item:hover {
  box-shadow: 0 4px 20px rgba(30, 58, 95, 0.08);
  border-color: rgba(30, 58, 95, 0.15);
}
.faq-item.active {
  border-color: rgba(232, 168, 56, 0.4);
  box-shadow: 0 4px 24px rgba(232, 168, 56, 0.1);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-poppins);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-primary);
  transition: color 0.2s ease;
}
.faq-question:hover {
  color: #e8a838;
}
.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #94a3b8;
  transition:
    transform 0.3s ease,
    color 0.3s ease;
}
.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: #e8a838;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.35s ease;
}
.faq-item.active .faq-answer {
  max-height: 300px;
}
.faq-answer p {
  padding: 0 1.25rem 1.1rem;
  font-family: var(--font-poppins);
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}
@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .faq-section {
    padding: 3.5rem 1rem;
  }
}

/* ═══════════════ FOOTER ═══════════════ */
.footer {
}
.bg-primary-20 {
  background: rgba(30, 58, 95, 0.2);
}
.bg-amber-10 {
  background: rgba(251, 191, 36, 0.1);
}
.dot-grid {
  opacity: 0.04;
  background-image: radial-gradient(circle, #ffffff 1px, transparent 1px);
  background-size: 24px 24px;
}
.diagonal-lines {
  opacity: 0.03;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    #ffffff 20px,
    #ffffff 21px
  );
}
.border-white-5 {
  border-color: rgba(255, 255, 255, 0.05);
}

.footer-cta-padding {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media (min-width: 640px) {
  .footer-cta-padding {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

.footer-cta-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: center;
}
@media (min-width: 640px) {
  .footer-cta-flex {
    gap: 1.5rem;
  }
}
@media (min-width: 768px) {
  .footer-cta-flex {
    flex-direction: row;
    text-align: left;
  }
}

.footer-cta-title {
  font-family: var(--font-poppins);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
@media (min-width: 640px) {
  .footer-cta-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
}
@media (min-width: 768px) {
  .footer-cta-title {
    font-size: 1.875rem;
  }
}

.footer-apply-btn {
  flex-shrink: 0;
  background: #fbbf24;
  color: var(--color-primary);
  font-weight: 700;
  padding: 0.75rem 2rem;
  border-radius: 0.75rem;
  font-size: 1rem;
  box-shadow: 0 20px 25px -5px rgba(251, 191, 36, 0.15);
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  justify-content: center;
}
@media (min-width: 640px) {
  .footer-apply-btn {
    padding: 1rem 2.5rem;
    border-radius: 1rem;
    font-size: 1.125rem;
    width: auto;
  }
}
.footer-apply-btn:hover {
  background: #f59e0b;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.footer-main-padding {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media (min-width: 640px) {
  .footer-main-padding {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
  }
}

.footer-company {
}
@media (min-width: 640px) {
  .footer-company {
    grid-column: span 2;
  }
}
@media (min-width: 1024px) {
  .footer-company {
    grid-column: span 1;
  }
}

.footer-logo {
  width: 3.5rem;
  height: 3.5rem;
  object-fit: contain;
}
@media (min-width: 640px) {
  .footer-logo {
    width: 5rem;
    height: 5rem;
  }
}

.social-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.social-icon:hover {
  background: rgba(30, 58, 95, 0.8);
  border-color: rgba(30, 58, 95, 0.6);
}
.social-icon svg {
  fill: #9ca3af;
  transition: fill 0.3s;
}
.social-icon:hover svg {
  fill: #ffffff;
}

.footer-links-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .footer-links-contact {
    grid-template-columns: 1fr;
    display: contents;
  }
}

.footer-section-title {
  font-family: var(--font-poppins);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
@media (min-width: 640px) {
  .footer-section-title {
    margin-bottom: 1.5rem;
  }
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #9ca3af;
  font-size: 0.875rem;
  transition: color 0.2s;
}
.footer-link:hover {
  color: #fbbf24;
}
.footer-link:hover svg {
  color: #fbbf24;
}

.footer-service {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #9ca3af;
  font-size: 0.875rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
}
@media (min-width: 640px) {
  .footer-contact-item {
    gap: 0.75rem;
  }
}
.footer-contact-icon {
  width: 1.75rem;
  height: 1.75rem;
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.125rem;
}
@media (min-width: 640px) {
  .footer-contact-icon {
    width: 2.25rem;
    height: 2.25rem;
  }
}

.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #9ca3af;
  font-size: 0.875rem;
  transition: color 0.2s;
}
@media (min-width: 640px) {
  .footer-contact-link {
    gap: 0.75rem;
  }
}
.footer-contact-link:hover {
  color: #ffffff;
}

.mt-0dot5 {
  margin-top: 0.125rem;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #16a34a;
  color: #ffffff;
  font-weight: 600;
  padding: 0.625rem 1.25rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  transition: all 0.3s;
  box-shadow: 0 10px 15px -3px rgba(22, 163, 74, 0.2);
  width: 100%;
  justify-content: center;
}
@media (min-width: 640px) {
  .whatsapp-btn {
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    width: auto;
  }
}
.whatsapp-btn:hover {
  background: #15803d;
}

.footer-bottom-padding {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (min-width: 640px) {
  .footer-bottom-padding {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}

.footer-bottom-flex {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  font-size: 10px;
  color: #6b7280;
}
@media (min-width: 640px) {
  .footer-bottom-flex {
    flex-direction: row;
    gap: 1.5rem;
    font-size: 0.75rem;
  }
}
@media (min-width: 768px) {
  .footer-bottom-flex {
    gap: 2.5rem;
  }
}

/* ═══════════════ MODALS ═══════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
  background: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  animation: modalFadeIn 0.2s ease-out;
}
@media (min-width: 640px) {
  .modal-overlay {
    align-items: center;
    padding: 1rem;
  }
}

.modal-container {
  position: relative;
  width: 100%;
  max-height: 95vh;
  overflow-y: auto;
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(40px);
  backdrop-filter: blur(40px);
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.5);
  animation: modalSlideUp 0.3s ease-out;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.modal-container::-webkit-scrollbar {
  display: none;
}
@media (min-width: 640px) {
  .modal-container {
    max-height: 92vh;
    border-radius: 1rem;
  }
}

.registration-modal {
  max-width: 36rem;
}
.status-modal {
  max-width: 32rem;
}
@media (min-width: 640px) {
  .status-modal {
    background: rgba(255, 255, 255, 0.9);
  }
}

.modal-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  padding: 1rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 640px) {
  .modal-header {
    padding: 1.25rem 1.5rem;
  }
}
@media (min-width: 768px) {
  .modal-header {
    padding: 1.25rem 2rem;
  }
}

.status-modal .modal-header {
  background: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid #f3f4f6;
  padding: 1rem 1.25rem;
}
@media (min-width: 640px) {
  .status-modal .modal-header {
    padding: 1.25rem 1.5rem;
  }
}

.modal-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media (min-width: 640px) {
  .modal-title {
    font-size: 1.25rem;
  }
}

.modal-subtitle {
  color: #9ca3af;
  font-size: 0.75rem;
  margin-top: 0.125rem;
}
@media (min-width: 640px) {
  .modal-subtitle {
    font-size: 0.875rem;
  }
}

.modal-close-btn {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  transition: background 0.2s;
  color: #9ca3af;
  cursor: pointer;
}
.modal-close-btn:hover {
  background: #f3f4f6;
  color: #4b5563;
}

.modal-progress {
  padding: 1rem 1rem 0;
}
@media (min-width: 640px) {
  .modal-progress {
    padding: 1rem 1.5rem 0;
  }
}
@media (min-width: 768px) {
  .modal-progress {
    padding: 1rem 2rem 0;
  }
}

.h-1dot5 {
  height: 0.375rem;
}
.bg-primary {
  background-color: var(--color-primary);
}

.modal-body {
  padding: 1rem;
}
@media (min-width: 640px) {
  .modal-body {
    padding: 1.5rem;
  }
}
@media (min-width: 768px) {
  .modal-body {
    padding: 1.5rem 2rem;
  }
}

.modal-body-status {
  padding: 1.25rem;
}
@media (min-width: 640px) {
  .modal-body-status {
    padding: 1.5rem;
  }
}

.modal-body.step-anim-left {
  animation: slideLeft 0.25s ease-out;
}
.modal-body.step-anim-right {
  animation: slideRight 0.25s ease-out;
}

/* Form elements */
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #4b5563;
  margin-bottom: 0.375rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
  background: rgba(249, 250, 251, 0.5);
  font-size: 0.875rem;
  transition: all 0.2s;
  outline: none;
  font-family: inherit;
}
.form-input:focus {
  box-shadow: 0 0 0 2px rgba(30, 58, 95, 0.2);
  border-color: var(--color-primary);
  background: #ffffff;
}
.form-input.input-error {
  border-color: #fca5a5;
  background: rgba(254, 242, 242, 0.5);
}
.form-input.input-error:focus {
  box-shadow: 0 0 0 2px rgba(252, 165, 165, 0.5);
  border-color: #f87171;
}

.form-select {
  appearance: none;
}

.select-arrow {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #9ca3af;
}

.form-error {
  color: #ef4444;
  font-size: 0.75rem;
  margin-top: 0.25rem;
  min-height: 0;
}
.form-error:empty {
  display: none;
}

.grid-2-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.grid-2-col-responsive {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .grid-2-col-responsive {
    grid-template-columns: 1fr 1fr;
  }
}

.pre-selected-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(30, 58, 95, 0.05);
  border: 1px solid rgba(30, 58, 95, 0.1);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
}

/* File upload */
.file-upload-zone {
  position: relative;
  border-radius: 0.5rem;
  border: 2px dashed #e5e7eb;
  padding: 1rem;
  text-align: center;
  transition: all 0.2s;
  background: rgba(249, 250, 251, 0.3);
}
.file-upload-zone:hover {
  border-color: #d1d5db;
}
.file-upload-zone.has-file {
  border-color: #86efac;
  background: rgba(240, 253, 244, 0.4);
}
.file-upload-zone.has-error {
  border-color: #fca5a5;
  background: rgba(254, 242, 242, 0.4);
}
.file-input-hidden {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.file-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.25rem 0;
}
.file-success {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* Buttons */
.btn-primary {
  background: var(--color-primary);
  color: #ffffff;
  font-weight: 600;
  padding: 0.75rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  transition: all 0.2s;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--color-primary-light);
}
.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-secondary {
  padding: 0.75rem 1.25rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #6b7280;
  background: #f3f4f6;
  transition:
    background 0.2s,
    color 0.2s;
  cursor: pointer;
}
.btn-secondary:hover {
  background: #e5e7eb;
  color: #374151;
}

.success-body {
  padding-top: 2rem;
  padding-bottom: 3rem;
}

.success-icon-wrap {
  width: 4rem;
  height: 4rem;
  background: #dcfce7;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.py-2dot5 {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}
.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.py-2dot5 {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}

/* Status Modal specifics */
.pr-24 {
  padding-right: 6rem;
}

.status-search-btn {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  background: var(--color-primary);
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 0.2s;
  cursor: pointer;
}
.status-search-btn:hover {
  background: var(--color-primary-light);
}
.status-search-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.gap-1dot5 {
  gap: 0.375rem;
}
.w-3dot5 {
  width: 0.875rem;
}
.h-3dot5 {
  height: 0.875rem;
}

.status-header-card {
  background: linear-gradient(
    to right,
    var(--color-primary),
    var(--color-primary-light)
  );
  border-radius: 0.75rem;
  padding: 1rem;
  margin-bottom: 1.25rem;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}
@media (min-width: 640px) {
  .status-header-card {
    padding: 1.25rem;
  }
}

.translate-neg-half-circle {
  transform: translateY(-50%) translateX(50%);
}
.bg-white-5 {
  background: rgba(255, 255, 255, 0.05);
}
.text-white-60 {
  color: rgba(255, 255, 255, 0.6);
}
.text-white-80 {
  color: rgba(255, 255, 255, 0.8);
}
.bg-white-40 {
  background: rgba(255, 255, 255, 0.4);
}
.text-white-40 {
  color: rgba(255, 255, 255, 0.4);
}

.sm-text-2xl {
}
@media (min-width: 640px) {
  .sm-text-2xl {
    font-size: 1.5rem;
  }
}

.status-badge {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
}

/* Timeline */
.timeline-step {
  display: flex;
  gap: 0.75rem;
  animation: timelineStepIn 0.3s ease-out backwards;
}
@media (min-width: 640px) {
  .timeline-step {
    gap: 1rem;
  }
}

.timeline-dot {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.5s;
}
.timeline-dot.completed {
  color: #ffffff;
}
.timeline-dot.pending {
  background: #f3f4f6;
  color: #d1d5db;
  border: 2px solid #e5e7eb;
}
.timeline-dot.current {
  color: #ffffff;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  ring: 4px rgba(59, 130, 246, 0.2);
}
.timeline-dot.rejected {
  background: #ef4444;
  color: #ffffff;
  box-shadow: 0 10px 15px -3px rgba(239, 68, 68, 0.3);
}

.timeline-line {
  width: 2px;
  flex: 1;
  min-height: 20px;
  margin: 0.25rem 0;
  border-radius: 9999px;
  transition: all 0.5s;
}
.timeline-line.completed {
}
.timeline-line.pending {
  background: #e5e7eb;
}

.timeline-content {
  padding-bottom: 1.25rem;
  flex: 1;
}
.timeline-content.pending-content {
  opacity: 0.4;
}

.timeline-current-badge {
  margin-top: 0.5rem;
  border: 1px solid;
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
}
.timeline-current-badge p {
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.timeline-current-dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 9999px;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.hover-text-primary:hover {
  color: var(--color-primary);
}
.hover-text-gray-600:hover {
  color: #4b5563;
}
.hover-bg-primary-5:hover {
  background: rgba(30, 58, 95, 0.05);
}
.hover-bg-primary-20:hover {
  background: rgba(30, 58, 95, 0.2);
}
.hover-bg-primary-light:hover {
  background: var(--color-primary-light);
}
.hover-bg-green-700:hover {
  background: #15803d;
}

/* ── Color utilities for status ── */
.bg-blue-50 {
  background: #eff6ff;
}
.bg-yellow-50 {
  background: #fefce8;
}
.bg-indigo-50 {
  background: #eef2ff;
}
.bg-purple-50 {
  background: #faf5ff;
}
.bg-cyan-50 {
  background: #ecfeff;
}
.bg-green-50 {
  background: #f0fdf4;
}
.bg-red-50 {
  background: #fef2f2;
}
.bg-emerald-50 {
  background: #ecfdf5;
}
.bg-orange-50 {
  background: #fff7ed;
}
.bg-teal-50 {
  background: #f0fdfa;
}

.text-blue-700 {
  color: #1d4ed8;
}
.text-yellow-700 {
  color: #a16207;
}
.text-indigo-700 {
  color: #4338ca;
}
.text-purple-700 {
  color: #7e22ce;
}
.text-cyan-700 {
  color: #0e7490;
}
.text-green-700 {
  color: #15803d;
}
.text-red-700 {
  color: #b91c1c;
}
.text-emerald-700 {
  color: #047857;
}
.text-orange-700 {
  color: #c2410c;
}
.text-teal-700 {
  color: #0f766e;
}

.border-blue-200 {
  border-color: #bfdbfe;
}
.border-yellow-200 {
  border-color: #fef08a;
}
.border-indigo-200 {
  border-color: #c7d2fe;
}
.border-purple-200 {
  border-color: #e9d5ff;
}
.border-cyan-200 {
  border-color: #a5f3fc;
}
.border-green-200 {
  border-color: #bbf7d0;
}
.border-red-200 {
  border-color: #fecaca;
}
.border-emerald-200 {
  border-color: #a7f3d0;
}
.border-orange-200 {
  border-color: #fed7aa;
}
.border-teal-200 {
  border-color: #99f6e4;
}

.bg-blue-500 {
  background: #3b82f6;
}
.bg-yellow-500 {
  background: #eab308;
}
.bg-indigo-500 {
  background: #6366f1;
}
.bg-purple-500 {
  background: #a855f7;
}
.bg-cyan-500 {
  background: #06b6d4;
}
.bg-green-500 {
  background: #22c55e;
}
.bg-red-500 {
  background: #ef4444;
}
.bg-emerald-500 {
  background: #10b981;
}
.bg-orange-500 {
  background: #f97316;
}
.bg-teal-500 {
  background: #14b8a6;
}
.bg-amber-500 {
  background: #f59e0b;
}

/* ═══════════════════════════════════════════════
   MOBILE FLOATING CHECK STATUS BUTTON
   ═══════════════════════════════════════════════ */
.mobile-floating-status {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  background: linear-gradient(135deg, #1e3a5f, #2563eb);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(30, 58, 95, 0.35);
  align-items: center;
  gap: 8px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.mobile-floating-status:active {
  transform: scale(0.95);
}
.mobile-floating-status svg {
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .mobile-floating-status {
    display: flex;
  }
}
