/* =========================
   HOVER CARD (Elementor)
========================= */

.hover-card{
  position: relative;
  overflow: hidden;
}


/* =========================
   TEKST ONDERIN
========================= */

.hover-text{
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 24px;
  color: #fff;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.35s ease;
  z-index: 5;
}

/* tekst verschijnt bij hover */
.hover-card:hover .hover-text{
  opacity: 1;
  transform: translateY(0);
}


/* =========================
   BUTTON START ONDERIN
========================= */

.hover-card .button-17{
  position: absolute;
  bottom: 24px;        /* zelfde plek als tekst */
  left: 32px;
  transform: translateY(0);
  z-index: 10;
  transition: all .35s ease;
}

/* bij hover gaat button omhoog */
.hover-card:hover .button-17{
  transform: translateY(-90px); /* hoogte van tekst */
}


/* =========================
   BUTTON STYLE
========================= */

.button-17 {
  align-items: center;
  appearance: none;
  background-color: #fff;
  border-radius: 24px;
  border-style: none;
  box-shadow: rgba(0, 0, 0, .2) 0 3px 5px -1px,
              rgba(0, 0, 0, .14) 0 6px 10px 0,
              rgba(0, 0, 0, .12) 0 1px 18px 0;
  box-sizing: border-box;
  color: #3c4043;
  cursor: pointer;
  display: inline-flex;
  font-family: "Google Sans",Roboto,Arial,sans-serif;
  font-size: 14px;
  font-weight: 500;
  height: 48px;
  justify-content: center;
  letter-spacing: .25px;
  padding: 2px 24px;
  text-align: center;
  transition: box-shadow 280ms cubic-bezier(.4, 0, .2, 1),
              transform .35s ease;
}

.button-17:hover {
  background: #F6F9FE;
  color: #174ea6;
}

.button-17:active {
  box-shadow: 0 4px 4px 0 rgb(60 64 67 / 30%),
              0 8px 12px 6px rgb(60 64 67 / 15%);
}


/* =========================
   SLIDER PROGRESS BAR
========================= */

.hero-slides .swiper{
  position: relative;
}

.hero-slides .swiper::after{
  content:"";
  position:absolute;
  left: 12%;
  right: 12%;
  bottom: 28px;
  height: 3px;
  background: rgba(255,255,255,.35);
  border-radius: 999px;
  z-index: 20;
}

.hero-slides .swiper::before{
  content:"";
  position:absolute;
  left: 12%;
  bottom: 28px;
  height: 3px;
  width: 0%;
  background: #ffffff;
  border-radius: 999px;
  z-index: 21;
  animation: slideProgress 4s linear infinite;
}

@keyframes slideProgress{
  from { width: 0%; }
  to   { width: 76%; }
}

.glass-card{
  position: relative;
  z-index: 3;
  border-radius: 28px;

  /* echte glass */
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  border: 1px solid rgba(255,255,255,0.25);

  box-shadow:
    0 20px 60px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.4);

  padding: 42px 48px;
}

/*/* Container rond de heading moet relative zijn */
.glass-text{
  position: relative;
  display: inline-block;
}

/* Tekst zelf */
.glass-text .elementor-heading-title{
  position: relative;
  z-index: 2;
  color: rgba(255,255,255,0.22);
  -webkit-text-stroke: 1px rgba(255,255,255,0.55);
  text-shadow:
    0 12px 40px rgba(0,0,0,0.45),
    0 1px 0 rgba(255,255,255,0.18);
}

/* “Blurred glass layer” achter de tekst */
.glass-text::before{
  content:"";
  position:absolute;
  inset: -14px -18px;        /* groter dan tekst */
  border-radius: 24px;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow:
    0 18px 50px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.25);
  z-index: 1;
  pointer-events: none;
}
.cta-dark{
  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 100%;
  padding: 18px 24px;

  background: linear-gradient(180deg,#1b1f26,#11151b);
  color: #fff;

  border-radius: 14px;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;

  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  transition: all .25s ease;
}

.footer-cta{
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  padding: 14px 22px;
}

