/* ===== 2TG Manpower International Corp — Unique Minimal Glassmorphism ===== */

:root {
  --bg-deep: #faf7f2;
  --bg-deep-2: #ffffff;
  --accent-1: #9a7b3f;   /* elegant gold */
  --accent-2: #c9a24b;   /* light gold */
  --accent-3: #3f6e64;   /* deep teal */
  --text-hi: #1e2330;
  --text-mid: #5b6270;
  --text-low: #8a91a0;
  --glass-bg: rgba(255, 255, 255, 0.55);
  --glass-bg-strong: rgba(255, 255, 255, 0.78);
  --glass-border: rgba(30, 30, 40, 0.09);
  --radius: 22px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg-deep);
  color: var(--text-hi);
  overflow-x: hidden;
  min-height: 100vh;
}

h1, h2, .section-title, .hero-title { font-family: 'Playfair Display', 'Inter', serif; font-weight: 600; }
h3, .logo-text { font-family: 'Space Grotesk', 'Inter', sans-serif; }

img { max-width: 100%; display: block; }


/* team banner */
.branch-team-banner { min-height: auto; padding: 20px 0 70px; }
.team-banner {
  position: relative;
  margin: 0; overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(30,35,55,.2);
  cursor: pointer;
}
.team-banner img {
  width: 100%; height: clamp(280px, 46vw, 460px); object-fit: cover;
  display: block; transition: transform .6s var(--ease);
}
.team-banner:hover img { transform: scale(1.04); }
.team-banner-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 34px 38px;
  background: linear-gradient(0deg, rgba(10,12,18,.82) 0%, rgba(10,12,18,.28) 55%, rgba(10,12,18,0) 100%);
  color: #f4f2ee;
}
.team-banner-eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-size: .74rem; letter-spacing: .24em; text-transform: uppercase;
  color: var(--accent-1); margin-bottom: 8px;
}
.team-banner-overlay h3 { font-size: clamp(1.3rem, 2.4vw, 1.8rem); margin-bottom: 6px; }
.team-banner-overlay p { color: rgba(244,242,238,.82); font-size: .92rem; max-width: 480px; line-height: 1.6; }

@media (max-width: 640px) {
  .team-banner-overlay { padding: 22px 20px; }
}

/* ===== Image loading state (skeleton shimmer + fade-in) ===== */
.img-fade {
  opacity: 0;
  background: linear-gradient(100deg, #eceff2 8%, #f7f8f9 18%, #eceff2 33%);
  background-size: 200% 100%;
  animation: img-shimmer 1.5s ease-in-out infinite;
  transition: opacity .5s var(--ease);
}
.img-fade.is-loaded {
  opacity: 1;
  animation: none;
  background: none;
}
@keyframes img-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
@media (prefers-reduced-motion: reduce) {
  .img-fade { animation: none; transition: none; opacity: 1; background: none; }
}

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

ul { list-style: none; }

/* ===== Background ambience ===== */
.bg-orbs {
  position: fixed; inset: 0; z-index: 0; overflow: hidden; pointer-events: none;
}
.orb {
  position: absolute; border-radius: 50%; filter: blur(90px); opacity: .35;
  animation: float 18s ease-in-out infinite;
}
.orb { opacity: .22; }
.orb-1 { width: 46vw; height: 46vw; background: var(--accent-3); top: -10%; left: -10%; }
.orb-2 { width: 38vw; height: 38vw; background: var(--accent-2); bottom: -12%; right: -8%; animation-delay: -6s; }
.orb-3 { width: 30vw; height: 30vw; background: var(--accent-1); top: 40%; left: 55%; animation-delay: -12s; opacity: .14; }

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(4%, 6%) scale(1.08); }
}

/* ===== Glass utility ===== */
.glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  border-radius: var(--radius);
  box-shadow: 0 10px 34px rgba(30,35,55,.08);
}

/* ===== Layout base ===== */
.section {
  position: relative;
  min-height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  padding: 120px 0 80px;
}
.section-inner {
  width: min(1300px, 92vw);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .78rem;
  font-weight: 600;
  color: var(--accent-1);
  margin-bottom: 14px;
}
.eyebrow.center { text-align: center; }
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--text-hi);
}
.section-title.center { text-align: center; }
.section-title.light { color: #fff; }
.section-sub { color: var(--text-mid); max-width: 620px; margin: 0 auto 50px; text-align: center; font-size: 1.05rem; }

.grad-text {
  background: linear-gradient(120deg, var(--accent-1), var(--accent-2) 60%, var(--accent-3));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 30px; border-radius: 999px; font-weight: 600; font-size: .95rem;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s;
  cursor: pointer; border: none;
}
.btn-solid {
  background: var(--text-hi);
  color: #fff;
}
.btn-solid:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(30,35,48,.25); }
.btn-outline {
  border: 1px solid var(--glass-border);
  color: var(--text-hi);
  background: rgba(255,255,255,.5);
}
.btn-outline:hover { background: rgba(255,255,255,.9); transform: translateY(-3px); }
.btn-glass { padding: 11px 22px; font-size: .85rem; }
.btn.full { width: 100%; justify-content: center; }

/* ===== Navbar ===== */
.navbar {
  position: fixed; top: 18px; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: center;
}
.nav-inner {
  width: min(1300px, 94vw);
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 22px; border-radius: 999px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
}
.logo-mark {
  font-weight: 700; font-size: 1.05rem; letter-spacing: .04em;
  background: linear-gradient(120deg, var(--accent-1), var(--accent-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.logo-text { font-size: .85rem; color: var(--text-mid); font-weight: 500; }
.nav-links { display: flex; gap: 28px; }
.nav-links a { font-size: .88rem; color: var(--text-mid); font-weight: 500; transition: color .25s; position: relative; }
.nav-links a:hover, .nav-links a.active { color: var(--text-hi); }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: -8px; left: 0; right: 0; height: 2px;
  background: var(--accent-1); border-radius: 2px;
}
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.burger span { width: 22px; height: 2px; background: var(--text-hi); border-radius: 2px; }

/* ===== Hero (split / boarding-pass concept) ===== */
.hero-split { align-items: stretch; padding-top: 130px; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center;
  width: min(1360px, 94vw);
}
.hero-copy { max-width: 560px; }
.hero .eyebrow { color: var(--accent-1); }
.hero-title {
  font-size: clamp(2.4rem, 4.6vw, 3.8rem); line-height: 1.12; letter-spacing: -.01em;
  margin-bottom: 22px; color: var(--text-hi);
}
.role-rotator { display: inline-grid; vertical-align: top; }
.role-word {
  grid-area: 1 / 1; opacity: 0; transform: translateY(14px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
  white-space: nowrap;
}
.role-word.is-active { opacity: 1; transform: translateY(0); }
.hero-sub { max-width: 520px; color: var(--text-mid); font-size: 1.08rem; line-height: 1.75; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 46px; }

.hero-ledger { display: flex; gap: 30px; flex-wrap: wrap; padding-top: 26px; border-top: 1px solid var(--glass-border); }
.stat { text-align: left; }
.stat-num { font-size: 1.7rem; font-weight: 700; color: var(--accent-1); font-family: 'Space Grotesk', sans-serif; }
.stat-suffix { font-size: 1.1rem; font-weight: 700; color: var(--accent-1); }
.stat p { font-size: .76rem; color: var(--text-mid); margin-top: 4px; }

/* Visual: clipped photo + floating boarding-pass card */
.hero-visual { position: relative; height: 560px; }
.hero-photo {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  border-radius: 34px; clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%);
  box-shadow: 0 30px 60px rgba(30,35,55,.18);
}
.boarding-pass {
  position: absolute; left: -8%; bottom: 8%; width: 92%; max-width: 400px;
  padding: 26px 26px 22px; transform: rotate(-4deg);
  animation: bpFloat 5s ease-in-out infinite;
}
@keyframes bpFloat { 0%, 100% { transform: rotate(-4deg) translateY(0); } 50% { transform: rotate(-4deg) translateY(-10px); } }
.bp-row { display: flex; justify-content: space-between; align-items: center; }
.bp-brand { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: .82rem; letter-spacing: .03em; color: var(--text-hi); }
.bp-tag { font-size: .62rem; letter-spacing: .16em; color: var(--accent-1); font-weight: 700; }
.bp-route { display: flex; align-items: center; gap: 12px; margin: 18px 0 14px; }
.bp-point { display: flex; flex-direction: column; }
.bp-point strong { font-family: 'Space Grotesk', sans-serif; font-size: 1.3rem; color: var(--text-hi); }
.bp-point span { font-size: .68rem; color: var(--text-low); }
.bp-point-end { text-align: right; align-items: flex-end; }
.bp-path { flex: 1; position: relative; height: 14px; display: flex; align-items: center; justify-content: center; }
.bp-line { position: absolute; left: 0; right: 0; top: 50%; height: 1px; background: repeating-linear-gradient(90deg, var(--accent-1) 0 6px, transparent 6px 11px); }
.bp-plane { position: relative; background: var(--bg-deep-2); padding: 0 6px; color: var(--accent-1); font-size: .95rem; }
.bp-perf {
  height: 1px; margin: 4px 0 16px; background: repeating-linear-gradient(90deg, var(--glass-border) 0 6px, transparent 6px 12px);
}
.bp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 10px; margin-bottom: 18px; }
.bp-grid span { display: block; font-size: .6rem; letter-spacing: .08em; text-transform: uppercase; color: var(--text-low); margin-bottom: 3px; }
.bp-grid strong { font-size: .85rem; color: var(--text-hi); font-family: 'Space Grotesk', sans-serif; }
.bp-barcode {
  height: 26px; border-radius: 4px;
  background: repeating-linear-gradient(90deg, var(--text-hi) 0 2px, transparent 2px 5px, var(--text-hi) 5px 6px, transparent 6px 9px, var(--text-hi) 9px 12px, transparent 12px 14px);
  opacity: .75;
}

.scroll-cue {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px; border: 2px solid var(--glass-border); border-radius: 20px;
  display: flex; justify-content: center; padding-top: 8px; z-index: 3;
}
.scroll-cue span { width: 4px; height: 8px; background: var(--accent-1); border-radius: 4px; animation: scrollDown 1.8s infinite; }
@keyframes scrollDown { 0% { opacity: 1; transform: translateY(0); } 100% { opacity: 0; transform: translateY(14px); } }

/* ===== About ===== */
.about-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 70px; align-items: center; }
.about-media { position: relative; }
.media-frame { overflow: hidden; padding: 10px; }
.media-frame img { border-radius: 14px; height: 480px; object-fit: cover; }
.floating-card {
  position: absolute; bottom: -24px; left: -24px; padding: 16px 20px;
  display: flex; align-items: center; gap: 12px; max-width: 260px;
}
.floating-card .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--accent-1); box-shadow: 0 0 12px var(--accent-1); flex-shrink: 0; }
.floating-card p { font-size: .82rem; color: var(--text-mid); }
.about-copy p { color: var(--text-mid); line-height: 1.75; margin-bottom: 18px; }
.check-list li { display: flex; gap: 10px; color: var(--text-mid); margin-bottom: 10px; font-size: .95rem; }
.check { color: var(--accent-1); font-weight: 700; }
.mini-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.mini-card { padding: 22px; }
.mini-card h3 { font-size: 1rem; margin-bottom: 8px; color: var(--accent-2); }
.mini-card p { font-size: .88rem; margin: 0; }

/* ===== Core Values (I CARES) ===== */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 10px; }
.value-card { padding: 30px 26px; text-align: left; transition: transform .4s var(--ease), background .4s; }
.value-card:hover { transform: translateY(-8px); background: var(--glass-bg-strong); }
.value-letter {
  display: flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; margin-bottom: 16px; border-radius: 14px;
  background: rgba(154,123,63,.1); font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 700;
  background-clip: padding-box;
  color: var(--accent-1);
}
.value-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.value-card p { color: var(--text-mid); font-size: .9rem; line-height: 1.6; }

.quality-policy { margin-top: 40px; padding: 40px; }
.qp-header { text-align: center; max-width: 760px; margin: 0 auto 26px; }
.qp-badge {
  display: inline-block; padding: 6px 16px; border-radius: 999px; margin-bottom: 14px;
  background: rgba(154,123,63,.12); color: var(--accent-1); font-size: .72rem;
  font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
}
.qp-header p { color: var(--text-mid); line-height: 1.7; }
.qp-list {
  list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 32px;
  max-width: 940px; margin: 0 auto;
}
.qp-list li {
  display: flex; gap: 12px; align-items: flex-start; color: var(--text-mid);
  font-size: .9rem; line-height: 1.6; padding-bottom: 14px; border-bottom: 1px solid var(--glass-border);
}
.qp-num {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
  background: var(--accent-1); color: #fff; font-size: .74rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
}
.qp-tagline {
  text-align: center; margin-top: 30px; font-family: 'Playfair Display', serif;
  font-style: italic; font-size: 1.2rem; color: var(--text-hi);
}

/* ===== Services ===== */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 10px; }
.service-card { padding: 34px 28px; transition: transform .4s var(--ease), background .4s; }
.service-card:hover { transform: translateY(-8px); background: var(--glass-bg-strong); }
.icon-badge { font-size: 1.8rem; margin-bottom: 18px; width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; border-radius: 16px; background: rgba(154,123,63,.1); }
.service-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.service-card p { color: var(--text-mid); font-size: .92rem; line-height: 1.65; }

/* ===== Job Offers ===== */
.jobs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 10px; }
.job-card {
  position: relative; overflow: hidden; height: 300px; padding: 26px 24px;
  text-align: center; transition: transform .4s var(--ease);
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
}
.job-card::before {
  content: ''; position: absolute; inset: 0; background-image: var(--bg); background-size: cover; background-position: center;
  opacity: .55; z-index: -2; transition: opacity .4s, transform .5s var(--ease);
}
.job-card::after {
  content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,22,28,.15) 0%, rgba(12,14,20,.92) 100%); z-index: -1;
}
.job-card:hover { transform: translateY(-8px); }
.job-card:hover::before { opacity: .75; transform: scale(1.06); }
.job-flag {
  display: flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; margin-bottom: 14px; border-radius: 50%;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.35);
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: .78rem;
  letter-spacing: .02em; color: var(--accent-2);
}
.job-eyebrow { font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.6); font-weight: 700; margin-bottom: 8px; }
.job-country { font-size: 1.5rem; color: #fff; margin-bottom: 10px; font-family: 'Playfair Display', serif; }
.job-role { font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.75); margin-bottom: 20px; }
.job-apply { font-size: .82rem; font-weight: 600; color: #fff; border-bottom: 1px solid var(--accent-2); padding-bottom: 2px; transition: color .3s; }
.job-apply:hover { color: var(--accent-2); }
.jobs-note { text-align: center; color: var(--text-low); font-size: .85rem; margin-top: 34px; }

/* ===== Branches ===== */
.branches-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.branch-card {
  padding: 30px 26px; display: flex; flex-direction: column; align-items: flex-start;
  transition: transform .4s var(--ease), background .4s;
}
.branch-card:hover { transform: translateY(-8px); background: var(--glass-bg-strong); }
.branch-card.featured { border-color: var(--accent-1); }
.branch-pin {
  display: flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; margin-bottom: 16px; border-radius: 14px;
  background: rgba(154,123,63,.1); font-size: 1.2rem;
}
.branch-tag {
  font-size: .66rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 700;
  padding: 5px 12px; border-radius: 999px; background: rgba(154,123,63,.12); color: var(--accent-1);
  margin-bottom: 14px;
}
.branch-card h3 { font-size: 1.2rem; margin-bottom: 8px; color: var(--text-hi); font-family: 'Playfair Display', serif; }
.branch-card p { color: var(--text-mid); font-size: .85rem; line-height: 1.6; margin-bottom: 18px; flex-grow: 1; }
.branch-more { font-size: .82rem; font-weight: 600; color: var(--text-hi); border-bottom: 1px solid var(--accent-1); padding-bottom: 2px; transition: color .3s; }
.branch-more:hover { color: var(--accent-1); }

/* ===== Process ===== */
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.tl-item { padding: 32px 24px; position: relative; }
.tl-num {
  font-family: 'Space Grotesk', sans-serif; font-size: 2.2rem; font-weight: 700;
  background: linear-gradient(120deg, var(--accent-1), var(--accent-3));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  display: block; margin-bottom: 14px;
}
.tl-item h3 { font-size: 1.05rem; margin-bottom: 8px; }
.tl-item p { color: var(--text-mid); font-size: .88rem; line-height: 1.6; }

/* ===== Testimonials ===== */
.testimonials { overflow: hidden; }
.testi-bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(.85) saturate(1.05); }
.testi-track {
  max-width: 780px; margin: 0 auto; padding: 56px; text-align: center;
  background: var(--glass-bg-strong);
}
.testi-track blockquote { font-size: 1.5rem; line-height: 1.6; font-weight: 500; font-style: italic; color: var(--text-hi); margin-bottom: 22px; font-family: 'Playfair Display', serif; }
.testi-author { color: var(--accent-1); font-size: .92rem; margin-bottom: 22px; font-weight: 600; }
.testi-dots { display: flex; justify-content: center; gap: 8px; }
.testi-dots span { width: 8px; height: 8px; border-radius: 50%; background: var(--glass-border); cursor: pointer; transition: background .3s, transform .3s; }
.testi-dots span.active { background: var(--accent-1); transform: scale(1.3); }

/* ===== Contact ===== */
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.contact-copy p { color: var(--text-mid); line-height: 1.75; margin-bottom: 24px; }
.contact-details { display: flex; flex-direction: column; gap: 14px; margin-bottom: 26px; color: var(--text-mid); font-size: .92rem; }
.socials { display: flex; gap: 12px; }
.socials a {
  width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: var(--glass-bg); border: 1px solid var(--glass-border); font-size: .75rem; font-weight: 700;
  transition: background .3s, transform .3s;
}
.socials a:hover { background: var(--glass-bg-strong); transform: translateY(-3px); }
.contact-form { padding: 34px; display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form input, .contact-form select, .contact-form textarea {
  background: rgba(0,0,0,.03); border: 1px solid var(--glass-border); border-radius: 12px;
  padding: 13px 16px; color: var(--text-hi); font-family: inherit; font-size: .92rem; outline: none;
  transition: border .3s, background .3s;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--text-low); }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--accent-1); background: rgba(0,0,0,.05); }
.contact-form textarea { resize: vertical; }
.contact-form select option { background: var(--bg-deep-2); }
.form-note { font-size: .82rem; color: var(--accent-1); min-height: 18px; }

/* ===== Footer ===== */
.footer { position: relative; z-index: 2; padding: 40px 0; border-top: 1px solid var(--glass-border); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand p { color: var(--text-mid); font-size: .9rem; }
.footer-copy { color: var(--text-low); font-size: .82rem; }

/* ===== Film grain texture ===== */
.grain {
  position: fixed; inset: -10%; z-index: 3; pointer-events: none;
  opacity: .05; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ===== Custom cursor ===== */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; z-index: 1300; pointer-events: none;
  border-radius: 50%; transform: translate(-50%, -50%);
  transition: opacity .3s;
}
.cursor-dot { width: 6px; height: 6px; background: var(--accent-1); }
.cursor-ring {
  width: 34px; height: 34px; border: 1px solid var(--accent-1);
  transition: width .25s var(--ease), height .25s var(--ease), border-color .25s, opacity .3s;
}
.cursor-ring.hover { width: 54px; height: 54px; border-color: var(--accent-3); }
body.cursor-active .cursor-dot, body.cursor-active .cursor-ring { opacity: 1; }
.cursor-dot, .cursor-ring { opacity: 0; }
@media (pointer: fine) { body.cursor-active { cursor: none; } body.cursor-active a, body.cursor-active button { cursor: none; } }

/* ===== Partner strip ===== */
.partners { position: relative; z-index: 2; padding: 50px 0; }
.partners-inner { text-align: center; }
.partners-label {
  font-size: .74rem; text-transform: uppercase; letter-spacing: .2em; color: var(--text-low);
  margin-bottom: 22px;
}
.partners-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 34px 48px; }
.partners-row span {
  font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: .92rem; letter-spacing: .04em;
  color: var(--text-low); opacity: .65; filter: grayscale(1);
  transition: opacity .3s, color .3s, transform .3s;
}
.partners-row span:hover { opacity: 1; color: var(--accent-1); transform: translateY(-2px); }

/* ===== Marquee ===== */
.marquee {
  position: relative; z-index: 2; overflow: hidden; width: 100%;
  padding: 20px 0; border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border);
  background: var(--glass-bg);
}
.marquee-track {
  display: flex; align-items: center; gap: 16px; width: max-content;
  animation: marqueeScroll 32s linear infinite;
  font-family: 'Space Grotesk', sans-serif; font-size: .95rem; font-weight: 500; color: var(--text-mid);
  white-space: nowrap;
}
.marquee-track span { padding: 0 6px; }
.marquee-track .mq-dot { color: var(--accent-1); font-size: .7rem; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== Network / flight-path map ===== */
.network-map { position: relative; width: min(900px, 100%); margin: 0 auto 50px; padding: 34px 30px 22px; overflow: hidden; }
.map-blob { position: absolute; border-radius: 50%; filter: blur(70px); pointer-events: none; z-index: 0; }
.blob-a { width: 260px; height: 260px; background: var(--accent-3); opacity: .14; left: 4%; top: 34%; }
.blob-b { width: 220px; height: 220px; background: var(--accent-2); opacity: .16; right: 10%; top: 8%; }
.blob-c { width: 180px; height: 180px; background: var(--accent-1); opacity: .12; left: 34%; bottom: -6%; }
.map-svg { position: relative; z-index: 1; width: 100%; height: auto; display: block; overflow: visible; }
.map-grid path {
  fill: none; stroke: var(--glass-border); stroke-width: 1;
}
.landmass { fill: var(--accent-3); opacity: .1; stroke: var(--accent-3); stroke-width: 1; stroke-opacity: .25; }
.flight-path {
  fill: none; stroke: var(--accent-1); stroke-width: 1.4; stroke-linecap: round;
  stroke-dasharray: 6 8; opacity: .6; animation: dashMove 3.2s linear infinite;
}
@keyframes dashMove { to { stroke-dashoffset: -140; } }
.map-node { fill: var(--accent-3); }
.map-node.origin {
  fill: var(--accent-1); transform-box: fill-box; transform-origin: center;
  animation: nodePulse 2.2s ease-in-out infinite;
}
@keyframes nodePulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.5); opacity: .75; } }
.map-label {
  position: absolute; transform: translate(-50%, -140%); z-index: 2;
  font-size: .7rem; font-weight: 600; letter-spacing: .03em; white-space: nowrap;
  color: var(--text-mid); background: var(--glass-bg-strong); border: 1px solid var(--glass-border);
  padding: 4px 10px; border-radius: 999px;
}
.map-label.origin-label { color: var(--accent-1); font-weight: 700; }
.map-legend {
  position: relative; z-index: 2; display: flex; justify-content: center; gap: 26px;
  margin-top: 16px; font-size: .76rem; color: var(--text-mid);
}
.legend-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent-3); display: inline-block; margin-right: 6px; }
.legend-dot.origin { background: var(--accent-1); }

/* ===== Magnetic + parallax helpers ===== */
.magnetic { will-change: transform; }
.hero-bg, .about-media img, .testi-bg { will-change: transform; }

@media (max-width: 720px) {
  .network-map { display: none; }
}

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .about-inner, .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .branches-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .qp-list { grid-template-columns: 1fr; }
  .quality-policy { padding: 30px 24px; }
  .jobs-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-split { padding-top: 110px; }
  .hero-copy { max-width: none; }
  .hero-visual { height: 420px; margin-top: 20px; }
  .boarding-pass { max-width: 340px; }
}

@media (max-width: 720px) {
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }
  .nav-inner.menu-open .nav-links {
    display: flex; position: absolute; top: 62px; left: 0; right: 0;
    flex-direction: column; padding: 18px; gap: 16px; border-radius: 18px;
    background: rgba(255,255,255,.92); backdrop-filter: blur(20px);
    box-shadow: 0 10px 34px rgba(30,35,55,.12);
  }
  .cards-grid, .branches-grid, .timeline, .values-grid, .jobs-grid { grid-template-columns: 1fr; }
  .media-frame img { height: 320px; }
  .form-row { grid-template-columns: 1fr; }
  .mini-cards { grid-template-columns: 1fr; }
  .hero-visual { height: 340px; }
  .hero-photo { clip-path: polygon(0 6%, 100% 0, 100% 100%, 0 100%); }
  .boarding-pass { left: 0; max-width: 88%; padding: 20px 20px 16px; }
  .hero-ledger { gap: 20px 26px; }
}
