/* ==== TSFM Static Landing — Vanilla CSS ==== */
:root {
  --navy: #0a1632;
  --navy-90: rgba(10, 22, 50, 0.90);
  --navy-foreground: #ffffff;
  --gold: #e7a013;
  --gold-2: #f0c364;
  --gold-foreground: #0a1632;
  --bg: #f6f8fb;
  --card: #ffffff;
  --border: #e6e9f0;
  --foreground: #1a2238;
  --muted: #6b7280;
  --muted-foreground: #6b7280;
  --secondary: #eef2f7;
  --destructive: #d62828;
  --destructive-foreground: #ffffff;
  --shadow-elegant: 0 10px 30px -10px rgba(10, 22, 50, 0.18);
  --shadow-gold: 0 8px 24px -8px rgba(212, 166, 74, 0.55);
  --gradient-gold: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  --gradient-hero: linear-gradient(135deg, #0a1632 0%, #142a5c 100%);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--foreground);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: 'Poppins', 'Inter', sans-serif; margin: 0; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 16px; }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-white { color: #fff; }
.text-muted { color: var(--muted); }
.text-center { text-align: center; }

/* ===== Header ===== */
.header {
  position: sticky; top: 0; z-index: 40;
  background: var(--navy-90);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 16px; max-width: 1200px; margin: 0 auto; gap: 12px;
}
.logo-pill {
  display: inline-flex; align-items: center;
  background: rgba(255,255,255,0.95); border-radius: 8px; padding: 4px 8px;
}
.logo-pill img { height: 36px; width: auto; }
.btn-call {
  display: inline-flex; align-items: center; gap: 8px;
  background: #e7a013; color: var(--gold-foreground);
  padding: 9px 14px; border-radius: 999px; font-weight: 700; font-size: 13px;
  box-shadow: var(--shadow-gold); transition: opacity .2s;
}
.btn-call:hover { opacity: 0.9; }
.btn-call svg { width: 16px; height: 16px; }

/* ===== Hero ===== */
.hero {
  position: relative; color: #fff; overflow: hidden;
  background-image: linear-gradient(rgba(10,22,50,0.78), rgba(10,22,50,0.88)), url('assets/brand/hero-bg.jpg');
  background-size: cover; background-position: center;
}
.hero-grid {
  position: relative; z-index: 1; max-width: 1200px; margin: 0 auto;
  padding: 24px 16px 40px;
  display: grid; grid-template-columns: 1fr; gap: 24px; align-items: start;
}
@media (min-width: 768px) {
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 40px; padding: 24px 16px 80px; }
}
.badge-gold {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(212,166,74,0.20); border: 1px solid rgba(212,166,74,0.40);
  color: var(--gold); padding: 6px 12px; border-radius: 999px;
  font-size: 13px; font-weight: 600;
}
.hero h1 {
  margin-top: 14px; font-size: 28px; line-height: 1.15; font-weight: 800;
}
@media (min-width: 768px) { .hero h1 { font-size: 44px; } }
.hero h1 .accent { color: var(--gold); }

.hero-card {
  margin-top: 16px;
  background: linear-gradient(to right, rgba(212,166,74,0.25), rgba(212,166,74,0.10));
  border-left: 4px solid var(--gold);
  border-radius: 12px; padding: 14px 16px;
}
.hero-card .lead { font-weight: 700; font-size: 15px; }
@media (min-width:768px){ .hero-card .lead { font-size: 17px; } }
.hero-card .sub { font-size: 13px; opacity: 0.9; margin-top: 2px; }
.hero-card .sub b { color: var(--gold); font-weight: 800; }

.hero-pills { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 8px; }
.hero-pills span {
  background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.15);
  padding: 6px 12px; border-radius: 6px; font-size: 13px;
}
.hero-stats { margin-top: 28px; display: none; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 420px; }
@media (min-width: 768px) { .hero-stats { display: grid; } }
.hero-stats .num { font-size: 28px; font-weight: 700; color: var(--gold); }
.hero-stats .lbl { font-size: 12px; opacity: 0.7; }

/* ===== Enquiry form ===== */
.form-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 18px; padding: 20px; box-shadow: var(--shadow-elegant);
  color: var(--foreground);
}
.form-card h3 { color: var(--navy); font-size: 18px; text-align: center; }
.form-card .small { font-size: 12px; color: var(--muted); text-align: center; margin-top: 2px; }
.form-card form { margin-top: 12px; display: grid; gap: 10px; }
.form-card input, .form-card select {
  width: 100%; border: 1px solid var(--border); background: #fff;
  padding: 11px 12px; border-radius: 10px; font-size: 15px; color: var(--foreground);
  outline: none; transition: border .15s, box-shadow .15s;
}
.form-card input:focus, .form-card select:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,166,74,0.30);
}
.form-card .submit {
  background: var(--gradient-gold); color: var(--navy);
  font-weight: 800; padding: 13px; border-radius: 10px; border: 0; cursor: pointer;
  font-size: 15px; box-shadow: var(--shadow-gold); transition: transform .1s, opacity .15s;
}
.form-card .submit:hover { opacity: 0.95; }
.form-card .submit:active { transform: scale(0.99); }
.form-success {
  text-align: center; padding: 20px;
}
.form-success .ok-circle {
  width: 56px; height: 56px; border-radius: 50%; background: rgba(212,166,74,0.20);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 10px;
}

/* ===== Sections ===== */
section { padding: 56px 0; }
@media (min-width:768px){ section { padding: 80px 0; } }
.eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; color: var(--gold);
}
.h2 { font-size: 24px; font-weight: 700; color: var(--navy); margin-top: 4px; }
@media (min-width:768px){ .h2 { font-size: 36px; } }

/* Why choose */
.why {
  color: #fff;
  background-image: linear-gradient(rgba(10,22,50,0.85), rgba(10,22,50,0.92)), url('assets/brand/why-choose-bg.jpg');
  background-size: cover; background-position: center;
}
.why .h2 { color: #fff; }
.why .lead { color: rgba(255,255,255,0.75); margin-top: 12px; }
.why-grid {
  margin-top: 36px; display: grid; gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px){ .why-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px){ .why-grid { grid-template-columns: 1fr 1fr 1fr; } }
.why-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px; padding: 22px; transition: transform .2s, background .2s;
  backdrop-filter: blur(4px);
}
.why-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.10); }
.why-card .ico { font-size: 30px; margin-bottom: 8px; }
.why-card h3 { font-size: 17px; color: var(--gold); }
.why-card p { font-size: 13px; color: rgba(255,255,255,0.75); margin-top: 4px; }

/* CTA Band */
.cta {
  background: var(--gradient-hero); color: #fff;
  padding: 48px 0; position: relative; overflow: hidden;
}
.cta-inner { max-width: 900px; margin: 0 auto; text-align: center; padding: 0 16px; position: relative; }
.cta h3 { font-size: 24px; font-weight: 800; margin-top: 8px; }
@media (min-width:768px){ .cta h3 { font-size: 30px; } }
.cta .sub { color: rgba(255,255,255,0.80); margin-top: 8px; }
.cta-actions { margin-top: 22px; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gradient-gold); color: var(--navy);
  padding: 12px 24px; border-radius: 999px; font-weight: 800; font-size: 14px;
  box-shadow: var(--shadow-gold); transition: opacity .2s;
}
.btn-primary:hover { opacity: 0.95; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.20);
  color: #fff; padding: 12px 24px; border-radius: 999px; font-weight: 700; font-size: 14px;
  transition: background .2s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.15); }
.btn-wa {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25D366; color: #fff;
  padding: 12px 24px; border-radius: 999px; font-weight: 700; font-size: 14px;
  transition: opacity .2s;
}
.btn-wa:hover { opacity: 0.9; }

/* Placement Proof */
.proof { background: var(--bg); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.salary-grid {
  margin-top: 32px; display: grid; gap: 16px; max-width: 900px; margin-left: auto; margin-right: auto;
  grid-template-columns: 1fr;
}
@media (min-width: 640px){ .salary-grid { grid-template-columns: repeat(3, 1fr); } }
.salary-card {
  border-radius: 18px; padding: 20px; text-align: center;
  background: linear-gradient(135deg, var(--navy), rgba(10,22,50,0.9));
  color: #fff; box-shadow: var(--shadow-elegant);
}
.salary-card.gold {
  background: linear-gradient(135deg, var(--gold), rgba(212,166,74,0.8));
  color: var(--navy); box-shadow: var(--shadow-gold);
  outline: 2px solid rgba(212,166,74,0.4); outline-offset: 0;
}
.salary-card .eyebrow { color: var(--gold); }
.salary-card.gold .eyebrow { color: var(--navy); }
.salary-card .num { font-size: 28px; font-weight: 800; margin-top: 4px; }
.salary-card .note { font-size: 12px; opacity: 0.75; margin-top: 4px; }
.salary-card.gold .note { opacity: 1; font-weight: 600; }

.partners-label { text-align: center; color: var(--muted); font-size: 11px; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase; margin: 40px 0 18px; }
.partners-grid {
  display: grid; gap: 12px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 640px){ .partners-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; } }
@media (min-width: 768px){ .partners-grid { grid-template-columns: repeat(5, 1fr); } }
.partner-card {
  height: 96px; border-radius: 12px; background: var(--card); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; padding: 12px;
  filter: grayscale(1); opacity: 0.7; cursor: pointer;
  transition: filter .25s, opacity .25s, transform .25s, border-color .25s, box-shadow .25s;
}
.partner-card:hover {
  filter: grayscale(0); opacity: 1; transform: translateY(-2px);
  border-color: var(--gold); box-shadow: var(--shadow-elegant);
}
.partner-card img { max-height: 100%; max-width: 100%; object-fit: contain; }

.trust-row {
  margin-top: 36px; display: flex; flex-wrap: wrap; justify-content: center;
  align-items: center; gap: 14px; font-size: 13px;
}
.trust-pill {
  background: var(--secondary); color: var(--navy); font-weight: 600;
  padding: 8px 16px; border-radius: 999px; display: inline-flex; gap: 6px; align-items: center;
}

/* Placement slider section */
.section-secondary { background: var(--secondary); }
.section-row {
  display: flex; justify-content: space-between; align-items: flex-end;
  flex-wrap: wrap; gap: 16px; margin-bottom: 32px;
}
.slider-wrap { position: relative; }
.slider-arrows {
  position: absolute; top: -56px; right: 0; display: none; gap: 8px;
}
@media (min-width: 768px){ .slider-arrows { display: flex; } }
.arrow {
  width: 40px; height: 40px; border-radius: 50%; border: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; cursor: pointer; transition: opacity .15s, background .15s;
}
.arrow.dark { background: var(--navy); color: #fff; }
.arrow.dark:hover { background: rgba(10,22,50,0.9); }
.arrow.gold { background: var(--gold); color: var(--navy); }
.arrow.gold:hover { opacity: 0.9; }
.slider-arrows-mobile {
  display: flex; gap: 8px; justify-content: center; margin-top: 16px;
}
@media (min-width: 768px){ .slider-arrows-mobile { display: none; } }

.slider-track {
  display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 4px 16px 12px; margin: 0 -16px;
  scrollbar-width: none;
}
.slider-track::-webkit-scrollbar { display: none; }
.placement-card {
  scroll-snap-align: start; flex-shrink: 0; width: 260px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 18px; padding: 20px; box-shadow: var(--shadow-elegant);
  transition: transform .2s;
}
.placement-card:hover { transform: translateY(-4px); }
.placement-head { display: flex; align-items: center; gap: 12px; }
.placement-head img {
  width: 56px; height: 56px; border-radius: 50%; object-fit: cover;
  outline: 2px solid rgba(212,166,74,0.4); outline-offset: 1px;
}
.placement-head h4 { color: var(--navy); font-size: 15px; font-weight: 700; }
.placement-head .role { font-size: 12px; color: var(--muted); }
.placement-company {
  margin-top: 16px; background: var(--secondary); padding: 8px 12px; border-radius: 8px;
  color: var(--navy); font-weight: 600; font-size: 14px;
}
.placement-salary {
  margin-top: 12px; display: flex; justify-content: space-between; align-items: center;
}
.placement-salary .lbl { font-size: 12px; color: var(--muted); }
.placement-salary .val { font-size: 18px; font-weight: 700; color: var(--gold); }

/* Testimonials */
.testimonial-card {
  scroll-snap-align: start; flex-shrink: 0; width: 300px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 18px; padding: 24px; box-shadow: var(--shadow-elegant);
  display: flex; flex-direction: column;
}
@media (min-width: 768px){ .testimonial-card { width: 360px; } }
.testimonial-card .quote-mark { color: var(--gold); font-size: 32px; line-height: 1; margin-bottom: 8px; }
.testimonial-card .quote { font-size: 14px; color: rgba(26,34,56,0.85); font-style: italic; flex: 1; }
.testimonial-foot {
  margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--border);
  display: flex; gap: 12px; align-items: center;
}
.testimonial-foot img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover;
  outline: 2px solid rgba(212,166,74,0.4); outline-offset: 1px; }
.testimonial-foot h4 { color: var(--navy); font-size: 14px; font-weight: 700; }
.testimonial-foot .role { color: var(--muted); font-size: 12px; }
.stars { color: var(--gold); font-size: 12px; margin-top: 2px; }

/* Careers */
.careers { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 32px; }
.careers span {
  background: var(--card); border: 2px solid rgba(10,22,50,0.10);
  color: var(--navy); padding: 8px 16px; border-radius: 999px;
  font-weight: 600; font-size: 14px; transition: all .15s;
}
.careers span:hover { border-color: var(--gold); background: rgba(212,166,74,0.1); }

/* Recruiters */
.recruiters { background: var(--navy); color: #fff; }
.recruiters .h2 { color: #fff; }
.rec-grid { margin-top: 36px; display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 768px){ .rec-grid { grid-template-columns: 1fr 1fr; } }
.rec-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px; padding: 24px;
}
.rec-card h3 { color: var(--gold); font-size: 18px; margin-bottom: 14px; }
.rec-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.rec-tags span {
  background: rgba(255,255,255,0.10); padding: 6px 12px; border-radius: 6px; font-size: 13px;
}

/* Visit / Map */
.visit-grid {
  display: grid; gap: 32px; grid-template-columns: 1fr; max-width: 1080px; margin: 0 auto;
}
@media (min-width: 768px){ .visit-grid { grid-template-columns: 1fr 1fr; } }
.visit-list { margin-top: 24px; display: grid; gap: 16px; }
.visit-row { display: flex; gap: 12px; }
.visit-row .ico { color: var(--gold); font-size: 20px; }
.visit-row .lbl { font-weight: 600; color: var(--navy); }
.visit-row a { color: var(--muted); }
.visit-row a:hover { color: var(--gold); }
.map-wrap {
  border-radius: 18px; overflow: hidden; border: 1px solid var(--border);
  box-shadow: var(--shadow-elegant); height: 320px;
}
@media (min-width: 768px){ .map-wrap { height: 400px; } }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* Footer */
footer.foot {
  background: var(--navy); color: rgba(255,255,255,0.7);
  padding: 40px 0;
}
.foot-grid {
  display: grid; gap: 32px; grid-template-columns: 1fr;
}
@media (min-width: 768px){ .foot-grid { grid-template-columns: 1fr 1fr 1fr; } }
.foot h4 { color: #fff; font-weight: 700; margin-bottom: 12px; }
.foot ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; font-size: 14px; }
.foot a:hover { color: var(--gold); }
.social-icons { display: flex; gap: 10px; }
.social-icons a {
  width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.10);
  display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700;
  transition: background .15s, color .15s;
}
.social-icons a:hover { background: var(--gold); color: var(--navy); }
.foot-bottom {
  margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.10);
  text-align: center; font-size: 12px; color: rgba(255,255,255,0.5);
}

/* WhatsApp float */
.wa-float {
  position: fixed; right: 16px; bottom: 96px; z-index: 50;
}
@media (min-width: 768px){ .wa-float { bottom: 24px; } }
.wa-float .ping {
  position: absolute; inset: 0; border-radius: 50%; background: #25D366;
  opacity: 0.4; animation: ping 1.6s cubic-bezier(0,0,0.2,1) infinite;
}
.wa-float .btn {
  position: relative; display: flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff; box-shadow: 0 12px 30px rgba(37,211,102,0.4);
  transition: transform .15s;
}
.wa-float .btn:hover { transform: scale(1.1); }
.wa-float svg { width: 28px; height: 28px; fill: #fff; }
@keyframes ping {
  75%, 100% { transform: scale(2); opacity: 0; }
}

/* Mobile bottom action bar */
.mobile-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 40;
  display: grid; grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 -8px 24px -8px rgba(0,0,0,0.25);
}
@media (min-width: 768px){ .mobile-bar { display: none; } }
.mobile-bar a {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px; font-weight: 800; font-size: 14px;
}
.mobile-bar .apply { background: var(--gradient-gold); color: var(--navy); }
.mobile-bar .call  { background: var(--navy); color: #fff; }

/* ===== Toast (social proof) ===== */
.toast-stack {
  position: fixed; bottom: 96px; left: 16px; z-index: 45;
  display: flex; flex-direction: column; gap: 10px;
  pointer-events: none;
}
@media (min-width: 768px){ .toast-stack { bottom: 24px; left: 24px; } }
.toast {
  pointer-events: auto;
  background: var(--card); color: var(--foreground);
  border: 1px solid var(--border); border-radius: 12px;
  padding: 12px 14px; min-width: 240px; max-width: 320px;
  box-shadow: var(--shadow-elegant);
  animation: toast-in .35s ease-out, toast-out .4s ease-in 4.2s forwards;
  display: flex; gap: 10px; align-items: flex-start;
}
.toast .dot {
  width: 8px; height: 8px; border-radius: 50%; background: #22c55e;
  margin-top: 6px; flex-shrink: 0; box-shadow: 0 0 0 4px rgba(34,197,94,0.18);
}
.toast .title { font-weight: 700; font-size: 13px; }
.toast .desc { font-size: 12px; color: var(--muted); margin-top: 2px; }
@keyframes toast-in {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
@keyframes toast-out {
  to { transform: translateY(20px); opacity: 0; }
}

/* Misc */
.section-eyebrow-block { text-align: center; max-width: 640px; margin: 0 auto; }
.lead { color: #edeef1fa; margin-top: 12px; font-size: 14px; }
@media (min-width:768px){ .lead { font-size: 16px; } }
body { padding-bottom: 64px; }
@media (min-width:768px){ body { padding-bottom: 0; } }
