/* Logistik Solution — Navy & Maroon Brand Theme (matches logo) */
:root {
  --blue-900: #0f1a4d;
  --blue-800: #1a2a6b;
  --blue-700: #1e3a8a;
  --blue-600: #2b4fb8;
  --blue-500: #4a6fd4;
  --blue-100: #e6eaf5;
  --blue-50: #f4f6fc;
  --gold: #b91c2c;
  --red-700: #8b1e2b;
  --red-500: #d62828;
  --ink: #0b1220;
  --muted: #56637a;
  --line: #e3e8f0;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(15, 26, 77, 0.06);
  --shadow-md: 0 10px 30px rgba(15, 26, 77, 0.10);
  --shadow-lg: 0 20px 50px rgba(15, 26, 77, 0.18);
  --radius: 14px;
  --container: 1200px;
  --transition: 0.25s ease;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--blue-600); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--blue-800); }
h1, h2, h3, h4 { font-family: 'Manrope', 'Inter', sans-serif; color: var(--blue-900); line-height: 1.2; font-weight: 700; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); margin-bottom: 1rem; }
h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
p { color: var(--muted); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }

/* Top bar */
.topbar {
  background: var(--blue-900);
  color: #cbd7e6;
  font-size: 0.85rem;
  padding: 0.5rem 0;
}
.topbar .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; }
.topbar a { color: #cbd7e6; }
.topbar a:hover { color: var(--white); }

/* Header */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 0;
}
.logo {
  display: flex; align-items: center; gap: 0.65rem;
  font-family: 'Manrope', sans-serif;
  font-weight: 800; font-size: 1.15rem; color: var(--blue-900);
  letter-spacing: -0.02em;
}
.logo-img { height: 52px; width: auto; display: block; }
.footer .logo-img { height: 60px; filter: brightness(0) invert(1) drop-shadow(0 0 0 white); }
.footer .logo-img { height: 60px; }
.nav-links { display: flex; align-items: center; gap: 0.25rem; list-style: none; }
.nav-links a {
  padding: 0.55rem 0.85rem; border-radius: 8px;
  color: var(--ink); font-weight: 500; font-size: 0.94rem;
  transition: all var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  background: var(--blue-50); color: var(--blue-700);
}
.nav-cta {
  margin-left: 0.5rem;
  padding: 0.6rem 1.15rem !important;
  background: var(--blue-700) !important; color: white !important;
  border-radius: 999px !important;
}
.nav-cta:hover { background: var(--blue-800) !important; }
.menu-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 42px; height: 42px; border-radius: 8px;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
}
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--blue-900); transition: var(--transition); }

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex; align-items: center;
  color: white;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(10,37,64,0.92) 0%, rgba(15,76,146,0.75) 50%, rgba(10,37,64,0.55) 100%),
              url('../images/hero.jpg') center/cover no-repeat;
  z-index: -1;
}
.hero-content { padding: 6rem 0; max-width: 780px; }
.hero .eyebrow {
  display: inline-block;
  padding: 0.4rem 0.95rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 600;
  margin-bottom: 1.5rem;
}
.hero h1 { color: white; margin-bottom: 1.25rem; }
.hero h1 .accent { color: var(--gold); }
.hero .lede { font-size: 1.15rem; color: #d7e3f2; margin-bottom: 2rem; max-width: 620px; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-badges {
  display: flex; gap: 2rem; margin-top: 3rem; flex-wrap: wrap;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-badges div { color: #cbd7e6; font-size: 0.9rem; }
.hero-badges strong { display: block; color: white; font-size: 1.4rem; font-family: 'Manrope', sans-serif; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  font-weight: 600; font-size: 0.95rem;
  border: none; cursor: pointer;
  transition: all var(--transition);
}
.btn-primary { background: var(--gold); color: white; }
.btn-primary:hover { background: #8b1e2b; color: white; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: white; border: 1.5px solid rgba(255,255,255,0.4); }
.btn-outline:hover { background: white; color: var(--blue-900); }
.btn-blue { background: var(--blue-700); color: white; }
.btn-blue:hover { background: var(--blue-800); transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* Sections */
section { padding: 5rem 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.section-head .eyebrow {
  display: inline-block; padding: 0.35rem 0.9rem;
  background: var(--blue-50); color: var(--blue-700);
  font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 700;
  border-radius: 999px; margin-bottom: 1rem;
}
.section-head p { font-size: 1.05rem; margin-top: 0.75rem; }

/* Grids */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

/* Cards */
.card {
  background: white; border-radius: var(--radius);
  padding: 2rem; border: 1px solid var(--line);
  transition: all var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--blue-100); }
.card .icon {
  width: 54px; height: 54px; border-radius: 12px;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  color: white; display: grid; place-items: center;
  margin-bottom: 1.25rem; font-size: 1.5rem;
}
.card h3 { color: var(--blue-900); }
.card p { font-size: 0.95rem; }

/* Service cards with image */
.service-card {
  background: white; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line);
  transition: all var(--transition);
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card .img { height: 200px; overflow: hidden; position: relative; }
.service-card .img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .img img { transform: scale(1.05); }
.service-card .body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.service-card h3 { margin-bottom: 0.75rem; }
.service-card .link { margin-top: auto; padding-top: 1rem; font-weight: 600; color: var(--blue-700); }
.service-card .link::after { content: " →"; transition: margin var(--transition); }
.service-card:hover .link::after { margin-left: 0.35rem; }

/* Page hero (subpages) */
.page-hero {
  position: relative;
  padding: 8rem 0 5rem;
  color: white;
  isolation: isolate;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(115deg, rgba(10,37,64,0.9), rgba(20,97,193,0.6)), var(--page-bg, url('../images/hero.jpg')) center/cover;
}
.page-hero h1 { color: white; margin-bottom: 0.75rem; }
.page-hero p { color: #d7e3f2; max-width: 700px; font-size: 1.1rem; }
.crumbs { color: #a8bcd6; font-size: 0.85rem; margin-bottom: 1rem; letter-spacing: 0.05em; }
.crumbs a { color: #d7e3f2; }

/* Feature list */
.feature-list { list-style: none; }
.feature-list li {
  padding: 0.7rem 0 0.7rem 2rem; position: relative; color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0.7rem;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--blue-100); color: var(--blue-700);
  display: grid; place-items: center; font-size: 0.75rem; font-weight: 700;
}

/* Two-column split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 2rem; } }
.split .img-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.split .img-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* Stats */
.stats { background: var(--blue-900); color: white; padding: 4rem 0; }
.stats .grid { text-align: center; }
.stat-num { font-family: 'Manrope', sans-serif; font-size: 3rem; font-weight: 800; color: var(--gold); line-height: 1; }
.stat-label { color: #cbd7e6; margin-top: 0.5rem; font-weight: 600; }
.stat-desc { color: #8ca4c2; font-size: 0.9rem; margin-top: 0.5rem; }

/* Process / timeline */
.timeline { position: relative; padding: 1rem 0; }
.timeline::before {
  content: ""; position: absolute; left: 27px; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(to bottom, var(--blue-500), var(--blue-100));
}
.step { display: flex; gap: 1.5rem; padding: 1.25rem 0; align-items: flex-start; }
.step-num {
  flex-shrink: 0;
  width: 56px; height: 56px; border-radius: 50%;
  background: white; border: 2px solid var(--blue-500);
  color: var(--blue-700); font-weight: 800; font-family: 'Manrope', sans-serif;
  font-size: 1.25rem;
  display: grid; place-items: center;
  position: relative; z-index: 1;
  box-shadow: 0 0 0 6px white;
}
.step-body { padding-top: 0.5rem; }
.step-body h3 { color: var(--blue-900); margin-bottom: 0.25rem; }

/* CTA band */
.cta-band {
  background: linear-gradient(120deg, var(--blue-800), var(--blue-600));
  color: white; padding: 4rem 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(255,255,255,0.12) 0%, transparent 50%);
}
.cta-band > * { position: relative; }
.cta-band h2 { color: white; }
.cta-band p { color: #d7e3f2; margin: 1rem auto 2rem; max-width: 600px; }

/* Industries chips */
.chips { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
.chip {
  padding: 0.75rem 1.25rem;
  background: white; border: 1px solid var(--line);
  border-radius: 999px; font-weight: 600; color: var(--blue-900);
  transition: all var(--transition);
}
.chip:hover { background: var(--blue-700); color: white; border-color: var(--blue-700); transform: translateY(-2px); }
.chip .emoji { margin-right: 0.4rem; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info { }
.contact-item {
  display: flex; gap: 1rem; padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}
.contact-item:last-child { border-bottom: none; }
.contact-item .icon {
  width: 46px; height: 46px; border-radius: 10px;
  background: var(--blue-50); color: var(--blue-700);
  display: grid; place-items: center; font-size: 1.25rem; flex-shrink: 0;
}
.contact-item h4 { color: var(--blue-900); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.2rem; }
.contact-item p, .contact-item a { color: var(--ink); font-weight: 500; }

form { display: grid; gap: 1rem; background: var(--blue-50); padding: 2.25rem; border-radius: var(--radius); border: 1px solid var(--line); }
form label { font-size: 0.85rem; font-weight: 600; color: var(--blue-900); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } }
input, select, textarea {
  width: 100%; padding: 0.85rem 1rem;
  border: 1px solid var(--line); border-radius: 10px;
  font-family: inherit; font-size: 0.95rem;
  background: white; color: var(--ink);
  transition: border var(--transition), box-shadow var(--transition);
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(43,125,233,0.15);
}
textarea { resize: vertical; min-height: 120px; }
.form-msg { padding: 0.85rem 1rem; border-radius: 10px; font-size: 0.9rem; display: none; }
.form-msg.error { display: block; background: #fdecec; color: #8a1c1c; border: 1px solid #f5b5b5; }
.form-msg.success { display: block; background: #e6f7ec; color: #12653a; border: 1px solid #b6e3c8; }

/* Footer */
.footer {
  background: var(--blue-900); color: #a8bcd6;
  padding: 4rem 0 1.5rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
.footer h4 { color: white; font-size: 0.95rem; margin-bottom: 1.2rem; letter-spacing: 0.05em; text-transform: uppercase; }
.footer ul { list-style: none; display: grid; gap: 0.6rem; }
.footer a { color: #a8bcd6; font-size: 0.95rem; }
.footer a:hover { color: white; }
.footer .logo { color: white; margin-bottom: 1rem; }
.footer .logo small { color: #a8bcd6; }
.footer-bottom {
  padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  font-size: 0.85rem;
}

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* Mobile nav */
@media (max-width: 960px) {
  .menu-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 76px; left: 0; right: 0;
    background: white; flex-direction: column; align-items: stretch;
    padding: 1rem; gap: 0.25rem;
    border-top: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    transform: translateY(-120%); transition: transform var(--transition);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 0.85rem 1rem; }
  .nav-cta { margin: 0.5rem 0 0; text-align: center; }
}

@media (max-width: 640px) {
  section { padding: 3.5rem 0; }
  .hero-content { padding: 4rem 0; }
  .hero-badges { gap: 1.25rem; }
  form { padding: 1.5rem; }
}/* Hero Logo */

.hero-logo {
    text-align: center;
    margin-bottom: 25px;
}

.hero-logo img {
    max-width: 320px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 6px 12px rgba(0,0,0,0.35));
}
