/* KMF Dash - Transportation & Logistics */
:root {
  --steel: #2c4a6b;
  --steel-dark: #1d334d;
  --steel-light: #3c6088;
  --orange: #e8623a;
  --orange-light: #f07a55;
  --orange-dark: #d04d26;
  --gray: #eaedf0;
  --gray-dark: #d6dce3;
  --white: #fcfcfc;
  --text: #1e293b;
  --text-light: #6b7a8a;
  --radius: 18px;
  --radius-sm: 10px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', 'Segoe UI', system-ui, sans-serif; color: var(--text); background: var(--white); line-height: 1.7; overflow-x: hidden; }

/* Nav */
nav {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  background: rgba(44,74,107,0.92); backdrop-filter: blur(14px);
  padding: 0 5%; transition: 0.3s;
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; height: 66px;
}
.nav-logo { text-decoration: none; font-size: 1.2rem; font-weight: 800; color: var(--white); letter-spacing: -0.3px; }
.nav-logo .accent { color: var(--orange); }
.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.88rem;
  font-weight: 500; transition: 0.3s;
}
.nav-links a:hover { color: var(--orange); }
.nav-cta {
  background: var(--orange); color: var(--white) !important;
  padding: 9px 24px; border-radius: 50px; font-weight: 600;
  transition: 0.3s;
}
.nav-cta:hover { background: var(--orange-dark) !important; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,98,58,0.35); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2.5px; border-radius: 3px; background: var(--white); transition: 0.3s; }

/* Hero */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  background: linear-gradient(150deg, var(--steel-dark) 0%, var(--steel) 50%, var(--steel-light) 100%);
  padding: 100px 5% 60px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -30%; right: -10%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,98,58,0.06) 0%, transparent 70%);
}
.hero-content { max-width: 1280px; margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; align-items: center; }
.hero-text h1 { font-size: clamp(2rem, 3.6vw, 3rem); font-weight: 800; line-height: 1.15; color: var(--white); margin-bottom: 18px; }
.hero-text h1 .hl { color: var(--orange); }
.hero-text p { font-size: 1.05rem; color: rgba(255,255,255,0.6); line-height: 1.8; margin-bottom: 28px; max-width: 500px; }
.hero-tags { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 30px; }
.hero-tags .t {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(232,98,58,0.2);
  padding: 6px 16px; border-radius: 50px; font-size: 0.78rem;
  color: var(--orange); letter-spacing: 0.5px;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px;
  border-radius: 50px; font-size: 0.9rem; font-weight: 600;
  text-decoration: none; transition: all 0.3s; cursor: pointer; border: none;
}
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,98,58,0.35); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.2); }
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }
.hero-visual { display: flex; align-items: center; justify-content: center; }
.hero-graphic {
  width: 100%; max-width: 340px; padding: 36px 28px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius); text-align: center;
}
.hero-graphic .big { font-size: 2.2rem; font-weight: 800; color: var(--orange); line-height: 1; }
.hero-graphic .sub { font-size: 0.75rem; color: rgba(255,255,255,0.3); margin: 6px 0 20px; letter-spacing: 3px; text-transform: uppercase; }
.hero-graphic .divider { height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent); margin-bottom: 20px; }
.hero-graphic .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.hero-graphic .grid-3 div { font-size: 0.78rem; color: rgba(255,255,255,0.4); }

/* Stats */
.stripe {
  padding: 44px 5%; background: var(--gray);
}
.stripe-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; justify-content: space-around; flex-wrap: wrap; gap: 24px;
}
.s-item { text-align: center; min-width: 110px; }
.s-num { font-size: 2rem; font-weight: 800; color: var(--steel); line-height: 1; }
.s-num .sc { font-size: 1rem; color: var(--orange); }
.s-lbl { font-size: 0.8rem; color: var(--text-light); margin-top: 3px; }

/* Section */
.section { padding: 85px 5%; }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-tag {
  display: inline-block; font-size: 0.7rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 2.5px; color: var(--orange); margin-bottom: 8px;
  background: rgba(232,98,58,0.08); padding: 4px 14px; border-radius: 50px;
}
.section-title { font-size: clamp(1.6rem, 2.8vw, 2.2rem); font-weight: 800; margin-bottom: 14px; color: var(--steel); }
.section-desc { font-size: 0.95rem; color: var(--text-light); max-width: 560px; line-height: 1.7; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header .section-desc { margin: 0 auto; }
.section.dark { background: var(--steel-dark); }
.section.dark .section-title { color: var(--white); }
.section.dark .section-desc { color: rgba(255,255,255,0.5); }
.section.dark .section-tag { color: var(--orange); background: rgba(232,98,58,0.1); }
.section.gray { background: var(--gray); }

/* Cards */
.g-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cd {
  background: var(--white); border-radius: var(--radius); padding: 34px 28px;
  transition: all 0.4s; border: 1px solid rgba(0,0,0,0.03);
  position: relative; overflow: hidden;
}
.cd:hover { transform: translateY(-6px); box-shadow: 0 14px 40px rgba(44,74,107,0.08); }
.cd .dot {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; margin-bottom: 16px;
  background: linear-gradient(135deg, var(--steel), var(--orange));
  color: var(--white);
}
.cd h3 { font-size: 1.05rem; margin-bottom: 10px; color: var(--steel); }
.cd p { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; margin-bottom: 14px; }
.cd .lk { color: var(--orange); text-decoration: none; font-weight: 600; font-size: 0.85rem; }

/* About */
.ab-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.ab-t p { margin-bottom: 14px; color: var(--text-light); font-size: 0.92rem; }
.ab-t p.b { color: var(--text); }
.ab-i {
  background: var(--gray); border-radius: var(--radius); padding: 30px;
  position: relative;
}
.ab-i::before {
  content: ''; position: absolute; top: 0; left: 30px; right: 30px;
  height: 3px; background: var(--orange); border-radius: 0 0 3px 3px;
}
.ab-i h3 { font-size: 1rem; margin-bottom: 18px; color: var(--steel); }
.ab-r { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid rgba(0,0,0,0.03); font-size: 0.85rem; }
.ab-r:last-child { border-bottom: none; }
.ab-r .l { color: var(--text-light); }
.ab-r .v { font-weight: 600; }

/* Steps */
.st-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.st {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-sm); padding: 28px 22px; transition: 0.3s;
}
.st:hover { border-color: rgba(232,98,58,0.2); }
.st .i { font-size: 0.7rem; font-weight: 700; color: var(--orange); letter-spacing: 1px; margin-bottom: 8px; }
.st h4 { font-size: 0.95rem; color: var(--white); margin-bottom: 8px; }
.st p { font-size: 0.82rem; color: rgba(255,255,255,0.45); line-height: 1.6; }

/* Industries */
.in-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.in-item {
  text-align: center; padding: 22px 12px; border-radius: var(--radius-sm);
  background: var(--white); border: 1px solid rgba(0,0,0,0.03);
  transition: 0.3s; cursor: default;
}
.in-item:hover { border-color: var(--orange); transform: translateY(-3px); box-shadow: 0 6px 16px rgba(0,0,0,0.04); }
.in-item .e { font-size: 1.5rem; margin-bottom: 6px; }
.in-item span { display: block; font-size: 0.82rem; font-weight: 500; color: var(--text); }

/* Values */
.v-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.v-item { background: var(--white); border-radius: var(--radius-sm); padding: 28px 22px; border: 1px solid rgba(0,0,0,0.03); }
.v-item .n { font-size: 1.4rem; font-weight: 700; color: rgba(232,98,58,0.08); margin-bottom: 6px; }
.v-item h4 { color: var(--steel); margin-bottom: 8px; font-size: 0.95rem; }
.v-item p { font-size: 0.85rem; color: var(--text-light); line-height: 1.7; }

/* Testimonials */
.t-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.t-card { background: var(--white); border-radius: var(--radius-sm); padding: 28px; border: 1px solid rgba(0,0,0,0.03); }
.t-stars { color: #f59e0b; font-size: 0.9rem; margin-bottom: 14px; }
.t-text { font-size: 0.88rem; color: var(--text-light); line-height: 1.8; margin-bottom: 18px; }
.t-author { display: flex; align-items: center; gap: 10px; }
.t-av {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--steel), var(--orange));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: 0.85rem;
}
.t-n { font-weight: 600; font-size: 0.85rem; }
.t-r { font-size: 0.75rem; color: var(--text-light); }

/* CTA */
.cta-b {
  background: linear-gradient(150deg, var(--steel-dark) 0%, var(--steel) 60%, var(--steel-light) 100%);
  text-align: center; padding: 65px 5%;
}
.cta-b h2 { font-size: clamp(1.5rem, 2.8vw, 2.1rem); color: var(--white); margin-bottom: 12px; }
.cta-b p { font-size: 1rem; color: rgba(255,255,255,0.5); max-width: 460px; margin: 0 auto 26px; }

/* Footer */
footer { background: var(--steel-dark); color: rgba(255,255,255,0.4); padding: 45px 5% 22px; }
.f-4 { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 30px; }
.f-brand h3 { font-size: 1.15rem; color: var(--white); margin-bottom: 10px; }
.f-brand h3 .a { color: var(--orange); }
.f-brand p { font-size: 0.82rem; line-height: 1.7; max-width: 280px; }
.f-col h4 { font-size: 0.85rem; color: var(--white); margin-bottom: 14px; font-weight: 600; }
.f-col a { display: block; color: rgba(255,255,255,0.4); text-decoration: none; font-size: 0.82rem; margin-bottom: 8px; transition: 0.3s; }
.f-col a:hover { color: var(--orange); }
.f-bot { max-width: 1280px; margin: 0 auto; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.03); display: flex; justify-content: space-between; font-size: 0.78rem; }

/* Pages */
.p-h {
  padding: 115px 5% 55px; background: linear-gradient(150deg, var(--steel-dark) 0%, var(--steel) 100%);
  text-align: center;
}
.p-h h1 { font-size: clamp(1.8rem, 3vw, 2.5rem); color: var(--white); margin-bottom: 10px; }
.p-h p { color: rgba(255,255,255,0.5); font-size: 1rem; max-width: 540px; margin: 0 auto; }
.p-b { padding: 60px 5%; }
.p-bi { max-width: 860px; margin: 0 auto; }
.p-b h2 { font-size: 1.3rem; color: var(--steel); margin: 32px 0 14px; }
.p-b h3 { font-size: 1rem; color: var(--steel); margin: 24px 0 10px; }
.p-b p { margin-bottom: 12px; color: var(--text-light); line-height: 1.8; }
.p-b ul { margin: 10px 0 16px; padding-left: 20px; }
.p-b ul li { margin-bottom: 6px; color: var(--text-light); line-height: 1.7; }
.p-b a { color: var(--orange); }

/* Contact */
.c-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.c-f { background: var(--white); padding: 32px; border-radius: var(--radius-sm); border: 1px solid rgba(0,0,0,0.03); }
.fg { margin-bottom: 18px; }
.fg label { display: block; font-size: 0.82rem; font-weight: 600; margin-bottom: 4px; color: var(--steel); }
.fg input, .fg textarea, .fg select {
  width: 100%; padding: 10px 14px; border: 1.5px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-sm); font-size: 0.88rem; font-family: inherit; background: var(--white);
  transition: 0.3s;
}
.fg input:focus, .fg textarea:focus, .fg select:focus {
  outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(232,98,58,0.06);
}
.fg textarea { height: 100px; resize: vertical; }
.c-i { background: var(--gray); border-radius: var(--radius-sm); padding: 30px; }
.c-i h3 { font-size: 1rem; margin-bottom: 20px; color: var(--steel); }
.c-d { display: flex; gap: 10px; margin-bottom: 16px; }
.c-ic { width: 36px; height: 36px; border-radius: 8px; flex-shrink: 0; background: rgba(232,98,58,0.06); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; }
.c-t { font-size: 0.85rem; }
.c-t strong { display: block; font-size: 0.75rem; color: var(--text-light); margin-bottom: 1px; }

/* Animations */
.fu { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fu.on { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 36px; }
  .hero-visual { max-width: 280px; margin: 0 auto; }
  .g-3, .in-5 { grid-template-columns: repeat(2, 1fr); }
  .st-4 { grid-template-columns: repeat(2, 1fr); }
  .t-3 { grid-template-columns: 1fr; }
  .v-4 { grid-template-columns: repeat(2, 1fr); }
  .f-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed; top: 66px; left: 0; right: 0;
    background: rgba(44,74,107,0.98); flex-direction: column; padding: 20px 5%; gap: 14px;
    transform: translateY(-120%); transition: 0.35s; border-bottom: 1px solid rgba(255,255,255,0.04);
  }
  .nav-links.open { transform: translateY(0); }
  .stripe-inner { justify-content: center; gap: 20px; }
  .g-3, .in-5, .ab-2, .c-2 { grid-template-columns: 1fr; }
  .st-4 { grid-template-columns: 1fr; }
  .v-4 { grid-template-columns: 1fr; }
  .f-4 { grid-template-columns: 1fr; }
}
