/**
 * Nexelio Contactpagina — CSS
 * ============================
 * Locatie: /wp-content/uploads/nexelio/contact.css
 * Laden:   Conditioneel via mu-plugin nexelio-enqueue.php (alleen page ID 37)
 * Versie:  2.2 (2026-02-23)
 *
 * Fonts:   Lexend (400/600/700) + Outfit (400/500/600) via GP Font Library
 */

/* ========================================
   GP THEME OVERRIDES
   ======================================== */
.entry-header {
  display: none !important;
}

.site.grid-container.container.hfeed {
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

#content,
.content-area,
.site-main,
.inside-article,
.entry-content {
  padding: 0 !important;
  margin: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
}

article.page {
  padding: 0 !important;
}

/* ========================================
   RESET & BASE
   ======================================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: #334155;
  background: #fff;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #0D9488;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #0F766E;
}

/* ========================================
   UTILITIES
   ======================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.label {
  font-family: 'Lexend', sans-serif;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #0F766E;
  display: inline-block;
  margin-bottom: 16px;
}

h1, h2, h3 {
  font-family: 'Lexend', sans-serif;
  color: #0C1A1A;
}

h2 {
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.2;
}

h3 {
  font-weight: 600;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.3;
}

/* ========================================
   ANIMATIES — scroll triggers
   ======================================== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   SECTIE 1 — HERO + FORMULIER (twee-kolom)
   ======================================== */
.ct-hero {
  padding: 60px 0 60px;
  background-color: #FFFFFF;
}

.ct-hero-grid {
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: 56px;
  align-items: start;
}

.ct-hero-left {
  padding-top: 16px;
}

.ct-hero-left h1 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.ct-hero__lead {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: #334155;
  line-height: 1.7;
  margin-bottom: 0;
}



/* Form card */
.ct-form-card {
  background: #F8FAFB;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 40px 32px;
}

/* HubSpot form overrides binnen card */
.ct-form-card .hs-form-frame {
  width: 100%;
  display: block;
}

/* ========================================
   VERTICALE STAPPEN (in hero-left)
   ======================================== */
.ct-steps-vertical {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
}

.ct-steps-vertical::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 40px;
  bottom: 20px;
  width: 2px;
  background: #E2E8F0;
}

.ct-sv-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  position: relative;
}

.ct-sv-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #0F766E;
  color: #FFFFFF;
  font-family: 'Lexend', sans-serif;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.ct-sv-content h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  line-height: 1.3;
}

.ct-sv-content p {
  font-size: 14px;
  color: #64748B;
  line-height: 1.6;
  margin: 0;
}

.ct-sv-badge {
  display: inline-block;
  margin-top: 8px;
  font-family: 'Lexend', sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: #0F766E;
  background: #F0FDFA;
  border: 1px solid #CCFBF1;
  border-radius: 100px;
  padding: 4px 12px;
  letter-spacing: 0.02em;
}

.ct-sv-circle svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

/* ========================================
   SECTIE 3 — FAQ
   ======================================== */
.ct-faq {
  padding: 80px 0;
  background-color: #FFFFFF;
}

.ct-faq-header {
  text-align: center;
  margin-bottom: 48px;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #E2E8F0;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 24px 0;
  text-align: left;
  gap: 16px;
}

.faq-question span {
  font-family: 'Lexend', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #0C1A1A;
  line-height: 1.4;
}

.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #64748B;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer-inner {
  padding: 0 0 24px;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  color: #334155;
  line-height: 1.7;
}

/* ========================================
   RESPONSIVE — TABLET (768px)
   ======================================== */
@media (max-width: 768px) {
  .ct-hero {
    padding-top: 48px;
  }

  .ct-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ct-hero-left {
    padding-top: 0;
  }

  .ct-form-card {
    padding: 32px 24px;
  }


}

/* ========================================
   RESPONSIVE — MOBIEL (480px)
   ======================================== */
@media (max-width: 480px) {
  .ct-form-card {
    padding: 24px 16px;
    border-radius: 12px;
  }
}
