/* =========================================================
   Infinity Global Placement Solutions
   Design language: the working documents of overseas
   recruitment — visa stamps, boarding passes, route maps,
   ledger paper. Deep passport-navy, foil gold, maritime teal.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700;9..144,800&family=IBM+Plex+Sans:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

:root{
  /* color */
  --navy: #0F1A2E;
  --navy-2: #16233D;
  --navy-3: #1D2E4D;
  --paper: #EEF3F7;
  --paper-2: #E1EAF1;
  --white: #FCFDFE;
  --gold: #0166B3;
  --gold-light: #52C9F5;
  --gold-accent: #C9A227;
  --teal: #024A85;
  --teal-dark: #012F57;
  --stamp-red: #9B3B3B;
  --ink: #10161F;
  --ink-soft: #4C5566;
  --ink-faint: #7A8291;
  --line: rgba(16,22,31,0.12);
  --line-on-navy: rgba(237,239,231,0.16);

  /* type */
  --f-display: 'Fraunces', Georgia, serif;
  --f-body: 'IBM Plex Sans', -apple-system, Segoe UI, sans-serif;
  --f-mono: 'IBM Plex Mono', 'Courier New', monospace;

  --container: 1160px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--f-body);
  color:var(--ink);
  background:var(--paper);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ font-family:var(--f-display); margin:0; line-height:1.1; font-weight:600; }
p{ margin:0; }

.container{
  max-width:var(--container);
  margin:0 auto;
  padding:0 28px;
}

:focus-visible{
  outline:2px solid var(--gold);
  outline-offset:3px;
}

@media (prefers-reduced-motion: reduce){
  *,*::before,*::after{
    animation-duration:0.001ms !important;
    animation-iteration-count:1 !important;
    transition-duration:0.001ms !important;
    scroll-behavior:auto !important;
  }
}

/* -------------------- eyebrow / labels -------------------- */
.eyebrow{
  font-family:var(--f-mono);
  font-size:12.5px;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:var(--gold);
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:16px;
}
.eyebrow::before{
  content:"";
  width:22px;
  height:1px;
  background:var(--gold);
  display:inline-block;
}
.eyebrow.on-light{ color:var(--teal-dark); }

/* -------------------- header / nav -------------------- */
header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(15,26,46,0.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line-on-navy);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding-top:16px;
  padding-bottom:16px;
}
.logo{
  display:flex;
  align-items:center;
  gap:11px;
}
.logo-icon{
  height:32px;
  width:auto;
  flex-shrink:0;
}
.logo-text{
  font-family:var(--f-display);
  font-weight:700;
  font-size:19px;
  color:var(--white);
  letter-spacing:0.01em;
  display:flex;
  flex-direction:column;
  line-height:1.15;
}
.logo-text .mark{
  font-family:var(--f-mono);
  font-size:10px;
  letter-spacing:0.22em;
  color:var(--gold-light);
  text-transform:uppercase;
  margin-top:2px;
}
.footer-grid .logo-icon{ height:38px; }
nav.links{
  display:flex;
  gap:36px;
}
nav.links a{
  font-family:var(--f-mono);
  font-size:13px;
  letter-spacing:0.06em;
  text-transform:uppercase;
  color:rgba(252,252,250,0.7);
  position:relative;
  padding:6px 0;
  transition:color .2s ease;
}
nav.links a:hover, nav.links a.active{ color:var(--white); }
nav.links a.active::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:0;
  height:2px;
  background:var(--gold);
}
.nav-toggle{
  display:none;
  flex-direction:column;
  gap:5px;
  background:none;
  border:none;
  cursor:pointer;
  padding:6px;
}
.nav-toggle span{
  width:24px; height:2px; background:var(--white); display:block;
}
.nav-cta{
  border:1px solid var(--gold);
  color:var(--gold-light) !important;
  padding:9px 18px !important;
  border-radius:2px;
}
.nav-cta:hover{ background:var(--gold); color:var(--navy) !important; }

@media (max-width:860px){
  nav.links{
    position:absolute;
    top:100%; left:0; right:0;
    background:var(--navy);
    flex-direction:column;
    gap:0;
    max-height:0;
    overflow:hidden;
    transition:max-height .3s ease;
    border-bottom:1px solid var(--line-on-navy);
  }
  nav.links.open{ max-height:420px; }
  nav.links a{
    padding:16px 28px;
    border-top:1px solid var(--line-on-navy);
    width:100%;
  }
  .nav-toggle{ display:flex; }
}

/* -------------------- buttons -------------------- */
.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-family:var(--f-mono);
  font-size:13px;
  letter-spacing:0.06em;
  text-transform:uppercase;
  padding:14px 26px;
  background:var(--gold);
  color:var(--navy);
  border:1px solid var(--gold);
  border-radius:2px;
  cursor:pointer;
  transition:transform .18s ease, background .18s ease, color .18s ease;
}
.btn:hover{ transform:translateY(-2px); background:var(--gold-light); }
.btn.second{
  background:transparent;
  color:var(--white);
  border:1px solid var(--line-on-navy);
}
.btn.second:hover{ border-color:var(--gold); color:var(--gold-light); background:transparent; }
.btn.on-paper{ color:var(--white); background:var(--teal); border-color:var(--teal); }
.btn.on-paper:hover{ background:var(--teal-dark); }
.btn.full{ width:100%; justify-content:center; }

/* -------------------- hero -------------------- */
.hero{
  position:relative;
  background:
    radial-gradient(ellipse at 82% 15%, rgba(184,145,47,0.18), transparent 55%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
  color:var(--white);
  overflow:hidden;
  border-bottom:1px solid var(--line-on-navy);
}
.hero .container{
  display:grid;
  grid-template-columns:1.05fr 0.95fr;
  gap:40px;
  align-items:center;
  padding-top:88px;
  padding-bottom:88px;
  position:relative;
  z-index:2;
}
.hero h1{
  font-size:clamp(34px,4.4vw,54px);
  color:var(--white);
  margin-bottom:22px;
  max-width:14ch;
}
.hero h1 em{
  font-style:italic;
  color:var(--gold-light);
}
.hero .lede{
  font-size:17px;
  color:rgba(252,252,250,0.72);
  max-width:46ch;
  margin-bottom:34px;
}
.hero .actions{ display:flex; gap:14px; flex-wrap:wrap; }
.hero-stats{
  display:flex;
  gap:34px;
  margin-top:52px;
  padding-top:28px;
  border-top:1px solid var(--line-on-navy);
}
.hero-stats div strong{
  display:block;
  font-family:var(--f-display);
  font-size:26px;
  color:var(--gold-light);
}
.hero-stats div span{
  font-family:var(--f-mono);
  font-size:11px;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:rgba(252,252,250,0.55);
}

/* boarding-pass motif in hero */
.pass{
  position:relative;
  background:var(--navy-3);
  border:1px solid var(--line-on-navy);
  border-radius:6px;
  padding:26px 26px 22px;
  font-family:var(--f-mono);
  color:var(--white);
}
.pass::before,.pass::after{
  content:"";
  position:absolute;
  width:22px; height:22px;
  background:var(--navy);
  border-radius:50%;
  top:50%;
  transform:translateY(-50%);
}
.pass::before{ left:-11px; }
.pass::after{ right:-11px; }
.pass-row{
  display:flex;
  justify-content:space-between;
  font-size:10.5px;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:rgba(252,252,250,0.5);
  margin-bottom:14px;
}
.pass-route{
  display:flex;
  align-items:center;
  gap:14px;
  margin:18px 0 22px;
}
.pass-route .code{
  font-family:var(--f-display);
  font-size:30px;
  color:var(--gold-light);
}
.pass-route .path{
  flex:1;
  position:relative;
  height:1px;
  background:repeating-linear-gradient(90deg, var(--line-on-navy) 0 6px, transparent 6px 12px);
}
.pass-route .path svg{
  position:absolute;
  top:-8px;
  animation:fly 4.5s linear infinite;
}
@keyframes fly{
  0%{ left:-4%; opacity:0; }
  8%{ opacity:1; }
  92%{ opacity:1; }
  100%{ left:96%; opacity:0; }
}
.pass hr{
  border:none;
  border-top:1px dashed var(--line-on-navy);
  margin:18px 0;
}
.pass-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px 10px;
  font-size:11.5px;
}
.pass-grid div span{
  display:block;
  color:rgba(252,252,250,0.45);
  font-size:9.5px;
  letter-spacing:0.1em;
  text-transform:uppercase;
  margin-bottom:4px;
}
.pass-grid div strong{ color:var(--white); font-weight:500; }
.pass-stamp{
  position:absolute;
  bottom:-14px; right:18px;
  width:74px; height:74px;
  transform:rotate(-11deg);
  opacity:0.9;
}

@media (max-width:860px){
  .hero .container{ grid-template-columns:1fr; padding-top:56px; padding-bottom:56px; }
  .hero-stats{ flex-wrap:wrap; row-gap:18px; }
}

/* -------------------- section rhythm -------------------- */
section{ padding:96px 0; }
section.tight{ padding:72px 0; }
.section-head{
  max-width:640px;
  margin-bottom:52px;
}
.section-head h2{
  font-size:clamp(26px,3vw,36px);
  color:var(--ink);
}
.section-head p{
  margin-top:14px;
  color:var(--ink-soft);
  font-size:15.5px;
}
.on-navy{ background:var(--navy); color:var(--white); }
.on-navy .section-head h2{ color:var(--white); }
.on-navy .section-head p{ color:rgba(252,252,250,0.65); }
.on-navy-2{ background:var(--navy-2); color:var(--white); }

/* -------------------- about -------------------- */
.about-grid{
  display:grid;
  grid-template-columns:0.9fr 1.1fr;
  gap:56px;
  align-items:start;
}
.about-grid .lede{
  font-family:var(--f-display);
  font-size:24px;
  line-height:1.4;
  color:var(--ink);
}
.about-points{
  display:grid;
  gap:22px;
}
.about-points li{
  display:flex;
  gap:16px;
  padding-bottom:22px;
  border-bottom:1px solid var(--line);
}
.about-points li:last-child{ border-bottom:none; padding-bottom:0; }
.about-points .num{
  font-family:var(--f-mono);
  color:var(--gold);
  font-size:13px;
  padding-top:3px;
}
.about-points h4{ font-size:16.5px; margin-bottom:6px; }
.about-points p{ color:var(--ink-soft); font-size:14.5px; }

@media (max-width:860px){
  .about-grid{ grid-template-columns:1fr; gap:36px; }
}

/* -------------------- service stamp cards -------------------- */
.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:1px;
  background:var(--line);
  border:1px solid var(--line);
}
.card{
  background:var(--paper);
  padding:36px 30px;
  position:relative;
}
.card:hover .stamp{ transform:rotate(0deg) scale(1.04); }
.stamp{
  width:64px; height:64px;
  margin-bottom:22px;
  transition:transform .3s ease;
  transform:rotate(-8deg);
}
.card h3{ font-size:18px; margin-bottom:10px; }
.card p{ color:var(--ink-soft); font-size:14.5px; }

/* -------------------- industries -------------------- */
.tags{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}
.tags li{
  font-family:var(--f-mono);
  font-size:13px;
  letter-spacing:0.03em;
  padding:11px 18px;
  border:1px solid var(--line-on-navy);
  border-radius:2px;
  color:rgba(252,252,250,0.85);
  display:flex;
  align-items:center;
  gap:10px;
}
.tags li::before{
  content:"";
  width:6px; height:6px;
  border-radius:50%;
  background:var(--gold);
  flex-shrink:0;
}

/* -------------------- route map (signature element) -------------------- */
.route-wrap{ padding-top:10px; }
.route-map{ width:100%; height:auto; overflow:visible; }
.route-map .path{
  fill:none;
  stroke:var(--line-on-navy);
  stroke-width:1.4;
  stroke-dasharray:4 6;
}
.route-map .path.flow{
  stroke:var(--gold);
  stroke-opacity:0.85;
  stroke-dasharray:4 6;
  animation:dash 22s linear infinite;
}
@keyframes dash{ to{ stroke-dashoffset:-400; } }
.route-map .hub circle{ fill:var(--gold); }
.route-map .node circle{ fill:var(--navy); stroke:var(--gold-light); stroke-width:1.5; }
.route-map .node .pulse{
  fill:none;
  stroke:var(--gold-light);
  stroke-width:1;
  opacity:0;
  transform-origin:center;
  animation:pulse 3.2s ease-out infinite;
}
@keyframes pulse{
  0%{ opacity:0.55; transform:scale(1); }
  100%{ opacity:0; transform:scale(2.6); }
}
.route-map text{
  font-family:var(--f-mono);
  fill:rgba(252,252,250,0.85);
}
.route-map .code{
  font-size:9px;
  fill:var(--gold-light);
  letter-spacing:0.06em;
}
.route-map .country{
  font-size:12.5px;
  fill:var(--white);
}
.route-map .hub-label{
  font-family:var(--f-mono);
  font-size:11px;
  fill:var(--gold-light);
  letter-spacing:0.08em;
}

/* -------------------- why choose us -------------------- */
.why-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:28px 40px;
}
.why-item{ display:flex; gap:16px; }
.why-item .check{
  flex-shrink:0;
  width:30px; height:30px;
  border-radius:50%;
  border:1px solid var(--teal);
  color:var(--teal);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--f-mono);
  font-size:14px;
}
.why-item h4{ font-size:16px; margin-bottom:5px; }
.why-item p{ color:var(--ink-soft); font-size:14px; }
@media (max-width:700px){ .why-grid{ grid-template-columns:1fr; } }

/* -------------------- industry / job cards -------------------- */
.job-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:22px;
}
.job-card{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:4px;
  padding:28px;
  transition:border-color .2s ease, transform .2s ease;
}
.job-card:hover{ border-color:var(--gold); transform:translateY(-3px); }
.job-card .tagline{
  font-family:var(--f-mono);
  font-size:10.5px;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:var(--teal-dark);
  margin-bottom:10px;
}
.job-card h3{ font-size:18px; margin-bottom:10px; }
.job-card p{ color:var(--ink-soft); font-size:14px; margin-bottom:18px; }
.job-card a{
  font-family:var(--f-mono);
  font-size:12.5px;
  letter-spacing:0.05em;
  text-transform:uppercase;
  color:var(--navy);
  border-bottom:1px solid var(--gold);
  padding-bottom:2px;
}

.notice{
  background:var(--paper-2);
  border-left:3px solid var(--gold);
  padding:20px 24px;
  font-size:14.5px;
  color:var(--ink-soft);
  margin-bottom:44px;
}

/* -------------------- contact box / cta -------------------- */
.contact-box{
  background:linear-gradient(135deg, var(--navy) 0%, var(--teal-dark) 130%);
  color:var(--white);
}
.contact-box .container{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:30px;
  flex-wrap:wrap;
}
.contact-box h2{ font-size:clamp(24px,3vw,32px); max-width:20ch; color:var(--white); }
.contact-box .details{ display:flex; gap:34px; flex-wrap:wrap; margin-top:14px; }
.contact-box .details div span{
  display:block; font-family:var(--f-mono); font-size:10px; letter-spacing:0.1em;
  text-transform:uppercase; color:rgba(252,252,250,0.55); margin-bottom:4px;
}
.contact-box .details div strong{ font-size:15px; font-weight:500; }

/* -------------------- forms -------------------- */
.form-panel{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:4px;
  padding:40px;
}
.field{ margin-bottom:20px; }
.field label{
  display:block;
  font-family:var(--f-mono);
  font-size:11px;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--ink-soft);
  margin-bottom:8px;
}
.field input, .field select, .field textarea{
  width:100%;
  font-family:var(--f-body);
  font-size:14.5px;
  padding:12px 14px;
  border:1px solid var(--line);
  border-radius:3px;
  background:var(--paper);
  color:var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline:none;
  border-color:var(--teal);
  background:var(--white);
}
.field-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
@media (max-width:600px){ .field-row{ grid-template-columns:1fr; } }
.form-note{ font-size:12.5px; color:var(--ink-faint); margin-top:14px; }
.form-status{
  margin-top:16px;
  font-size:13.5px;
  font-family:var(--f-mono);
  display:none;
}
.form-status.show{ display:block; }

/* -------------------- contact page layout -------------------- */
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1.2fr;
  gap:56px;
  align-items:start;
}
.contact-info h2{ font-size:26px; margin-bottom:18px; }
.contact-info p{ color:var(--ink-soft); margin-bottom:32px; }
.info-list{ display:grid; gap:22px; }
.info-list li{ display:flex; gap:16px; }
.info-list .ic{
  width:38px; height:38px; flex-shrink:0;
  border-radius:50%;
  background:var(--navy);
  color:var(--gold-light);
  display:flex; align-items:center; justify-content:center;
}
.info-list span{
  display:block; font-family:var(--f-mono); font-size:10px; letter-spacing:0.08em;
  text-transform:uppercase; color:var(--ink-faint); margin-bottom:3px;
}
.info-list strong{ font-size:15px; font-weight:500; }
@media (max-width:860px){ .contact-grid{ grid-template-columns:1fr; } }

/* -------------------- page hero (inner pages) -------------------- */
.page-hero{
  background:linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
  color:var(--white);
  padding:64px 0 56px;
  border-bottom:1px solid var(--line-on-navy);
}
.page-hero h1{ font-size:clamp(30px,4vw,44px); color:var(--white); max-width:16ch; }
.page-hero p{ margin-top:16px; color:rgba(252,252,250,0.68); max-width:52ch; font-size:15.5px; }
.crumb{
  font-family:var(--f-mono);
  font-size:11.5px;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--gold-light);
  margin-bottom:18px;
}

/* -------------------- values / process (about page) -------------------- */
.timeline{ display:grid; gap:0; border-top:1px solid var(--line); }
.timeline-row{
  display:grid;
  grid-template-columns:100px 1fr;
  gap:24px;
  padding:26px 0;
  border-bottom:1px solid var(--line);
}
.timeline-row .yr{ font-family:var(--f-mono); color:var(--gold); font-size:13px; padding-top:2px; }
.timeline-row h4{ font-size:16.5px; margin-bottom:6px; }
.timeline-row p{ color:var(--ink-soft); font-size:14.5px; }

/* -------------------- footer -------------------- */
footer{
  background:var(--navy);
  color:rgba(252,252,250,0.6);
  padding:64px 0 28px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1fr;
  gap:40px;
  padding-bottom:44px;
  border-bottom:1px solid var(--line-on-navy);
}
.footer-grid h5{
  font-family:var(--f-mono);
  font-size:11px;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:var(--gold-light);
  margin-bottom:18px;
}
.footer-grid .logo{ margin-bottom:14px; }
.footer-grid p{ font-size:13.5px; line-height:1.7; }
.footer-links{ display:grid; gap:11px; }
.footer-links a{ font-size:13.5px; transition:color .2s ease; }
.footer-links a:hover{ color:var(--white); }
.footer-bottom{
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:12px;
  padding-top:24px;
  font-size:12.5px;
  font-family:var(--f-mono);
}
@media (max-width:860px){
  .footer-grid{ grid-template-columns:1fr 1fr; }
}
@media (max-width:560px){
  .footer-grid{ grid-template-columns:1fr; }
}

/* -------------------- whatsapp float -------------------- */
.whatsapp{
  position:fixed;
  right:24px; bottom:24px;
  z-index:200;
  width:54px; height:54px;
  border-radius:50%;
  background:#25D366;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 8px 22px rgba(0,0,0,0.25);
  transition:transform .2s ease;
}
.whatsapp:hover{ transform:scale(1.08); }

/* -------------------- reveal on scroll -------------------- */
.reveal{ opacity:0; transform:translateY(18px); transition:opacity .6s ease, transform .6s ease; }
.reveal.in{ opacity:1; transform:none; }

/* -------------------- misc -------------------- */
.divider-quote{
  font-family:var(--f-display);
  font-style:italic;
  font-size:clamp(20px,2.4vw,28px);
  color:var(--white);
  max-width:26ch;
  line-height:1.5;
}
.two-col{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:56px;
}
@media (max-width:860px){ .two-col{ grid-template-columns:1fr; } }
