/* =========================================
   CONTACT – zelfde layout als DIENSTEN
========================================= */

.contact-hero{
  position: relative;
  overflow: hidden;
}

/* Glow achtergrond */
.contact-hero::before{
  content:"";
  position:absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(243,156,18,0.16), transparent 60%),
    radial-gradient(circle at bottom right, rgba(30,144,255,0.32), transparent 60%);
  pointer-events:none;
  z-index: 0;
}

.contact-hero .diensten-hero__inner{
  position: relative;
  z-index: 1;

  /* Force grid zoals diensten */
  display: grid !important;
  grid-template-columns: minmax(0, 1.8fr) minmax(0, 1.2fr) !important;
  gap: 32px !important;
  align-items: start !important;

  padding-top: 120px;
  padding-bottom: 90px;
}

/* Card rechts */
.contact-card{
  background: rgba(8,14,30,0.96) !important;
  border-radius: 18px !important;
  padding: 26px 28px 24px !important;
  box-shadow: 0 18px 48px rgba(0,0,0,.5) !important;
  border: 1px solid rgba(255,255,255,.08) !important;
  backdrop-filter: blur(12px) !important;

  width: 55%;
  max-width: 620px;
  min-width: 480px;
  justify-self: end;
}

.contact-card__line{
  margin: 0 0 10px;
  color: #c7d3ea;
}

.contact-link{
  color: #f7d08a;
  text-decoration: none;
  border-bottom: 1px solid rgba(247,208,138,.35);
}

.contact-link:hover{
  border-bottom-color: rgba(247,208,138,.75);
}

.contact-divider{
  height: 1px;
  background: rgba(255,255,255,.14);
  margin: 14px 0;
}

.contact-card__small{
  margin: 0 0 12px;
  font-size: 0.92rem;
  line-height: 1.45;
  color: #c7d3ea;
}

/* Section onder hero */
.contact-section{
  padding: 64px 0 96px;
}

.contact-box{
  background: rgba(6,12,27,0.96);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 16px 40px rgba(0,0,0,0.65);
  padding: 26px 24px 26px;
}

.contact-box__lead{
  margin: 0 0 16px;
  opacity: .88;
  line-height: 1.65;
  color: rgba(245,247,255,.86);
}

.contact-box__hint{
  margin: 14px 0 0;
  opacity: .85;
}

/* (Optioneel) Forminator admin links verbergen */
.forminator-edit-link,
.forminator-admin-only,
.forminator-ui .forminator-edit-link{
  display: none !important;
}

/* Responsive */
@media (max-width: 900px){
  .contact-hero .diensten-hero__inner{
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    padding-top: 90px;
    padding-bottom: 70px;
  }

  .contact-card{
    width: 100%;
    min-width: 0;
    max-width: 720px;
    justify-self: start;
  }
}

/* Zorg dat afspraak-card exact dezelfde box heeft als contact */
.afspraak-card{
  background: rgba(8,14,30,0.96) !important;
  border: 1px solid rgba(255,255,255,.08) !important;
  border-radius: 18px !important;
  box-shadow: 0 18px 48px rgba(0,0,0,.5) !important;
  backdrop-filter: blur(12px) !important;
}

/* Hero label / badge (zelfde stijl als homepage) */
.hero-label{
  display: inline-block;
  padding: 6px 14px;
  margin-bottom: 14px;

  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  color: #f7d08a;
  background: rgba(15,20,35,0.85);

  border-radius: 999px;
  border: 1px solid rgba(247,208,138,0.35);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 6px 18px rgba(0,0,0,0.35);

  backdrop-filter: blur(8px);
}