/* =========================================
   ProServ33 – Modern Styles
   ========================================= */
:root{
  --navy:#0e2b4e; --navy-2:#123a69;
  --ink:#0b1a2b; --muted:#6b7892;
  --bg:#f4f7fb; --white:#fff; --line:#dbe3ee;
  --accent:#1a66c9; --ok:#179149; --danger:#d33b3b;
  --gradient: linear-gradient(135deg, #0e2b4e 0%, #1a66c9 100%);
  --shadow: 0 10px 30px rgba(15,44,79,.12);
  --shadow-lg: 0 20px 50px rgba(15,44,79,.18);
}

*{box-sizing:border-box}
html,body{
  margin:0; background:var(--bg); color:var(--ink);
  font:16px/1.65 Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,Helvetica,sans-serif;
  -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale;
  scroll-behavior: smooth;
}
img{max-width:100%;display:block}
a{color:var(--accent);text-decoration:none}
a:hover{text-decoration:underline}
.container{max-width:1180px;margin:0 auto;padding:0 24px}

::selection{background:#e7f0ff}

/* =========================================
   Header / Navigation
   ========================================= */
.site-header{
  position:sticky; top:0; z-index:70;
  background:rgba(255,255,255,.98);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
  transition:box-shadow .25s ease, transform .3s ease;
}
.site-header.is-elevated{ 
  box-shadow:0 10px 26px rgba(15,44,79,.14);
  transform: translateY(0);
}

.header__inner{ 
  display:flex; 
  align-items:center; 
  justify-content:space-between; 
  padding:12px 0;
  transition: padding .3s ease;
}
.brand{ 
  display:flex; 
  align-items:center; 
  gap:14px; 
  text-decoration:none;
  transition: transform .3s ease;
}
.brand:hover {
  transform: scale(1.03);
}
.brand__logo{ 
  width:120px; 
  height:120px; 
  object-fit:contain;
  transition: all .3s ease;
}
.brand__name{ 
  font-weight:800; 
  color:var(--navy); 
  letter-spacing:.2px; 
  font-size:20px;
  transition: all .3s ease;
}
.nav{ 
  display:flex; 
  gap:22px; 
  align-items:center;
}
.nav a{ 
  color:var(--navy);
  font-weight: 500;
  position: relative;
  padding: 14px 9px;
  transition: color .3s ease;
}
.nav a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width .3s ease;
}
.nav a:hover:after {
  width: 100%;
}

.nav__toggle{ 
  display:none; 
  background:none; 
  border:0; 
  cursor:pointer; 
  padding:8px;
  transition: transform .3s ease;
}
.nav__toggle:hover {
  transform: scale(1.1);
}
.nav__toggle span{ 
  display:block; 
  width:22px; 
  height:2px; 
  background:var(--navy); 
  margin:5px 0; 
  border-radius:1px;
  transition: all .3s ease;
}

@media (max-width:920px){
  .nav{ display:none }
  .nav__toggle{ display:block }
  .brand__logo{ width:105px; height:100px }
  .brand__name{ font-size:18px }
}

/* ---- Mobile menu: narrow, centered sheet ---- */
.mobile-menu{ display:none }
@media (max-width:920px){
  .mobile-menu{
    position:absolute; left:50%; top:100%;
    transform:translate(-50%,-8px) scale(.98);
    opacity:0; pointer-events:none; z-index:80;

    width:92vw; max-width:360px; max-height:70vh; overflow:auto;
    -webkit-overflow-scrolling:touch;

    background:#fff; border:1px solid var(--line); border-radius:14px;
    padding:8px; display:flex; flex-direction:column; gap:6px;
    box-shadow:0 18px 40px rgba(15,44,79,.16);
    transition:transform .18s ease, opacity .18s ease;
  }
  .mobile-menu.is-open{
    transform:translate(-50%,8px) scale(1);
    opacity:1; pointer-events:auto;
  }
  .mobile-menu a{
    display:block; padding:10px 12px;
    border-radius:10px; color:var(--navy); border:1px solid transparent;
    text-decoration:none;
    transition: all .3s ease;
  }
  .mobile-menu a:hover{
    background:#f6f9ff; border-color:#e7eef8;
    transform: translateX(5px);
  }
  .mobile-menu .btn--primary{
    margin-top:4px; padding:12px 14px; border-radius:10px; box-shadow:none;
  }
}

/* =========================================
   Buttons
   ========================================= */
.btn{
  position:relative;
  display:inline-flex; align-items:center; justify-content:center;
  padding:14px 24px; border-radius:12px; border:1px solid var(--line);
  cursor:pointer; text-decoration:none;
  transition:transform .08s ease, filter .2s ease, box-shadow .2s ease;
  user-select:none; overflow:hidden;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.btn--primary{ 
  background:#1962c0; 
  color:#fff; 
  box-shadow:var(--shadow);
  border: none;
}
.btn--light{ 
  background:#fff; 
  color:var(--navy);
  box-shadow: var(--shadow);
}
.btn--outline{ 
  background:transparent; 
  color:#ffffff; 
  border-color:var(--navy);
  box-shadow: var(--shadow);
}
.btn:hover{ 
  filter:brightness(1.06);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.btn:active{ transform:translateY(1px) }

/* Ripple element (JS setzt .ripple) */
.btn .ripple{
  position:absolute; border-radius:50%; pointer-events:none;
  width:2px; height:2px; left:var(--x,0); top:var(--y,0);
  transform:translate(-50%,-50%); background:rgba(255,255,255,.35);
  animation:ripple .6s ease forwards;
}
@keyframes ripple{
  to{ width:220px; height:220px; opacity:0 }
}

/* =========================================
   HERO (Modern mit Animationen)
   ========================================= */
.hero{ 
  position:relative; 

  color:#fff; 
  overflow:hidden;
  background: var(--gradient);
}
.hero__bg{ 
  position:absolute; 
  inset:0; 
  z-index:-2;
  overflow: hidden;
}
.hero__animation {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  animation: float 15s infinite linear;
}
.shape--1 {
  width: 80px;
  height: 80px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}
.shape--2 {
  width: 120px;
  height: 120px;
  top: 60%;
  left: 80%;
  animation-delay: -5s;
}
.shape--3 {
  width: 60px;
  height: 60px;
  top: 80%;
  left: 20%;
  animation-delay: -10s;
}
.shape--4 {
  width: 100px;
  height: 100px;
  top: 30%;
  left: 70%;
  animation-delay: -7s;
}
@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(-1000px) rotate(720deg);
    opacity: 0;
  }
}

.hero__grid{ 
  display:grid; 
  grid-template-columns:1.1fr .9fr; 
  gap:46px; 
  align-items:center; 
  padding:108px 0;
}
@media (max-width:1040px){ 
  .hero__grid{ 
    grid-template-columns:1fr; 
    padding:92px 20px;
    gap: 30px;
  } 
}

.hero h1{ 
  margin:0 0 .6rem; 
  font-size:clamp(2.2rem,1.2rem + 2.8vw,3.4rem); 
  line-height:1.1;
  font-weight: 700;
}
.hero__sub{ 
  margin:.2rem 0 1rem; 
  color:#e7eefc; 
  max-width:62ch;
  font-size: 1.2rem;
  font-weight: 300;
}
.hero__bullets{ 
  margin:0 0 12px 0; 
  color:#e1e9f9;
  list-style: none;
  padding: 0;
}
.hero__bullets li{ 
  margin:12px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero__visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hero__card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: transform .3s ease, box-shadow .3s ease;
}
.hero__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}
.hero__card-icon {
  margin-bottom: 12px;
  color: #fff;
}
.hero__card h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}
.hero__card p {
  margin: 0;
  color: #e1e9f9;
  font-size: 0.95rem;
}

.cta {
  display: flex;
  gap: 16px;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* =========================================
   Sections / Cards / Tiles
   ========================================= */
.section{ padding:92px 0 }
.section--soft{ background:linear-gradient(180deg,#fff,var(--bg)) }
.section__head{ 
  margin-bottom:48px;
  text-align: center;
}
.section__head h2{ 
  margin:0 0 12px; 
  font-size:clamp(1.8rem,1.2rem + 1.8vw,2.4rem); 
  color:var(--navy);
  font-weight: 700;
}
.lead{ 
  color:var(--muted); 
  max-width:72ch;
  margin: 0 auto;
  font-size: 1.2rem;
}

/* Stats Section */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin: 60px 0;
}
.stat {
  text-align: center;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  transition: transform .3s ease, box-shadow .3s ease;
}
.stat:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.stat__number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}
.stat__label {
  color: var(--muted);
  font-weight: 500;
}
@media (max-width: 768px) {
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .stats {
    grid-template-columns: 1fr;
  }
}

.tile-grid{ 
  display:grid; 
  grid-template-columns:repeat(3,1fr); 
  gap:24px;
}
@media (max-width:980px){ 
  .tile-grid{ 
    grid-template-columns:1fr 1fr;
  } 
}
@media (max-width:620px){ 
  .tile-grid{ 
    grid-template-columns:1fr;
  } 
}
/* Bestehende tile-grid Klasse erweitern */
.tile-grid[style*="grid-template-columns: repeat(2, 1fr)"] {
  max-width: 800px;
  margin: 0 auto;
}

/* Mobile View für 2-Spalten Layout */
@media (max-width: 768px) {
  .tile-grid[style*="grid-template-columns: repeat(2, 1fr)"] {
    grid-template-columns: 1fr !important;
    max-width: 100%;
  }
}

.tile{
  display:flex;
  flex-direction: column;
  border-radius:18px; 
  overflow:hidden; 
  border:1px solid var(--line); 
  background:#fff;
  box-shadow:var(--shadow);
  text-decoration:none; 
  transition:transform .18s ease, box-shadow .28s ease;
  position: relative;
  height: 100%;
}
.tile:hover{ 
  transform:translateY(-8px); 
  box-shadow:var(--shadow-lg);
}
.tile__icon {
  padding: 30px 30px 0;
  color: var(--accent);
}
.tile__body{ 
  padding:0 30px 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.tile h3{ 
  margin:.2rem 0 .4rem; 
  color:var(--navy);
  font-size: 1.4rem;
}
.tile p{ 
  margin:.2rem 0 1rem; 
  color:#4b5a73;
  flex-grow: 1;
}
.tile ul{ 
  margin:0 0 16px 0; 
  color:#495a74;
  list-style: none;
  padding: 0;
}
.tile ul li {
  margin: 8px 0;
  position: relative;
  padding-left: 24px;
}
.tile ul li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--ok);
  font-weight: bold;
}
.tile__link{ 
  color:var(--accent); 
  font-weight:600;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.tile__link:after {
  content: '→';
  transition: transform .3s ease;
}
.tile:hover .tile__link:after {
  transform: translateX(5px);
}

/* Grid & Cards */
.grid{ display:grid; gap:24px }
.cols-2{ grid-template-columns:repeat(2,1fr) }
@media (max-width:820px){ .cols-2{ grid-template-columns:1fr } }

.card{ 
  background:#fff; 
  border:1px solid var(--line); 
  border-radius:16px; 
  overflow:hidden; 
  box-shadow:var(--shadow);
  transition: transform .3s ease, box-shadow .3s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.card__body{ padding:30px }
.card h3{ margin:.2rem 0 .4rem; color:var(--navy); font-size: 1.4rem; }
.card p{ margin:0 0 16px; color:#4b5a73; }
.card__image {
  height: 200px;
  overflow: hidden;
}
.card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.card:hover .card__image img {
  transform: scale(1.05);
}

.facts {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}
.facts li {
  margin: 12px 0;
  padding-left: 24px;
  position: relative;
}
.facts li:before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

/* =========================================
   Forms
   ========================================= */
.form .form__grid{ 
  display:grid; 
  gap:16px; 
  grid-template-columns:repeat(2,1fr);
}
.form .span-2 {
  grid-column: span 2;
}
@media (max-width:720px){ 
  .form .form__grid{ 
    grid-template-columns:1fr;
  }
  .form .span-2 {
    grid-column: span 1;
  }
}
.form label{ 
  display:flex; 
  flex-direction:column; 
  gap:8px; 
  font-weight:600; 
  color:var(--navy);
}
.form input,
.form textarea,
.form select {
  background:#fff; 
  border:1px solid var(--line); 
  border-radius:12px; 
  color:var(--ink); 
  padding:14px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.form input:focus,
.form textarea:focus,
.form select:focus{ 
  outline:none; 
  border-color:var(--accent); 
  box-shadow:0 0 0 3px rgba(26,102,201,.2);
}
.form textarea{ min-height:120px; resize: vertical; }
.form .form__footer{ 
  margin-top:20px; 
  display:flex; 
  gap:12px; 
  align-items:center; 
  flex-wrap:wrap;
}

.alert-success{
  display:none; 
  margin-left:4px; 
  padding:12px 16px; 
  border-radius:10px;
  background:#e6f6ea; 
  color:#106b37; 
  font-weight:700; 
  border:1px solid #bfe6cf;
  width: 100%;
}
.alert-error{
  display:none; 
  margin-left:4px; 
  padding:12px 16px; 
  border-radius:10px;
  background:#fdeaea; 
  color:#8b1f1f; 
  font-weight:700; 
  border:1px solid #f0c4c4;
  width: 100%;
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.contact-icon {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 4px;
}

/* =========================================
   FAQ
   ========================================= */
.faq {
  max-width: 800px;
  margin: 0 auto;
}
.faq__item {
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: box-shadow .3s ease;
}
.faq__item:hover {
  box-shadow: var(--shadow);
}
.faq__item summary {
  padding: 20px;
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  list-style: none;
  position: relative;
  transition: background .3s ease;
}
.faq__item summary:hover {
  background: #f8fafd;
}
.faq__item summary::-webkit-details-marker {
  display: none;
}
.faq__item summary:after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--accent);
  transition: transform .3s ease;
}
.faq__item[open] summary:after {
  transform: translateY(-50%) rotate(45deg);
}
.faq__body {
  padding: 0 20px 20px;
  color: var(--muted);
}

/* =========================================
   Footer
   ========================================= */
.site-footer{ 
  background:#ffffff; 
  color: #fff;
  padding: 60px 0 0;
}
.footer__grid{ 
  display:grid; 
  grid-template-columns: 1fr 1fr 1fr;
  gap:40px;
  align-items:flex-start;
}
@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.footer__brand .brand__logo {
  width: 120px;
  height: 120px;
  margin-bottom: 16px;
}
.footer__brand p {
  color: #313131;
  max-width: 300px;
}
.footer__nav {
  display: flex;
  gap: 40px;
}
.footer__nav-group h4 {
  margin: 0 0 16px;
  color: #000000;
  font-size: 1.1rem;
}
.footer__nav-group a {
  display: block;
  color: #414141;
  margin: 8px 0;
  transition: color .3s ease;
}
.footer__nav-group a:hover {
  color: #fff;
}
.footer__contact h4 {
  margin: 0 0 16px;
  color: #000000;
  font-size: 1.1rem;
}
.footer__contact p {
  margin: 8px 0;
  color: #313131;
}
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 60px;
  padding: 20px 0;
}
.copyright {
  text-align: center;
  color: #313131;
  margin: 0;
}

/* =========================================
   Reveal Animations
   ========================================= */
.reveal{ 
  opacity:0; 
  transform:translateY(30px); 
  transition:opacity .8s ease, transform .8s ease;
}
.reveal.is-visible{ 
  opacity:1; 
  transform:none;
}

/* =========================================
   Reduced Motion
   ========================================= */
@media (prefers-reduced-motion:reduce){
  *{ 
    animation:none !important; 
    transition:none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
/* =========================================
   Process Section
   ========================================= */
.process {
  max-width: 800px;
  margin: 0 auto;
}
.process__item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
  position: relative;
}
.process__item:not(:last-child):after {
  content: '';
  position: absolute;
  left: 24px;
  top: 70px;
  bottom: -40px;
  width: 2px;
  background: var(--line);
}
.process__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.process__content {
  padding-top: 8px;
}
.process__content h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 1.3rem;
}
.process__content p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 768px) {
  .process__item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  .process__item:not(:last-child):after {
    left: 50%;
    top: 70px;
    bottom: -40px;
    transform: translateX(-50%);
  }
}
/* =========================================
   Tile Media (Bilder)
   ========================================= */
.tile__media {
  height: 230px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* =========================================
   Hero Background
   ========================================= */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* =========================================
   Process Section
   ========================================= */
.process {
  max-width: 800px;
  margin: 0 auto;
}
.process__item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
  position: relative;
}
.process__item:not(:last-child):after {
  content: '';
  position: absolute;
  left: 24px;
  top: 70px;
  bottom: -40px;
  width: 2px;
  background: var(--line);
}
.process__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.process__content {
  padding-top: 8px;
}
.process__content h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 1.3rem;
}
.process__content p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 768px) {
  .process__item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  .process__item:not(:last-child):after {
    left: 50%;
    top: 70px;
    bottom: -40px;
    transform: translateX(-50%);
  }
}

/* =========================================
   Footer (gleiche Farbe wie Index-Seite)
   ========================================= */
.site-footer{ 
  border-top:1px solid var(--line); 
  padding:30px 0; 
  background:#fbfcff;
}
.footer__grid{ 
  display:flex; 
  align-items:center; 
  justify-content:space-between; 
  gap:16px; 
  flex-wrap:wrap;
}
.brand--footer .brand__logo{ 
  width:100px; 
  height:100px;
}
/* =========================================
   Tile Media (Bilder)
   ========================================= */
.tile__media {
  height: 230px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* =========================================
   Hero Background
   ========================================= */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* =========================================
   Process Section
   ========================================= */
.process {
  max-width: 800px;
  margin: 0 auto;
}
.process__item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
  position: relative;
}
.process__item:not(:last-child):after {
  content: '';
  position: absolute;
  left: 24px;
  top: 70px;
  bottom: -40px;
  width: 2px;
  background: var(--line);
}
.process__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.process__content {
  padding-top: 8px;
}
.process__content h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 1.3rem;
}
.process__content p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 768px) {
  .process__item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  .process__item:not(:last-child):after {
    left: 50%;
    top: 70px;
    bottom: -40px;
    transform: translateX(-50%);
  }
}

/* =========================================
   Footer (gleiche Farbe wie Index-Seite)
   ========================================= */
.site-footer{ 
  border-top:1px solid var(--line); 
  padding:30px 0; 
  background:#fbfcff;
}
.footer__grid{ 
  display:flex; 
  align-items:center; 
  justify-content:space-between; 
  gap:16px; 
  flex-wrap:wrap;
}
.brand--footer .brand__logo{ 
  width:100px; 
  height:100px;
}
/* =========================================
   Logistik Animation im Hero
   ========================================= */
.logistik-animation {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.package {
  position: absolute;
  width: 40px;
  height: 30px;
  background: #1a66c9;
  border-radius: 4px;
  animation: float 15s infinite linear;
}

.package-1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
  background: #1a66c9;
}

.package-2 {
  top: 60%;
  left: 80%;
  animation-delay: -5s;
  background: #0e2b4e;
}

.package-3 {
  top: 40%;
  left: 70%;
  animation-delay: -10s;
  background: #123a69;
}

.truck {
  position: absolute;
  bottom: 20%;
  left: -100px;
  width: 80px;
  height: 40px;
  background: #fff;
  border-radius: 8px;
  animation: drive 20s infinite linear;
}

.truck:before {
  content: '';
  position: absolute;
  top: -15px;
  left: 10px;
  width: 30px;
  height: 15px;
  background: #fff;
  border-radius: 4px 4px 0 0;
}

.route-line {
  position: absolute;
  bottom: 40%;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,0.3);
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(-1000px) rotate(720deg);
    opacity: 0;
  }
}

@keyframes drive {
  0% {
    transform: translateX(-100px);
  }
  100% {
    transform: translateX(120vw);
  }
}