/* =========================================================
   Actief65+ clone - components.css
   Buttons, lists, cards, forms, reusable UI
   ========================================================= */

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  border-radius: var(--radius);
  padding: 10px 24px;
  font-size: var(--fs-lg);
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-white);
  border: 0;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn--green,
.btn--primary {
  background: var(--color-green);
}

.btn--green:hover,
.btn--primary:hover {
  background: #8ab92d;
}

.btn--orange,
.btn--secondary {
  background: var(--color-orange);
}

.btn--orange:hover,
.btn--secondary:hover {
  background: #db7d07;
}

.btn--outline {
  background: transparent;
  color: var(--color-blue);
  border: 1px solid var(--color-blue);
  padding: 10px 24px;
}

.btn--outline:hover {
  background: var(--color-blue);
  color: var(--color-white);
}

.btn--sky {
  background: var(--color-sky);
  color: var(--color-mist);
  border-radius: var(--radius);
  padding: 8px 20px;
  font-size: var(--fs-base);
  font-weight: 500;
}

.btn--sky:hover {
  background: var(--color-blue);
}

/* Tekstlink met chevron ("Lees meer") */
.link-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fs-lg);
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-blue);
}

.link-more svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Tekstlink klein (oud alias, inner pages) */
.btn--small {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fs-lg);
  font-weight: 500;
  color: var(--color-blue);
}

/* ---------- Check list (hero USP's) ---------- */
.check-list li {
  display: flex;
  align-items: center;
  padding-bottom: 2.5px;
}

.check-list li:last-child {
  padding-bottom: 0;
}

.check-list .check-icon {
  display: flex;
  width: 31px;
  flex-shrink: 0;
}

.check-list .check-icon svg {
  width: 25px;
  height: 25px;
  fill: var(--color-green);
}

.check-list .check-text {
  padding-left: 5px;
  font-size: var(--fs-lg);
  line-height: 1.4;
  color: var(--color-blue);
}

/* ---------- Service card (image box) ---------- */
.card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card__image {
  display: block;
}

.card__image img {
  width: 100%;
  aspect-ratio: 407 / 230;
  object-fit: cover;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.card__body {
  padding: 35px 35px 35px;
}

.card__body h3 {
  font-size: var(--fs-h3);
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 20px;
}

.card__body h3 a {
  color: var(--color-blue);
}

.card__body p {
  font-size: var(--fs-lg);
  line-height: 1.4;
  color: var(--color-blue);
}

/* ---------- Feature (icon box) ---------- */
.feature {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.feature__icon {
  height: 33px;
  display: flex;
  align-items: center;
}

.feature__icon svg {
  height: 33px;
  width: auto;
}

.feature h3 {
  font-size: var(--fs-h4);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 16px;
}

.feature p {
  font-size: var(--fs-lg);
  line-height: 1.4;
  color: var(--color-blue);
}

/* ---------- Interview / news loop card ---------- */
.interview-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  overflow: hidden;
}

.interview-card__image img {
  width: 100%;
  aspect-ratio: 405 / 295;
  object-fit: cover;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.interview-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 5px 25px 25px;
}

.date-badge {
  display: inline-block;
  border: 1px solid var(--color-sky);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: var(--fs-sm);
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-sky);
}

.interview-card__body h4 {
  font-size: var(--fs-h4);
  font-weight: 600;
  line-height: 1.4;
}

.interview-card__body p {
  font-size: var(--fs-lg);
  line-height: 1.4;
  color: var(--color-blue);
}

/* ---------- Stat ---------- */
.stat {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stat__number {
  font-size: var(--fs-h2);
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-orange);
}

.stat p {
  font-size: var(--fs-lg);
  line-height: 1.4;
  color: var(--color-blue);
}

/* ---------- Contact card ---------- */
.contact-card h3 {
  font-size: var(--fs-h3);
  font-weight: 500;
  margin-bottom: 16px;
}

.contact-card p {
  font-size: var(--fs-lg);
  color: var(--color-blue);
}

.contact-card a {
  color: var(--color-blue);
}

/* ---------- Newsletter form (footer) ---------- */
.newsletter-form {
  display: flex;
  width: 100%;
}

.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 0;
  height: 42px;
  padding: 10px 16px;
  border: 0;
  border-radius: 10px 0 0 10px;
  background: var(--color-white);
  font-size: var(--fs-base);
  color: #000;
}

.newsletter-form button {
  height: 42px;
  padding: 0 10px;
  border: 0;
  border-radius: 0 10px 10px 0;
  background: var(--color-green);
  color: var(--color-white);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

.newsletter-form button:hover {
  background: #8ab92d;
}

/* ---------- Social icons ---------- */
.social-icons {
  display: flex;
  gap: 5px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 10%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--color-white);
}

.social-icon--facebook { background: #3b5998; }
.social-icon--linkedin { background: #0077b5; }
.social-icon--youtube { background: #cd201f; }
.social-icon--instagram { background: #262626; }

/* ---------- Breadcrumb (inner pages) ---------- */
.breadcrumb {
  display: flex;
  gap: var(--sp-2);
  font-size: var(--fs-base);
  color: var(--color-blue);
}

.breadcrumb a {
  color: var(--color-blue);
}

/* ---------- Form fields (inner pages) ---------- */
.form-field {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-bottom: var(--sp-4);
}

.form-field label {
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--color-blue);
}

.form-field input,
.form-field textarea {
  padding: 10px 16px;
  border-radius: 10px;
  border: 1px solid #d8e4e8;
  font-size: var(--fs-base);
  background: var(--color-white);
}

.lead-form {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 35px;
  box-shadow: var(--shadow-card);
}

.lead-form h3 {
  margin-bottom: var(--sp-3);
}

.lead-form p {
  margin-bottom: var(--sp-5);
}

.lead-form.form-spaced {
  margin-top: var(--sp-6);
}

/* ---------- FAQ accordion ---------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.faq-item {
  background: var(--color-white);
  border-radius: var(--radius);
  border: 1px solid #d8e4e8;
  overflow: hidden;
}

.faq-item summary {
  padding: var(--sp-4) var(--sp-6);
  cursor: pointer;
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--color-blue);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-4);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  line-height: 1;
  color: var(--color-green);
}

.faq-item[open] summary::after {
  content: "\2212";
}

.faq-answer {
  padding: 0 var(--sp-6) var(--sp-4);
}

.faq-answer p {
  font-size: var(--fs-base);
  color: var(--color-text);
}

/* ---------- Team card ---------- */
.team-card {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.team-card img {
  border-radius: var(--radius-md);
  aspect-ratio: 1;
  object-fit: cover;
  margin-bottom: var(--sp-2);
}

.team-card h3 {
  font-size: var(--fs-h4);
  font-weight: 600;
}

.team-card .team-role {
  font-size: var(--fs-base);
  color: var(--color-orange);
  font-weight: 600;
}

.team-card p {
  font-size: var(--fs-base);
  color: var(--color-blue);
}

.team-card a {
  font-size: var(--fs-base);
  color: var(--color-blue);
  text-decoration: underline;
}

/* ---------- Vacancy card ---------- */
.vacancy-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 35px;
  box-shadow: var(--shadow-card);
}

.vacancy-card h3 {
  font-size: var(--fs-h3);
  font-weight: 500;
}

.vacancy-card p {
  font-size: var(--fs-lg);
  color: var(--color-blue);
}

/* ---------- News card ---------- */
.news-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 30px 25px 25px;
  box-shadow: var(--shadow-card);
}

.news-card h3 {
  font-size: var(--fs-h4);
  font-weight: 600;
}

.news-card p {
  font-size: var(--fs-lg);
  color: var(--color-blue);
}

/* ---------- Mini stats (inhuren hero) ---------- */
.mini-stats {
  display: flex;
  gap: var(--sp-10);
  flex-wrap: wrap;
}

.mini-stat {
  display: flex;
  flex-direction: column;
}

.mini-stat__number {
  font-size: var(--fs-h2);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-blue);
}

.mini-stat__label {
  font-size: var(--fs-base);
  color: var(--color-blue);
}

/* ---------- Step process ---------- */
.step-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}

.step {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  align-items: flex-start;
}

.step__number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-green);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-h4);
  font-weight: 600;
}

.step h3 {
  font-size: var(--fs-h4);
  font-weight: 600;
}

/* ---------- Comparison ---------- */
.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
}

.comparison-col {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 35px;
  box-shadow: var(--shadow-card);
}

.comparison-col h3 {
  margin-bottom: var(--sp-3);
}

.comparison-col p {
  font-size: var(--fs-lg);
  color: var(--color-blue);
}

/* ---------- Testimonial ---------- */
.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 35px;
  box-shadow: var(--shadow-card);
}

.testimonial-card p {
  font-size: var(--fs-lg);
  color: var(--color-blue);
}

.testimonial-card .testimonial-author {
  font-size: var(--fs-base);
  font-weight: 600;
}

/* ---------- Article body ---------- */
.article-body {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}

.article-body h2 {
  font-size: var(--fs-h3);
  font-weight: 500;
}

.article-body p,
.article-body li {
  font-size: var(--fs-lg);
  line-height: 1.4;
  color: var(--color-blue);
}

.article-body ul {
  padding-left: 1.25rem;
  list-style: disc;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.article-meta {
  display: flex;
  gap: var(--sp-4);
  align-items: center;
  margin-bottom: var(--sp-6);
}

@media (max-width: 1024px) {
  .step-process {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .comparison {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input[type="email"],
  .newsletter-form button {
    border-radius: 10px;
  }

  .newsletter-form button {
    margin-top: var(--sp-2);
  }

  .card__body,
  .lead-form,
  .vacancy-card,
  .comparison-col,
  .testimonial-card {
    padding: 25px;
  }
}
