:root{
  --navy:#0b2036;
  --navy2:#081a2c;
  --accent:#ff7a00;
  --red:#b32021;
  --red2:#d23a2e;
  --light:#f3f5f8;
  --text:#122033;
  --shadow:0 10px 25px rgba(0,0,0,.15);
  --lux-red: #d72638;
  --lux-red-dark: #b71c2b;
}
html{
  scroll-behavior: smooth;
}


*{margin:0;padding:0;box-sizing:border-box;}
body{font-family:Inter,system-ui,Arial,sans-serif;color:var(--text);background:#fff;}
img{display:block;width:100%;}
a{text-decoration:none;color:inherit;}
.wrap{width:min(1200px,92vw);margin:auto;}

/* TOPBAR */
 .topbar{
  position:sticky;
  top:0;
  z-index:1000;

  background:linear-gradient(180deg,var(--navy),var(--navy2));
  color:#fff;
  padding:14px 0;

  box-shadow:0 4px 15px rgba(0,0,0,.25);
}

.topbar__inner{display:flex;align-items:center;justify-content:space-between;gap:18px;}
.brand{display:flex;align-items:center;gap:6px;white-space:nowrap;}
.logo-lux{font-size:28px;font-weight:900;color:var(--accent);letter-spacing:1px;}
.logo-transporte{font-size:24px;font-weight:800;color:#fff;}

.topnav{display:flex;gap:18px;font-weight:800;}
.topnav a{opacity:.92;border-bottom:2px solid transparent;padding:6px 2px;}
.topnav a:hover{opacity:1;color:var(--accent);}
.topnav .is-active{border-bottom-color:var(--accent);opacity:1;}

.topcontact{display:flex;gap:18px;font-weight:700;opacity:.95;white-space:nowrap;}

/* HERO */
/* HERO */
.hero{
  position: relative;
  height: 560px;
  overflow: hidden;
}

/* pozadinska slika */
.hero__bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  /* fokus desno (kombi + radnici), tekst je levo u panelu */
  object-position: 85% 50%;

  transform: scale(1.03);
  filter: brightness(1.03) contrast(1.05);
}

/* blagi overlay preko cele slike (da bude ujednačen kontrast) */
.hero__overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(7,18,32,.35) 0%,
    rgba(7,18,32,.20) 45%,
    rgba(7,18,32,.10) 75%,
    rgba(7,18,32,0) 100%
  );
  z-index: 1;
}

/* LEVI PANEL gde stoji tekst */
.hero__content{
  position: absolute;
  inset: 0;
  z-index: 2;

  display: flex;
  align-items: center;

  /* panel širina */
  width: min(620px, 60%);

  /* tamna pozadina panela */
  background: rgba(7,18,32,.78);

  /* razmak */
  padding: 80px 48px;
}

/* sadržaj u panelu */
.hero__stack{
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 520px;
}

/* NASLOV + podnaslov (bez tamnih traka) */
.hero h1{
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: .2px;
}

.hero p{
  margin: 0;
  color: rgba(255,255,255,.88);
  font-size: 16px;
  line-height: 1.55;
  max-width: 46ch;
}

/* mali “badge” ispod naslova */
.hero .badge{
  display: inline-block;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(255,255,255,.10);
  color: rgba(255,255,255,.92);
  font-weight: 600;
  font-size: 14px;
}

/* CTA dugme */
/*.hero .btn{
  width: fit-content;
  margin-top: 6px;
}
*/
.btn{
  display: inline-block;
  padding: 14px 26px;
  border-radius: 8px;
  background: var(--lux-red);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: .3px;
  transition: all .25s ease;
  box-shadow: 0 8px 20px rgba(215,38,56,.25);
}

.btn:hover{
  background: var(--lux-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(215,38,56,.35);
}

.btn:active{
  transform: translateY(0);
}
/* RESPONSIVE (telefon) */
@media (max-width: 820px){
  .hero{ height: 520px; }

  .hero__content{
    width: 100%;
    background: linear-gradient(
      180deg,
      rgba(7,18,32,.80) 0%,
      rgba(7,18,32,.65) 45%,
      rgba(7,18,32,.10) 100%
    );
    align-items: flex-start;
    padding: 110px 18px 18px;
  }

  .hero__bg{
    object-position: 70% 40%;
  }
}
.hero__subtitle{
  margin: -6px 0 6px;
  font-size: 22px;
  font-weight: 600;
  color: rgba(255,255,255,.9);
}

.badge{
  display: inline-block;
  padding: 8px 14px;
  border-radius: 10px;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
}
/* INTRO SEKCIJA (jače i upadljivije) */
.intro{
  padding:70px 0 45px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f8fb 100%);
  text-align:center;
}

.intro h2{
  font-size: clamp(28px, 2.6vw, 38px);
  font-weight: 900;
  margin-bottom: 14px;
  letter-spacing: .2px;
  color:#122033;
}

.intro h2::after{
  content:"";
  display:block;
  width:78px;
  height:4px;
  background: var(--accent);
  margin: 14px auto 0;
  border-radius: 3px;
}

.intro p{
  max-width: 900px;
  margin: 18px auto 0;
  font-size: 18px;
  line-height: 1.75;
  color:#2b3b4f;
  font-weight: 600;
}

}

.intro h2{
  font-size:26px;
  font-weight:900;
  margin-bottom:15px;
}

.intro p{
  max-width:800px;
  margin:0 auto;
  font-size:17px;
  line-height:1.6;
  color:#2b3b4f;
}

.ribbon{
  background:rgba(25,49,74,.90);
  color:#fff;
  padding:12px 18px;
  font-weight:900;
  transform:skewX(-10deg);
  width:fit-content;
  box-shadow:0 10px 22px rgba(0,0,0,.18);
}
.ribbon h1,.ribbon h2{transform:skewX(10deg);line-height:1.12;}
.ribbon h1{font-size:clamp(22px,3vw,36px);}
.ribbon h2{font-size:clamp(18px,2.2vw,28px);}
.ribbon--accent h2{color:var(--accent);}

.btn{
  display:inline-block;
  padding:14px 20px;
  font-weight:900;
  text-transform:uppercase;
  border-radius:3px;
  box-shadow:var(--shadow);
  transition:.15s;
  background:#fff;
  color:#111;
  width:fit-content;
}
.btn:hover{transform:translateY(-2px);}
.btn--red{background:linear-gradient(180deg,var(--red2),var(--red));color:#fff;}

/* SERVICES (NO OVERLAP) */
.services{padding:34px 0;background:#fff;}
.services__grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.card{background:#fff;box-shadow:var(--shadow);border:1px solid #e3e6ee;overflow:hidden;}
.card__img{height:200px;overflow:hidden;}
.card__img img{
  transition: transform .3s ease;
}

.card:hover .card__img img{
  transform: scale(1.05);
}

.card__img img{
  height:100%;
  object-fit:cover;}
.card{
  transition: transform .18s ease, box-shadow .18s ease;
}

.card:hover{
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(0,0,0,.18);
}

}
/* Kartica 1 */
.services__grid .card:nth-child(1) img{
  object-position:50% 60%;
}

/* Kartica 2 */
.services__grid .card:nth-child(2) img{
  object-position:50% 45%;
}

/* Kartica 3 */
.services__grid .card:nth-child(3) img{
  object-position:50% 80%;
}

.card__band{
  background:linear-gradient(180deg,var(--red2),var(--red));
  color:#fff;
  padding:12px 14px;
  font-weight:900;
}
.card__foot{background:#f4f4f4;text-align:center;padding:10px 12px;font-weight:800;}

/* LEISTUNGEN */
.leistungen{background:var(--light);padding:44px 0;}
/* MINI BENEFITS */

.mini-benefits{
  margin-top:35px;
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

.mini-benefits span{
  background:#ffffff;
  padding:12px 20px;
  border-radius:8px;
  box-shadow:0 8px 20px rgba(0,0,0,.1);
  font-weight:800;
  font-size:15px;
  color:#122033;
  border-left:4px solid var(--accent);
}


.leist__grid{display:grid;grid-template-columns:1.2fr .8fr;gap:26px;align-items:center;}
.leistungen h3{font-size:24px;font-weight:900;margin-bottom:14px;}
.leistungen ul{list-style:none;display:flex;flex-direction:column;gap:12px;}
.leistungen li{font-weight:800;position:relative;padding-left:26px;}
.leistungen li::before{content:"✓";position:absolute;left:0;color:var(--red);font-weight:900;}
.leist__img img{height:240px;object-fit:cover;object-position:50% 80%;box-shadow:var(--shadow);border:1px solid #e3e6ee;}

/* KONTAKT */
.kontakt{padding:100px 0 60px 0;background:#fff;}
.kontakt__grid{display:grid;grid-template-columns:1fr 1fr;gap:26px;align-items:start;}
.kontakt h3{font-size:24px;font-weight:900;margin-bottom:10px;}
.kontakt p{margin-bottom:10px;font-weight:600;color:#2b3b4f;}

.form{display:flex;flex-direction:column;gap:10px;}
.form input,.form textarea{
  padding:12px 12px;
  border:1px solid #d7dce6;
  border-radius:6px;
  font:inherit;
}
.form textarea{min-height:110px;resize:vertical;}

/* FOOTER */
.footer{
  background:#0b1b2c;
  color:white;
  padding:15px 0;
  text-align:center;
}

/* WHATSAPP BUTTON */
.wa{
  position: fixed;
  bottom: 25px;
  right: 35px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,.35);
  z-index: 99999;
  text-decoration: none;
}

.wa__icon{
  width: 28px;
  height: 28px;
  display: block;
}

.wa:hover{
  transform:scale(1.1);
}

#leistungen,
#kontakt{
  scroll-margin-top: 110px;
}

/* SEO SEKTION – PREMIUM */
.seo{
  padding:80px 0;
  background:linear-gradient(180deg,#f7f8fb 0%, #ffffff 100%);
  text-align:center;
}

.seo h2{
  font-size:clamp(28px,2.5vw,36px);
  font-weight:900;
  margin-bottom:25px;
  color:#122033;
}

.seo h2::after{
  content:"";
  display:block;
  width:90px;
  height:4px;
  background:var(--accent);
  margin:15px auto 0;
  border-radius:3px;
}

.seo p{
  max-width:850px;
  margin:18px auto;
  font-size:17px;
  line-height:1.75;
  color:#2b3b4f;
  font-weight:600;
}
@media (max-width: 900px){
  .topcontact{ display:none; }
  .topbar__inner{ gap:12px; }
  .topnav{ gap:12px; flex-wrap:wrap; }

  .hero{ height: 520px; }
  /* ako koristiš levi panel hero__content iz poslednje verzije */
  .hero__content{
    width: 100%;
    padding: 110px 18px 18px;
  }
  .hero__stack{ max-width: 560px; }

  .services__grid{ grid-template-columns: 1fr; }
  .leist__grid{ grid-template-columns: 1fr; }
  .kontakt__grid{ grid-template-columns: 1fr; }
}

@media (max-width: 480px){
  .hero{ height: 500px; }
  .hero h1{ font-size: 28px; }
  .hero__subtitle{ font-size: 18px; }
  .btn{ width: 100%; text-align:center; }
}