:root {
  --orange: #FF5E14;
  --blue-dark: #05103B;
}

html { scroll-behavior: smooth; }
body {
  font-family: "Poppins", sans-serif;
  margin: 0;
}

/* === TOP BAR === */
.top-bar {
  background: #e24e0c;
  color: #fff;
  font-size: .9rem;
  padding: .35rem 0;
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 10000;
}
.top-bar a { color: #fff; text-decoration: none; }

/* === NAVBAR === */
.top-nav {
  position: fixed;
  top: 32px;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,.05);
  z-index: 9999;
}

/* ===== TOP BAR – MOBILE FIX ===== */
@media (max-width: 500px) {

  .top-bar {
    padding: .5rem 0;
    font-size: .8rem;
  }

  .top-bar .container {
    flex-direction: column;
    align-items: center;
    gap: .4rem;
    text-align: center;
  }

  .top-bar .container > div:first-child {
    flex-direction: column;
    gap: .25rem;
  }

  .top-bar .container > div:last-child {
    margin-top: .3rem;
  }

  .top-bar i {
    font-size: .85rem;
  }
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.4rem;
  color: #000;
  display: flex;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
}
.navbar-brand span { color: var(--orange); }

/* DESKTOP MENU */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.main-nav-link {
  font-weight: 600;
  color: #0f172a;
  text-decoration: none;
  white-space: nowrap;
}
.main-nav-link:hover,
.main-nav-link.active {
  color: var(--orange);
}

/* CTA */
.nav-cta {
  background: var(--orange);
  color: #fff;
  border: none;
  padding: .6rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
}

/* MOBILE TOGGLE */
.mobile-toggle {
  background: none;
  border: none;
  display: none;
}

/* MOBILE MENU */
.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  overflow: hidden;
  max-height: 0;
  transition: max-height .3s ease;
  border-top: 1px solid rgba(0,0,0,.06);
}

.mobile-menu.open {
  max-height: 500px;
}

.mobile-link {
  display: block;
  padding: .9rem 1.25rem;
  font-weight: 600;
  color: #0f172a;
  text-decoration: none;
}
.mobile-link:hover {
  background: rgba(0,0,0,.04);
  color: var(--orange);
}

.mobile-menu .nav-cta {
  width: calc(100% - 2rem);
  margin: 1rem;
}

/* === PAGE OFFSET === */
.page-wrapper {
  padding-top: 102px;
}

/* === RESPONSIVE RULES === */
@media (max-width: 991.98px) {
  .desktop-nav {
    display: none !important;
  }
  .mobile-toggle {
    display: block;
  }
}


.page-wrapper{ padding-top:102px; } /* 32 topbar + 70 nav */

/* === HERO === */
.hero-carousel{ position:absolute; inset:70px 0 0 0; z-index:0; }
.hero-carousel .carousel-item{
  height:calc(100vh - 70px); background-size:cover; background-position:center;
}
.hero-carousel .carousel-item::before{
  content:""; position:absolute; inset:0; background:rgba(6,3,21,.5);
}
.hero-content-wrap{
  position:relative; z-index:5; height:calc(100vh - 70px);
  display:flex; align-items:center;
}
.btn-org{ background:var(--orange); color:#fff; border:none; }
.btn-org:hover{ background:#e24e0c; color:#fff; }
.btn-blue{ background:var(--blue-dark); color:#fff; border:none; }
.btn-blue:hover{ background:#000a2b; }

/* === ABOUT === */
.section-tag{
  display:inline-block; background:rgba(255,94,20,.12); color:#FF5E14;
  font-weight:600; font-size:.8rem; text-transform:uppercase;
  padding:.35rem 1rem; border-radius:999px; margin-bottom:1rem;
}
.about-list li{
  display:flex; align-items:center; gap:.5rem; margin-bottom:.5rem; color:#333;
}
.about-list li i{ color:#FF5E14; }
.about-box{
  background:#fff; border-radius:1.3rem; padding:1.8rem 1.6rem;
  box-shadow:0 16px 35px rgba(0,0,0,.05); border:1px solid rgba(0,0,0,.02);
}

/* === SERVICES (cards) === */
#services{ background:#f8f9fa; }
#services .card{ transition:all .3s ease; }
#services .card:hover{ transform:translateY(-6px); box-shadow:0 8px 24px rgba(0,0,0,.1); }

/* === TRANSPORT-TYPER === */
#transport-types{ background:#fff; }
.service-box{
  background:#fff; border:1px solid rgba(0,0,0,.03); border-radius:1.2rem;
  padding:1.6rem 1.4rem 1.5rem; box-shadow:0 12px 30px rgba(0,0,0,.03);
  transition:.25s ease; height:100%;
}
.service-box:hover{ transform:translateY(-4px); box-shadow:0 16px 35px rgba(0,0,0,.05); }
.service-icon{
  width:54px; height:54px; border-radius:16px;
  background:rgba(255,94,20,.12); color:#FF5E14;
  display:flex; align-items:center; justify-content:center;
  font-size:1.5rem; margin-bottom:1rem;
}

/* === FLÅDE / MATERIEL === */
.fleet-card{
  background:#fff; border:1px solid rgba(0,0,0,.04); border-radius:1.1rem;
  box-shadow:0 14px 30px rgba(0,0,0,.05); overflow:hidden; transition:.25s ease;
}
.fleet-card:hover{ transform:translateY(-4px); }
.fleet-img img{ width:100%; height:220px; object-fit:cover; display:block; }
.badge-spec{
  background:rgba(255,94,20,.12); color:#FF5E14;
  border-radius:999px; font-size:.8rem; padding:.25rem .6rem;
}

/* === HVORFOR VÆLGE OS === */
.why-us-section{ background:#fff; }
.why-badge{
  display:inline-block; background:rgba(255,94,20,.12); color:#FF5E14;
  font-weight:600; font-size:.8rem; text-transform:uppercase;
  padding:.4rem 1rem; border-radius:999px; margin-bottom:1rem;
}
.why-items{ display:grid; gap:1rem; }
.why-item{
  display:flex; gap:1rem; align-items:flex-start;
  background:#fff; border:1px solid rgba(0,0,0,.03);
  border-radius:1.1rem; padding:1rem 1.1rem; box-shadow:0 8px 24px rgba(0,0,0,.03);
}
.why-icon{
  width:46px; height:46px; border-radius:1rem;
  background:rgba(255,94,20,.13);
  display:flex; align-items:center; justify-content:center;
  color:#FF5E14; font-size:1.3rem;
}
.why-card{
  background:#05103B; border-radius:1.6rem; padding:1.8rem;
  position:relative; overflow:hidden; min-height:280px;
  display:flex; align-items:center;
}
.why-card-body{ max-width:58%; color:#fff; }
.why-card h4{ color:#fff; }
.why-card-img{ position:absolute; right:-30px; bottom:-25px; width:45%; max-width:260px; }
.why-card-img img{ width:100%; height:auto; display:block; }
@media (max-width:991.98px){
  .why-card{ flex-direction:column; align-items:flex-start; }
  .why-card-body{ max-width:100%; }
  .why-card-img{ position:relative; right:0; bottom:0; width:70%; margin-top:1.5rem; }

  .avatar {
    width: 52px;
    height: 52px;
  }
}

/* === HOW (steps) === */
.how-steps .how-box{
  background:#fff; border-radius:1.1rem; padding:1.3rem 1.2rem;
  text-align:left; box-shadow:0 12px 25px rgba(0,0,0,.03);
}
.how-number{
  display:inline-block; background:rgba(255,94,20,.12); color:#FF5E14;
  font-weight:700; font-size:.9rem; border-radius:999px;
  padding:.35rem .8rem; margin-bottom:.8rem; letter-spacing:.04em;
}

/* === CONTACT === */
#contact{ background:#fff; }

/* === TESTIMONIALS === */
.quote-card{
  background:#fff; border:1px solid rgba(0,0,0,.04);
  border-radius:1.1rem; padding:1.4rem 1.2rem;
  box-shadow:0 12px 28px rgba(0,0,0,.04); position:relative;
}
.quote-mark{
  position:absolute; top:.8rem; right:1rem;
  color:rgba(255,94,20,.35); font-size:2rem;
}
.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden; /* vigtig */
  flex-shrink: 0;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* beskærer korrekt */
  display: block;
}


/* === COVERAGE === */
.coverage-list li{ margin-bottom:.35rem; }
.coverage-list i{ color:#FF5E14; margin-right:.35rem; }
.map-box{
  background:#fff; border-radius:1rem; padding:1rem;
  box-shadow:0 16px 35px rgba(0,0,0,.05); border:1px solid rgba(0,0,0,.03);
}

/* === CONTRACTS === */
.benefit{
  background:#fff; border:1px solid rgba(0,0,0,.04);
  border-radius:.9rem; padding:.6rem .8rem;
  box-shadow:0 10px 24px rgba(0,0,0,.04);
}
.benefit i{ color:#FF5E14; margin-right:.5rem; }
.contracts-card{
  background:#05103B; color:#fff; border-radius:1.2rem;
  padding:1.4rem 1.2rem; box-shadow:0 16px 35px rgba(0,0,0,.08);
}

/* === FAQ === */
.accordion-button:focus{ box-shadow:none; }
.accordion-button:not(.collapsed){ color:#05103B; background:rgba(255,94,20,.08); }

/* === IKON-ANIMATIONER & MICRO-INTERACTIONS === */
.solution-icon,.service-icon,.why-icon,.benefit i{
  transition:transform .25s ease, background .25s ease;
}
.solution-card:hover .solution-icon,
.service-box:hover .service-icon,
.why-item:hover .why-icon,
.benefit:hover i{
  transform:scale(1.15) rotate(5deg);
  background:rgba(255,94,20,.22);
}
.btn-org:hover,.btn-blue:hover{
  transform:translateY(-2px);
  transition:transform .2s ease;
}

/* ===== Erhvervsaftaler – læsbarhed ===== */
#contracts {
  background: #f8f9fa;
}

.contracts-card {
  background: #05103B;
  color: #ffffff;
}

.contracts-card strong {
  color: #ffffff;
}

.contracts-card small,
.contracts-card li {
  color: rgba(255,255,255,0.85);
}

.contracts-card ul li {
  margin-bottom: .35rem;
}


/* Accessibility: mindre bevægelse */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .solution-icon,.service-icon,.why-icon,.benefit i,.btn-org,.btn-blue{ transition:none; }
}






/* ===== OM OS – NY VERSION ===== */
.about-values {
  display: grid;
  gap: 1rem;
}

.about-value {
  display: flex;
  gap: .9rem;
  align-items: flex-start;
}

.about-value i {
  font-size: 1.3rem;
  color: var(--orange);
  margin-top: .15rem;
}

.about-stats-card {
  background: #05103B;
  color: #fff;
  border-radius: 1.4rem;
  padding: 2rem 1.8rem;
  box-shadow: 0 18px 40px rgba(0,0,0,.08);
}

.about-stats-card h5 {
  color: #fff;
}

.stat-box {
  background: rgba(255,255,255,.08);
  border-radius: 1rem;
  padding: .9rem .8rem;
  text-align: center;
}

.stat-box span {
  display: block;
  font-weight: 700;
  font-size: 1.3rem;
}

.stat-box small {
  color: rgba(255,255,255,.85);
}

/* CONTACT FORM */
.contact-section {
  background: #fff;
}

.contact-info li {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: .6rem;
  color: #333;
}
.contact-info i {
  color: var(--orange);
  font-size: 1.1rem;
}

.contact-card {
  background: #fff;
  border-radius: 1.4rem;
  padding: 2rem 1.8rem;
  box-shadow: 0 18px 40px rgba(0,0,0,.06);
  border: 1px solid rgba(0,0,0,.04);
}

.contact-card .form-control {
  border-radius: .9rem;
  padding: .8rem .9rem;
  border: 1px solid rgba(0,0,0,.12);
  font-size: .95rem;
}

.contact-card .form-control:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 .15rem rgba(255,94,20,.15);
}


/* ===== FOOTER ===== */
.site-footer {
  background: #05103B;
  color: #fff;
  padding: 4rem 0 1.5rem;
  margin-top: 4rem;
}

.footer-brand h4 {
  font-weight: 700;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.footer-brand span {
  color: var(--orange);
}

.footer-title {
  font-size: .85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 1rem;
  color: #fff;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: .5rem;
  font-size: .9rem;
  color: rgba(255,255,255,.8);
}

.footer-links a {
  color: rgba(255,255,255,.8);
  text-decoration: none;
  transition: .2s ease;
}

.footer-links a:hover {
  color: var(--orange);
}

.footer-contact i {
  color: var(--orange);
  margin-right: .4rem;
}

.footer-social {
  margin-top: 1rem;
  display: flex;
  gap: .6rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: .25s ease;
}

.footer-social a:hover {
  background: var(--orange);
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 2.5rem;
  padding-top: 1rem;
  text-align: center;
  font-size: .85rem;
  color: rgba(255,255,255,.7);
}



/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #05103B;
  color: #fff;
  padding: 1rem 0;
  z-index: 99999;
  box-shadow: 0 -10px 30px rgba(0,0,0,.15);
  display: none;
}

.cookie-banner p {
  font-size: .9rem;
  color: rgba(255,255,255,.9);
}

.cookie-link {
  color: var(--orange);
  text-decoration: none;
  font-weight: 500;
}

.cookie-link:hover {
  text-decoration: underline;
}

.cookie-btn {
  white-space: nowrap;
}

/* Mobile spacing */
@media (max-width: 575px) {
  .cookie-banner {
    padding: 1.2rem 0;
  }
}


/* ===== JOBS / VOGNMAND ===== */
.jobs-section .contact-info i {
  color: var(--orange);
}

.jobs-section select.form-control {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #999 50%),
    linear-gradient(135deg, #999 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(1em + 2px),
    calc(100% - 13px) calc(1em + 2px);
  background-size: 5px 5px;
  background-repeat: no-repeat;
}

