﻿@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wdth,wght@0,75..125,100..900;1,75..125,100..900&family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ============================================================
   TALENT71 — Job Platform CSS  (WTTJ-inspired)
   Colors: Navy #0B2545 | Sky-deep #1D5FA6 | Sky #5FB8E6
   Font: Archivo (display) + Inter (body)
   ============================================================ */

:root {
  --navy:      #0B2545;
  --sky:       #5FB8E6;
  --sky-deep:  #1D5FA6;
  --sky-light: #EBF5FC;
  --ink:       #0B1B2E;
  --slate:     #586A7E;
  --muted:     #8696A8;
  --line:      #DCE3EC;
  --bg:        #F4F6F9;
  --paper:     #FFFFFF;
  --green:     #10B981;
  --amber:     #F59E0B;
  --container: 1360px;
  --nav-h:     76px;
  --font:      'Archivo', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter',   -apple-system, BlinkMacSystemFont, sans-serif;
  --ease:      cubic-bezier(0.16, 1, 0.3, 1);
  --shadow:    0 2px 8px rgba(11,37,69,.08), 0 1px 3px rgba(11,37,69,.04);
  --shadow-lg: 0 8px 32px rgba(11,37,69,.12), 0 2px 8px rgba(11,37,69,.06);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--ink); background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }

/* LAYOUT */
.t71-container { max-width: var(--container); margin: 0 auto; padding: 0 40px; width: 100%; }
@media (max-width: 768px) { .t71-container { padding: 0 16px; } }

/* TYPOGRAPHY */
.t-display { font-family: var(--font); font-size: clamp(44px,6vw,80px); font-weight: 900; letter-spacing: -0.04em; line-height: 1.02; color: var(--ink); }
.t-h1 { font-family: var(--font); font-size: clamp(32px,4.5vw,52px); font-weight: 900; letter-spacing: -0.035em; line-height: 1.08; color: var(--ink); }
.t-h2 { font-family: var(--font); font-size: clamp(26px,3.2vw,40px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.12; color: var(--ink); }
.t-h3 { font-family: var(--font); font-size: clamp(18px,2vw,24px); font-weight: 800; letter-spacing: -0.02em; color: var(--ink); }
.t-label { font-family: var(--font); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; color: var(--sky-deep); }

/* WORDMARK */
.wm { font-family: var(--font); font-weight: 900; font-size: 26px; letter-spacing: -0.04em; display: inline-flex; align-items: baseline; gap: 1px; user-select: none; }
.wm-t { color: var(--navy); }
.wm-n { color: var(--sky-deep); }

/* NAVBAR */
.t71-nav { height: var(--nav-h); background: var(--paper); border-bottom: 1.5px solid var(--line); display: flex; align-items: center; position: sticky; top: 0; z-index: 1000; transition: box-shadow 0.2s ease; }
.t71-nav.scrolled { box-shadow: var(--shadow-lg); border-bottom-color: transparent; }
.t71-nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; width: 100%; }
.t71-nav-left  { display: flex; align-items: center; gap: 36px; }
.t71-nav-links { display: flex; align-items: center; gap: 4px; }
.t71-nav-link { font-family: var(--font); font-size: 15px; font-weight: 700; color: var(--ink); padding: 8px 12px; border-radius: 8px; transition: background 0.15s, color 0.15s; }
.t71-nav-link:hover, .t71-nav-link.active { background: var(--bg); color: var(--sky-deep); }
.t71-nav-right { display: flex; align-items: center; gap: 8px; }
.t71-nav-divider { width: 1px; height: 20px; background: var(--line); margin: 0 8px; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-family: var(--font); font-weight: 800; font-size: 14.5px; padding: 11px 22px; border-radius: 10px; border: none; cursor: pointer; transition: background 0.15s, color 0.15s, transform 0.12s var(--ease); white-space: nowrap; text-decoration: none; }
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--navy); color: var(--paper); }
.btn-primary:hover { background: var(--ink); color: var(--paper); }
.btn-accent { background: var(--sky-deep); color: var(--paper); }
.btn-accent:hover { background: var(--navy); color: var(--paper); }
.btn-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn-outline:hover { background: var(--bg); border-color: var(--slate); }
.btn-ghost { background: transparent; color: var(--slate); font-weight: 700; }
.btn-ghost:hover { background: var(--bg); color: var(--ink); }
.btn-sky { background: var(--sky-light); color: var(--sky-deep); border: 1.5px solid var(--sky); }
.btn-sky:hover { background: var(--sky-deep); color: var(--paper); }
.btn-sm { padding: 7px 14px; font-size: 13px; border-radius: 8px; }
.btn-lg { padding: 15px 32px; font-size: 16px; border-radius: 12px; }

/* SEARCH BAR */
.t71-searchbar { display: flex; background: var(--paper); border: 2px solid var(--ink); border-radius: 14px; padding: 6px; box-shadow: 0 4px 24px rgba(11,37,69,.12); max-width: 860px; margin: 0 auto; }
.t71-search-field { display: flex; align-items: center; padding: 0 18px; flex: 1; gap: 12px; }
.t71-search-field + .t71-search-field { border-left: 1.5px solid var(--line); }
.t71-search-field i { font-size: 18px; color: var(--slate); flex-shrink: 0; }
.t71-search-field input { width: 100%; border: none; outline: none; font-family: var(--font-body); font-size: 15.5px; font-weight: 600; color: var(--ink); background: transparent; padding: 10px 0; }
.t71-search-field input::placeholder { color: var(--muted); font-weight: 500; }
@media (max-width: 640px) { .t71-searchbar { flex-direction: column; } .t71-search-field + .t71-search-field { border-left: none; border-top: 1.5px solid var(--line); } }

/* TAGS */
.t71-tag { display: inline-flex; align-items: center; gap: 4px; background: var(--bg); border: 1.5px solid var(--line); color: var(--ink); font-size: 12.5px; font-weight: 700; padding: 4px 12px; border-radius: 6px; white-space: nowrap; }
.t71-tag-sky   { background: var(--sky-light); border-color: var(--sky); color: var(--sky-deep); }
.t71-tag-green { background: #ECFDF5; border-color: #6EE7B7; color: #047857; }
.t71-tag-amber { background: #FFF9EB; border-color: #FCD34D; color: #92400E; }

/* CARDS */
.t71-card { background: var(--paper); border: 1.5px solid var(--line); border-radius: 16px; box-shadow: var(--shadow); overflow: hidden; transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s var(--ease); }
.t71-card:hover { border-color: var(--sky-deep); box-shadow: var(--shadow-lg); transform: translateY(-2px); }

/* JOB CARDS */
.job-card { background: var(--paper); border: 1.5px solid var(--line); border-radius: 16px; padding: 24px; display: flex; gap: 20px; align-items: flex-start; transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s var(--ease); }
.job-card:hover { border-color: var(--sky-deep); box-shadow: var(--shadow-lg); transform: translateY(-1px); }
.job-card.featured { border-color: var(--sky-deep); background: linear-gradient(135deg, #fff 0%, var(--sky-light) 100%); }
.job-logo { width: 56px; height: 56px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-family: var(--font); font-weight: 900; font-size: 22px; color: var(--paper); flex-shrink: 0; border: 1.5px solid var(--line); overflow: hidden; }
.job-body { flex: 1; min-width: 0; }
.job-title { font-family: var(--font); font-size: 17px; font-weight: 800; color: var(--ink); margin-bottom: 6px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.job-company { font-size: 14px; color: var(--slate); font-weight: 600; margin-bottom: 12px; display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.job-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.job-side { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; flex-shrink: 0; min-width: 140px; }
.job-time { font-size: 12.5px; color: var(--muted); font-weight: 600; }
.job-badge { font-size: 11px; font-weight: 800; padding: 3px 8px; border-radius: 5px; display: inline-flex; align-items: center; gap: 4px; white-space: nowrap; }
.badge-verified { background: #ECFDF5; color: #047857; border: 1px solid #6EE7B7; }
.badge-featured { background: var(--sky-light); color: var(--sky-deep); border: 1px solid var(--sky); }
.badge-new      { background: #FFF9EB; color: #92400E; border: 1px solid #FCD34D; }

/* COMPANY CARDS */
.company-card { display: flex; flex-direction: column; background: var(--paper); border: 1.5px solid var(--line); border-radius: 16px; overflow: hidden; transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s var(--ease); position: relative; }
.company-card:hover { border-color: var(--sky-deep); box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.company-card .cover { height: 120px; width: 100%; object-fit: cover; background: linear-gradient(135deg, var(--navy), var(--sky-deep)); }
.company-card .logo-wrap { position: absolute; top: 84px; left: 20px; width: 60px; height: 60px; background: var(--paper); border: 2px solid var(--line); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-family: var(--font); font-weight: 900; font-size: 22px; color: var(--paper); box-shadow: var(--shadow); overflow: hidden; }
.company-card .body { padding: 40px 20px 20px; flex: 1; display: flex; flex-direction: column; }
.company-card .cname { font-family: var(--font); font-size: 16px; font-weight: 800; color: var(--ink); margin-bottom: 4px; }
.company-card .tagline { font-size: 13.5px; color: var(--slate); margin-bottom: 12px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; line-height: 1.5; height: 40px; }
.company-card .meta { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; }
.company-card .follow-btn { position: absolute; top: 12px; right: 12px; background: rgba(255,255,255,.9); border: 1.5px solid var(--line); border-radius: 8px; padding: 5px 10px; font-size: 12px; font-weight: 800; color: var(--ink); cursor: pointer; transition: background 0.15s, border-color 0.15s; }
.company-card .follow-btn:hover { background: var(--paper); border-color: var(--sky-deep); color: var(--sky-deep); }

/* ARTICLE CARDS */
.article-card { background: var(--paper); border: 1.5px solid var(--line); border-radius: 16px; overflow: hidden; transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s var(--ease); }
.article-card:hover { border-color: var(--sky-deep); box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.article-card .thumb { width: 100%; height: 200px; object-fit: cover; }
.article-card .art-body { padding: 24px; }
.article-card .cat { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--sky-deep); margin-bottom: 8px; }
.article-card .art-title { font-family: var(--font); font-size: 17px; font-weight: 800; color: var(--ink); line-height: 1.3; margin-bottom: 10px; }
.article-card .art-excerpt { font-size: 14px; color: var(--slate); line-height: 1.6; }

/* FILTER SIDEBAR */
.filter-group { padding-bottom: 20px; margin-bottom: 20px; border-bottom: 1.5px solid var(--line); }
.filter-group:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.filter-title { font-family: var(--font); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; color: var(--slate); margin-bottom: 12px; }
.filter-option { display: flex; align-items: center; justify-content: space-between; padding: 5px 0; cursor: pointer; }
.filter-option label { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: var(--ink); cursor: pointer; }
.filter-option input[type="checkbox"] { accent-color: var(--sky-deep); width: 16px; height: 16px; }
.filter-count { font-size: 12px; color: var(--muted); font-weight: 600; }

/* HIGHLIGHT */
.highlight { position: relative; display: inline; }
.highlight::after { content: ""; position: absolute; bottom: 2px; left: -2px; right: -2px; height: 34%; background: var(--sky); z-index: -1; border-radius: 3px; opacity: 0.7; }

/* STATS */
.stat-num { font-family: var(--font); font-size: clamp(36px,5vw,60px); font-weight: 900; color: var(--navy); line-height: 1; letter-spacing: -0.04em; }
.stat-label { font-size: 15px; color: var(--slate); font-weight: 600; line-height: 1.4; }

/* PILLS / TABS */
.t71-pills { display: flex; gap: 6px; flex-wrap: wrap; }
.t71-pill { font-family: var(--font); font-size: 13.5px; font-weight: 800; padding: 8px 18px; border-radius: 9999px; border: 1.5px solid var(--line); color: var(--slate); background: var(--paper); cursor: pointer; transition: all 0.15s; white-space: nowrap; }
.t71-pill:hover, .t71-pill.active { background: var(--navy); color: var(--paper); border-color: var(--navy); }

/* MOBILE NAV */
.mobile-nav-overlay { position: fixed; inset: 0; background: var(--paper); z-index: 9999; transform: translateX(100%); transition: transform 0.3s var(--ease); display: flex; flex-direction: column; }
.mobile-nav-overlay.show { transform: translateX(0); }
.mobile-nav-header { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 1.5px solid var(--line); }
.mobile-nav-close { background: none; border: none; font-size: 22px; color: var(--ink); cursor: pointer; }
.mobile-nav-body { padding: 24px; display: flex; flex-direction: column; gap: 4px; }
.mobile-nav-link { font-family: var(--font); font-size: 18px; font-weight: 800; color: var(--ink); padding: 14px 0; border-bottom: 1px solid var(--bg); display: flex; align-items: center; gap: 12px; transition: color 0.15s; }
.mobile-nav-link:hover { color: var(--sky-deep); }
.mobile-nav-link i { width: 24px; text-align: center; }

/* FAQ ACCORDION */
.faq-item { border-bottom: 1.5px solid var(--line); }
.faq-btn { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 20px 0; background: none; border: none; font-family: var(--font); font-size: 16px; font-weight: 800; color: var(--ink); text-align: left; gap: 16px; cursor: pointer; }
.faq-body { font-size: 15px; color: var(--slate); line-height: 1.7; padding-bottom: 20px; display: none; }
.faq-body.open { display: block; }

/* MARQUEE */
.marquee-wrap { overflow: hidden; }
.marquee-track { display: flex; gap: 56px; align-items: center; animation: marquee 28s linear infinite; white-space: nowrap; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* SCROLL TOP */
#scrollTop { position: fixed; bottom: 32px; right: 32px; width: 44px; height: 44px; background: var(--navy); color: var(--paper); border-radius: 50%; display: none; align-items: center; justify-content: center; font-size: 18px; box-shadow: var(--shadow-lg); cursor: pointer; z-index: 500; border: none; transition: background 0.15s; }
#scrollTop:hover { background: var(--sky-deep); }
#scrollTop.visible { display: flex; }

/* AUTH INPUT */
.auth-input { width: 100%; border: 1.5px solid var(--line); border-radius: 10px; padding: 12px 16px; font-family: var(--font-body); font-size: 15px; font-weight: 500; color: var(--ink); outline: none; transition: border-color 0.15s, box-shadow 0.15s; background: var(--paper); }
.auth-input:focus { border-color: var(--sky-deep); box-shadow: 0 0 0 3px rgba(29,95,166,.12); }
.auth-label { font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 6px; display: block; }

/* BENEFIT ICON */
.benefit-icon { width: 52px; height: 52px; border-radius: 14px; background: var(--sky-light); display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--sky-deep); flex-shrink: 0; }

/* JOB DETAIL */
.job-detail-grid { display: grid; grid-template-columns: 1fr 340px; gap: 40px; align-items: start; }
@media (max-width: 900px) { .job-detail-grid { grid-template-columns: 1fr; } }
.job-detail-sidebar { position: sticky; top: calc(var(--nav-h) + 24px); }

/* COMPANY PROFILE */
.company-profile-cover { height: 280px; width: 100%; object-fit: cover; background: linear-gradient(135deg, var(--navy), var(--sky-deep)); }
.company-profile-logo { width: 88px; height: 88px; border-radius: 18px; background: var(--paper); border: 3px solid var(--paper); box-shadow: var(--shadow-lg); display: flex; align-items: center; justify-content: center; font-family: var(--font); font-weight: 900; font-size: 32px; margin-top: -44px; position: relative; z-index: 2; }

/* FOOTER */
.t71-footer { background: var(--navy); color: #fff; padding: 56px 0; }
.t71-footer .t71-container { max-width: var(--container); }
.t71-footer .wm { font-size: 26px; }
.t71-footer .wm-t { color: #fff !important; }
.t71-footer .wm-n { color: var(--sky) !important; }
.t71-footer p, .t71-footer a { color: rgba(255,255,255,.8); }
.t71-footer a:hover { color: #fff; text-decoration: none; }
.t71-footer .t71-footer-col-title { font-weight: 900; color: #fff; margin-bottom: 12px; }
.t71-footer .t71-footer-links { list-style: none; padding: 0; margin: 0; }
.t71-footer .t71-footer-links li { margin-bottom: 8px; }
.t71-footer .t71-footer-links a { display: inline-block; font-weight: 700; }
.t71-footer .d-flex.gap-4 a { color: rgba(255,255,255,.55); }
.t71-footer .d-flex.gap-4 a:hover { color: rgba(255,255,255,.85); }

@media (max-width: 768px) {
  .t71-footer { padding: 36px 0; }
  .t71-footer .t71-container { padding: 0 16px; }
  .t71-footer .row > [class*='col-'] { margin-bottom: 16px; }
}

/* RESPONSIVE */
@media (max-width: 992px) { .hide-md { display: none !important; } }
@media (max-width: 768px) { .hide-sm { display: none !important; } }
@media (min-width: 993px) { .show-md-only { display: none !important; } }
