/* ===========================
   VELUXE EUROPE — STYLESHEET
   =========================== */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy:        #0C2B5E;
  --navy-mid:    #1A3F7A;
  --navy-light:  #2D5BA8;
  --blue-accent: #4A7FD4;
  --blue-pale:   #EBF2FB;
  --blue-soft:   #D4E5F7;
  --white:       #FFFFFF;
  --off-white:   #F0F3F8;
  --gray-text:   #5A6A88;
  --dark-text:   #0E1B30;
  --border:      #CDD8EE;
  --section-dark:#0E1929;
  --section-mid: #122035;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--dark-text);
  font-weight: 300;
  overflow-x: hidden;
}

/* ---- NAVIGATIE ---- */
nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 4rem;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 600;
  color: var(--navy); text-decoration: none;
  letter-spacing: 0.05em;
}

.logo-tagline {
  font-size: 0.55rem; letter-spacing: 0.35em;
  color: var(--gray-text); font-family: 'Inter', sans-serif;
  font-weight: 400; text-transform: uppercase;
  display: block; margin-top: 2px;
}

.nav-links { display: flex; gap: 2.5rem; list-style: none; }

.nav-links a {
  font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gray-text); text-decoration: none; font-weight: 400;
  transition: color 0.25s;
}

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

.nav-cta {
  background: var(--navy); color: var(--white);
  font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 0.65rem 1.5rem; text-decoration: none;
  font-weight: 500; transition: background 0.25s;
}

.nav-cta:hover { background: var(--navy-light); }

.nav-burger {
  display: none; background: none; border: none;
  font-size: 1.4rem; color: var(--navy); cursor: pointer;
}

/* ---- HERO MET FOTO ---- */
.hero {
  min-height: 92vh;
  position: relative;
  display: flex; align-items: flex-end;
  overflow: hidden;
}

.hero-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10, 30, 70, 0.88) 0%,
    rgba(10, 30, 70, 0.65) 50%,
    rgba(10, 30, 70, 0.25) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative; z-index: 2;
  padding: 0 4rem 5rem;
  max-width: 620px;
}

.hero-eyebrow {
  font-size: 0.65rem; letter-spacing: 0.45em; text-transform: uppercase;
  color: var(--blue-accent); margin-bottom: 1.25rem; font-weight: 500;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 400; line-height: 1.05;
  color: var(--white); margin-bottom: 1.25rem;
}

.hero-title em { font-style: italic; color: #7EB3F0; }

.hero-sub {
  font-size: 0.9rem; line-height: 1.8;
  color: rgba(255,255,255,0.75); margin-bottom: 2.5rem; max-width: 480px;
}

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-primary {
  background: var(--white); color: var(--navy);
  font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 1rem 2.2rem; text-decoration: none;
  font-weight: 500; transition: all 0.25s; display: inline-block;
}

.btn-primary:hover { background: var(--blue-soft); }

.btn-outline {
  border: 1.5px solid rgba(255,255,255,0.6); color: var(--white);
  font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 1rem 2.2rem; text-decoration: none;
  font-weight: 500; transition: all 0.25s; display: inline-block;
}

.btn-outline:hover { background: rgba(255,255,255,0.15); }

.hero-stats {
  position: absolute; bottom: 0; right: 0; z-index: 2;
  display: flex; align-items: center; gap: 0;
  background: var(--navy);
}

.hero-stat {
  text-align: center; color: var(--white);
  padding: 1.8rem 2.5rem;
}

.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 400; line-height: 1;
}

.hero-stat-label {
  font-size: 0.55rem; letter-spacing: 0.3em;
  text-transform: uppercase; opacity: 0.5; margin-top: 0.3rem;
}

.stat-divider { width: 1px; height: 50px; background: rgba(255,255,255,0.15); }

/* ---- LAYOUT ---- */
.divider { height: 1px; background: var(--border); }

section.section { padding: 6rem 4rem; max-width: 1400px; margin: 0 auto; }

.section-full { padding: 6rem 4rem; background: var(--section-dark); }
.section-full-inner { max-width: 1400px; margin: 0 auto; }

.section-label {
  font-size: 0.6rem; letter-spacing: 0.45em; text-transform: uppercase;
  color: var(--blue-accent); margin-bottom: 0.75rem; font-weight: 500;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400; color: var(--navy); margin-bottom: 1rem;
}

.section-title em { font-style: italic; }

.section-sub {
  font-size: 0.82rem; color: var(--gray-text);
  line-height: 1.8; max-width: 500px; margin-bottom: 3rem;
}

/* ---- DIENSTEN (klikbaar) ---- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }

.svc {
  background: var(--white); border: 1px solid var(--border);
  padding: 2.5rem 2rem; transition: all 0.3s;
  text-decoration: none; color: inherit; display: block;
  position: relative;
}

.svc:hover {
  border-color: var(--blue-accent);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(12,43,94,0.08);
}

.svc-num { font-size: 0.55rem; letter-spacing: 0.3em; color: var(--blue-accent); margin-bottom: 1rem; font-weight: 500; }

.svc-icon {
  width: 36px; height: 36px; background: var(--blue-pale);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; font-size: 16px;
}

.svc-name { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: var(--navy); margin-bottom: 0.75rem; font-weight: 400; }
.svc-desc { font-size: 0.72rem; line-height: 1.85; color: var(--gray-text); }

.svc-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1.25rem; }

.tag {
  font-size: 0.55rem; letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--blue-pale); color: var(--navy-light);
  padding: 0.3rem 0.7rem; font-weight: 500;
}

.svc-more {
  display: block; margin-top: 1.25rem;
  font-size: 0.65rem; letter-spacing: 0.1em;
  color: var(--blue-accent); font-weight: 500;
  transition: letter-spacing 0.2s;
}

.svc:hover .svc-more { letter-spacing: 0.18em; }

/* ---- PROCESS ---- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 3.5rem; }

.step { padding: 2.5rem 2rem; border-right: 1px solid var(--border); }
.step:last-child { border-right: none; }

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem; color: rgba(74,127,212,0.25);
  line-height: 1; margin-bottom: 1rem; font-weight: 600;
}

.step-title { font-size: 0.85rem; font-weight: 500; color: #FFFFFF; margin-bottom: 0.5rem; }
.step-desc { font-size: 0.72rem; color: rgba(255,255,255,0.55); line-height: 1.8; }

/* ---- PARTNERS (klikbaar) ---- */
.partners-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 3rem; }

.partner {
  background: var(--white); border: 1px solid var(--border);
  padding: 2rem; display: flex; gap: 1.25rem;
  align-items: flex-start; transition: all 0.3s;
  text-decoration: none; color: inherit;
}

.partner:hover {
  border-color: var(--blue-accent);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(12,43,94,0.07);
}

.partner-icon {
  width: 44px; height: 44px; background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 18px; flex-shrink: 0;
}

.partner-name { font-size: 0.9rem; font-weight: 500; color: var(--navy); margin-bottom: 0.4rem; }
.partner-desc { font-size: 0.72rem; color: var(--gray-text); line-height: 1.7; margin-bottom: 0.75rem; }

/* ---- VLOOT MET FOTO'S ---- */
.fleet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }

.fleet-card {
  border: 1px solid var(--border); background: var(--white);
  overflow: hidden; transition: all 0.3s;
}

.fleet-card:hover {
  border-color: var(--navy);
  box-shadow: 0 8px 30px rgba(12,43,94,0.1);
}

.fleet-img-wrap { width: 100%; height: 200px; overflow: hidden; }

.fleet-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform 0.5s;
}

.fleet-card:hover .fleet-img { transform: scale(1.04); }

.fleet-top { background: var(--navy); padding: 1.25rem 1.5rem; }
.fleet-class { font-size: 0.55rem; letter-spacing: 0.35em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 0.2rem; }
.fleet-name { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--white); font-weight: 400; }

.fleet-body { padding: 1.5rem; background: #0E1929; }
.fleet-feat { font-size: 0.72rem; color: rgba(255,255,255,0.75); padding: 0.45rem 0; border-bottom: 1px solid var(--border); line-height: 1.5; }
.fleet-feat:last-child { border-bottom: none; }
.fleet-passengers { color: var(--blue-accent); font-weight: 500; border-bottom: none; margin-top: 0.25rem; }

/* ---- CONTACT ---- */
.contact-wrap { background: var(--navy); padding: 6rem 4rem; }
.contact-inner { max-width: 800px; margin: 0 auto; }

.contact-label { font-size: 0.6rem; letter-spacing: 0.45em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 0.75rem; }

.contact-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white); font-weight: 400; margin-bottom: 0.75rem;
}

.contact-title em { font-style: italic; color: #7EB3F0; }
.contact-sub { font-size: 0.8rem; color: rgba(255,255,255,0.55); margin-bottom: 2.5rem; line-height: 1.8; }
.contact-phone a { color: rgba(255,255,255,0.9); }

.form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.field {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.9rem 1.1rem; color: var(--white);
  font-family: 'Inter', sans-serif; font-size: 0.78rem;
  font-weight: 300; outline: none; transition: border-color 0.25s; width: 100%;
}

.field:focus { border-color: var(--blue-accent); }
.field::placeholder { color: rgba(255,255,255,0.35); }
select.field option { background: var(--navy); color: var(--white); }
textarea.field { min-height: 110px; resize: none; }

.form-submit {
  background: var(--white); color: var(--navy); border: none; cursor: pointer;
  font-family: 'Inter', sans-serif; font-size: 0.65rem;
  font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase;
  padding: 1.1rem 2.5rem; transition: all 0.25s;
  align-self: flex-start; margin-top: 0.5rem;
}

.form-submit:hover { background: var(--blue-soft); }

.contact-info {
  display: flex; gap: 3rem; margin-top: 3rem;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.12); flex-wrap: wrap;
}

.info-item { display: flex; flex-direction: column; gap: 0.25rem; }
.info-label { font-size: 0.55rem; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.35); }
.info-val { font-size: 0.85rem; color: rgba(255,255,255,0.85); font-weight: 400; }

/* ---- FOOTER ---- */
footer {
  background: var(--off-white); border-top: 1px solid var(--border);
  padding: 2.5rem 4rem; display: flex;
  justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}

.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--navy); font-weight: 600; }
.footer-links { display: flex; gap: 2rem; list-style: none; }
.footer-links a { font-size: 0.65rem; color: var(--gray-text); text-decoration: none; }
.footer-links a:hover { color: var(--navy); }
.footer-copy { font-size: 0.65rem; color: var(--gray-text); }

/* ---- DETAILPAGINA STIJL ---- */
.detail-hero {
  height: 55vh; position: relative;
  display: flex; align-items: flex-end; overflow: hidden;
}

.detail-hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}

.detail-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,30,70,0.85) 0%, rgba(10,30,70,0.3) 100%);
  z-index: 1;
}

.detail-hero-content {
  position: relative; z-index: 2;
  padding: 3rem 4rem;
}

.detail-back {
  font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-bottom: 1rem; transition: color 0.2s;
}

.detail-back:hover { color: var(--white); }

.detail-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400; color: var(--white); line-height: 1.1;
}

.detail-title em { font-style: italic; color: #7EB3F0; }

.detail-body { max-width: 1400px; margin: 0 auto; padding: 5rem 4rem; }

.detail-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 4rem; }

.detail-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 400;
  color: var(--navy); margin-bottom: 1.25rem;
}

.detail-text p { font-size: 0.85rem; line-height: 1.9; color: var(--gray-text); margin-bottom: 1.25rem; }

.detail-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 2.5rem 0; }

.detail-photo {
  width: 100%; aspect-ratio: 4/3;
  object-fit: cover; object-position: center;
}

.detail-photo.wide { grid-column: span 2; aspect-ratio: 16/7; }

.detail-sidebar { }

.sidebar-card {
  background: var(--off-white); border: 1px solid var(--border);
  padding: 2rem; margin-bottom: 1.5rem;
}

.sidebar-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; color: var(--navy);
  margin-bottom: 1rem; font-weight: 400;
}

.sidebar-list { list-style: none; }

.sidebar-list li {
  font-size: 0.75rem; color: var(--gray-text);
  padding: 0.5rem 0; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 0.5rem;
}

.sidebar-list li:last-child { border-bottom: none; }
.sidebar-list li::before { content: '✓'; color: var(--blue-accent); font-weight: 500; flex-shrink: 0; }

.sidebar-cta {
  background: var(--navy); color: var(--white);
  display: block; text-align: center; text-decoration: none;
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 1.1rem; font-weight: 500; transition: background 0.25s; margin-top: 1rem;
}

.sidebar-cta:hover { background: var(--navy-light); }

/* ---- ANIMATIES ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-content > * { animation: fadeUp 0.8s both; }
.hero-eyebrow  { animation-delay: 0.1s; }
.hero-title    { animation-delay: 0.3s; }
.hero-sub      { animation-delay: 0.5s; }
.hero-ctas     { animation-delay: 0.7s; }

/* ---- MOBIEL ---- */
@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; flex-direction: column; gap: 1rem; position: absolute; top: 70px; left: 0; right: 0; background: var(--white); padding: 1.5rem 2rem; border-bottom: 1px solid var(--border); z-index: 99; }
  .nav-links.open { display: flex; }
  .nav-burger { display: block; }
  .hero-content { padding: 0 1.5rem 8rem; }
  .hero-stats { position: static; width: 100%; justify-content: space-around; }
  .hero-stat { padding: 1.2rem 1rem; }
  section.section { padding: 4rem 1.5rem; }
  .section-full { padding: 4rem 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--border); }
  .step:last-child { border-bottom: none; }
  .partners-grid { grid-template-columns: 1fr; }
  .fleet-grid { grid-template-columns: 1fr; }
  .contact-wrap { padding: 4rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .contact-info { gap: 1.5rem; }
  footer { padding: 2rem 1.5rem; flex-direction: column; align-items: flex-start; }
  .detail-hero-content { padding: 2rem 1.5rem; }
  .detail-body { padding: 3rem 1.5rem; }
  .detail-grid { grid-template-columns: 1fr; gap: 2rem; }
  .detail-photos { grid-template-columns: 1fr; }
  .detail-photo.wide { grid-column: span 1; }
}

/* ---- TAALWISSEL ---- */
.nav-right { display: flex; align-items: center; gap: 1rem; }

.lang-switch { display: flex; align-items: center; gap: 0.4rem; }

.lang-btn {
  background: none; border: none; cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.12em; color: var(--gray-text);
  padding: 0.25rem 0.1rem; transition: color 0.2s;
}

.lang-btn:hover { color: var(--navy); }
.lang-btn.active { color: var(--navy); border-bottom: 1.5px solid var(--navy); }

.lang-divider { font-size: 0.65rem; color: var(--border); }

/* ---- LEGAL PAGINA'S ---- */
.legal-body { max-width: 1000px; margin: 0 auto; padding: 5rem 4rem; }
.legal-inner { max-width: 720px; }

.legal-meta {
  font-size: 0.72rem; color: var(--gray-text);
  padding: 1rem 1.25rem; background: var(--off-white);
  border-left: 3px solid var(--blue-accent);
  margin-bottom: 3rem; line-height: 1.7;
}

.legal-block h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 400;
  color: var(--navy); margin: 2rem 0 0.75rem;
}

.legal-block p {
  font-size: 0.82rem; line-height: 1.9;
  color: var(--gray-text); margin-bottom: 0.75rem;
}

.legal-block ul {
  margin: 0.5rem 0 1rem 1.25rem;
}

.legal-block ul li {
  font-size: 0.82rem; color: var(--gray-text);
  line-height: 1.8; margin-bottom: 0.25rem;
}

.legal-block strong { color: var(--dark-text); font-weight: 500; }

@media (max-width: 768px) {
  .legal-body { padding: 3rem 1.5rem; }
}

/* Donkere secties — witte tekst */
.section-full .section-label { color: #7EB3F0; }
.section-full .section-title { color: #FFFFFF; }
.section-full .section-sub { color: rgba(255,255,255,0.55); }
.section-full .fleet-passengers { color: #7EB3F0; }

/* Partners sectie lichte achtergrond */
#sectoren { background: var(--off-white); }

/* Nav subtiel donkerder border */
nav { border-bottom: 1px solid var(--border); }

/* Hero overlay iets zwaarder voor leesbaarheid eigen foto */
.hero-overlay {
  background: linear-gradient(
    110deg,
    rgba(5, 15, 35, 0.82) 0%,
    rgba(5, 15, 35, 0.55) 55%,
    rgba(5, 15, 35, 0.15) 100%
  );
}

/* ---- WHATSAPP KNOP ---- */
.whatsapp-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: #25D366; color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 0.85rem 1.75rem; text-decoration: none;
  margin-bottom: 2rem; transition: background 0.25s;
  margin-top: 0.5rem;
}

.whatsapp-btn:hover { background: #1fba59; }
