/* ============================================================
   JEO LOGISTIC LTD — Shared Stylesheet
   All pages import this file
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');

/* ─── TOKENS ─── */
:root {
  --bg:        #f7f8fa;
  --surface:   #ffffff;
  --card:      #f2f4f8;
  --border:    #e0e4ea;
  --accent:    #ff9800;
  --accent2:   #ff5722;
  --text:      #23272f;
  --muted:     #7a8199;
  --radius:    14px;
  --nav-h:     72px;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ─── NOISE OVERLAY ─── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.06'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 1000; opacity: .18;
}

/* ─── UTILITY ─── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

.tag {
  display: inline-block;
  background: rgba(245,166,35,.12);
  color: var(--accent);
  font-size: 11px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 100px;
  border: 1px solid rgba(245,166,35,.25);
}

.section { padding: 96px 0; }
.section-alt { background: var(--card); }

.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 4vw, 52px); font-weight: 800;
  letter-spacing: -.03em; margin-top: 16px; margin-bottom: 16px;
}
.section-header p {
  color: var(--muted); font-size: 17px;
  max-width: 520px; margin: 0 auto; line-height: 1.7;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Syne', sans-serif;
  font-weight: 700; font-size: 14px; letter-spacing: .04em;
  text-transform: uppercase;
  padding: 14px 28px; border-radius: 8px;
  cursor: pointer; border: none; text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  color: #fff;
  box-shadow: 0 6px 28px rgba(232,56,13,.35);
}
.btn-primary:hover { box-shadow: 0 10px 36px rgba(232,56,13,.5); }

.btn-ghost {
  background: transparent; color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn-white {
  background: white; color: var(--accent2);
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 14px; text-transform: uppercase; letter-spacing: .06em;
  padding: 16px 36px; border-radius: 8px;
  border: none; cursor: pointer; text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.25); }

.btn-outline-white {
  background: transparent; color: white;
  border: 2px solid rgba(255,255,255,.5);
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 14px; text-transform: uppercase; letter-spacing: .06em;
  padding: 16px 36px; border-radius: 8px;
  cursor: pointer; text-decoration: none;
  transition: border-color .2s, background .2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline-white:hover { border-color: white; background: rgba(255,255,255,.1); }

/* ─── FORM ELEMENTS ─── */
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 12px; font-weight: 500; color: var(--muted);
  letter-spacing: .06em; text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 8px; color: var(--text);
  font-family: 'DM Sans', sans-serif; font-size: 15px;
  padding: 13px 16px; outline: none;
  transition: border-color .2s; -webkit-appearance: none;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group select option { background: var(--surface); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ─── CARDS ─── */
.card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.card:hover {
  border-color: rgba(245,166,35,.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
}

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  padding: calc(var(--nav-h) + 64px) 0 72px;
  position: relative; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 80% 50%, rgba(255,152,0,.10) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(255,87,34,.07) 0%, transparent 60%),
    var(--bg);
}
.page-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(245,166,35,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,166,35,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}
.page-hero-content { position: relative; z-index: 2; text-align: center; max-width: 700px; margin: 0 auto; }
.page-hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(38px, 5vw, 68px); font-weight: 800;
  letter-spacing: -.03em; margin: 16px 0 20px;
  line-height: 1.08;
}
.page-hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--accent2), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.page-hero p { color: var(--muted); font-size: 18px; line-height: 1.7; margin-bottom: 32px; }

/* Breadcrumb */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  justify-content: center; margin-bottom: 24px;
  font-size: 13px; color: var(--muted);
}
.breadcrumb a { color: var(--muted); text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--accent); }

/* ─── NAVIGATION ─── */
nav#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  transition: background .3s, backdrop-filter .3s;
}
nav#navbar.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h);
}
.logo {
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 22px;
  text-decoration: none; color: var(--accent2); letter-spacing: -.02em;
  display: flex; align-items: center; gap: 10px;
}
.logo-icon {
  width: 38px; height: 38px;
  /* background: linear-gradient(135deg, var(--accent2), var(--accent)); */
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; font-size: 18px;
}
.logo .accent { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--muted);
  text-decoration: none; transition: color .2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); }
.nav-links a.active { position: relative; color: var(--accent2); }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--accent2); border-radius: 2px;
}
.nav-cta { display: flex; align-items: center; gap: 12px; }
.hamburger {
  display: none; background: none; border: none;
  color: var(--text); cursor: pointer; padding: 4px;
}

/* Mobile nav overlay */
.mobile-nav {
  position: fixed; inset: 0; z-index: 950;
  background: var(--surface); padding: 100px 32px 40px;
  flex-direction: column; gap: 0;
  transform: translateX(-100%);
  transition: transform .3s ease;
  display: flex;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  font-family: 'Syne', sans-serif; font-size: 26px; font-weight: 700;
  color: var(--text); text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding: 20px 0; transition: color .2s;
}
.mobile-nav a:hover { color: var(--accent); }
.mobile-nav .mobile-cta { color: var(--accent) !important; }

/* ─── FOOTER ─── */
footer {
  background: var(--card);
  border-top: 1px solid var(--border);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 60px;
}
.footer-brand p {
  color: var(--muted); font-size: 15px; line-height: 1.7;
  margin-top: 16px; margin-bottom: 24px; max-width: 300px;
}
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 40px; height: 40px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; font-size: 16px; text-decoration: none;
  transition: border-color .2s, background .2s;
}
.social-link:hover { border-color: var(--accent); background: rgba(245,166,35,.1); }
.footer-col h4 {
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: 14px;
  letter-spacing: .08em; text-transform: uppercase; color: var(--muted);
  margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  color: var(--text); text-decoration: none;
  font-size: 15px; transition: color .2s;
}
.footer-links a:hover { color: var(--accent); }
.contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 14px; font-size: 14px; color: var(--muted);
}
.contact-item .ci-icon { color: var(--accent); font-size: 18px; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { color: var(--muted); font-size: 13px; }
.footer-bottom a { color: var(--muted); text-decoration: none; transition: color .2s; }
.footer-bottom a:hover { color: var(--accent); }

/* ─── CTA BAND ─── */
.cta-band {
  background: linear-gradient(135deg, var(--accent2) 0%, #c4420f 40%, #b33a00 100%);
  position: relative; overflow: hidden; padding: 80px 0;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 40px 40px;
}
.cta-inner { position: relative; text-align: center; }
.cta-inner h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 5vw, 56px); font-weight: 800;
  margin-bottom: 16px; letter-spacing: -.03em; color: white;
}
.cta-inner p { color: rgba(255,255,255,.75); font-size: 18px; margin-bottom: 36px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── ANIMATIONS ─── */
.fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: block; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .section { padding: 64px 0; }
}
