/* Mustang-rijden.nl - ultra-light onepager */

:root {
  --blue: #0c2340;
  --blue-2: #123b68;
  --orange: #FF731E;
  --cream: #f6efe4;
  --sand: #e8dccb;
  --ink: #171717;
  --muted: #626262;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(0, 0, 0, .16);
  --radius: 24px;
  --max: 1160px;
}

/*
  Wil je later American Captain gebruiken?
  Plaats dan zelf het fontbestand in /fonts/ en activeer onderstaande @font-face.
  Let op: fontbestanden niet zomaar delen of publiceren zonder passende licentie.

@font-face {
  font-family: "American Captain";
  src: url("fonts/AmericanCaptain.woff2") format("woff2");
  font-display: swap;
}
*/

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

h1, h2, h3 {
  margin: 0 0 14px;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.35rem, 5vw, 4.45rem);
  max-width: 760px;
}

h2 {
  font-size: clamp(2.1rem, 5vw, 4.2rem);
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0 0 18px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--orange);
  padding: 10px 14px;
  z-index: 999;
}

.skip-link:focus {
  left: 10px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 239, 228, .92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(12, 35, 64, .12);
}

.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 12px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand img {
  width: 210px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: .95rem;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--orange);
}

.nav-cta {
  background: var(--blue);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 999px;
}

.nav-links .nav-cta:hover {
  color: var(--white);
  background: var(--orange);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--blue);
  margin: 5px 0;
  border-radius: 999px;
}

.hero {
  min-height: calc(100svh - 76px);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--blue);
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image: url("images/hero-driver-view.jpg");
  background-size: cover;
  background-position: center 48%;
  transform: scale(1.01);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,22,41,.78) 0%, rgba(7,22,41,.48) 42%, rgba(7,22,41,.16) 100%),
    linear-gradient(0deg, rgba(0,0,0,.42) 0%, rgba(0,0,0,.04) 58%);
}

.hero-content {
  position: relative;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 44px 22px 42px;
}

.eyebrow,
.section-label,
.price-kicker {
  color: var(--orange);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .76rem;
}

.hero-text {
  max-width: 620px;
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  color: rgba(255,255,255,.88);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 20px 0 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: .18s ease;
}

.btn-primary {
  background: var(--orange);
  color: #161616;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 138, 0, .28);
}

.btn-secondary {
  border-color: rgba(255,255,255,.7);
  color: var(--white);
}

.btn-secondary:hover {
  background: rgba(255,255,255,.12);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.trust-row span {
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.2);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: .9rem;
}

.section {
  padding: 76px 22px;
}

.section-muted {
  background: var(--sand);
}

.section-dark {
  background: var(--blue);
  color: var(--white);
}

.container {
  max-width: var(--max);
  margin: 0 auto;
}

.narrow {
  max-width: 860px;
}

.two-col,
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
}

.align-center {
  align-items: center;
}

.intro-copy {
  font-size: 1.14rem;
}

.image-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
}

.image-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-weight: 700;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 900;
}

.cards,
.pricing-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.card,
.price-card,
.review,
.step,
.business-box,
.notice,
.contact-form,
.faq-list details {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 16px 40px rgba(12, 35, 64, .08);
}

.card p,
.price-card p,
.review blockquote,
.step p {
  color: var(--muted);
}

.section-dark .price-card,
.section-dark .business-box,
.section-dark .notice {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  color: var(--white);
}

.section-dark .price-card p,
.section-dark .business-box p {
  color: rgba(255,255,255,.78);
}

.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
}

.price-card.featured {
  outline: 3px solid var(--orange);
}

.price {
  font-size: 2.7rem;
  line-height: 1;
  font-weight: 950;
  color: var(--orange) !important;
  margin: 0 0 18px;
}

.price span {
  display: block;
  font-size: .92rem;
  color: rgba(255,255,255,.78);
  margin-top: 6px;
}

.business-box {
  margin-top: 20px;
}

.business-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.small {
  font-size: .92rem;
  color: var(--muted);
}

.section-dark .small {
  color: rgba(255,255,255,.72);
}

.notice {
  margin-top: 20px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.step span {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  font-weight: 900;
  margin-bottom: 18px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.gallery img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}

.review {
  margin: 0;
}

.review-grid {
  grid-template-columns: repeat(3, 1fr);
}

.review blockquote {
  margin: 0 0 18px;
  font-size: 1.04rem;
}

.review figcaption {
  font-weight: 900;
}

.reviews-note {
  margin-top: 18px;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.faq-list details {
  padding: 0;
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 24px;
  font-weight: 900;
}

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

.faq-list p {
  padding: 0 24px 22px;
  color: var(--muted);
}

.contact-section {
  background:
    linear-gradient(rgba(246,239,228,.88), rgba(246,239,228,.88)),
    url("images/mustang-interieur-rijden.jpg") center / cover;
}

.text-link {
  font-weight: 900;
  color: var(--blue);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(12,35,64,.18);
  border-radius: 14px;
  padding: 12px 13px;
  font: inherit;
  background: #fffdfa;
}

textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
}

.site-footer {
  background: #071629;
  color: rgba(255,255,255,.78);
  padding: 48px 22px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
}

.footer-logo {
  width: 210px;
  margin-bottom: 14px;
}

.site-footer h2 {
  font-size: 1rem;
  color: var(--white);
  letter-spacing: 0;
}

.site-footer a {
  color: var(--white);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  background: #25d366;
  color: #071629;
  font-weight: 950;
  text-decoration: none;
  padding: 13px 18px;
  border-radius: 999px;
  box-shadow: 0 14px 40px rgba(0,0,0,.24);
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 68px 14px auto 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: var(--cream);
    border: 1px solid rgba(12,35,64,.12);
    border-radius: 20px;
    padding: 18px;
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 10px 4px;
  }

  .nav-cta {
    text-align: center;
  }

  .two-col,
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .cards,
  .pricing-grid,
  .steps,
  .review-grid,
  .business-list,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
  }

  .gallery img {
    height: 280px;
  }
}

@media (max-width: 640px) {
  .brand img,
  .footer-logo {
    width: 172px;
  }

  .hero {
    min-height: 82svh;
  }

  .hero-media {
    background-position: 52% center;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(7,22,41,.9) 0%, rgba(7,22,41,.66) 58%, rgba(7,22,41,.22) 100%);
  }

  .hero-content {
    padding: 82px 18px 44px;
  }

  .section {
    padding: 68px 18px;
  }

  .cards,
  .pricing-grid,
  .steps,
  .review-grid,
  .business-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery img {
    height: 260px;
  }

  .floating-whatsapp {
    left: 18px;
    right: 18px;
    text-align: center;
  }
}


/* Compactere intro + sterkere Mustang-sectie */
.compact-intro {
  padding-top: 58px;
  padding-bottom: 58px;
}

.compact-intro h2 {
  font-size: clamp(2rem, 4.2vw, 3.65rem);
  max-width: 620px;
}

.compact-intro .intro-copy {
  align-self: center;
  font-size: 1.08rem;
  max-width: 620px;
}

.mustang-section {
  padding-top: 64px;
  padding-bottom: 72px;
}

.mustang-showcase {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 34px;
  align-items: stretch;
}

.mustang-copy {
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(12,35,64,.08);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mustang-copy h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.mustang-slider {
  min-width: 0;
}

.slider-main {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.slider-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 12px;
}

.slider-strip img {
  height: 118px;
  width: 100%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(12, 35, 64, .09);
}

@media (max-width: 980px) {
  .mustang-showcase {
    grid-template-columns: 1fr;
  }

  .mustang-copy {
    order: 2;
  }

  .mustang-slider {
    order: 1;
  }

  .slider-main {
    height: 420px;
  }
}

@media (max-width: 640px) {
  .compact-intro,
  .mustang-section {
    padding-top: 50px;
    padding-bottom: 54px;
  }

  .mustang-copy {
    padding: 24px;
  }

  .slider-main {
    height: 320px;
  }

  .slider-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .slider-strip img {
    height: 96px;
  }
}


:root{
  --deepblue:#01234F;
  --silverbg:#e4e1d8;
  --silvercard:#f1efea;
}

body{
  background: var(--silverbg);
}

.section-muted{
  background: #ded9cf;
}

.mustang-showcase{
  align-items: start;
}

.mustang-copy,
.card{
  background: var(--silvercard);
}

.mustang-copy{
  height: 100%;
}

.slider-main{
  height: 640px;
}

.mustang-copy h2{
  font-size: clamp(1.8rem,3.5vw,3rem);
  line-height: 1.02;
}

.check-list{
  margin-top: 22px;
}

.interactive-cards .card{
  position: relative;
  transition: all .25s ease;
  border: 2px solid transparent;
  cursor: pointer;
  overflow: hidden;
  min-height: 330px;
}

.interactive-cards .card:hover{
  transform: translateY(-8px) scale(1.03);
  border-color: var(--deepblue);
  box-shadow: 0 20px 45px rgba(1,35,79,.14);
}

.card-icon{
  font-size: 2rem;
  margin-bottom: 14px;
}

.card-hover{
  position: absolute;
  left: 0;
  right: 0;
  bottom: -100%;
  background: var(--deepblue);
  color: white;
  padding: 18px;
  font-weight: 700;
  transition: all .25s ease;
  text-align: center;
  font-size: .95rem;
}

.interactive-cards .card:hover .card-hover{
  bottom: 0;
}

.cards{
  align-items: stretch;
}

@media (max-width: 980px){

  .slider-main{
    height: 480px;
  }

  .interactive-cards .card:hover{
    transform:none;
  }

  .card-hover{
    position: relative;
    bottom: auto;
    margin-top: 20px;
    border-radius: 14px;
  }
}

@media (max-width: 640px){

  .slider-main{
    height: 320px;
  }

  .interactive-cards .card{
    min-height:auto;
  }
}


/* v6 fix: echte interactieve momenten-kaarten */
.interactive-cards {
  align-items: stretch;
}

.interactive-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent !important;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.interactive-card:hover,
.interactive-card:focus {
  transform: translateY(-8px) scale(1.03);
  border-color: #01234F !important;
  box-shadow: 0 24px 54px rgba(1,35,79,.18);
  outline: none;
}

.interactive-card .card-icon {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 16px;
}

.interactive-card .card-hover {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -110%;
  background: #01234F;
  color: #fff;
  padding: 18px;
  font-weight: 850;
  text-align: center;
  transition: bottom .22s ease;
}

.interactive-card:hover .card-hover,
.interactive-card:focus .card-hover {
  bottom: 0;
}

@media (max-width: 980px) {
  .interactive-card:hover,
  .interactive-card:focus {
    transform: none;
  }

  .interactive-card .card-hover {
    position: relative;
    bottom: auto;
    margin-top: 18px;
    border-radius: 14px;
  }
}


/* v7: compacter en commerciëler prijsblok */
.compact-pricing {
  padding-top: 64px;
  padding-bottom: 64px;
}

.compact-pricing h2 {
  max-width: 980px;
  font-size: clamp(2.1rem, 4.7vw, 4.1rem);
  margin-bottom: 26px;
}

.compact-pricing .pricing-grid {
  gap: 16px;
  margin-top: 24px;
}

.compact-pricing .price-card {
  position: relative;
  overflow: hidden;
  padding: 24px 24px 26px;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
  border: 1px solid rgba(255,255,255,.18);
}

.compact-pricing .price-card::before,
.compact-pricing .price-extra::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 0;
  background: var(--orange);
  transition: height .22s ease;
}

.compact-pricing .price-card:hover,
.compact-pricing .price-extra:hover {
  transform: translateY(-6px) scale(1.015);
  border-color: var(--orange);
  box-shadow: 0 24px 55px rgba(0,0,0,.24);
}

.compact-pricing .price-card:hover::before,
.compact-pricing .price-extra:hover::before {
  height: 100%;
}

.compact-pricing .price-card.featured {
  outline: none;
  border: 2px solid var(--orange);
}

.compact-pricing .price-card h3,
.compact-pricing .price-extra h3 {
  margin-bottom: 12px;
}

.compact-pricing .price {
  font-size: clamp(2rem, 3.4vw, 3rem);
  margin-bottom: 14px;
}

.compact-pricing .price span {
  color: rgba(255,255,255,.78);
  font-size: .82rem;
  line-height: 1.35;
  margin-top: 5px;
}

.compact-pricing .price-card p {
  margin-bottom: 0;
}

.price-extra-grid {
  display: grid;
  grid-template-columns: 1.45fr .9fr;
  gap: 16px;
  margin-top: 16px;
}

.price-extra {
  position: relative;
  overflow: hidden;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.transport-box {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  color: #fff;
  border-radius: var(--radius);
  padding: 26px;
}

.transport-box p {
  color: rgba(255,255,255,.78);
}

.compact-business {
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.compact-business p {
  margin-bottom: 6px;
}

.deposit-notice {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 16px;
  background: rgba(255,115,30,.15) !important;
  border: 1px solid rgba(255,115,30,.55) !important;
  color: #fff;
  padding: 18px 22px;
}

.deposit-notice strong {
  color: var(--orange);
  font-size: 1.25rem;
  white-space: nowrap;
}

.deposit-notice span {
  color: rgba(255,255,255,.82);
  font-size: .95rem;
}

@media (max-width: 980px) {
  .price-extra-grid {
    grid-template-columns: 1fr;
  }

  .compact-business {
    grid-template-columns: 1fr;
  }

  .deposit-notice {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
}

@media (max-width: 640px) {
  .compact-pricing {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .compact-pricing .price-card:hover,
  .compact-pricing .price-extra:hover {
    transform: none;
  }
}


/* v8: rustige fotoloper */
.photo-runner {
  overflow: hidden;
  background: #ded9cf;
  border-top: 1px solid rgba(1,35,79,.08);
  border-bottom: 1px solid rgba(1,35,79,.08);
}

.photo-track {
  display: flex;
  width: max-content;
  animation: mustang-runner 42s linear infinite;
}

.photo-runner:hover .photo-track {
  animation-play-state: paused;
}

.photo-track img {
  width: 380px;
  height: 250px;
  object-fit: cover;
  flex: 0 0 auto;
  filter: saturate(.95);
}

@keyframes mustang-runner {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.review-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 22px;
}

.review-actions .reviews-note {
  margin: 0;
  font-size: .82rem;
  opacity: .75;
}

.trusted-by {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(1,35,79,.12);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
  color: var(--muted);
}

.trusted-by span {
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 900;
  font-size: .76rem;
}

.trusted-by strong {
  color: #01234F;
  font-size: .98rem;
}

@media (max-width: 640px) {
  .photo-track {
    animation-duration: 34s;
  }

  .photo-track img {
    width: 280px;
    height: 190px;
  }

  .review-actions {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .photo-track {
    animation: none;
  }
}


/* v9: rijkere fotoloper, FAQ en lichte footer */
.photo-track {
  animation-duration: 58s;
}

.photo-track img {
  width: 360px;
  height: 235px;
}

.faq-upgraded {
  background: #e4e1d8;
}

.faq-upgraded .faq-list details {
  border: 1px solid rgba(1,35,79,.10);
  background: #f1efea;
}

.faq-upgraded .faq-list details[open] {
  border-color: rgba(255,115,30,.55);
}

.light-footer {
  background: #e7e3da;
  color: #171717;
  border-top: 3px solid #01234F;
}

.light-footer h2 {
  color: #01234F;
}

.light-footer a {
  color: #01234F;
  font-weight: 800;
}

.mustang-footer-logo {
  width: 220px;
  margin-bottom: 16px;
}

.diede-footer-logo {
  width: 230px;
  margin-top: 16px;
  opacity: .82;
}

.light-footer p {
  color: #333;
}

.contact-section .form-note {
  background: rgba(255,115,30,.12);
  border: 1px solid rgba(255,115,30,.35);
  border-radius: 14px;
  padding: 12px 14px;
  color: #333;
}

@media (max-width: 640px) {
  .photo-track img {
    width: 280px;
    height: 185px;
  }

  .diede-footer-logo {
    width: 190px;
  }
}

.hero-media {
  background-position: center center;
}


/* v10: compacte footer */
.compact-footer {
  padding: 30px 22px 28px;
  font-size: .92rem;
}

.compact-footer .footer-grid {
  grid-template-columns: 1.25fr .95fr .95fr .8fr;
  gap: 34px;
  align-items: start;
}

.compact-footer h2 {
  font-size: .92rem;
  margin-bottom: 10px;
}

.compact-footer p {
  margin-bottom: 10px;
  line-height: 1.55;
}

.compact-footer .mustang-footer-logo {
  width: 160px;
  margin-bottom: 12px;
}

.compact-footer .diede-footer-logo {
  width: 118px;
  margin-top: 4px;
  opacity: .72;
  transition: opacity .18s ease, transform .18s ease;
}

.compact-footer .diede-footer-logo:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.compact-footer .footer-brand-block p {
  margin-bottom: 6px;
  color: #333;
}

.compact-footer a {
  text-underline-offset: 3px;
}

@media (max-width: 980px) {
  .compact-footer .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .compact-footer {
    padding-bottom: 72px;
  }

  .compact-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .compact-footer .mustang-footer-logo {
    width: 150px;
  }
}


/* v11: Diede-blauwe punten + volwassen moment-iconen */
.blue-dot {
  color: #009DFF;
}

.interactive-card {
  text-align: left;
}

.interactive-card .card-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 18px;
  border: 2px solid #01234F;
  border-radius: 18px;
  position: relative;
  background: rgba(1,35,79,.04);
  color: #01234F;
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.interactive-card:hover .card-icon,
.interactive-card:focus .card-icon {
  transform: translateY(-2px);
  border-color: #FF731E;
  background: rgba(255,115,30,.10);
}

.interactive-card h3 {
  text-align: center;
  margin-bottom: 14px;
}

/* ring / bruiloft */
.card-icon-ring::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border: 3px solid currentColor;
  border-radius: 50%;
  left: 15px;
  top: 22px;
}

.card-icon-ring::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 8px;
  border-left: 3px solid currentColor;
  border-top: 3px solid currentColor;
  transform: rotate(45deg);
  left: 22px;
  top: 14px;
}

/* road / verjaardag-pensioen */
.card-icon-road::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 12px;
  width: 20px;
  height: 31px;
  border-left: 3px solid currentColor;
  border-right: 3px solid currentColor;
  transform: perspective(28px) rotateX(18deg);
}

.card-icon-road::after {
  content: "";
  position: absolute;
  left: 26px;
  top: 17px;
  width: 2px;
  height: 23px;
  background: currentColor;
  box-shadow: 0 7px 0 0 #f1efea, 0 14px 0 0 currentColor;
}

/* arrival / gala */
.card-icon-arrival::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 25px;
  width: 30px;
  height: 10px;
  border: 3px solid currentColor;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom: 0;
}

.card-icon-arrival::after {
  content: "";
  position: absolute;
  left: 15px;
  top: 35px;
  width: 6px;
  height: 6px;
  background: currentColor;
  border-radius: 50%;
  box-shadow: 18px 0 0 currentColor;
}

/* camera / zakelijk */
.card-icon-camera::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 19px;
  width: 30px;
  height: 22px;
  border: 3px solid currentColor;
  border-radius: 8px;
}

.card-icon-camera::after {
  content: "";
  position: absolute;
  left: 23px;
  top: 26px;
  width: 8px;
  height: 8px;
  border: 3px solid currentColor;
  border-radius: 50%;
  background: transparent;
}

@media (max-width: 640px) {
  .interactive-card .card-icon {
    margin-left: auto;
    margin-right: auto;
  }
}


/* v13: rustiger momenten-labels en betrouwbare top-link */
.card-badge {
  width: fit-content;
  margin: 0 auto 18px;
  padding: 7px 12px;
  border: 1px solid rgba(1,35,79,.22);
  border-radius: 999px;
  color: #01234F;
  background: rgba(1,35,79,.045);
  font-weight: 900;
  font-size: .76rem;
  letter-spacing: .10em;
  text-transform: uppercase;
  transition: border-color .22s ease, background .22s ease, color .22s ease;
}

.interactive-card:hover .card-badge,
.interactive-card:focus .card-badge {
  border-color: #FF731E;
  background: rgba(255,115,30,.12);
  color: #01234F;
}

/* Oude icon-vormen uitschakelen indien ze nog in cache/CSS staan */
.interactive-card .card-icon,
.card-icon-ring,
.card-icon-road,
.card-icon-arrival,
.card-icon-camera {
  display: none !important;
}


/* v14: bedanktpagina */
.thanks-page {
  background: #e7e3da;
}

.thanks-hero {
  position: relative;
  min-height: calc(82svh - 76px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #01234F;
}

.thanks-bg {
  position: absolute;
  inset: 0;
  background: url("images/mustang-road-view.jpg") center / cover no-repeat;
  transform: scale(1.02);
}

.thanks-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(1,35,79,.88), rgba(1,35,79,.58) 48%, rgba(1,35,79,.20)),
    linear-gradient(0deg, rgba(0,0,0,.46), rgba(0,0,0,.05));
}

.thanks-content {
  position: relative;
  padding: 72px 22px;
}

.thanks-content h1 {
  max-width: 900px;
}

.thanks-lead {
  max-width: 720px;
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  color: rgba(255,255,255,.88);
}

.thanks-note {
  max-width: 720px;
  margin: 24px 0 8px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,115,30,.16);
  border: 1px solid rgba(255,115,30,.42);
  color: rgba(255,255,255,.92);
}

.thanks-note strong {
  color: #FF731E;
}

.thanks-cards {
  grid-template-columns: repeat(3,1fr);
}

.thanks-share .dark-secondary {
  color: #01234F;
  border-color: #01234F;
}

.thanks-share .dark-secondary:hover {
  background: rgba(1,35,79,.08);
}

.thanks-social {
  text-align: center;
}

.thanks-social p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.social-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 280px));
  justify-content: center;
  gap: 18px;
  margin-top: 28px;
}

.social-card {
  display: grid;
  gap: 4px;
  padding: 22px;
  border-radius: 24px;
  text-decoration: none;
  background: #f1efea;
  border: 1px solid rgba(1,35,79,.12);
  box-shadow: 0 16px 40px rgba(1,35,79,.08);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.social-card:hover {
  transform: translateY(-5px);
  border-color: #FF731E;
  box-shadow: 0 22px 52px rgba(1,35,79,.14);
}

.social-card span {
  color: #FF731E;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .76rem;
  font-weight: 900;
}

.social-card strong {
  color: #01234F;
  font-size: 1.18rem;
}

.thanks-runner {
  border-top: 0;
}

@media (max-width: 980px) {
  .thanks-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .thanks-hero {
    min-height: auto;
  }

  .thanks-content {
    padding: 58px 18px;
  }

  .social-buttons {
    grid-template-columns: 1fr;
  }

  .thanks-nav {
    display: none !important;
  }
}


/* v15: footer live-polish */
.light-footer,
.compact-footer {
  background: #f2f0ea;
  border-top: 0 !important;
}

.compact-footer {
  padding-top: 26px;
  padding-bottom: 24px;
}

.compact-footer .footer-brand-block {
  text-align: center;
}

.compact-footer .footer-brand-block p {
  font-size: .78rem;
  font-weight: 900;
  line-height: 1.35;
  margin: 8px 0 4px;
  color: #01234F;
}

.compact-footer .mustang-footer-logo {
  width: 150px;
  margin-left: auto;
  margin-right: auto;
}

.compact-footer .diede-footer-logo {
  width: 58px;
  margin: 4px auto 0;
  display: block;
  opacity: .74;
}

.compact-footer .diede-footer-logo:hover {
  opacity: 1;
}

.compact-footer h2 {
  font-size: .86rem;
}

.compact-footer p,
.compact-footer a {
  font-size: .86rem;
}


/* v17: contactsectie donkerblauw + footer rustiger */
.contact-section {
  background:
    linear-gradient(90deg, rgba(1,35,79,.96), rgba(1,35,79,.90)),
    url("images/mustang-interieur-rijden.jpg") center / cover !important;
  color: #fff;
}

.contact-section h2,
.contact-section p {
  color: #fff;
}

.contact-section .section-label {
  color: #FF731E;
}

.contact-section .text-link {
  color: #fff;
  text-decoration-color: rgba(255,255,255,.45);
}

.contact-section .text-link:hover {
  color: #FF731E;
}

.contact-section .contact-form {
  background: #f4f1eb;
  color: #171717;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 28px 70px rgba(0,0,0,.28);
}

.contact-section .contact-form label {
  color: #171717;
}

.contact-section input,
.contact-section select,
.contact-section textarea {
  background: #fffdfa;
  border-color: rgba(1,35,79,.18);
}

.contact-section .form-note {
  background: rgba(255,115,30,.12);
  border: 1px solid rgba(255,115,30,.34);
  color: #171717;
}

/* Footer: lichter, kleiner, rustiger */
.light-footer,
.compact-footer {
  background: #f4f1eb !important;
  border-top: 0 !important;
}

.compact-footer {
  padding: 24px 22px 24px !important;
  font-size: .82rem;
}

.compact-footer .footer-grid {
  align-items: start;
  gap: 30px;
}

.compact-footer .footer-brand-block {
  text-align: center;
}

.compact-footer .mustang-footer-logo {
  width: 138px !important;
  margin: 0 auto 10px !important;
}

.compact-footer .footer-brand-block p {
  font-size: .72rem !important;
  font-weight: 900 !important;
  line-height: 1.3 !important;
  margin: 4px 0 4px !important;
  color: #01234F !important;
}

.compact-footer .diede-footer-logo {
  width: 42px !important;
  margin: 4px auto 0 !important;
  display: block !important;
  opacity: .70;
}

.compact-footer .diede-footer-logo:hover {
  opacity: 1;
}

.compact-footer h2 {
  font-size: .82rem !important;
  margin-bottom: 7px !important;
}

.compact-footer p,
.compact-footer a {
  font-size: .80rem !important;
  line-height: 1.45 !important;
}

.compact-footer p {
  margin-bottom: 6px !important;
}


/* v18: honeypot spamveld verbergen */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
  height: 0 !important;
  overflow: hidden !important;
}


/* v19: honeypot definitief verbergen + mobiele WhatsApp/footer overlap oplossen */
.hp-field {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
  width: 0 !important;
  overflow: hidden !important;
  position: absolute !important;
  left: -99999px !important;
  pointer-events: none !important;
}

/* Desktop blijft zoals hij is, mobiel krijgt meer ademruimte */
@media (max-width: 640px) {
  .floating-whatsapp {
    left: 22px !important;
    right: 22px !important;
    bottom: calc(18px + env(safe-area-inset-bottom)) !important;
    padding: 11px 16px !important;
    min-height: 48px !important;
    font-size: .98rem !important;
    border-radius: 999px !important;
  }

  .compact-footer,
  .site-footer {
    padding-bottom: calc(150px + env(safe-area-inset-bottom)) !important;
  }

  .compact-footer .footer-grid {
    gap: 26px !important;
  }

  .compact-footer .footer-brand-block {
    margin-bottom: 4px;
  }
}

/* Tablets: iets meer ruimte onderin, maar niet zo overdreven als mobiel */
@media (min-width: 641px) and (max-width: 980px) {
  .compact-footer,
  .site-footer {
    padding-bottom: 92px !important;
  }
}


/* v20: compactere hero, nieuwe headline, echte CTA's */
.hero {
  min-height: 68svh !important;
  align-items: center !important;
}

.hero-content {
  padding-top: 34px !important;
  padding-bottom: 38px !important;
}

.hero h1 {
  font-size: clamp(2.55rem, 6.2vw, 5.05rem) !important;
  max-width: 760px !important;
  margin-bottom: 12px !important;
}

.hero-eyebrow {
  margin-bottom: 14px !important;
  max-width: 640px;
}

.hero-text {
  max-width: 640px !important;
  margin-bottom: 0 !important;
}

.hero-actions {
  margin-top: 22px !important;
  margin-bottom: 0 !important;
}

.btn-prices {
  background: rgba(1,35,79,.72);
  border-color: rgba(255,255,255,.78);
  color: #fff;
  backdrop-filter: blur(8px);
}

.btn-prices:hover {
  background: #01234F;
  border-color: #FF731E;
  color: #fff;
}

.trust-row {
  display: none !important;
}

@media (max-width: 640px) {
  .hero {
    min-height: 72svh !important;
  }

  .hero-content {
    padding-top: 46px !important;
    padding-bottom: 36px !important;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 13vw, 4rem) !important;
  }

  .hero-actions {
    gap: 10px !important;
  }

  .hero-actions .btn {
    width: 100%;
  }
}


/* v21: WhatsApp mobiel rustiger + footer/socials vrijhouden */
@media (max-width: 640px) {
  .floating-whatsapp {
    left: auto !important;
    right: 16px !important;
    bottom: calc(18px + env(safe-area-inset-bottom)) !important;
    width: auto !important;
    min-width: 132px !important;
    max-width: 52vw !important;
    min-height: 42px !important;
    padding: 9px 16px !important;
    font-size: .88rem !important;
    border-radius: 999px !important;
    box-shadow: 0 14px 34px rgba(0,0,0,.22) !important;
  }

  .compact-footer,
  .site-footer {
    padding-bottom: calc(175px + env(safe-area-inset-bottom)) !important;
  }

  .compact-footer .footer-grid > div:last-child {
    padding-bottom: 42px !important;
  }

  .compact-footer .footer-grid {
    gap: 30px !important;
  }
}

/* iOS/Safari: voorkom dat onderkant te krap voelt */
@supports (-webkit-touch-callout: none) {
  @media (max-width: 640px) {
    .compact-footer,
    .site-footer {
      padding-bottom: calc(195px + env(safe-area-inset-bottom)) !important;
    }
  }
}


/* v22: WhatsApp op mobiel als compacte knop rechtsonder */
@media (max-width: 640px) {
  .floating-whatsapp {
    left: auto !important;
    right: 18px !important;
    bottom: calc(22px + env(safe-area-inset-bottom)) !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    min-height: 42px !important;
    padding: 10px 17px !important;
    font-size: .86rem !important;
    line-height: 1 !important;
    border-radius: 999px !important;
    box-shadow: 0 12px 30px rgba(0,0,0,.20) !important;
    z-index: 80 !important;
  }

  .compact-footer,
  .site-footer {
    padding-bottom: calc(135px + env(safe-area-inset-bottom)) !important;
  }

  .compact-footer .footer-grid > div:last-child {
    padding-bottom: 72px !important;
  }

  .compact-footer .footer-grid {
    gap: 34px !important;
  }
}

/* Extra bescherming voor iPhone browserbalk */
@supports (-webkit-touch-callout: none) {
  @media (max-width: 640px) {
    .floating-whatsapp {
      bottom: calc(26px + env(safe-area-inset-bottom)) !important;
    }

    .compact-footer,
    .site-footer {
      padding-bottom: calc(150px + env(safe-area-inset-bottom)) !important;
    }
  }
}


/* v23: trusted by badges + deelblok homepage */
.trusted-by {
  gap: 10px 12px !important;
}

.trusted-by span {
  margin-right: 4px;
}

.trusted-by strong {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(1,35,79,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.36);
  color: #01234F !important;
  box-shadow: 0 8px 22px rgba(1,35,79,.05);
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.trusted-by strong:hover {
  transform: translateY(-2px);
  background: #01234F;
  color: #fff !important;
  border-color: #01234F;
  box-shadow: 0 16px 36px rgba(1,35,79,.16);
}

.share-section {
  background: #e4e1d8;
  padding-top: 72px;
  padding-bottom: 72px;
}

.share-section h2 {
  max-width: 720px;
}

.share-section p {
  max-width: 680px;
}

.share-section .dark-secondary {
  color: #01234F;
  border-color: #01234F;
}

.share-section .dark-secondary:hover {
  background: rgba(1,35,79,.08);
}

.share-image img {
  object-position: center;
}

@media (max-width: 640px) {
  .trusted-by {
    align-items: flex-start;
  }

  .trusted-by strong {
    min-height: 30px;
    padding: 6px 10px;
    font-size: .82rem;
  }

  .share-section {
    padding-top: 54px;
    padding-bottom: 58px;
  }
}


/* v24: intro rechts uitlijnen met de grote titel links */
@media (min-width: 981px) {
  .compact-intro .intro-copy-aligned {
    padding-top: calc(.76rem * 1.6 + 14px);
  }
}

@media (max-width: 980px) {
  .compact-intro .intro-copy-aligned {
    padding-top: 0;
  }
}
