/* =============================================
   WILLBERG FREIGHT — Brand Colors
   Orange-red — matches Willberg Freight logo
   ============================================= */
:root {
  --brand-primary:  #E84820;
  --brand-dark:     #c43a18;
  --amber:          #E84820;
  --amber-dark:     #c43a18;
  --amber-glow:     rgba(232,72,32,0.10);
  --border:         rgba(232,72,32,0.22);
}

/* Page header */
.page-header { border-bottom-color: rgba(232,72,32,0.25); }

/* Label */
.label::before { background: var(--brand-primary); }

/* Divider */
.divider { background: var(--brand-primary); }

/* CTA band */
.cta-band { background: var(--brand-primary); }
.cta-band__heading { color: #fff; }
.cta-band__sub { color: rgba(255,255,255,0.8); }
.cta-band::before { color: rgba(180,50,10,0.2); }
/* Override btn--navy for orange background */
.cta-band .btn--navy {
  border-color: #fff;
  color: #fff;
}
.cta-band .btn--navy::after { background: #fff; }
.cta-band .btn--navy:hover { color: var(--brand-primary); }

/* Highlight text */
.highlight { color: var(--brand-primary); }

/* Service items */
.service-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: rgba(232,72,32,0.08);
  border: 1px solid rgba(232,72,32,0.18);
  border-radius: 10px;
  overflow: hidden;
  box-sizing: border-box;
}

/* =============================================
   MOBILE OPTIMISATION
   ============================================= */
@media (max-width: 768px) {
  .page-header { padding: 6rem 0 2.5rem; }
  .page-header .heading-xl { font-size: clamp(2.8rem, 10vw, 5rem); }
  .about__grid { grid-template-columns: 1fr; gap: 2rem; }
  .about__img-main { aspect-ratio: 16/9 !important; }
  .service-item {
    grid-template-columns: 3rem 1fr;
    gap: 1rem;
    padding: 1.25rem 0;
  }
  .service-item__arrow { display: none; }
  .service-item__name { font-size: 0.95rem; }
  .cta-band { padding: 3rem 0; }
  .cta-band__inner { flex-direction: column; text-align: center; gap: 1.5rem; }
  .cta-band__inner > div:last-child { width: 100%; }
  .cta-band__inner .btn { width: 100%; justify-content: center; }
  .section { padding: 3.5rem 0; }
}

@media (max-width: 390px) {
  .service-item { grid-template-columns: 2.5rem 1fr; }
  .service-item__icon { width: 2.5rem; height: 2.5rem; min-width: 2.5rem; padding: 5px; }
}

/* =============================================
   ICON HOVER ANIMATIONS — ORANGE-RED BRAND
   ============================================= */
@keyframes floatIconOrange {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-7px) rotate(-6deg); }
}
.service-item:hover .service-item__icon {
  animation: floatIconOrange 0.9s ease-in-out;
  border-color: var(--brand-primary) !important;
  background: var(--brand-primary) !important;
  box-shadow: 0 8px 20px rgba(232,72,32,0.3) !important;
}
.service-item:hover .service-item__icon svg { stroke: #fff !important; }
.service-item:hover .service-item__icon svg circle[fill] { fill: #fff !important; }
.service-item:hover .service-item__name { color: var(--brand-primary); }
.service-item:hover .service-item__arrow { color: var(--brand-primary); }

.page-header__content {
  animation: fadeUp 0.75s cubic-bezier(0.4,0,0.2,1) 0.1s both;
}

/* ==========================================
   HEADER CAROUSEL
========================================== */

.page-header{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    overflow:hidden;
}

.header-slider{
    position:absolute;
    inset:0;
    z-index:1;
}

.slide{
    position:absolute;
    inset:0;
    opacity:0;
    transition:opacity 1.2s ease-in-out;
}

.slide.active{
    opacity:1;
}

.slide img{
    width:100%;
    height:100%;
    object-fit:cover;
    animation:zoomEffect 8s linear infinite;
}

@keyframes zoomEffect{
    from{
        transform:scale(1);
    }
    to{
        transform:scale(1.08);
    }
}

.header-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
    z-index:2;
}

/* =============================================
   SLIDER DOT INDICATORS — 10-slide carousel
   ============================================= */
.slider-dots{
    position:absolute;
    left:50%;
    bottom:2.25rem;
    transform:translateX(-50%);
    z-index:4;
    display:flex;
    align-items:center;
    gap:0.45rem;
    padding:0.5rem 0.85rem;
    background:rgba(0,0,0,0.35);
    border-radius:999px;
    backdrop-filter:blur(4px);
    max-width:calc(100% - 2rem);
}

.slider-dot{
    width:7px;
    height:7px;
    border-radius:50%;
    border:1.5px solid rgba(255,255,255,0.6);
    background:transparent;
    padding:0;
    cursor:pointer;
    transition:all 0.3s ease;
    flex-shrink:0;
}

.slider-dot:hover{
    border-color:#fff;
    transform:scale(1.15);
}

.slider-dot.active{
    background:var(--brand-primary);
    border-color:var(--brand-primary);
    width:18px;
    border-radius:5px;
}

@media(max-width:768px){
    .slider-dots{
        bottom:1.25rem;
        gap:0.35rem;
        padding:0.4rem 0.65rem;
    }
    .slider-dot{
        width:6px;
        height:6px;
    }
    .slider-dot.active{
        width:14px;
    }
}

.page-header .container{
    position:relative;
    z-index:3;
}

.page-header__content{
    max-width:700px;
}

.header-desc{
    color:#fff;
    font-size:1.15rem;
    line-height:1.8;
    margin-top:1.5rem;
}

@media(max-width:768px){

    .page-header{
        min-height:85vh;
    }

    .header-desc{
        font-size:1rem;
    }
}

.linkedin-btn{
  background: #0077B5;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
}
/* =============================================
   NAVBAR — navy background only
   ============================================= */
.nav {
  background: var(--navy);
}
.nav.scrolled {
  background: var(--navy);
}