/* ========== BASIS ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Inter', sans-serif;
  color: white;
  background-color: #102945;
  line-height: 1.6;
  scroll-behavior: smooth;
  font-size: 20px; /* toegevoegd voor basisvergroting */
}
img {
  max-width: 100%;
  display: block;
}
a {
  transition: all 0.3s ease;
  color: inherit;
}

/* ========== NAVIGATIE ========== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background-color: #002147;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.logo img {
  height: 70px;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
}
.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: 600;
  position: relative;
  padding-bottom: 5px;
}
.nav-links a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background-color: white;
  bottom: 0;
  left: 0;
  transition: width 0.3s ease;
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-links a.active {
  color: #25D366;
}
.nav-links a.active::after {
  background-color: #25D366;
  width: 100%;
}
.menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: white;
}

/* ========== HERO ========== */
.hero.enhanced-hero {
  padding: 100px 20px;
  text-align: center;
  background: linear-gradient(to right, #002147, #004080);
  color: white;
  background-image: url('antalya.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}
.hero.enhanced-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 33, 71, 0.8);
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-size: 52.5px;
  margin-bottom: 20px;
}
.hero p {
  font-size: 22.5px;
  max-width: 700px;
  margin: 0 auto 30px;
}

/* ========== TYPEWRITER EFFECT ========== */
.typewriter-text {
  font-size: 25px;
  font-weight: 500;
  text-align: center;
  min-height: 40px;
  color: white;
  margin-bottom: 30px;
}

/* ========== BUTTONS ========== */
.cta {
  display: inline-block;
  padding: 15px 30px;
  background-color: #25D366;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}
.cta:hover {
  background-color: #1ea955;
}
.cta.blue {
  background-color: #1f7cdb;
}
.cta.blue:hover {
  background-color: #155bb0;
}

/* ========== SECTIES ========== */
.section {
  padding: 80px 20px;
}
.section h2,
.section h3 {
  text-align: center;
  margin-bottom: 20px;
}
.section p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 20px;
}

/* ========== WHY SECTION AANGEPAST ========== */
.why h2 {
  font-size: 40px;
  font-weight: 700;
  color: white;
}
.why p {
  font-size: 22.5px;
  font-weight: 500;
  color: white;
  line-height: 1.7;
}

/* ========== INHOUD BLOKKEN ========== */
.content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: center;
}
.text {
  flex: 1 1 500px;
}
.image {
  flex: 1 1 400px;
}
.image img {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}
.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.card {
  background: #1a2f4c;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  flex: 1 1 280px;
  transition: transform 0.3s ease;
  color: white;
}
.card:hover {
  transform: translateY(-5px);
}

/* ========== VIDEO ========== */
video {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  display: block;
}

/* ========== RESPONSIVE IMAGE FIX ========== */
.responsive-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  display: block;
  margin: 30px auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* ========== LIJST & LINKS ========== */
.journey ol {
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
  line-height: 1.8;
  text-align: center;
  list-style-position: inside;
  color: white;
  font-size: 20px;
}
.journey li {
  margin-bottom: 10px;
}
.text-link {
  text-decoration: none;
  font-weight: bold;
  color: #1f7cdb;
}
.text-link:hover {
  color: #155bb0;
}
.center {
  text-align: center;
  margin-top: 40px;
}

/* ========== CHECKLIST ========== */
.checklist {
  list-style: none;
  text-align: center;
  padding: 0;
  margin: 20px auto;
  max-width: 700px;
  color: white;
  font-size: 22.5px;
  font-weight: 500;
  line-height: 2;
}
.checklist li {
  margin-bottom: 10px;
}

/* ========== FOOTER ========== */
footer.site-footer {
  background-color: #1f1f1f;
  color: white;
  padding: 60px 20px 30px;
}
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}
.footer-col {
  flex: 1 1 220px;
  font-size: 17.5px;
}
.footer-col img {
  max-width: 160px;
  margin-bottom: 20px;
}
.footer-col h4 {
  margin-bottom: 15px;
  font-size: 20px;
}
.footer-col a {
  color: white;
  text-decoration: none;
}
.footer-col a.whatsapp {
  color: #25D366;
}
.footer-col ul {
  list-style: none;
  padding: 0;
}
.footer-col ul li {
  margin: 8px 0;
}
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 15px;
  color: #ccc;
}

/* ========== CTA BANNER ========== */
.cta-banner {
  background: #25D366;
  color: white;
  text-align: center;
  padding: 20px;
  font-weight: bold;
  font-size: 18.75px;
}
.cta-banner a {
  color: white;
  text-decoration: underline;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    display: none;
    width: 100%;
    background-color: #002147;
    padding: 10px 0;
  }
  .nav-links.active {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
  .content,
  .cards,
  .footer-content {
    flex-direction: column;
  }
  .responsive-img {
    max-width: 90%;
    margin: 20px auto;
  }
  .logo img {
    height: 60px;
  }
}

/* ========== CONTACT STIJLEN ========== */
.contact-section h2 {
  text-align: center;
  margin-bottom: 40px;
}
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}
.contact-card {
  background: #223a5f;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  color: white;
}
.contact-card i {
  font-size: 35px;
  color: #25D366;
  margin-bottom: 10px;
}

.contact-form-section h2 {
  text-align: center;
  margin-bottom: 20px;
}
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contact-form input,
.contact-form textarea {
  padding: 12px;
  border-radius: 8px;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 20px;
}
.contact-form button.cta {
  width: fit-content;
  align-self: center;
  padding: 12px 24px;
}

/* ========== CONTACT HERO STIJL ========== */
.contact-hero {
  background-image: url('antalya.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 100px 20px;
  color: white;
  text-align: center;
}
.contact-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 33, 71, 0.8);
  z-index: 0;
}
.contact-hero .hero-content {
  position: relative;
  z-index: 1;
}
.contact-hero h1 {
  font-size: 45px;
  margin-bottom: 20px;
}
.contact-hero p {
  font-size: 22.5px;
  max-width: 700px;
  margin: 0 auto;
}

/* ========== CONTACT FORM WITH IMAGE ========== */
.form-image-wrapper {
  display: flex;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.form-side {
  flex: 1 1 400px;
  color: white;
}
.form-side h2 {
  font-size: 35px;
  margin-bottom: 10px;
}
.form-side p {
  font-size: 20px;
  margin-bottom: 20px;
}
.form-placeholder {
  padding: 20px;
  background: #1a2f4c;
  border-radius: 12px;
  text-align: center;
  font-size: 20px;
  color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.image-side {
  flex: 1 1 400px;
}
.image-side img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
/* Verberg het logo standaard */
.mobile-logo {
  display: none;
  justify-content: center;
  padding: 10px 0;
}

/* Toon alleen op mobiele schermen */
@media (max-width: 768px) {
  .nav-links.active .mobile-logo {
    display: flex;
  }

  .mobile-logo img {
    max-height: 60px;
  }
}
.meer-info-link {
  display: inline-block;
  margin-top: 12px;
  color: #007BFF;       /* Blauwe linkkleur, je kunt aanpassen */
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;
  cursor: pointer;
}

.meer-info-link:hover,
.meer-info-link:focus {
  color: #0056b3;       /* Donkerder blauw bij hover/focus */
  text-decoration: underline;
}
.page-centered h1,
.page-centered h2,
.page-centered h3,
.page-centered p,
.page-centered ul,
.page-centered ol,
.page-centered li {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.page-centered ul,
.page-centered ol {
  list-style-position: inside;
  padding-left: 0;
}
