/* ===================================================
   Europa Finance — Home pagina stijlen (home.css)
=================================================== */

/* ── HERO ───────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10, 26, 60, 0.88) 0%,
    rgba(15, 45, 92, 0.75) 45%,
    rgba(10, 26, 60, 0.40) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: center;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(196,152,58,.18);
  border: 1px solid rgba(196,152,58,.40);
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .05em;
  padding: 6px 14px;
  border-radius: 24px;
  margin-bottom: 24px;
  animation: fadeSlideUp .6s var(--ease) both;
}

/* Titel */
.hero-title {
  font-size: clamp(40px, 5.5vw, 68px);
  color: var(--white);
  margin-bottom: 20px;
  animation: fadeSlideUp .65s var(--ease) .1s both;
}
.hero-title-em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-subtitle {
  font-size: clamp(16px, 1.8vw, 19px);
  color: rgba(255,255,255,.78);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.7;
  animation: fadeSlideUp .65s var(--ease) .2s both;
}

.hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  animation: fadeSlideUp .65s var(--ease) .3s both;
}
.hero-btn-main { font-size: 16px; padding: 15px 28px; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  animation: fadeSlideUp .65s var(--ease) .4s both;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: rgba(255,255,255,.65);
}
.hero-trust-item svg { color: var(--gold-light); flex-shrink: 0; }

/* Hero card */
.hero-card {
  background: rgba(255,255,255,.97);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-lg);
}
.hero-card-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-100);
}
.hero-card-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.hero-stat {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.hero-stat-label {
  font-size: 11px;
  color: var(--gray-500);
  line-height: 1.3;
}
.hero-card-disclaimer {
  margin-top: 12px;
  font-size: 11px;
  color: var(--gray-300);
  text-align: center;
  line-height: 1.4;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.45);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: fadeIn 1s var(--ease) .8s both;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.45), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ── DIENSTEN OVERZICHT ─────────────────────────── */
.services-overview {
  padding: var(--section-py) 0;
  background: var(--off-white);
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header .section-subtitle {
  margin: 16px auto 0;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: transform var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-card-img {
  height: 200px;
  overflow: hidden;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s var(--ease);
}
.service-card:hover .service-card-img img {
  transform: scale(1.05);
}
.service-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 16px;
}
.service-card-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.25;
}
.service-card-text {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-mid);
  transition: gap var(--duration) var(--ease);
}
.service-card:hover .service-link { gap: 10px; }

/* ── WAAROM WIJ ─────────────────────────────────── */
.why-us {
  padding: var(--section-py) 0;
  background: var(--white);
}
.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-us-image {
  position: relative;
}
.why-us-img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.why-us-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-md);
  text-align: center;
  min-width: 140px;
}
.why-badge-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.why-badge-label {
  font-size: 12px;
  color: rgba(255,255,255,.65);
  margin-top: 4px;
  line-height: 1.3;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.why-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-100);
  background: var(--white);
  transition: border-color var(--duration), box-shadow var(--duration);
}
.why-feature:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(196,152,58,.10);
}
.why-feature-icon {
  width: 40px;
  height: 40px;
  background: var(--gold-pale);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.why-feature-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.why-feature-text {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.55;
}

/* ── PARTNERS ───────────────────────────────────── */
.partners {
  padding: 60px 0;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}
.partners-header {
  text-align: center;
  margin-bottom: 36px;
}
.partners-sub {
  font-size: 14px;
  color: var(--gray-500);
  margin-top: 6px;
}
.partners-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}
.partner-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: .5;
  filter: grayscale(1);
  transition: opacity var(--duration), filter var(--duration);
}
.partner-logo-wrap:hover {
  opacity: 1;
  filter: grayscale(0);
}
.partner-logo {
  height: 32px;
  width: auto;
  object-fit: contain;
}
.partner-name {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray-700);
}
.partner-name-only {
  font-size: 13px;
  color: var(--gray-500);
  font-style: italic;
  max-width: 200px;
  text-align: center;
  line-height: 1.5;
}

/* ── TEAM PREVIEW ───────────────────────────────── */
.team-preview {
  padding: var(--section-py) 0;
  background: var(--off-white);
}
.team-preview-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.team-cards {
  display: flex;
  gap: 20px;
  position: relative;
}
.team-card {
  flex: 1;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
  transition: transform var(--duration) var(--ease);
}
.team-card:hover { transform: translateY(-4px); }
.team-card--offset { margin-top: 40px; }
.team-card-img {
  height: 260px;
  overflow: hidden;
}
.team-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .4s var(--ease);
}
.team-card:hover .team-card-img img { transform: scale(1.04); }
.team-card-body {
  padding: 18px 20px 20px;
}
.team-card-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
}
.team-card-role {
  font-size: 12px;
  color: var(--gold);
  font-weight: 500;
  margin-top: 3px;
  letter-spacing: .03em;
}

/* ── CTA SECTIE ─────────────────────────────────── */
.cta-section {
  position: relative;
  padding: clamp(80px, 10vw, 120px) 0;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,26,60,.92) 0%,
    rgba(15,45,92,.82) 100%
  );
}
.cta-content {
  position: relative;
  z-index: 1;
}

/* ── KEYFRAMES ──────────────────────────────────── */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: .45; }
  50%       { transform: scaleY(1.2); opacity: .8; }
}

/* ── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-card { max-width: 400px; }
  .why-us-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-us-img { height: 380px; }
  .why-us-badge-float { right: 20px; bottom: 20px; }
  .team-preview-inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .hero { padding: 100px 0 60px; }
  .hero-title { font-size: clamp(34px, 8vw, 48px); }
  .hero-cta-row { flex-direction: column; }
  .hero-cta-row .btn { justify-content: center; }
  .hero-card { display: none; } /* Verberg kaart op mobiel om ruimte te sparen */
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .service-card-img { height: 180px; }
  .team-cards { flex-direction: column; }
  .team-card--offset { margin-top: 0; }
  .hero-trust { flex-direction: column; gap: 10px; }
  .hero-scroll { display: none; }
  .partners-logos { gap: 32px; }
}
