/* ============================================
   StarHub Garage — Shared Styles (Modern v2)
   ============================================ */
:root {
  --ink: #0a1722;
  --slate: #1d2b39;
  --steel: #5b6b7b;
  --mist: #8896a4;
  --line: #e2e8ee;
  --line-soft: #eef2f6;
  --paper: #ffffff;
  --fog: #f5f8fa;
  --fog-deep: #eaf0f5;
  --blue: #1763c7;
  --blue-deep: #0e4894;
  --blue-bright: #2b86f0;
  --blue-wash: #eaf2fc;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Sora', sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
.display { font-family: 'Archivo', sans-serif; }
a { color: inherit; }

/* TOP BAR */
.topbar { background: var(--ink); color: rgba(255,255,255,0.85); font-size: 12.5px; padding: 9px 0; }
.topbar-inner { max-width: 1320px; margin: 0 auto; padding: 0 40px; display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.topbar-left { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar-left span { display: inline-flex; align-items: center; gap: 6px; }
.lang-switch { display: flex; border: 1px solid rgba(255,255,255,0.2); border-radius: 6px; overflow: hidden; flex-shrink: 0; }
.lang-switch button { background: transparent; border: none; color: rgba(255,255,255,0.7); padding: 4px 12px; font-size: 12px; font-family: inherit; cursor: pointer; transition: all 0.2s; }
.lang-switch button.active { background: var(--blue-bright); color: #fff; }

/* NAV */
nav { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.85); backdrop-filter: saturate(180%) blur(20px); border-bottom: 1px solid var(--line); }
.nav-inner { max-width: 1320px; margin: 0 auto; padding: 14px 40px; display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-mark { width: 40px; height: 48px; }
.logo-text .name { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 19px; letter-spacing: -0.01em; color: var(--ink); line-height: 1; }
.logo-text .tag { font-size: 10px; color: var(--mist); letter-spacing: 0.16em; text-transform: uppercase; margin-top: 3px; font-weight: 500; }
.nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
.nav-links a { color: var(--slate); text-decoration: none; font-weight: 500; font-size: 14.5px; position: relative; transition: color 0.2s; padding: 4px 0; }
.nav-links a:hover { color: var(--blue); }
.nav-links a.active { color: var(--blue); font-weight: 600; }
.nav-links a.active::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 2px; background: var(--blue); }
.nav-cta { background: var(--blue); color: #fff; padding: 11px 22px; border-radius: 8px; text-decoration: none; font-weight: 600; font-size: 14px; transition: all 0.2s; }
.nav-cta:hover { background: var(--blue-deep); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(23,99,199,0.25); }

/* BUTTONS */
.btn { padding: 15px 32px; border-radius: 8px; font-weight: 600; font-size: 15px; text-decoration: none; display: inline-flex; align-items: center; gap: 9px; transition: all 0.25s; cursor: pointer; border: none; font-family: inherit; }
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-deep); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(23,99,199,0.28); }
.btn-ghost { background: var(--paper); color: var(--ink); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); }
.btn-light { background: rgba(255,255,255,0.15); color: #fff; border: 1.5px solid rgba(255,255,255,0.3); }
.btn-light:hover { background: rgba(255,255,255,0.25); }

/* PAGE HERO (inner pages) */
.page-hero { background: linear-gradient(180deg, var(--fog) 0%, var(--paper) 100%); padding: 80px 40px 70px; border-bottom: 1px solid var(--line); }
.page-hero-inner { max-width: 1320px; margin: 0 auto; }
.crumb { font-size: 13px; color: var(--mist); margin-bottom: 20px; }
.crumb a { color: var(--steel); text-decoration: none; }
.crumb a:hover { color: var(--blue); }
.page-hero h1 { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: clamp(34px, 5.5vw, 62px); line-height: 1.04; letter-spacing: -0.03em; color: var(--ink); margin-bottom: 18px; max-width: 760px; }
.page-hero h1 .accent { color: var(--blue); }
.page-hero .lead { font-size: clamp(16px, 2vw, 20px); color: var(--steel); max-width: 620px; line-height: 1.6; }

/* HOMEPAGE HERO */
.hero { position: relative; background: linear-gradient(180deg, var(--fog) 0%, var(--paper) 100%); padding: 90px 40px 0; overflow: hidden; }
.hero-inner { max-width: 1320px; margin: 0 auto; text-align: center; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: var(--blue-wash); color: var(--blue-deep); padding: 7px 16px; border-radius: 100px; font-size: 13px; font-weight: 600; margin-bottom: 28px; }
.hero-eyebrow::before { content: ''; width: 7px; height: 7px; background: var(--blue-bright); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:0.4;transform:scale(1.4);} }
.hero h1 { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: clamp(40px, 6.5vw, 82px); line-height: 1.02; letter-spacing: -0.035em; color: var(--ink); margin-bottom: 26px; }
.hero h1 .accent { color: var(--blue); }
.hero-sub { font-size: clamp(16px, 2vw, 20px); color: var(--steel); max-width: 620px; margin: 0 auto 38px; line-height: 1.6; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 70px; }
.hero-stage { position: relative; max-width: 1100px; margin: 0 auto; padding-bottom: 40px; }
.hero-truck { width: 100%; height: auto; filter: drop-shadow(0 30px 40px rgba(10,23,34,0.18)); }

/* STATS */
.stats { background: var(--ink); color: #fff; }
.stats-inner { max-width: 1320px; margin: 0 auto; padding: 44px 40px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.stat { text-align: center; }
.stat .num { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 38px; color: #fff; line-height: 1; letter-spacing: -0.02em; }
.stat .num .unit { color: var(--blue-bright); }
.stat .lbl { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 10px; }

/* SECTION */
section { scroll-margin-top: 80px; }
.wrap { max-width: 1320px; margin: 0 auto; padding: 100px 40px; }
.wrap.tight { padding: 70px 40px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; color: var(--blue); text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 18px; }
.eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--blue); }
.section-head { max-width: 720px; margin-bottom: 60px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
h2.title { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: clamp(30px, 4.2vw, 50px); line-height: 1.08; letter-spacing: -0.03em; color: var(--ink); margin-bottom: 20px; }
h3.sub-title { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 26px; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 16px; }
.section-sub { font-size: 17px; color: var(--steel); line-height: 1.7; }
.prose p { font-size: 16px; color: var(--steel); line-height: 1.8; margin-bottom: 18px; }
.prose p strong { color: var(--ink); }

/* FLEET CARDS */
.fleet-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.fleet-card { background: var(--paper); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; transition: all 0.3s; }
.fleet-card:hover { transform: translateY(-6px); box-shadow: 0 28px 60px rgba(10,23,34,0.12); border-color: var(--blue-bright); }
.fleet-card.feature { grid-column: span 2; display: grid; grid-template-columns: 1.1fr 1fr; }
.fleet-visual { background: linear-gradient(135deg, var(--fog) 0%, var(--fog-deep) 100%); display: grid; place-items: center; padding: 40px; position: relative; min-height: 230px; }
.fleet-card.feature .fleet-visual { min-height: 340px; }
.fleet-tag { position: absolute; top: 18px; left: 18px; background: var(--ink); color: #fff; padding: 5px 13px; border-radius: 6px; font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.fleet-tag.blue { background: var(--blue); }
.fleet-svg { width: 100%; max-width: 320px; height: auto; }
.fleet-card.feature .fleet-svg { max-width: 400px; }
.fleet-body { padding: 32px; display: flex; flex-direction: column; }
.fleet-card.feature .fleet-body { justify-content: center; padding: 48px; }
.fleet-body h3 { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 25px; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 4px; }
.fleet-card.feature .fleet-body h3 { font-size: 34px; }
.fleet-type { font-size: 12px; color: var(--blue); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; }
.fleet-body p { color: var(--steel); font-size: 14.5px; line-height: 1.65; margin-bottom: 20px; flex: 1; }
.fleet-card.feature .fleet-body p { font-size: 16px; }
.fleet-specs { display: flex; gap: 8px; flex-wrap: wrap; }
.spec { padding: 6px 13px; font-size: 12px; font-weight: 500; color: var(--slate); background: var(--fog); border: 1px solid var(--line); border-radius: 7px; }

/* FEATURE SPLIT (image + text) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split.flip .split-visual { order: 2; }
.split-visual { background: linear-gradient(135deg, var(--fog) 0%, var(--fog-deep) 100%); border: 1px solid var(--line); border-radius: 18px; padding: 50px; display: grid; place-items: center; min-height: 320px; }
.split-visual svg { width: 100%; max-width: 380px; height: auto; }

/* CARDS GRID */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cards.two { grid-template-columns: repeat(2, 1fr); }
.card { border: 1px solid var(--line); border-radius: 18px; padding: 36px; transition: all 0.3s; background: var(--paper); }
.card:hover { border-color: var(--blue-bright); box-shadow: 0 20px 44px rgba(10,23,34,0.1); transform: translateY(-4px); }
.card .ci { font-size: 30px; margin-bottom: 18px; }
.card h3 { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 20px; margin-bottom: 11px; letter-spacing: -0.01em; }
.card p { color: var(--steel); font-size: 14.5px; line-height: 1.65; }

/* CHECKLIST */
.check { list-style: none; display: grid; gap: 14px; margin-top: 10px; }
.check li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--slate); line-height: 1.6; }
.check li::before { content: '✓'; color: var(--blue); font-weight: 800; flex-shrink: 0; background: var(--blue-wash); width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; font-size: 12px; }

/* PROCESS */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.pstep { position: relative; padding-top: 28px; }
.pstep::before { content: ''; position: absolute; top: 0; left: 0; width: 44px; height: 3px; background: var(--blue); }
.pstep .pnum { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 14px; color: var(--blue); letter-spacing: 0.1em; margin-bottom: 14px; }
.pstep h4 { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 18px; margin-bottom: 8px; letter-spacing: -0.01em; }
.pstep p { color: var(--steel); font-size: 14px; line-height: 1.6; }

/* CTA BANNER */
.cta-banner { background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue) 100%); border-radius: 24px; padding: 64px; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; top: -50%; right: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(255,255,255,0.1), transparent 70%); }
.cta-banner h2 { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: clamp(28px, 4vw, 44px); color: #fff; letter-spacing: -0.03em; margin-bottom: 16px; position: relative; }
.cta-banner p { color: rgba(255,255,255,0.85); font-size: 17px; max-width: 540px; margin: 0 auto 32px; position: relative; }
.cta-banner .hero-actions { margin-bottom: 0; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: start; }
.contact-items { display: grid; gap: 14px; }
.citem { display: flex; gap: 16px; align-items: center; padding: 22px; background: var(--paper); border: 1px solid var(--line); border-radius: 14px; transition: all 0.2s; }
.citem:hover { border-color: var(--blue-bright); }
.cicon { width: 46px; height: 46px; background: var(--blue-wash); border-radius: 11px; display: grid; place-items: center; font-size: 20px; flex-shrink: 0; }
.citem .lbl { font-size: 11px; color: var(--mist); text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600; }
.citem .val { font-family: 'Archivo', sans-serif; font-size: 17px; font-weight: 600; color: var(--ink); margin-top: 2px; }
.citem a { text-decoration: none; }
.hours { background: var(--paper); border: 1px solid var(--line); border-radius: 14px; padding: 24px; margin-top: 14px; }
.hours h4 { font-family: 'Archivo', sans-serif; font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--blue); margin-bottom: 14px; }
.hours .hrow { display: flex; justify-content: space-between; padding: 8px 0; font-size: 14px; border-bottom: 1px solid var(--line-soft); }
.hours .hrow:last-child { border-bottom: none; }
.hours .hrow .d { color: var(--ink); font-weight: 600; }
.hours .hrow .t { color: var(--steel); }
.form { background: var(--paper); border: 1px solid var(--line); border-radius: 18px; padding: 40px; }
.form h3 { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 22px; margin-bottom: 6px; letter-spacing: -0.01em; }
.form .fsub { color: var(--steel); font-size: 14px; margin-bottom: 26px; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fgroup { margin-bottom: 16px; }
.fgroup label { display: block; font-size: 12px; font-weight: 600; color: var(--slate); margin-bottom: 7px; }
.fgroup input, .fgroup select, .fgroup textarea { width: 100%; padding: 13px 15px; border: 1px solid var(--line); border-radius: 10px; font-family: inherit; font-size: 14.5px; background: var(--fog); color: var(--ink); transition: all 0.2s; }
.fgroup input:focus, .fgroup select:focus, .fgroup textarea:focus { outline: none; border-color: var(--blue); background: #fff; box-shadow: 0 0 0 3px var(--blue-wash); }
.form .btn { width: 100%; justify-content: center; margin-top: 4px; }
.map-embed { width: 100%; height: 280px; border: 1px solid var(--line); border-radius: 14px; margin-top: 14px; filter: grayscale(0.3); }

/* FOOTER */
footer { background: var(--ink); color: rgba(255,255,255,0.7); padding: 70px 40px 36px; }
.foot-grid { max-width: 1320px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px; margin-bottom: 52px; }
.foot-about p { margin-top: 18px; font-size: 14px; line-height: 1.7; max-width: 320px; color: rgba(255,255,255,0.6); }
.foot-col h5 { font-family: 'Archivo', sans-serif; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: #fff; margin-bottom: 18px; }
.foot-col ul { list-style: none; }
.foot-col li { margin-bottom: 11px; }
.foot-col a, .foot-col span { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 14px; transition: color 0.2s; display: block; }
.foot-col a:hover { color: var(--blue-bright); }
.foot-bottom { max-width: 1320px; margin: 0 auto; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.12); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13px; color: rgba(255,255,255,0.45); }

/* RESPONSIVE */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .topbar-left span:nth-child(n+2) { display: none; }
  .stats-inner { grid-template-columns: repeat(2,1fr); gap: 30px; }
  .fleet-grid { grid-template-columns: 1fr; }
  .fleet-card.feature { grid-column: span 1; grid-template-columns: 1fr; }
  .split, .split.flip { grid-template-columns: 1fr; gap: 30px; }
  .split.flip .split-visual { order: 0; }
  .cards, .cards.two { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 24px; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .wrap { padding: 70px 24px; }
  .hero, .page-hero { padding-left: 24px; padding-right: 24px; }
  .cta-banner { padding: 44px 28px; }
}
@media (max-width: 560px) {
  .frow { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
}

/* LANG */



/* WhatsApp floating button */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 200;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 10px 28px rgba(37,211,102,0.45);
  transition: all 0.25s; text-decoration: none;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 14px 34px rgba(37,211,102,0.6); }
.wa-float svg { width: 30px; height: 30px; }
@media (max-width: 560px) { .wa-float { width: 52px; height: 52px; bottom: 18px; right: 18px; } }
