/* ============================================================
   SHAHEEN TRANSPORTATION LLC — PREMIUM STYLESHEET
   Fonts: Playfair Display (headings) · DM Sans (body) · Oswald (labels)
============================================================ */

:root {
  --navy:    #0C1A2E;
  --navy2:   #142338;
  --navy3:   #1B3050;
  --gold:    #C9A14A;
  --gold2:   #A8841C;
  --gold-lt: #FBF3DC;
  --gold-bd: rgba(201,161,74,.28);
  --blue:    #1565C0;
  --blue-lt: #E3F0FF;
  --white:   #FFFFFF;
  --cream:   #FAF8F3;
  --cream2:  #F2EEE6;
  --text:    #1A2332;
  --text2:   #4A5568;
  --text3:   #8A95A8;
  --border:  #E2DDD5;
  --border2: #EBE6DE;
  --green:   #16A34A;
  --red:     #DC2626;
  --shadow:  0 2px 16px rgba(12,26,46,.08);
  --shadow2: 0 8px 40px rgba(12,26,46,.13);
  --shadow3: 0 20px 64px rgba(12,26,46,.18);
  --fh: 'Playfair Display', Georgia, serif;
  --fb: 'DM Sans', system-ui, sans-serif;
  --fo: 'Oswald', sans-serif;
  --radius: 12px;
  --radius2: 8px;
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--white); color: var(--text); font-family: var(--fb); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
address { font-style: normal; }

/* ── HEADER ─────────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,.98);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 12px rgba(12,26,46,.07);
  transition: box-shadow .3s, padding .3s;
  height: 105px;
}
.site-header.scrolled { box-shadow: 0 3px 24px rgba(12,26,46,.14); }
.header-inner {
  max-width: 1300px; margin: 0 auto;
  padding: 0 3%;
  display: flex; align-items: center; justify-content: space-between;
  height: 105px;
}
.site-logo img { height: 120px; width: auto; object-fit: contain; display: block; }

/* Nav links */
.main-nav ul { display: flex; gap: 38px; }
.main-nav a { font-size: .85rem; font-weight: 500; color: var(--text2); padding: 4px 0; border-bottom: 2px solid transparent; transition: color .2s, border-color .2s; }
.main-nav a:hover, .main-nav a.active { color: var(--navy); border-bottom-color: var(--gold); font-weight: 600; }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 16px; }
.header-phone { display: flex; align-items: center; gap: 6px; font-size: .82rem; font-weight: 600; color: var(--navy); white-space: nowrap; }
.header-phone .ph-icon { font-size: 1rem; }
.btn-header-cta { background: var(--gold); color: var(--white); font-size: .82rem; font-weight: 700; padding: 10px 20px; border-radius: var(--radius2); transition: background .2s, transform .15s; white-space: nowrap; letter-spacing: .3px; }
.btn-header-cta:hover { background: var(--gold2); transform: translateY(-1px); }

/* Burger */
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.burger span { width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: .3s; display: block; }

/* Mobile menu */
.mobile-menu { top: 105px; display: none; position: fixed; left: 0; right: 0; z-index: 999; background: var(--white); border-bottom: 1px solid var(--bd); padding: 20px 5%; box-shadow: var(--shadow2); flex-direction: column; gap: 2px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--text2); font-size: .95rem; font-weight: 500; padding: 11px 0; border-bottom: 1px solid var(--border2); }
.mobile-menu a:last-child { border: none; }
.mobile-menu .mob-cta { margin-top: 8px; background: var(--navy); color: var(--white); padding: 12px 18px; border-radius: var(--radius2); text-align: center; font-weight: 700; }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  margin-top: 105px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url('https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?w=1920&q=85&auto=format') center 40%/cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(12,26,46,.96) 0%, rgba(12,26,46,.88) 45%, rgba(12,26,46,.65) 100%);
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: 1300px; margin: 0 auto; width: 100%;
  padding: 80px 5%;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 60px;
  align-items: center;
}

/* Hero text side */
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(201,161,74,.18); border: 1px solid rgba(201,161,74,.45); color: #E8C96A; font-family: var(--fo); font-size: .72rem; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; padding: 7px 16px; border-radius: 100px; margin-bottom: 24px; }
.hero-eyebrow::before { content:''; width:6px; height:6px; background:var(--gold); border-radius:50%; animation:blink 1.5s infinite; }
@keyframes blink { 0%,100%{opacity:1}50%{opacity:.3} }

.hero h1 { font-family: var(--fh); font-size: clamp(2.4rem,4.8vw,4.6rem); font-weight: 900; color: var(--white); line-height: 1.07; margin-bottom: 20px; }
.hero h1 em { color: var(--gold); font-style: italic; display: block; }
.hero-sub { color: rgba(255,255,255,.72); font-size: 1.02rem; line-height: 1.78; max-width: 460px; margin-bottom: 36px; }

.hero-trust { display: flex; flex-wrap: wrap; gap: 18px; margin-bottom: 36px; }
.trust-pill { display: flex; align-items: center; gap: 6px; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.16); border-radius: 100px; padding: 7px 14px; font-size: .78rem; color: rgba(255,255,255,.82); font-weight: 500; }
.trust-pill .tp-ico { font-size: .9rem; }

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-hero-primary { background: var(--gold); color: var(--white); font-size: .9rem; font-weight: 700; padding: 15px 32px; border-radius: var(--radius2); border: none; cursor: pointer; transition: background .2s, transform .15s, box-shadow .2s; box-shadow: 0 6px 20px rgba(201,161,74,.45); letter-spacing: .3px; display: inline-flex; align-items: center; gap: 8px; }
.btn-hero-primary:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(201,161,74,.55); }
.btn-hero-ghost { background: transparent; color: var(--white); font-size: .9rem; font-weight: 600; padding: 14px 28px; border-radius: var(--radius2); border: 2px solid rgba(255,255,255,.5); cursor: pointer; transition: border-color .2s, background .2s; display: inline-flex; align-items: center; gap: 8px; }
.btn-hero-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.1); }

/* Hero form card */
.hero-form-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 72px rgba(0,0,0,.3), 0 0 0 1px rgba(201,161,74,.15);
}
.hfc-header {
  background: var(--navy);
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 3px solid var(--gold);
}
.hfc-header img { height: 52px; width: auto; object-fit: contain; }
.hfc-title { color: var(--white); font-family: var(--fh); font-size: 1.1rem; font-weight: 800; }
.hfc-sub { color: rgba(255,255,255,.6); font-size: .75rem; margin-top: 2px; }
.hfc-body { padding: 26px 28px; }
.hfc-body .form-group { margin-bottom: 14px; }
.hfc-body label { display: block; font-size: .72rem; font-weight: 700; color: var(--text2); letter-spacing: .5px; text-transform: uppercase; margin-bottom: 5px; }
.hfc-body input, .hfc-body select {
  width: 100%; padding: 11px 13px;
  background: var(--cream); border: 1.5px solid var(--border);
  border-radius: var(--radius2); color: var(--text);
  font-family: var(--fb); font-size: .88rem;
  transition: border-color .2s, box-shadow .2s;
}
.hfc-body input:focus, .hfc-body select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,161,74,.15); }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hfc-body .btn-submit { width: 100%; background: var(--navy); color: var(--white); font-size: .9rem; font-weight: 700; padding: 13px; border-radius: var(--radius2); border: none; cursor: pointer; transition: background .2s; margin-top: 4px; letter-spacing: .3px; }
.hfc-body .btn-submit:hover { background: var(--navy2); }

/* ── TRUST BAR ────────────────────────────────────────────── */
.trust-bar { background: var(--navy); padding: 16px 5%; }
.trust-bar-inner { max-width: 1300px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.tb-item { display: flex; align-items: center; gap: 8px; font-size: .8rem; font-weight: 500; color: rgba(255,255,255,.72); }
.tb-item strong { color: var(--white); font-weight: 700; }
.tb-sep { width: 1px; height: 20px; background: rgba(255,255,255,.15); }

/* ── STATS SECTION ───────────────────────────────────────── */
.stats-section { position: relative; background: url('https://images.unsplash.com/photo-1568992687947-868a62a9f521?w=1920&q=80&auto=format') center/cover; }
.stats-section::before { content:''; position:absolute; inset:0; background:rgba(12,26,46,.92); }
.stats-inner { position: relative; z-index:1; max-width: 1300px; margin: 0 auto; padding: 64px 5%; display: grid; grid-template-columns: repeat(4,1fr); }
.stat-box { text-align: center; padding: 36px 20px; border-right: 1px solid rgba(255,255,255,.1); }
.stat-box:last-child { border-right: none; }
.stat-num { font-family: var(--fh); font-size: 3rem; font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.stat-label { font-family: var(--fo); font-size: .72rem; font-weight: 500; color: rgba(255,255,255,.58); text-transform: uppercase; letter-spacing: 1.5px; }

/* ── SECTION COMMONS ─────────────────────────────────────── */
.section { padding: 88px 5%; }
.section.bg-cream  { background: var(--cream); }
.section.bg-cream2 { background: var(--cream2); }
.section.bg-white  { background: var(--white); }
.container { max-width: 1300px; margin: 0 auto; }
.section-label { font-family: var(--fo); font-size: .7rem; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold2); display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.section-label::before { content:''; width:28px; height:2px; background:var(--gold); display:block; }
.section-title { font-family: var(--fh); font-size: clamp(1.8rem,3vw,2.7rem); font-weight: 800; color: var(--navy); line-height: 1.2; margin-bottom: 14px; }
.section-title em { color: var(--gold); font-style: italic; }
.section-title.light { color: var(--white); }
.section-body { color: var(--text2); font-size: .97rem; line-height: 1.78; max-width: 520px; }
.section-body.light { color: rgba(255,255,255,.7); }
.sec-head { margin-bottom: 52px; }
.sec-head.center { text-align: center; }
.sec-head.center .section-label { justify-content: center; }
.sec-head.center .section-label::before { display: none; }
.sec-head.center .section-body { margin: 0 auto; }

/* ── SERVICE CARDS ───────────────────────────────────────── */
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.svc-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; display: block; color: inherit; transition: transform .25s, box-shadow .25s, border-color .25s; position: relative; }
.svc-card::before { content:''; position:absolute; top:0; left:0; right:0; height:4px; background:linear-gradient(90deg,var(--gold),var(--blue)); transform:scaleX(0); transition:transform .3s; }
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow2); border-color: var(--gold-bd); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-body { padding: 30px 26px; }
.svc-icon { width: 52px; height: 52px; background: var(--gold-lt); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 18px; }
.svc-card h3 { font-family: var(--fh); font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.svc-card p { font-size: .85rem; color: var(--text2); line-height: 1.72; margin-bottom: 16px; }
.svc-more { font-size: .8rem; font-weight: 600; color: var(--gold2); display: inline-flex; align-items: center; gap: 4px; }
.svc-more::after { content:'→'; transition: transform .2s; }
.svc-card:hover .svc-more::after { transform: translateX(4px); }

/* ── PROCESS STEPS ───────────────────────────────────────── */
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; }
.process-step { text-align: center; padding: 36px 20px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); position: relative; }
.process-step:not(:last-child)::after { content:'→'; position:absolute; right:-18px; top:50%; transform:translateY(-50%); font-size:1.4rem; color:var(--gold); z-index:1; }
.step-num { font-family: var(--fh); font-size: 2.8rem; font-weight: 900; color: var(--gold-lt); line-height: 1; margin-bottom: 12px; }
.process-step h4 { font-family: var(--fh); font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.process-step p { font-size: .83rem; color: var(--text2); line-height: 1.65; }

/* ── WHY US SECTION ──────────────────────────────────────── */
.why-bg { position: relative; background: url('https://images.unsplash.com/photo-1494976388531-d1058494cdd8?w=1920&q=80&auto=format') center 55%/cover; }
.why-bg::before { content:''; position:absolute; inset:0; background:linear-gradient(135deg,rgba(12,26,46,.95),rgba(12,26,46,.88)); }
.why-inner { position:relative; z-index:1; max-width:1300px; margin:0 auto; padding:88px 5%; display:grid; grid-template-columns:1fr 1fr; gap:72px; align-items:center; }
.why-logo-box { background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.12); border-radius:16px; padding:44px; text-align:center; }
.why-logo-box img { width:170px; margin:0 auto 28px; filter:drop-shadow(0 8px 24px rgba(201,161,74,.35)); }
.feat-list { display:flex; flex-direction:column; gap:11px; }
.feat-item { display:flex; align-items:center; gap:12px; background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.1); border-radius:8px; padding:12px 16px; }
.feat-dot { width:20px; height:20px; background:var(--gold); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:.62rem; color:var(--navy); font-weight:800; flex-shrink:0; }
.feat-item span { font-size:.86rem; color:rgba(255,255,255,.85); font-weight:500; }
.why-points { display:flex; flex-direction:column; gap:28px; }
.why-pt { display:flex; gap:18px; }
.wp-num { font-family:var(--fh); font-size:2rem; font-weight:900; color:rgba(201,161,74,.22); line-height:1; flex-shrink:0; width:44px; }
.wp-content h4 { font-family:var(--fh); font-size:1.05rem; font-weight:700; color:var(--white); margin-bottom:6px; }
.wp-content p { font-size:.86rem; color:rgba(255,255,255,.58); line-height:1.7; }

/* ── TESTIMONIALS ────────────────────────────────────────── */
.testi-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.tcard { background:var(--white); border:1px solid var(--border); border-radius:var(--radius); padding:30px; box-shadow:var(--shadow); transition:transform .25s,box-shadow .25s; }
.tcard:hover { transform:translateY(-4px); box-shadow:var(--shadow2); }
.tcard-stars { color:var(--gold); font-size:.9rem; letter-spacing:2px; margin-bottom:14px; }
.tcard-quote { font-size:2rem; color:var(--gold); line-height:1; font-family:Georgia; margin-bottom:8px; }
.tcard p { font-size:.87rem; color:var(--text2); line-height:1.76; margin-bottom:20px; font-style:italic; }
.tcard-author { display:flex; align-items:center; gap:11px; padding-top:16px; border-top:1px solid var(--border); }
.tcard-av { width:40px; height:40px; border-radius:50%; background:var(--navy); display:flex; align-items:center; justify-content:center; font-family:var(--fh); font-size:.95rem; font-weight:700; color:var(--gold); flex-shrink:0; }
.tcard-name { font-size:.87rem; font-weight:700; color:var(--navy); }
.tcard-role { font-size:.75rem; color:var(--text3); }

/* ── CTA BANNERS ─────────────────────────────────────────── */
.cta-banner { position:relative; background:url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1920&q=80&auto=format') center 35%/cover; }
.cta-banner::before { content:''; position:absolute; inset:0; background:linear-gradient(135deg,rgba(12,26,46,.93),rgba(27,48,80,.9)); }
.cta-inner { position:relative; z-index:1; max-width:700px; margin:0 auto; text-align:center; padding:88px 5%; }
.cta-inner h2 { font-family:var(--fh); font-size:clamp(1.9rem,3.8vw,3.2rem); font-weight:900; color:var(--white); margin-bottom:14px; }
.cta-inner h2 em { color:var(--gold); font-style:italic; }
.cta-inner p { color:rgba(255,255,255,.67); font-size:1rem; line-height:1.74; margin-bottom:30px; }
.cta-actions { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }

/* ── BUTTONS (global) ────────────────────────────────────── */
.btn { display:inline-flex; align-items:center; gap:8px; padding:13px 28px; border-radius:var(--radius2); font-size:.86rem; font-weight:700; cursor:pointer; border:none; transition:all .2s; letter-spacing:.3px; }
.btn-gold  { background:var(--gold);  color:var(--white); box-shadow:0 4px 14px rgba(201,161,74,.35); }
.btn-gold:hover  { background:var(--gold2); transform:translateY(-2px); }
.btn-navy  { background:var(--navy);  color:var(--white); }
.btn-navy:hover  { background:var(--navy2); transform:translateY(-2px); }
.btn-ghost { background:transparent; color:var(--white); border:2px solid rgba(255,255,255,.55); }
.btn-ghost:hover { border-color:var(--white); background:rgba(255,255,255,.1); }
.btn-lg { padding:15px 34px; font-size:.92rem; }

/* ── PAGE HEROES ─────────────────────────────────────────── */
.page-hero { position:relative; margin-top:105px; padding:88px 5% 60px; background-size:cover; background-position:center; }
.page-hero::before { content:''; position:absolute; inset:0; }
.ph-inner { position:relative; z-index:1; max-width:1300px; margin:0 auto; }
.breadcrumb { font-size:.77rem; color:rgba(255,255,255,.5); margin-bottom:16px; }
.breadcrumb a { color:var(--gold); }
.breadcrumb span { margin:0 6px; }

/* ── FORMS (contact/quote) ───────────────────────────────── */
.form-wrap { background:var(--white); border:1px solid var(--border); border-radius:16px; padding:40px; box-shadow:var(--shadow2); }
.form-wrap h3 { font-family:var(--fh); font-size:1.5rem; font-weight:800; color:var(--navy); margin-bottom:6px; }
.form-subtitle { font-size:.84rem; color:var(--text3); padding-bottom:20px; margin-bottom:26px; border-bottom:1px solid var(--border); }
.form-group { margin-bottom:18px; }
.form-group label { display:block; font-size:.72rem; font-weight:700; color:var(--text2); letter-spacing:.5px; text-transform:uppercase; margin-bottom:6px; }
.form-group input, .form-group select, .form-group textarea {
  width:100%; padding:12px 14px;
  background:var(--cream); border:1.5px solid var(--border);
  border-radius:var(--radius2); color:var(--text);
  font-family:var(--fb); font-size:.9rem;
  transition:border-color .2s, box-shadow .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline:none; border-color:var(--gold); box-shadow:0 0 0 3px rgba(201,161,74,.14); background:var(--white); }
.form-group textarea { resize:vertical; min-height:115px; line-height:1.6; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.btn-form-submit { width:100%; background:var(--navy); color:var(--white); font-size:.9rem; font-weight:700; padding:14px; border-radius:var(--radius2); border:none; cursor:pointer; transition:background .2s,transform .15s; margin-top:4px; }
.btn-form-submit:hover { background:var(--navy2); transform:translateY(-1px); }
.form-success { display:none; background:#F0FDF4; border:1px solid #86EFAC; border-radius:8px; padding:14px 16px; color:#166534; font-size:.86rem; font-weight:600; margin-top:14px; }
.form-success.show { display:block; }

/* Contact info side */
.contact-info { display:flex; flex-direction:column; gap:14px; }
.ci-card { background:var(--white); border:1px solid var(--border); border-radius:var(--radius); padding:18px 20px; display:flex; align-items:center; gap:14px; box-shadow:var(--shadow); transition:border-color .2s,transform .2s; }
.ci-card:hover { border-color:var(--gold-bd); transform:translateX(4px); }
.ci-icon { width:44px; height:44px; background:var(--gold-lt); border-radius:9px; display:flex; align-items:center; justify-content:center; font-size:1.1rem; flex-shrink:0; }
.ci-label { font-size:.68rem; font-weight:700; color:var(--text3); letter-spacing:.8px; text-transform:uppercase; margin-bottom:2px; }
.ci-val { font-size:.9rem; font-weight:600; color:var(--navy); }
.ci-val a { color:var(--navy); transition:color .2s; }
.ci-val a:hover { color:var(--gold2); }

/* ── QUOTE MULTI-STEP ────────────────────────────────────── */
.quote-steps { background:var(--white); border:1px solid var(--border); border-radius:16px; overflow:hidden; box-shadow:var(--shadow2); }
.step-tabs { display:flex; border-bottom:1px solid var(--border); background:var(--cream); }
.step-tab { flex:1; padding:18px 10px; border:none; background:transparent; font-family:var(--fb); font-size:.76rem; font-weight:700; color:var(--text3); cursor:pointer; text-transform:uppercase; letter-spacing:.4px; position:relative; transition:color .2s,background .2s; }
.step-tab.active { color:var(--navy); background:var(--white); }
.step-tab.active::after { content:''; position:absolute; bottom:0; left:0; right:0; height:3px; background:linear-gradient(90deg,var(--gold),var(--blue)); }
.step-num-badge { display:inline-flex; align-items:center; justify-content:center; width:20px; height:20px; border-radius:50%; background:var(--border); font-size:.68rem; margin-right:5px; transition:background .2s,color .2s; }
.step-tab.active .step-num-badge { background:var(--navy); color:var(--gold); }
.step-content { display:none; padding:36px; }
.step-content.active { display:block; }
.step-group-title { font-family:var(--fh); font-size:.95rem; font-weight:700; color:var(--navy); padding-bottom:10px; margin-bottom:18px; border-bottom:1px solid var(--border); }
.step-group-title:not(:first-child) { margin-top:26px; }
.freight-type-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:11px; margin-bottom:4px; }
.ft-btn { border:2px solid var(--border); border-radius:9px; background:var(--cream); padding:15px 8px; cursor:pointer; text-align:center; transition:all .2s; font-family:var(--fb); }
.ft-btn:hover { border-color:var(--gold); background:var(--gold-lt); }
.ft-btn.selected { border-color:var(--gold); background:var(--gold-lt); }
.ft-btn .ft-icon { font-size:1.7rem; display:block; margin-bottom:5px; }
.ft-btn .ft-label { font-size:.7rem; font-weight:700; color:var(--text); text-transform:uppercase; letter-spacing:.3px; }
.step-nav { display:flex; justify-content:space-between; align-items:center; margin-top:26px; gap:12px; }
.btn-step-back { background:transparent; color:var(--text3); border:1.5px solid var(--border); padding:10px 20px; border-radius:var(--radius2); font-size:.82rem; font-weight:600; cursor:pointer; transition:border-color .2s,color .2s; }
.btn-step-back:hover { border-color:var(--navy); color:var(--navy); }
.btn-step-next { background:var(--navy); color:var(--white); border:none; padding:11px 26px; border-radius:var(--radius2); font-size:.82rem; font-weight:700; cursor:pointer; transition:background .2s; }
.btn-step-next:hover { background:var(--navy2); }
.btn-step-submit { background:var(--gold); color:var(--white); border:none; padding:13px 34px; border-radius:var(--radius2); font-size:.88rem; font-weight:700; cursor:pointer; flex:1; box-shadow:0 4px 14px rgba(201,161,74,.35); transition:background .2s; }
.btn-step-submit:hover { background:var(--gold2); }
.trust-badges { display:flex; flex-wrap:wrap; gap:8px; margin-top:16px; }
.trust-badge-sm { background:var(--cream); border:1px solid var(--border); border-radius:5px; padding:5px 11px; font-size:.73rem; color:var(--text3); font-weight:600; }
.quote-success { display:none; padding:60px 36px; text-align:center; }
.quote-success.show { display:block; }
.qs-icon { font-size:3.5rem; display:block; margin-bottom:18px; }
.quote-success h3 { font-family:var(--fh); font-size:2rem; font-weight:800; color:var(--navy); margin-bottom:10px; }
.quote-success p { font-size:.9rem; color:var(--text2); line-height:1.72; max-width:360px; margin:0 auto 6px; }
.tracking-display { background:var(--gold-lt); border:1px solid var(--gold-bd); border-radius:8px; padding:14px 20px; margin:18px auto; max-width:300px; text-align:center; }
.tracking-display .td-label { font-size:.7rem; color:var(--text3); font-weight:700; letter-spacing:1px; text-transform:uppercase; margin-bottom:4px; }
.tracking-display .td-id { font-family:var(--fo); font-size:1.4rem; font-weight:700; color:var(--navy); letter-spacing:1px; }

/* ── FLEET CARDS ─────────────────────────────────────────── */
.fleet-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.fleet-card { background:var(--cream); border:1px solid var(--border); border-radius:var(--radius); overflow:hidden; transition:transform .25s,box-shadow .25s; }
.fleet-card:hover { transform:translateY(-4px); box-shadow:var(--shadow); }
.fleet-img { height:110px; display:flex; align-items:center; justify-content:center; font-size:2.8rem; background:var(--cream2); position:relative; }
.fleet-img::after { content:''; position:absolute; bottom:0; left:0; right:0; height:3px; background:linear-gradient(90deg,var(--gold),var(--blue)); }
.fleet-body { padding:18px; }
.fleet-body h4 { font-family:var(--fh); font-size:.97rem; font-weight:700; color:var(--navy); margin-bottom:5px; }
.fleet-body p { font-size:.79rem; color:var(--text2); line-height:1.5; }
.avail-pill { display:inline-block; margin-top:9px; background:var(--gold-lt); color:var(--gold2); font-size:.67rem; font-weight:700; letter-spacing:1px; padding:3px 9px; border-radius:100px; text-transform:uppercase; border:1px solid rgba(201,161,74,.2); }

/* ── ABOUT PAGE ──────────────────────────────────────────── */
.story-grid { display:grid; grid-template-columns:1fr 1fr; gap:68px; align-items:center; }
.story-img-wrap { position:relative; border-radius:16px; overflow:hidden; }
.story-img-wrap img { width:100%; height:400px; object-fit:cover; }
.story-badge { position:absolute; bottom:22px; left:22px; background:var(--white); border-radius:10px; padding:14px 18px; box-shadow:var(--shadow3); display:flex; align-items:center; gap:12px; }
.story-badge .num { font-family:var(--fh); font-size:1.9rem; font-weight:900; color:var(--navy); line-height:1; }
.story-badge .txt { font-size:.73rem; color:var(--text2); font-weight:600; line-height:1.4; }
.story-badge .txt strong { display:block; color:var(--gold2); font-size:.66rem; text-transform:uppercase; letter-spacing:1px; }
.timeline { display:flex; flex-direction:column; gap:0; margin-top:28px; }
.tl-item { display:flex; gap:14px; padding-bottom:20px; position:relative; }
.tl-item:not(:last-child)::after { content:''; position:absolute; left:13px; top:28px; bottom:0; width:2px; background:linear-gradient(180deg,var(--gold),var(--border)); }
.tl-dot { width:26px; height:26px; border-radius:50%; background:var(--navy); border:3px solid var(--gold); display:flex; align-items:center; justify-content:center; font-size:.62rem; font-weight:700; color:var(--gold); flex-shrink:0; }
.tl-year { font-family:var(--fo); font-size:.66rem; font-weight:600; color:var(--gold2); letter-spacing:1px; text-transform:uppercase; margin-bottom:2px; }
.tl-text { font-size:.83rem; color:var(--text2); line-height:1.55; }
.values-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.val-card { background:var(--white); border:1px solid var(--border); border-radius:var(--radius); padding:28px 22px; transition:transform .25s,box-shadow .25s,border-color .25s; }
.val-card:hover { transform:translateY(-5px); box-shadow:var(--shadow2); border-color:var(--gold-bd); }
.val-icon { width:48px; height:48px; background:var(--gold-lt); border-radius:10px; display:flex; align-items:center; justify-content:center; font-size:1.35rem; margin-bottom:14px; }
.val-card h3 { font-family:var(--fh); font-size:1.05rem; font-weight:700; color:var(--navy); margin-bottom:8px; }
.val-card p { font-size:.83rem; color:var(--text2); line-height:1.68; }
.team-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.team-card { background:var(--white); border:1px solid var(--border); border-radius:var(--radius); overflow:hidden; transition:transform .25s,box-shadow .25s; }
.team-card:hover { transform:translateY(-4px); box-shadow:var(--shadow2); }
.team-photo { height:130px; background:var(--cream2); display:flex; align-items:center; justify-content:center; font-size:2.8rem; position:relative; }
.team-photo::after { content:''; position:absolute; bottom:0; left:0; right:0; height:4px; background:linear-gradient(90deg,var(--gold),var(--blue)); }
.team-info { padding:18px; }
.team-info h4 { font-family:var(--fh); font-size:.97rem; font-weight:700; color:var(--navy); margin-bottom:3px; }
.team-role { font-family:var(--fo); font-size:.69rem; font-weight:600; color:var(--gold2); letter-spacing:1px; text-transform:uppercase; margin-bottom:8px; }
.team-info p { font-size:.79rem; color:var(--text3); line-height:1.55; }
.cert-badges { display:flex; flex-wrap:wrap; gap:13px; justify-content:center; margin-top:34px; }
.cert-badge { background:var(--white); border:1px solid var(--border); border-radius:10px; padding:14px 20px; display:flex; align-items:center; gap:9px; font-size:.84rem; font-weight:600; color:var(--navy); box-shadow:var(--shadow); transition:border-color .2s,box-shadow .2s; }
.cert-badge:hover { border-color:var(--gold-bd); box-shadow:var(--shadow2); }

/* ── TRACK PAGE ──────────────────────────────────────────── */
.status-progress-bar { display:flex; align-items:center; justify-content:space-between; position:relative; overflow-x:auto; padding:4px 2px 8px; gap:4px; }
.status-progress-bar::before { content:''; position:absolute; top:18px; left:0; right:0; height:2px; background:var(--border); z-index:0; }

/* ── TRACK PAGE ──────────────────────────────────────────── */
.track-wrap { max-width:680px; margin:0 auto; }
.track-form-box { background:var(--white); border:1px solid var(--border); border-radius:16px; padding:40px; box-shadow:var(--shadow2); margin-bottom:28px; }
.track-form-box h2 { font-family:var(--fh); font-size:1.7rem; font-weight:800; color:var(--navy); margin-bottom:8px; }
.track-form-box p { font-size:.9rem; color:var(--text2); margin-bottom:28px; }
.track-input-row { display:flex; gap:12px; }
.track-input-row input { flex:1; padding:13px 16px; background:var(--cream); border:1.5px solid var(--border); border-radius:var(--radius2); font-family:var(--fb); font-size:.95rem; color:var(--text); }
.track-input-row input:focus { outline:none; border-color:var(--gold); }
.track-input-row button { background:var(--navy); color:var(--white); border:none; padding:13px 24px; border-radius:var(--radius2); font-size:.88rem; font-weight:700; cursor:pointer; white-space:nowrap; }
.shipment-result { background:var(--white); border:1px solid var(--border); border-radius:16px; overflow:hidden; box-shadow:var(--shadow2); }
.sr-header { background:var(--navy); padding:22px 28px; display:flex; justify-content:space-between; align-items:center; }
.sr-tracking { font-family:var(--fo); font-size:1.2rem; font-weight:700; color:var(--gold); letter-spacing:1px; }
.sr-body { padding:28px; }
.sr-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:20px; }
.sr-field { }
.sr-field label { font-size:.68rem; font-weight:700; color:var(--text3); letter-spacing:.8px; text-transform:uppercase; display:block; margin-bottom:4px; }
.sr-field .val { font-size:.93rem; font-weight:600; color:var(--navy); }
.not-found { background:var(--cream); border:1px solid var(--border); border-radius:12px; padding:32px; text-align:center; }
.not-found p { color:var(--text2); font-size:.95rem; }

/* ── SERVICES DETAIL BLOCKS ──────────────────────────────── */
.service-block { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; padding:68px 0; border-bottom:1px solid var(--border); }
.service-block:last-child { border-bottom:none; }
.service-block.flip { direction:rtl; }
.service-block.flip > * { direction:ltr; }
.sb-visual { border-radius:14px; overflow:hidden; position:relative; background-size:cover; background-position:center; min-height:300px; display:flex; align-items:flex-end; }
.sb-visual::before { content:''; position:absolute; inset:0; background:linear-gradient(180deg,rgba(12,26,46,.1),rgba(12,26,46,.78)); }
.sb-vis-label { position:relative; z-index:1; padding:26px; }
.sb-vis-label .sbl-icon { font-size:2rem; display:block; margin-bottom:8px; }
.sb-vis-label h3 { font-family:var(--fh); font-size:1.3rem; font-weight:800; color:var(--white); }
.sb-tag { display:inline-flex; align-items:center; gap:6px; background:var(--gold-lt); border:1px solid rgba(201,161,74,.25); color:var(--gold2); font-family:var(--fo); font-size:.67rem; font-weight:700; letter-spacing:2px; padding:4px 12px; border-radius:100px; margin-bottom:12px; text-transform:uppercase; }
.sb-info h2 { font-family:var(--fh); font-size:1.75rem; font-weight:800; color:var(--navy); line-height:1.18; margin-bottom:12px; }
.sb-info h2 em { color:var(--gold); font-style:italic; }
.sb-info p { font-size:.89rem; color:var(--text2); line-height:1.76; margin-bottom:20px; }
.sb-features { list-style:none; display:flex; flex-direction:column; gap:9px; margin-bottom:26px; }
.sb-features li { display:flex; align-items:center; gap:9px; font-size:.86rem; color:var(--text); }
.sb-features li .check { width:19px; height:19px; background:var(--navy); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:.6rem; color:var(--gold); font-weight:800; flex-shrink:0; }

/* ── PRICING CARDS ───────────────────────────────────────── */
.pricing-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.p-card { background:var(--white); border:1px solid var(--border); border-radius:14px; padding:34px 26px; position:relative; transition:transform .25s,box-shadow .25s; }
.p-card:hover { transform:translateY(-6px); box-shadow:var(--shadow3); }
.p-card.featured { border:2px solid var(--gold); }
.p-card.featured::before { content:'Most Popular'; position:absolute; top:-13px; left:50%; transform:translateX(-50%); background:var(--gold); color:var(--white); font-family:var(--fo); font-size:.67rem; font-weight:700; letter-spacing:1px; padding:4px 16px; border-radius:100px; white-space:nowrap; text-transform:uppercase; }
.p-card h3 { font-family:var(--fh); font-size:1.18rem; font-weight:700; color:var(--navy); margin-bottom:8px; }
.p-amount { font-family:var(--fh); font-size:2.4rem; font-weight:900; color:var(--navy); line-height:1; margin-bottom:4px; }
.p-period { font-size:.76rem; color:var(--text3); font-weight:600; margin-bottom:22px; }
.p-features { list-style:none; display:flex; flex-direction:column; gap:9px; margin-bottom:26px; }
.p-features li { display:flex; align-items:center; gap:8px; font-size:.84rem; color:var(--text2); }
.p-features li::before { content:'✓'; color:var(--gold2); font-weight:800; flex-shrink:0; }
.p-features li.no { color:var(--text3); }
.p-features li.no::before { content:'–'; color:var(--text3); }
.btn-outline-gold { display:block; text-align:center; background:transparent; color:var(--gold2); padding:11px 20px; border:2px solid var(--gold); border-radius:var(--radius2); font-size:.82rem; font-weight:700; transition:background .2s,color .2s; }
.btn-outline-gold:hover { background:var(--gold); color:var(--white); }

/* ── QUOTE PAGE LAYOUT ───────────────────────────────────── */
.quote-page-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 36px;
  align-items: start;
}
.quote-sidebar {}
.q-why-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px;
  margin-bottom: 16px;
  box-shadow: var(--shadow);
}
.q-why-box h4 { font-family:var(--fh); font-size:.97rem; font-weight:700; color:var(--navy); padding-bottom:11px; margin-bottom:13px; border-bottom:1px solid var(--border); }
.q-point { display:flex; align-items:flex-start; gap:9px; margin-bottom:10px; font-size:.83rem; color:var(--text2); }
.q-point:last-child { margin-bottom:0; }
.q-check { width:17px; height:17px; background:var(--navy); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:.58rem; color:var(--gold); font-weight:800; flex-shrink:0; margin-top:1px; }
.q-call-box { background:var(--navy); border-radius:12px; padding:22px; text-align:center; }
.q-call-label { font-size:.73rem; color:rgba(255,255,255,.54); margin-bottom:5px; }
.q-call-title { font-family:var(--fh); font-size:1.2rem; font-weight:800; color:var(--gold); margin-bottom:3px; }
.q-call-num { color:var(--white); font-size:.95rem; font-weight:600; display:block; }
.q-call-sub { font-size:.7rem; color:rgba(255,255,255,.38); margin-top:3px; }
.step-nav-end { justify-content: flex-end; }
.step-tab-label { display:inline; }

/* ── CONTACT PAGE LAYOUT ─────────────────────────────────── */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.65fr;
  gap: 52px;
  align-items: start;
}
.contact-map-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 34px;
  align-items: start;
}
.contact-info-stack { display:flex; flex-direction:column; gap:12px; margin-bottom:20px; }
.response-alert { background:var(--gold-lt); border:1px solid var(--gold-bd); border-radius:9px; padding:13px 16px; display:flex; align-items:center; gap:9px; font-size:.83rem; color:var(--text2); }
.response-alert strong { color:var(--gold2); }
.track-shortcut { margin-top:20px; background:var(--navy); border-radius:12px; padding:20px; }
.ts-title { font-family:var(--fh); font-size:1rem; font-weight:700; color:var(--white); margin-bottom:5px; }
.ts-sub { font-size:.82rem; color:rgba(255,255,255,.6); margin-bottom:12px; }
.ts-form { display:flex; gap:8px; }
.ts-form input { flex:1; padding:9px 12px; border:1.5px solid rgba(255,255,255,.2); border-radius:var(--radius2); background:rgba(255,255,255,.1); color:var(--white); font-family:var(--fb); font-size:.85rem; min-width:0; }
.ts-form input::placeholder { color:rgba(255,255,255,.4); }
.ts-form input:focus { outline:none; border-color:var(--gold); }
.ts-form button { background:var(--gold); color:var(--white); border:none; padding:9px 16px; border-radius:var(--radius2); font-size:.82rem; font-weight:700; cursor:pointer; white-space:nowrap; flex-shrink:0; }
.location-cards { display:flex; flex-direction:column; gap:12px; }
.location-card { background:var(--white); border:1px solid var(--border); border-radius:11px; padding:18px 20px; box-shadow:var(--shadow); }
.location-card h4 { font-family:var(--fh); font-size:.93rem; font-weight:700; color:var(--navy); margin-bottom:6px; }
.location-card p { font-size:.82rem; color:var(--text2); line-height:1.6; }

/* ── ADMIN STYLES ────────────────────────────────────────── */
.admin-body { background:#F1F5F9; font-family:var(--fb); min-height:100vh; }
.admin-login-wrap { min-height:100vh; display:flex; align-items:center; justify-content:center; padding:20px; background:var(--navy); }
.admin-login-box { background:var(--white); border-radius:16px; padding:44px 40px; width:100%; max-width:420px; box-shadow:var(--shadow3); }
.admin-login-box img { height:80px; margin:0 auto 24px; }
.admin-login-box h2 { font-family:var(--fh); font-size:1.6rem; font-weight:800; color:var(--navy); text-align:center; margin-bottom:6px; }
.admin-login-box p { text-align:center; font-size:.85rem; color:var(--text3); margin-bottom:28px; }
.admin-layout { display:flex; min-height:100vh; }
.admin-sidebar { width:260px; background:var(--navy); padding:24px 0; flex-shrink:0; }
.sidebar-logo { padding:0 24px 24px; border-bottom:1px solid rgba(255,255,255,.1); margin-bottom:20px; }
.sidebar-logo img { height:60px; }
.sidebar-logo span { display:block; font-size:.7rem; color:rgba(255,255,255,.5); margin-top:6px; letter-spacing:1px; text-transform:uppercase; }
.sidebar-nav a { display:flex; align-items:center; gap:10px; padding:11px 24px; color:rgba(255,255,255,.65); font-size:.87rem; font-weight:500; transition:background .2s,color .2s; }
.sidebar-nav a:hover, .sidebar-nav a.active { background:rgba(255,255,255,.08); color:var(--white); }
.sidebar-nav a.active { border-right:3px solid var(--gold); }
.sidebar-nav .s-icon { font-size:1rem; width:20px; }
.admin-main { flex:1; padding:28px; overflow-y:auto; }
.admin-header { display:flex; align-items:center; justify-content:space-between; margin-bottom:28px; }
.admin-header h1 { font-family:var(--fh); font-size:1.6rem; font-weight:800; color:var(--navy); }
.admin-header p { font-size:.84rem; color:var(--text3); }
.stat-cards { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; margin-bottom:28px; }
.stat-card { background:var(--white); border-radius:var(--radius); padding:22px; box-shadow:var(--shadow); border-left:4px solid var(--gold); }
.stat-card .sc-num { font-family:var(--fh); font-size:2.2rem; font-weight:900; color:var(--navy); line-height:1; margin-bottom:5px; }
.stat-card .sc-label { font-size:.78rem; color:var(--text3); font-weight:600; text-transform:uppercase; letter-spacing:.5px; }
.data-table-wrap { background:var(--white); border-radius:var(--radius); box-shadow:var(--shadow); overflow:hidden; }
.table-header { padding:20px 24px; border-bottom:1px solid var(--border); display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap; }
.table-header h3 { font-family:var(--fh); font-size:1.15rem; font-weight:700; color:var(--navy); }
.search-bar { display:flex; gap:10px; }
.search-bar input { padding:9px 14px; border:1.5px solid var(--border); border-radius:var(--radius2); font-family:var(--fb); font-size:.86rem; min-width:220px; }
.search-bar input:focus { outline:none; border-color:var(--gold); }
.search-bar button { background:var(--navy); color:var(--white); border:none; padding:9px 18px; border-radius:var(--radius2); font-size:.84rem; font-weight:600; cursor:pointer; }
.filter-row { padding:14px 24px; border-bottom:1px solid var(--border); display:flex; gap:10px; flex-wrap:wrap; }
.filter-btn { padding:6px 14px; border-radius:100px; border:1.5px solid var(--border); background:var(--white); font-size:.78rem; font-weight:600; cursor:pointer; transition:all .2s; color:var(--text2); }
.filter-btn.active, .filter-btn:hover { background:var(--navy); color:var(--white); border-color:var(--navy); }
.data-table { width:100%; border-collapse:collapse; }
.data-table th { padding:12px 16px; text-align:left; font-family:var(--fo); font-size:.68rem; font-weight:600; letter-spacing:1.5px; text-transform:uppercase; color:var(--text3); background:var(--cream); border-bottom:1px solid var(--border); }
.data-table td { padding:14px 16px; border-bottom:1px solid var(--border2); font-size:.85rem; color:var(--text); }
.data-table tr:last-child td { border-bottom:none; }
.data-table tr:hover td { background:var(--cream); }
.td-tracking { font-family:var(--fo); font-weight:700; color:var(--navy); letter-spacing:.5px; }
.td-actions { display:flex; gap:6px; }
.td-actions a, .td-actions button { padding:5px 11px; border-radius:5px; font-size:.76rem; font-weight:600; border:none; cursor:pointer; text-decoration:none; }
.btn-view { background:var(--blue-lt); color:var(--blue); }
.btn-delete { background:#FEF2F2; color:#DC2626; }
.detail-box { background:var(--white); border-radius:var(--radius); box-shadow:var(--shadow); overflow:hidden; }
.detail-header { background:var(--navy); padding:22px 28px; display:flex; align-items:center; justify-content:space-between; }
.detail-header h2 { font-family:var(--fh); font-size:1.3rem; font-weight:800; color:var(--white); }
.detail-body { padding:28px; }
.detail-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:20px; margin-bottom:24px; }
.detail-field label { font-family:var(--fo); font-size:.67rem; font-weight:600; color:var(--text3); letter-spacing:1px; text-transform:uppercase; display:block; margin-bottom:4px; }
.detail-field .dval { font-size:.92rem; font-weight:600; color:var(--navy); }
.detail-field .dval-lg { font-size:1rem; font-weight:700; }
.status-select { padding:7px 12px; border:1.5px solid var(--border); border-radius:var(--radius2); font-family:var(--fb); font-size:.86rem; }
.status-select:focus { outline:none; border-color:var(--gold); }
.admin-notes-area { width:100%; padding:12px; border:1.5px solid var(--border); border-radius:var(--radius2); font-family:var(--fb); font-size:.88rem; min-height:100px; resize:vertical; }
.admin-notes-area:focus { outline:none; border-color:var(--gold); }
.btn-save-status { background:var(--green); color:var(--white); border:none; padding:10px 22px; border-radius:var(--radius2); font-size:.86rem; font-weight:700; cursor:pointer; }
.alert { padding:12px 16px; border-radius:8px; font-size:.86rem; font-weight:600; margin-bottom:16px; }
.alert-success { background:#F0FDF4; border:1px solid #86EFAC; color:#166534; }
.alert-error { background:#FEF2F2; border:1px solid #FECACA; color:#DC2626; }
.pagination { display:flex; gap:6px; justify-content:center; margin-top:20px; padding:16px; }
.page-btn { padding:8px 14px; border-radius:var(--radius2); border:1.5px solid var(--border); background:var(--white); font-size:.82rem; font-weight:600; cursor:pointer; color:var(--text2); text-decoration:none; transition:all .2s; }
.page-btn.active, .page-btn:hover { background:var(--navy); color:var(--white); border-color:var(--navy); }

/* ── FOOTER ──────────────────────────────────────────────── */
footer { background: var(--navy); color: var(--white); }
.ft-main { padding: 64px 5% 44px; }
.ft-grid {
  max-width: 1300px; margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 52px;
  margin-bottom: 44px;
}
.ft-brand img { height: 100px; width: auto; object-fit: contain; margin-bottom: 16px; display: block; }
.ft-brand p { font-size: .84rem; line-height: 1.78; color: rgba(255,255,255,.52); max-width: 270px; }
.ft-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.ft-badges span { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: 100px; padding: 4px 12px; font-size: .72rem; color: rgba(255,255,255,.7); font-weight: 500; }
.ft-col h5 { font-family: var(--fo); font-size: .68rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.ft-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.ft-col ul li a { font-size: .84rem; color: rgba(255,255,255,.52); transition: color .2s; display: block; }
.ft-col ul li a:hover { color: var(--white); }
.f-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.f-contact-item .f-icon { color: var(--gold); font-size: .9rem; flex-shrink: 0; margin-top: 2px; }
.f-contact-item a,
.f-contact-item span:last-child { font-size: .84rem; color: rgba(255,255,255,.52); line-height: 1.55; transition: color .2s; }
.f-contact-item a:hover { color: var(--white); }
.ft-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 5%; }
.ft-bottom-inner { max-width: 1300px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.ft-bottom p { font-size: .78rem; color: rgba(255,255,255,.32); }
.ft-bottom a { color: rgba(255,255,255,.45); font-size: .78rem; }
.ft-bottom a:hover { color: var(--gold); }

.admin-status-grid { display:grid; grid-template-columns:1fr 1fr 1fr; gap:16px; margin-bottom:16px; }

/* ── WA FLOAT ────────────────────────────────────────────── */
.wa-float { position:fixed; bottom:26px; right:26px; z-index:9999; width:52px; height:52px; background:#25D366; border-radius:50%; display:flex; align-items:center; justify-content:center; box-shadow:0 4px 18px rgba(37,211,102,.5); transition:transform .2s; }
.wa-float:hover { transform:scale(1.1); }

/* ── SCROLL REVEAL ───────────────────────────────────────── */
.reveal { opacity:0; transform:translateY(20px); transition:opacity .6s cubic-bezier(.16,1,.3,1),transform .6s cubic-bezier(.16,1,.3,1); }
.reveal.revealed { opacity:1; transform:none; }

/* ── MAP PLACEHOLDER ─────────────────────────────────────── */
.map-placeholder { border-radius:14px; overflow:hidden; border:1px solid var(--border); height:300px; background:var(--cream2); display:flex; align-items:center; justify-content:center; flex-direction:column; gap:11px; box-shadow:var(--shadow2); }
.map-placeholder p { font-size:.88rem; color:var(--text3); }
.map-placeholder small { font-size:.74rem; color:var(--text3); }

/* ── RESPONSIVE ──────────────────────────────────────────── */
/* ═══════════════════════════════════════════════
   RESPONSIVE — TABLET (≤1100px)
═══════════════════════════════════════════════ */
@media (max-width:1100px) {
  /* Header */
  .header-phone { display:none; }

  /* Hero */
  .hero-inner { grid-template-columns:1fr; gap:36px; }
  .hero-form-card { max-width:100%; width:100%; }
  .hero h1 { font-size:clamp(2rem,5vw,3.4rem); }

  /* Sections */
  .why-inner { grid-template-columns:1fr; gap:40px; }
  .svc-grid  { grid-template-columns:repeat(2,1fr); }
  .fleet-grid { grid-template-columns:repeat(2,1fr); }
  .testi-grid { grid-template-columns:repeat(2,1fr); }
  .process-grid { grid-template-columns:repeat(2,1fr); }
  .process-step:nth-child(2)::after,
  .process-step:nth-child(4)::after { display:none; }
  .pricing-grid { grid-template-columns:1fr; max-width:480px; margin-left:auto; margin-right:auto; }
  .service-block { grid-template-columns:1fr; gap:32px; }
  .service-block.flip { direction:ltr; }
  .sb-visual { min-height:260px; }
  .story-grid { grid-template-columns:1fr; gap:40px; }
  .team-grid  { grid-template-columns:repeat(2,1fr); }
  .values-grid { grid-template-columns:1fr 1fr; }

  /* Stats */
  .stats-inner { grid-template-columns:repeat(2,1fr); }
  .stat-box { border-right:none; border-bottom:1px solid rgba(255,255,255,.1); }

  .admin-status-grid { grid-template-columns:1fr; }

  /* Quote page layout */
  .quote-page-grid { grid-template-columns:1fr !important; }

  /* Contact page layout */
  .contact-page-grid { grid-template-columns:1fr !important; }
  .contact-map-grid  { grid-template-columns:1fr !important; }

  /* Track page */
  .sr-grid { grid-template-columns:1fr 1fr; }

  /* Admin */
  .admin-layout { flex-direction:column; }
  .admin-sidebar { width:100%; padding:16px 0; }
  .sidebar-nav { display:flex; flex-wrap:wrap; gap:0; }
  .sidebar-nav a { flex:1 1 auto; min-width:120px; text-align:center; padding:10px 16px; }
  .stat-cards { grid-template-columns:repeat(2,1fr); }
  .detail-grid { grid-template-columns:1fr; }

  /* Footer */
  .ft-grid { grid-template-columns:1fr 1fr; gap:36px; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤768px)
═══════════════════════════════════════════════ */
@media (max-width:768px) {
  /* Header */
  .main-nav, .header-actions { display:none; }
  .burger { display:flex; }
  .header-inner { height:70px; }
  .site-header { height:70px; }
  .site-logo img { height:60px; }
  .mobile-menu { top:70px; }
  .page-hero  { margin-top:105px; }

  /* Hero */
  .hero { margin-top:70px; min-height:auto; padding-bottom:40px; }
  .hero-inner { padding:50px 5% 40px; gap:28px; }
  .hero h1 { font-size:clamp(1.9rem,7vw,2.8rem); }
  .hero-sub { font-size:.9rem; margin-bottom:24px; }
  .hero-trust { gap:10px; margin-bottom:24px; }
  .trust-pill { font-size:.72rem; padding:5px 10px; }
  .hero-actions { gap:10px; }
  .btn-hero-primary, .btn-hero-ghost { padding:12px 20px; font-size:.84rem; width:100%; justify-content:center; }
  .hfc-body { padding:20px; }
  .hfc-header { padding:16px 20px; }
  .form-row-2 { grid-template-columns:1fr; }

  /* Trust bar */
  .trust-bar-inner { justify-content:center; gap:8px; }
  .tb-sep { display:none; }
  .tb-item { font-size:.74rem; }

  /* Stats */
  .stats-inner { grid-template-columns:repeat(2,1fr); padding:40px 5%; }
  .stat-num { font-size:2.2rem; }

  /* Sections */
  .section { padding:52px 5%; }
  .sec-head { margin-bottom:36px; }
  .section-title { font-size:clamp(1.6rem,5vw,2.2rem); }
  .svc-grid  { grid-template-columns:1fr; }
  .fleet-grid { grid-template-columns:1fr 1fr; }
  .testi-grid { grid-template-columns:1fr; }
  .process-grid { grid-template-columns:1fr; }
  .process-step::after { display:none !important; }
  .pricing-grid { max-width:100%; }
  .why-logo-box img { width:120px; }

  /* Forms (global) */
  .form-row { grid-template-columns:1fr; }
  .form-row-2 { grid-template-columns:1fr; }

  /* Quote page */
  .quote-page-grid { grid-template-columns:1fr !important; gap:20px !important; }
  .quote-steps { border-radius:10px; }
  .step-tabs { overflow-x:auto; -webkit-overflow-scrolling:touch; }
  .step-tab { font-size:.68rem; padding:14px 8px; white-space:nowrap; flex-shrink:0; }
  .step-tab-label { display:none; }
  .step-content { padding:20px; }
  .freight-type-grid { grid-template-columns:repeat(3,1fr); gap:9px; }
  .ft-btn { padding:12px 6px; }
  .ft-btn .ft-icon { font-size:1.4rem; }
  .ft-btn .ft-label { font-size:.64rem; }
  .step-nav { flex-direction:column-reverse; gap:8px; }
  .step-nav-end { flex-direction:column; }
  .btn-step-next, .btn-step-back, .btn-step-submit { width:100%; text-align:center; justify-content:center; padding:12px; }
  .trust-badges { justify-content:center; }

  /* Contact page */
  .contact-page-grid { grid-template-columns:1fr !important; gap:28px !important; }
  .contact-map-grid  { grid-template-columns:1fr !important; gap:20px !important; }
  .ts-form { flex-direction:column; gap:8px; }
  .ts-form button { width:100%; }
  .map-placeholder { height:220px; }

  /* Track page */
  .sr-grid { grid-template-columns:1fr; }
  .track-form-box { padding:24px 20px; }
  .sr-body { padding:20px; }

  /* About page */
  .story-grid { gap:28px; }
  .story-img-wrap img { height:260px; }
  .team-grid  { grid-template-columns:1fr 1fr; }
  .values-grid { grid-template-columns:1fr; }
  .cert-badges { gap:9px; }
  .cert-badge { padding:10px 14px; font-size:.78rem; }

  /* Services page */
  .sb-visual { min-height:200px; }
  .sb-info h2 { font-size:1.4rem; }
  .service-block { padding:44px 0; }

  /* CTA */
  .cta-inner { padding:60px 5%; }
  .cta-actions { flex-direction:column; align-items:center; }
  .cta-actions .btn { width:100%; max-width:320px; justify-content:center; }

  /* Admin */
  .admin-main { padding:16px; }
  .admin-header { flex-direction:column; align-items:flex-start; gap:12px; }
  .stat-cards { grid-template-columns:1fr 1fr; gap:12px; }
  .table-header { flex-direction:column; align-items:flex-start; }
  .search-bar { width:100%; }
  .search-bar input { flex:1; min-width:0; }
  .data-table { font-size:.78rem; }
  .data-table th, .data-table td { padding:10px 10px; }
  .filter-row { padding:10px 16px; }

  /* Footer */
  .ft-grid { grid-template-columns:1fr; gap:28px; }
  .ft-brand p { max-width:100%; }
  .ft-bottom-inner { flex-direction:column; text-align:center; gap:6px; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤480px)
═══════════════════════════════════════════════ */
@media (max-width:480px) {
  /* Header */
  .site-logo img { height:52px; }

  /* Hero */
  .hero h1 { font-size:1.8rem; }
  .hero-inner { padding:40px 4% 32px; }

  /* Stats */
  .stats-inner { grid-template-columns:1fr 1fr; }

  /* Sections */
  .section { padding:44px 4%; }
  .section-title { font-size:1.6rem; }

  /* Fleet */
  .fleet-grid { grid-template-columns:1fr; }

  /* Quote — icon-only freight buttons on tiny screens */
  .freight-type-grid { grid-template-columns:repeat(3,1fr); }
  .ft-btn .ft-label { display:none; }
  .ft-btn .ft-icon { font-size:1.6rem; margin-bottom:0; }
  .ft-btn { padding:14px 6px; }

  /* Team */
  .team-grid { grid-template-columns:1fr; }

  /* Admin */
  .stat-cards { grid-template-columns:1fr; }
  .td-actions a, .td-actions button { padding:4px 8px; }

  /* Track */
  .sr-grid { grid-template-columns:1fr; }
  .shipment-result .sr-header { flex-direction:column; align-items:flex-start; gap:10px; }
}
