/* =========================================================
   HERO – TAXI ZWART (CORRECTE MATEN + ECHTE ICONS)
   ========================================================= */

/* Section spacing */
section.tz-hero{
  padding: 18px 0 10px;
  display: none; /* Standaard VERBORGEN */
}

/* Alleen TONEN op pagina's met hero-class */
body.is-home section.tz-hero,
body.hero-bedrijf section.tz-hero,
body.hero-solliciteren section.tz-hero,
body.hero-schiphol section.tz-hero,
body.hero-rolstoel section.tz-hero,
body.hero-ziekenvervoer section.tz-hero,
body.hero-txkeur section.tz-hero{
  display: block;
}

section.tz-hero .tz-hero{
  margin: 0;
  padding: 0;
}

/* Hero container - MAX BREEDTE 1325px */
.tz-hero__wrap{
  max-width: 1325px;
  width: 92%;
  margin-inline: auto;
}

/* De hero kaart - STANDAARD 450px (subpagina's) */
.tz-hero__inner{
  position: relative;
  min-height: 450px;

  border-radius: 28px;
  overflow: hidden;

  background: #050b14;
  border: 1px solid rgba(120,180,255,.14);
  box-shadow:
    0 30px 80px rgba(0,0,0,.55),
    0 0 0 1px rgba(40,120,255,.06) inset;
}

/* HOME krijgt 780px hoogte */
body.is-home .tz-hero__inner{
  min-height: 780px;
}

/* Achtergrond laag - ZONDER OVERLAY */
.tz-hero__carblend{
  position: absolute;
  inset: 0;
  z-index: 0;

  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 50%;
  will-change: transform;
}

/* Watermark logo rechts */
.hero-logo-wrap{
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;

  display: flex;
  align-items: center;
  justify-content: flex-end;

  padding-right: 6%;
  opacity: .14;
}
.hero-logo{
  width: min(520px, 44vw);
  height: auto;
  filter: drop-shadow(0 20px 55px rgba(0,0,0,.65));
}

/* Content links */
.tz-hero__content{
  position: relative;
  z-index: 2;

  padding: 54px 52px 80px;
  max-width: 580px;

  color: rgba(234,242,255,.96);
}

/* HOME krijgt extra bottom padding voor features */
body.is-home .tz-hero__content{
  padding-bottom: 150px;
}

.tz-hero__content h1{
  margin: 0 0 10px;
  font-size: 56px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: .6px;
  text-shadow: 0 18px 60px rgba(0,0,0,.55);
}
.tz-hero__content p{
  margin: 0 0 18px;
  opacity: .92;
  line-height: 1.55;
  max-width: 56ch;
  text-shadow: 0 10px 38px rgba(0,0,0,.45);
}

/* Buttons */
.tz-hero__buttons{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.tz-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 10px 16px;
  border-radius: 999px;

  border: 1px solid rgba(155,210,255,.22);
  background: rgba(12,26,52,.58);

  color: rgba(234,242,255,.95);
  text-decoration: none;
  font-weight: 900;

  box-shadow:
    0 12px 28px rgba(0,0,0,.35),
    inset 0 1px 0 rgba(255,255,255,.10);

  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.tz-btn:hover{
  transform: translateY(-1px);
  border-color: rgba(190,235,255,.34);
  background: rgba(12,26,52,.72);
}
.tz-btn--primary{
  background: linear-gradient(180deg, rgba(80,165,255,.55), rgba(18,40,72,.70));
  border-color: rgba(210,245,255,.34);
}

/* WhatsApp button met FONT AWESOME */
.tz-btn--whatsapp{
  padding-left: 42px;
  position: relative;
}

.tz-btn--whatsapp::before{
  content: "\f232";
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
  font-size: 18px;
  
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  
  color: rgba(235,245,255,.95);
}

.tz-hero__note{
  width: 100%;
  margin-top: 8px;
  opacity: .76;
  font-size: 13px;
}

/* Features bar - ALLEEN OP HOME */
.tz-hero__features{
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 3;

  display: none; /* Standaard UIT */
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

/* Alleen op homepage AAN */
body.is-home .tz-hero__features{
  display: grid;
}

.tz-feature{
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: center;

  text-decoration: none;
  color: rgba(234,242,255,.92);

  background: rgba(10,18,34,.74);
  border: 1px solid rgba(120,180,255,.16);
  border-radius: 18px;
  padding: 14px 16px;

  backdrop-filter: blur(12px);
  box-shadow: 0 18px 44px rgba(0,0,0,.40);

  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.tz-feature:hover{
  transform: translateY(-1px);
  border-color: rgba(190,235,255,.28);
  background: rgba(10,18,34,.82);
}

/* Feature icons - FONT AWESOME */
.tz-feature__icon{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(20,40,80,.38);
  border: 1px solid rgba(120,180,255,.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
  
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  
  /* Verberg Joomla &nbsp; */
  font-size: 0;
  color: transparent;
}

.tz-feature__icon::before{
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 18px;
  line-height: 1;
  color: rgba(235,245,255,.95);
}

/* Schiphol - Plane icon */
.tz-feature--schiphol .tz-feature__icon::before{
  content: "\f072";
}

/* Zorgvervoer - Stethoscope */
.tz-feature--zorg .tz-feature__icon::before{
  content: "\f0f8";
}

/* Rolstoelvervoer - Wheelchair */
.tz-feature--rolstoel .tz-feature__icon::before{
  content: "\f193";
}

.tz-feature__title{
  font-weight: 950;
  letter-spacing: .2px;
  margin-bottom: 2px;
}
.tz-feature__desc{
  opacity: .88;
  font-size: 13px;
  line-height: 1.35;
}

/* =====================================================
   AFBEELDINGEN PER PAGINA – HERO
   ===================================================== */

/* HOME */
body.is-home .tz-hero__carblend{
  background-image: url("/nieuwesite/images/hero/auto.jpg");
  background-position: center 50%;
}

/* BEDRIJF */
body.hero-bedrijf:not(.is-home) .tz-hero__carblend{
  background-image: url("/nieuwesite/images/hero/bedrijf.jpg");
  background-position: center 35%;
  animation: none;
}

/* SOLLICITEREN */
body.hero-solliciteren:not(.is-home) .tz-hero__carblend{
  background-image: url("/nieuwesite/images/hero/solliciteren.jpg");
  background-position: center 0%;
  animation: none;
}

/* SCHIPHOL */
body.hero-schiphol .tz-hero__carblend{
  background-image: url("/nieuwesite/images/hero/schiphol.jpg");
  background-position: center 40%;
}

/* ROLSTOEL */
body.hero-rolstoel .tz-hero__carblend{
  background-image: url("/nieuwesite/images/hero/rolstoel.jpg");
  background-position: center 10%;
  animation: hero-rolstoel-float 18s ease-in-out infinite;
}
@keyframes hero-rolstoel-float{
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

/* ZIEKENVERVOER */
body.hero-ziekenvervoer .tz-hero__carblend{
  background-image: url("/nieuwesite/images/hero/ziekenvervoer.jpg");
  background-position: center 40%;
}

/* TX Keur */
body.hero-txkeur .tz-hero__carblend{
  background-image: url("/nieuwesite/images/hero/txkeur.jpg");
  background-position: center 40%;
}


/* =====================================================
   MOBIEL
   ===================================================== */
@media (max-width: 768px){

  section.tz-hero{
    padding: 12px 0 6px;
  }

  /* Hoogtes voor mobiel - blijven zoals ze waren */
  .tz-hero__inner{ 
    min-height: 250px; 
  }
  
  body.is-home .tz-hero__inner{ 
    min-height: 350px; 
  }

  /* Content compacter */
  .tz-hero__content{
    padding: 22px;
    max-width: none;
  }
  
  body.is-home .tz-hero__content{
    padding-bottom: 22px;
  }
  
  .tz-hero__content h1{ 
    font-size: 38px; 
  }

  /* Buttons onder elkaar op mobiel */
  .tz-hero__buttons{
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  /* Watermark subtieler */
  .hero-logo-wrap{ 
    opacity: .10; 
    padding-right: 4%; 
  }
  .hero-logo{ 
    width: min(360px, 62vw); 
  }

  /* Features ALTIJD uit op mobiel */
  .tz-hero__features{ 
    display: none !important; 
  }

  /* Kleine focus tweak */
  .tz-hero__carblend{ 
    background-position: center 20%; 
  }
}