/* =========================================================
   FOOTER – TAXI ZWART (PREMIUM - ICONS VIA CSS)
   ========================================================= */

.tz-footer{
  background: linear-gradient(
    180deg,
    rgba(8, 14, 26, 0.95),
    rgba(12, 20, 36, 0.98)
  );
  color: rgba(234, 242, 255, 0.88);
  padding: 70px 0 0;
  border-top: 1px solid rgba(120, 180, 255, 0.14);
  position: relative;
}

/* Subtle gradient overlay voor diepte */
.tz-footer::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(120, 180, 255, 0.3) 50%,
    transparent
  );
}

/* Container met grid */
.tz-footer .tz-container{
  width: min(1325px, 92%);
  margin-inline: auto;
  
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 50px;
  align-items: start;
  margin-bottom: 50px;
}

/* Eerste kolom (contactinfo) krijgt meer ruimte */
.tz-footer .mod-custom:first-child{
  padding-right: 20px;
}

/* Footer headers met accent */
.tz-footer h3,
.tz-footer h4{
  color: rgba(234, 242, 255, 0.98);
  font-size: 16px;
  font-weight: 800;
  margin: 0 0 24px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
}

/* Accent line onder headers */
.tz-footer h3::after,
.tz-footer h4::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(80, 165, 255, 0.8),
    rgba(80, 165, 255, 0.2)
  );
  border-radius: 2px;
}

/* Footer tekst */
.tz-footer p{
  margin: 0 0 18px;
  line-height: 1.7;
  font-size: 14px;
  opacity: 0.92;
  clear: both;
}

/* =====================================================
   AUTOMATISCHE ICONS VIA CSS - EERSTE KOLOM
   ===================================================== */

/* Eerste paragraaf = Adres icon */
.tz-footer .mod-custom:first-child p:nth-of-type(1){
  position: relative;
  padding-left: 52px;
  min-height: 38px;
}

.tz-footer .mod-custom:first-child p:nth-of-type(1)::before{
  content: "\f3c5"; /* location-dot */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  
  position: absolute;
  left: 0;
  top: 0;
  
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  
  background: rgba(40, 80, 140, 0.28);
  border: 1px solid rgba(120, 180, 255, 0.18);
  border-radius: 10px;
  
  color: rgba(150, 200, 255, 0.95);
  font-size: 16px;
  
  box-shadow: 
    0 4px 12px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  
  transition: all 0.3s ease;
}

.tz-footer .mod-custom:first-child p:nth-of-type(1):hover::before{
  background: rgba(50, 100, 180, 0.35);
  border-color: rgba(150, 200, 255, 0.28);
  transform: translateY(-2px);
  box-shadow: 
    0 6px 18px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

/* Tweede paragraaf = Telefoon icon */
.tz-footer .mod-custom:first-child p:nth-of-type(2){
  position: relative;
  padding-left: 52px;
  min-height: 38px;
}

.tz-footer .mod-custom:first-child p:nth-of-type(2)::before{
  content: "\f095"; /* phone */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  
  position: absolute;
  left: 0;
  top: 0;
  
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  
  background: rgba(40, 80, 140, 0.28);
  border: 1px solid rgba(120, 180, 255, 0.18);
  border-radius: 10px;
  
  color: rgba(150, 200, 255, 0.95);
  font-size: 16px;
  
  box-shadow: 
    0 4px 12px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  
  transition: all 0.3s ease;
}

.tz-footer .mod-custom:first-child p:nth-of-type(2):hover::before{
  background: rgba(50, 100, 180, 0.35);
  border-color: rgba(150, 200, 255, 0.28);
  transform: translateY(-2px);
  box-shadow: 
    0 6px 18px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

/* Derde paragraaf = WhatsApp icon */
.tz-footer .mod-custom:first-child p:nth-of-type(3){
  position: relative;
  padding-left: 52px;
  min-height: 38px;
}

.tz-footer .mod-custom:first-child p:nth-of-type(3)::before{
  content: "\f232"; /* whatsapp */
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
  
  position: absolute;
  left: 0;
  top: 0;
  
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  
  background: rgba(37, 211, 102, 0.18);
  border: 1px solid rgba(37, 211, 102, 0.25);
  border-radius: 10px;
  
  color: rgba(37, 211, 102, 0.95);
  font-size: 18px;
  
  box-shadow: 
    0 4px 12px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  
  transition: all 0.3s ease;
}

.tz-footer .mod-custom:first-child p:nth-of-type(3):hover::before{
  background: rgba(37, 211, 102, 0.28);
  border-color: rgba(37, 211, 102, 0.35);
  transform: translateY(-2px);
  box-shadow: 
    0 6px 18px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(37, 211, 102, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

/* =====================================================
   GOOGLE MAPS LINK (als iframe niet werkt)
   ===================================================== */

.tz-footer .footer-map{
  margin: 24px 0;
}

.tz-footer .footer-map a{
  display: block;
  position: relative;
  padding: 18px 20px 18px 56px;
  
  background: linear-gradient(
    135deg,
    rgba(40, 80, 140, 0.35),
    rgba(20, 50, 90, 0.45)
  );
  border: 1px solid rgba(120, 180, 255, 0.2);
  border-radius: 12px;
  
  color: rgba(234, 242, 255, 0.95);
  text-decoration: none;
  
  box-shadow: 
    0 8px 24px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  
  transition: all 0.3s ease;
  overflow: hidden;
}

/* Map icon */
.tz-footer .footer-map a::before{
  content: "\f279"; /* map */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  
  background: rgba(66, 133, 244, 0.25);
  border: 1px solid rgba(66, 133, 244, 0.3);
  border-radius: 8px;
  
  color: rgba(66, 133, 244, 0.95);
  font-size: 16px;
  
  transition: all 0.3s ease;
}

/* Subtitle styling */
.tz-footer .footer-map a small{
  display: block;
  font-size: 12px;
  opacity: 0.75;
  margin-top: 4px;
}

/* Hover effect */
.tz-footer .footer-map a:hover{
  background: linear-gradient(
    135deg,
    rgba(50, 100, 180, 0.45),
    rgba(30, 70, 120, 0.55)
  );
  border-color: rgba(150, 200, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 
    0 12px 32px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(66, 133, 244, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.tz-footer .footer-map a:hover::before{
  background: rgba(66, 133, 244, 0.35);
  border-color: rgba(66, 133, 244, 0.4);
  transform: translateY(-50%) scale(1.05);
}

.tz-footer .footer-map a::after{
  display: none; /* Geen underline */
}

/* =====================================================
   SOCIAL MEDIA BUTTONS (ICON + TEKST)
   ===================================================== */

.tz-footer .footer-social{
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.tz-footer .footer-social a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  
  padding: 11px 18px 11px 16px;
  min-width: auto;
  
  background: rgba(40, 80, 140, 0.28);
  border: 1px solid rgba(120, 180, 255, 0.18);
  border-radius: 12px;
  
  font-size: 14px;
  font-weight: 600;
  color: rgba(234, 242, 255, 0.95);
  
  box-shadow: 
    0 4px 12px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  
  transition: all 0.3s ease;
  position: relative;
}

/* Facebook icon via CSS */
.tz-footer .footer-social a[href*="facebook"]::before{
  content: "\f39e"; /* facebook-f */
  font-family: "Font Awesome 6 Brands" !important;
  font-weight: 400 !important;
  font-size: 18px !important;
  line-height: 1 !important;
  color: rgba(150, 200, 255, 0.95) !important;
  
  display: block !important;
}

.tz-footer .footer-social a::after{
  display: none; /* Geen underline voor social buttons */
}

.tz-footer .footer-social a:hover{
  background: rgba(50, 100, 180, 0.38);
  border-color: rgba(150, 200, 255, 0.28);
  transform: translateY(-2px);
  box-shadow: 
    0 8px 20px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

/* Facebook specifieke kleur op hover */
.tz-footer .footer-social a[href*="facebook"]:hover{
  background: rgba(24, 119, 242, 0.25);
  border-color: rgba(24, 119, 242, 0.35);
  color: rgba(255, 255, 255, 0.98);
}

.tz-footer .footer-social a[href*="facebook"]:hover::before{
  color: rgba(66, 183, 255, 0.98) !important;
}

.tz-footer .footer-social a[href*="facebook"]:hover{
  box-shadow: 
    0 8px 20px rgba(24, 119, 242, 0.3),
    0 0 20px rgba(24, 119, 242, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

/* =====================================================
   HEADER ICONS - ANDERE KOLOMMEN
   ===================================================== */

/* Werkgebied header icon */
.tz-footer .mod-custom:nth-child(2) h3::before,
.tz-footer .mod-custom:nth-child(2) h4::before{
  content: "\f3c5";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 10px;
  color: rgba(120, 180, 255, 0.7);
  font-size: 15px;
}

/* Diensten header icon */
.tz-footer .mod-custom:nth-child(3) h3::before,
.tz-footer .mod-custom:nth-child(3) h4::before{
  content: "\f0c0"; /* users */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 10px;
  color: rgba(120, 180, 255, 0.7);
  font-size: 15px;
}

/* Juridisch header icon */
.tz-footer .mod-custom:nth-child(4) h3::before,
.tz-footer .mod-custom:nth-child(4) h4::before{
  content: "\f05a"; /* info-circle */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 10px;
  color: rgba(120, 180, 255, 0.7);
  font-size: 15px;
}

/* Footer links met hover effect */
.tz-footer a{
  color: rgba(190, 220, 255, 0.88);
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-block;
  position: relative;
}

.tz-footer a::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: rgba(120, 180, 255, 0.6);
  transition: width 0.2s ease;
}

.tz-footer a:hover{
  color: rgba(255, 255, 255, 0.98);
  transform: translateX(2px);
}

.tz-footer a:hover::after{
  width: 100%;
}

/* Footer lijsten met spacing */
.tz-footer ul{
  list-style: none;
  padding: 0;
  margin: 0;
}

.tz-footer ul li{
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
}

/* Subtiele bullets voor lijsten */
.tz-footer ul li::before{
  content: "→";
  position: absolute;
  left: 0;
  color: rgba(120, 180, 255, 0.4);
  font-size: 12px;
  transition: all 0.2s ease;
}

.tz-footer ul li:hover::before{
  left: 2px;
  color: rgba(120, 180, 255, 0.8);
}

/* =====================================================
   WERKGEBIED PLAATSEN - SEO OPTIMIZED
   ===================================================== */

/* Compact grid voor plaatslijst */
.tz-footer ul.footer-places{
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 12px;
}

.tz-footer ul.footer-places li{
  margin-bottom: 0;
  padding-left: 18px;
  font-size: 13px;
}

.tz-footer ul.footer-places li::before{
  content: "📍";
  font-size: 11px;
  left: 0;
}

.tz-footer ul.footer-places a{
  font-size: 13px;
  opacity: 0.85;
}

.tz-footer ul.footer-places a:hover{
  opacity: 1;
}

/* Sub-header voor Taxi in Noord-Holland */
.tz-footer .mod-custom:nth-child(2) h4{
  font-size: 14px;
  margin: 20px 0 12px;
  padding-bottom: 8px;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.3px;
  color: rgba(234, 242, 255, 0.92);
}

.tz-footer .mod-custom:nth-child(2) h4::after{
  width: 30px;
  height: 1px;
}

/* Copyright sectie */
.tz-footer__copy{
  grid-column: 1 / -1;
  text-align: center;
  padding: 30px 0;
  margin-top: 20px;
  border-top: 1px solid rgba(120, 180, 255, 0.08);
  font-size: 13px;
  opacity: 0.65;
  letter-spacing: 0.3px;
}

/* =====================================================
   TABLET
   ===================================================== */
@media (max-width: 1024px){
  .tz-footer .tz-container{
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  
  .tz-footer{
    padding: 50px 0 0;
  }
}

/* =====================================================
   MOBIEL
   ===================================================== */
@media (max-width: 768px){
  .tz-footer{
    padding: 40px 0 0;
  }
  
  .tz-footer .tz-container{
    grid-template-columns: 1fr;
    gap: 35px;
    margin-bottom: 35px;
  }
  
  .tz-footer h3,
  .tz-footer h4{
    font-size: 15px;
    margin-bottom: 18px;
  }
  
  .tz-footer .mod-custom:first-child{
    padding-right: 0;
  }
  
  .tz-footer__copy{
    padding: 25px 0;
  }
}