/* =====================================
   SETTINGS
===================================== */
/* =====================================
   GENERIC
===================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* =====================================
   ELEMENTS
===================================== */
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: #252422;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

/* =====================================
   COMPONENTS
===================================== */
.c-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 0 24px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .c-header {
    padding: 24px 0;
  }
}
.c-header__logo {
  width: clamp(150px, 50vw, 223px);
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .c-header__logo {
    margin-bottom: 16px;
  }
}
.c-header__nav {
  display: flex;
  gap: clamp(16px, 3vw, 32px);
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 767px) {
  .c-header__nav {
    gap: 12px;
    padding: 0 16px;
  }
}
.c-header__nav-link {
  font-size: clamp(13px, 2vw, 15px);
  font-weight: 500;
  transition: color 0.3s ease;
  white-space: nowrap;
}
.c-header__nav-link:hover {
  color: #eb5e28;
}
@media (max-width: 767px) {
  .c-header__nav-link {
    font-size: 13px;
  }
}

.c-hero {
  width: 100%;
  height: clamp(400px, 60vh, 553px);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("../assets/images/header.webp");
  padding: 0 24px;
}
@media (max-width: 767px) {
  .c-hero {
    height: clamp(300px, 50vh, 400px);
    justify-content: center;
  }
}
.c-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 24px;
}
@media (max-width: 767px) {
  .c-hero__content {
    text-align: center;
  }
}
.c-hero__content--left {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: clamp(20px, 8vw, 80px);
  text-align: left;
}
@media (max-width: 767px) {
  .c-hero__content--left {
    justify-content: center;
    padding-left: 20px;
    text-align: center;
  }
}
.c-hero__logo {
  max-width: clamp(200px, 50vw, 400px);
  margin-left: clamp(0px, 10vw, 122px);
}
@media (max-width: 767px) {
  .c-hero__logo {
    margin-left: 0;
  }
}
.c-hero__title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(32px, 6vw, 64px);
  font-weight: 500;
  font-style: italic;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  color: #ffffff;
  margin-bottom: 20px;
  max-width: 100%;
  text-align: center;
}
@media (max-width: 767px) {
  .c-hero__title {
    font-size: clamp(28px, 8vw, 40px);
    margin-bottom: 12px;
    text-align: center;
  }
}
.c-hero__subtitle {
  font-family: "Poppins", sans-serif;
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 400;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  color: #ffffff;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 767px) {
  .c-hero__subtitle {
    font-size: 16px;
    text-align: center;
  }
}

.c-popular {
  width: 100%;
  min-height: clamp(600px, 80vh, 908px);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(40px, 15vw, 140px) 24px 40px;
  background-image: url("../assets/images/afrika.webp");
}
.c-popular::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.45);
  z-index: 1;
}
.c-popular--afrika {
  background-image: url("../assets/images/afrika.webp");
}
.c-popular--azie {
  background-image: url("../assets/images/azie.webp");
}
.c-popular--europa {
  background-image: url("../assets/images/europa.webp");
}
.c-popular__content {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 64px;
  position: relative;
  z-index: 2;
  flex-direction: column;
}
@media (min-width: 992px) {
  .c-popular__content {
    flex-direction: row;
  }
}
.c-popular__left {
  max-width: 480px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  margin-left: 0;
  margin-top: 0;
  text-align: center;
}
@media (min-width: 992px) {
  .c-popular__left {
    margin-left: auto;
    text-align: left;
  }
}
.c-popular__title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 500;
  margin-bottom: clamp(40px, 15vw, 200px);
  line-height: 1.1;
  white-space: normal;
  margin-top: 0;
  font-style: italic;
}
@media (max-width: 767px) {
  .c-popular__title {
    white-space: normal;
    margin-bottom: 20px;
  }
}
.c-popular__subtitle {
  font-family: "Poppins", sans-serif;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 500;
  font-style: italic;
  margin-bottom: 10px;
  margin-top: 0;
}
.c-popular__description {
  font-family: "Poppins", sans-serif;
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 400;
  max-width: 400px;
}
@media (max-width: 767px) {
  .c-popular__description br {
    display: none;
  }
}
.c-popular__cards {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: clamp(20px, 20vw, 275px);
  margin-left: 0;
  justify-content: center;
}
@media (min-width: 992px) {
  .c-popular__cards {
    margin-left: clamp(0px, 15vw, 175px);
    flex-wrap: nowrap;
  }
}

.c-popular-card {
  width: clamp(200px, 45vw, 243px);
  height: clamp(250px, 50vw, 324px);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  font-size: clamp(18px, 3vw, 25px);
  font-weight: 500;
  color: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.c-popular-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}
@media (max-width: 767px) {
  .c-popular-card {
    width: 100%;
    max-width: 300px;
    height: 200px;
  }
}
.c-popular-card--afrika {
  background-image: url("../assets/images/afrika.webp");
}
.c-popular-card--azie {
  background-image: url("../assets/images/azie.webp");
}
.c-popular-card--europa {
  background-image: url("../assets/images/europa.webp");
}

.c-offers {
  padding: clamp(40px, 8vw, 80px) 24px;
  text-align: center;
}
.c-offers__title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(24px, 4vw, 30px);
  font-weight: normal;
  margin-bottom: clamp(24px, 5vw, 48px);
}
.c-offers__cards {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 32px);
  flex-wrap: wrap;
}

.c-destinations {
  padding: clamp(40px, 8vw, 80px) 24px;
  text-align: center;
}
.c-destinations__title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(24px, 4vw, 30px);
  font-weight: normal;
  margin-bottom: clamp(24px, 5vw, 48px);
}
.c-destinations__cards {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 32px);
  flex-wrap: wrap;
}

.c-card {
  width: 100%;
  max-width: 342px;
  height: clamp(300px, 60vw, 456px);
  background-color: #f2f2f2;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  font-family: "Poppins", sans-serif;
  font-size: clamp(20px, 3vw, 25px);
  font-weight: 500;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.c-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}
@media (max-width: 767px) {
  .c-card {
    max-width: 100%;
    height: 250px;
  }
}
.c-card--vliegvakanties {
  background-image: url("../assets/images/vliegvakanties.webp");
}
.c-card--autovakanties {
  background-image: url("../assets/images/autovakanties.webp");
}
.c-card--citytrips {
  background-image: url("../assets/images/citytrips.webp");
}
.c-card--zakelijke {
  background-image: url("../assets/images/zakelijke-reizen.webp");
  width: 100%;
  max-width: 1093px;
  height: clamp(200px, 40vw, 350px);
}
.c-card--zimbabwe {
  background-image: url("../assets/images/zimbabwe.webp");
}
.c-card--egypte {
  background-image: url("../assets/images/egypte.webp");
}
.c-card--zuid-afrika {
  background-image: url("../assets/images/zuid-afrika.webp");
}
.c-card--srilanka {
  background-image: url("../assets/images/srilanka.webp");
}
.c-card--mongolie {
  background-image: url("../assets/images/mongolie.webp");
}
.c-card--indonesie {
  background-image: url("../assets/images/indonesie.webp");
}
.c-card--portugal {
  background-image: url("../assets/images/portugal.webp");
}
.c-card--noorwegen {
  background-image: url("../assets/images/noorwegen.webp");
}
.c-card--zwitserland {
  background-image: url("../assets/images/zwitserland.webp");
}
.c-card--tanzania {
  background-image: url("../assets/images/tanzania.webp");
}

.c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(180px, 40vw, 207px);
  height: 41px;
  background-color: #eb5e28;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: opacity 0.3s ease;
  margin-top: 48px;
}
.c-button:hover {
  opacity: 0.9;
}
.c-button--content {
  max-width: 144px;
  width: 100%;
  margin-top: 0;
}
.c-button--wide {
  width: 100%;
  max-width: clamp(300px, 80vw, 467px);
  height: 41px;
}

.c-content {
  max-width: 1200px;
  margin: clamp(40px, 8vw, 80px) auto;
  padding: 0 24px;
}
.c-content .container {
  padding: 0;
}
@media (max-width: 991px) {
  .c-content .row {
    flex-direction: column;
    align-items: center;
  }
}
.c-content__left {
  text-align: left;
  padding-top: 40px;
}
@media (max-width: 991px) {
  .c-content__left {
    padding-top: 0;
    text-align: center;
  }
}
.c-content__title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(20px, 3vw, 25px);
  font-weight: 500;
  line-height: 1.4;
}
.c-content__highlight {
  color: #eb5e28;
}
.c-content__center {
  display: flex;
  justify-content: center;
}
@media (max-width: 991px) {
  .c-content__center {
    margin: 32px 0;
  }
}
.c-content__image-wrapper {
  position: relative;
  width: clamp(250px, 70vw, 300px);
}
@media (max-width: 991px) {
  .c-content__image-wrapper {
    width: 100%;
    max-width: 300px;
  }
}
.c-content__image {
  -o-object-fit: cover;
     object-fit: cover;
}
.c-content__image--main {
  width: 100%;
  height: auto;
  aspect-ratio: 2/3;
  border-radius: 150px;
  -o-object-position: 80% center;
     object-position: 80% center;
}
.c-content__image--overlay {
  position: absolute;
  width: clamp(150px, 50vw, 200px);
  height: clamp(150px, 50vw, 200px);
  border-radius: 50%;
  bottom: 15px;
  left: clamp(-60px, -20vw, -80px);
}
@media (max-width: 767px) {
  .c-content__image--overlay {
    width: 120px;
    height: 120px;
    left: -40px;
    bottom: 10px;
  }
}
.c-content__right {
  align-self: flex-start;
  padding-top: 40px;
}
@media (max-width: 991px) {
  .c-content__right {
    padding-top: 0;
    text-align: center;
  }
}
.c-content__text {
  font-family: "Poppins", sans-serif;
  font-size: clamp(16px, 2.5vw, 20px);
  line-height: 1.8;
  margin-bottom: 40px;
  color: #333333;
}
.c-content__stats {
  display: flex;
  gap: clamp(20px, 4vw, 40px);
  margin-bottom: 40px;
  flex-wrap: wrap;
  justify-content: center;
}
@media (min-width: 992px) {
  .c-content__stats {
    justify-content: flex-start;
    flex-wrap: nowrap;
  }
}
.c-content__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 992px) {
  .c-content__stat {
    align-items: flex-start;
  }
}
.c-content__stat-number {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 700;
  color: #eb5e28;
  margin-bottom: 8px;
}
.c-content__stat-label {
  font-size: clamp(12px, 2vw, 14px);
  color: #666666;
}

.c-custom-travel {
  max-width: 1200px;
  margin: clamp(40px, 8vw, 80px) auto;
  padding: clamp(40px, 8vw, 80px) 24px 0;
}
.c-custom-travel--bg {
  max-width: 100%;
  background-color: #fffcf2;
  padding: clamp(40px, 8vw, 70px) 0 clamp(20px, 4vw, 5px) 0;
  margin: 0;
}
.c-custom-travel--bg .container {
  max-width: 1200px;
  padding-top: 0;
}
.c-custom-travel--bg > .c-custom-travel {
  padding-top: 0;
  margin-top: 0;
}
@media (max-width: 991px) {
  .c-custom-travel .row {
    flex-direction: column;
  }
}
.c-custom-travel__left, .c-custom-travel__right {
  display: flex;
  flex-direction: column;
}
.c-custom-travel__right {
  justify-content: space-between;
}
.c-custom-travel__right .c-custom-travel__text {
  margin-bottom: 20px;
}
.c-custom-travel__right .c-button--wide {
  align-self: flex-start;
}
@media (max-width: 991px) {
  .c-custom-travel__right .c-button--wide {
    align-self: center;
  }
}
.c-custom-travel__title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(24px, 4vw, 30px);
  font-weight: 500;
  margin-bottom: 24px;
}
.c-custom-travel__intro {
  font-family: "Poppins", sans-serif;
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.6;
}
.c-custom-travel__description {
  font-family: "Poppins", sans-serif;
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 400;
  margin-bottom: 32px;
  line-height: 1.6;
}
.c-custom-travel__highlight {
  color: #eb5e28;
}
.c-custom-travel__image {
  width: 100%;
  max-width: 486px;
  height: auto;
  aspect-ratio: 486/431;
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 991px) {
  .c-custom-travel__image {
    max-width: 100%;
    margin: 0 auto 32px;
  }
}
.c-custom-travel__image--large {
  max-width: 588px;
  aspect-ratio: 588/500;
  margin-bottom: 24px;
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 991px) {
  .c-custom-travel__image--large {
    max-width: 100%;
    margin-bottom: 32px;
  }
}
.c-custom-travel__text {
  font-family: "Poppins", sans-serif;
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 400;
  line-height: 1.6;
}

.c-about-custom {
  padding: clamp(40px, 8vw, 80px) 24px;
  width: 100%;
}
.c-about-custom .container {
  max-width: 1200px;
  padding: 0 24px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .c-about-custom .row {
    flex-direction: column;
    align-items: center;
  }
}
.c-about-custom__content {
  max-width: 730px;
  margin-left: 0;
}
@media (min-width: 992px) {
  .c-about-custom__content {
    margin-left: clamp(0px, 5vw, 70px);
  }
}
@media (max-width: 991px) {
  .c-about-custom__content {
    text-align: left;
    margin-left: 0;
    width: 100%;
  }
}
.c-about-custom__title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(24px, 4vw, 30px);
  font-weight: 500;
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .c-about-custom__title {
    text-align: left;
  }
}
.c-about-custom__intro {
  font-family: "Poppins", sans-serif;
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 600;
  margin-bottom: 24px;
  line-height: 1.6;
}
@media (max-width: 991px) {
  .c-about-custom__intro {
    text-align: left;
  }
}
.c-about-custom__text {
  font-family: "Poppins", sans-serif;
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 400;
  margin-bottom: 24px;
  line-height: 1.6;
}
@media (max-width: 991px) {
  .c-about-custom__text {
    text-align: left;
  }
}
.c-about-custom__highlight {
  color: #eb5e28;
}
.c-about-custom__image {
  width: 100%;
  max-width: 365px;
  height: auto;
  aspect-ratio: 365/557;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  margin-left: 0;
  display: block;
}
@media (min-width: 992px) {
  .c-about-custom__image {
    margin-left: clamp(0px, 5vw, 70px);
  }
}
@media (max-width: 991px) {
  .c-about-custom__image {
    max-width: 100%;
    aspect-ratio: 3/4;
    margin: 32px auto 0;
    margin-left: 0;
    border-radius: 20px; /* Zorg dat border-radius blijft */
  }
}

.c-opening-hours {
  padding: clamp(40px, 8vw, 80px) 24px;
}
.c-opening-hours__cards {
  max-width: 1200px;
  margin: 0 auto;
}
.c-opening-hours__card {
  width: 100%;
  max-width: 486px;
  min-height: 425px;
  height: auto;
  background-color: #252422;
  border-radius: 20px;
  padding: clamp(24px, 5vw, 48px) clamp(16px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .c-opening-hours__card {
    min-height: auto;
  }
}
.c-opening-hours__logo {
  width: clamp(120px, 30vw, 160px);
  height: auto;
  margin: 0 auto 24px;
  display: block;
}
.c-opening-hours__city {
  font-family: "Poppins", sans-serif;
  font-size: clamp(13px, 2vw, 15px);
  color: #eb5e28;
  margin-bottom: 24px;
  padding-left: clamp(20px, 5vw, 60px);
}
@media (max-width: 767px) {
  .c-opening-hours__city {
    padding-left: 20px;
    text-align: center;
  }
}
.c-opening-hours__info {
  font-family: "Poppins", sans-serif;
  font-size: clamp(11px, 1.5vw, 12px);
  color: #ffffff;
  line-height: 1.8;
  padding-left: clamp(20px, 5vw, 60px);
}
@media (max-width: 767px) {
  .c-opening-hours__info {
    padding-left: 20px;
  }
}
.c-opening-hours__info p {
  margin: 0;
}
.c-opening-hours__title {
  margin-top: 24px;
  margin-bottom: 16px;
  font-weight: 500;
}

.c-newsletter {
  padding: 80px 24px;
}
.c-newsletter .container {
  max-width: 1200px;
  margin: 0 auto;
}
.c-newsletter__content {
  background-color: #eb5e28;
  border-radius: 20px;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
}
@media (min-width: 992px) {
  .c-newsletter__content {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
    gap: 60px;
  }
}
.c-newsletter__text {
  flex: 1;
}
.c-newsletter__title {
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.3;
}
.c-newsletter__highlight {
  color: #252422;
}
.c-newsletter__description {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.6;
  opacity: 0.95;
}
.c-newsletter__form {
  display: flex;
  gap: 12px;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 576px) {
  .c-newsletter__form {
    flex-direction: row;
    width: auto;
    min-width: 400px;
  }
}
.c-newsletter__input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  border-radius: 10px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  background-color: #ffffff;
  color: #252422;
}
.c-newsletter__input::-moz-placeholder {
  color: #666666;
}
.c-newsletter__input::placeholder {
  color: #666666;
}
.c-newsletter__input:focus {
  outline: 2px solid #252422;
  outline-offset: 2px;
}
.c-newsletter__button {
  padding: 14px 32px;
  background-color: #252422;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}
.c-newsletter__button:hover {
  opacity: 0.9;
}

.c-footer {
  position: relative;
  background-color: #eb5e28;
  color: #ffffff;
  padding: 0;
  overflow: hidden;
}
.c-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: clamp(300px, 50vh, 450px);
  background-color: #eb5e28;
  z-index: 1;
}
.c-footer::after {
  content: "";
  position: absolute;
  top: 50px;
  bottom: 0;
  left: 0;
  width: 90%;
  background-color: #c44d28;
  border-radius: 0 clamp(80px, 15vw, 150px) 0 0;
  z-index: 2;
}
@media (max-width: 767px) {
  .c-footer::after {
    border-radius: 0 80px 0 0;
  }
}
.c-footer__nav {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: clamp(16px, 4vw, 48px);
  padding: 24px 0;
  margin-top: -8px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .c-footer__nav {
    gap: 16px;
    padding: 24px 24px;
  }
}
.c-footer__nav-link {
  font-family: "Poppins", sans-serif;
  font-size: clamp(13px, 2vw, 15px);
  color: #ffffff;
  transition: opacity 0.3s;
}
.c-footer__nav-link:hover {
  opacity: 0.8;
}
.c-footer__content {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(24px, 5vw, 48px) 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
}
@media (min-width: 992px) {
  .c-footer__content {
    flex-direction: row;
  }
}
.c-footer__left {
  flex: 1;
  margin-bottom: 32px;
}
@media (min-width: 992px) {
  .c-footer__left {
    margin-bottom: 0;
  }
}
.c-footer__logo {
  width: clamp(150px, 40vw, 220px);
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 32px;
}
.c-footer__info {
  font-family: "Poppins", sans-serif;
}
.c-footer__info p {
  margin: 0;
  font-size: clamp(13px, 2vw, 15px);
  line-height: 1.8;
}
.c-footer__title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(20px, 3vw, 25px);
  font-weight: 500;
  margin-bottom: 24px;
}
.c-footer__right {
  flex: 0 0 auto;
  display: none;
}
@media (min-width: 992px) {
  .c-footer__right {
    display: block;
  }
}
.c-footer__illustration {
  width: clamp(300px, 40vw, 490px);
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  margin-top: clamp(40px, 12vw, 140px);
}
.c-footer__bottom {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px clamp(24px, 5vw, 40px);
}
.c-footer__links {
  display: flex;
  gap: clamp(12px, 3vw, 32px);
  margin-bottom: 24px;
  justify-content: flex-start;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .c-footer__links {
    justify-content: center;
  }
}
.c-footer__link {
  font-family: "Poppins", sans-serif;
  font-size: clamp(14px, 2vw, 17.5px);
  color: #ffffff;
  transition: opacity 0.3s;
}
.c-footer__link:hover {
  opacity: 0.8;
}
.c-footer__copyright {
  font-family: "Poppins", sans-serif;
  font-size: clamp(9px, 1.5vw, 10px);
  margin: 0;
  opacity: 0.8;
  text-align: left;
  max-width: 800px;
}
@media (max-width: 767px) {
  .c-footer__copyright {
    text-align: center;
  }
}

.c-landoverzicht {
  font-family: "Poppins", sans-serif;
  padding: clamp(40px, 8vw, 80px) 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.c-landoverzicht .container {
  padding: 0 32px;
}
.c-landoverzicht__title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(24px, 4vw, 30px);
  font-weight: 500;
  margin-bottom: 8px;
  color: #252422;
}
.c-landoverzicht__intro, .c-landoverzicht__outro {
  font-family: "Poppins", sans-serif;
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.6;
  color: #333333;
  margin-bottom: 32px;
}
.c-landoverzicht__subtitle {
  font-family: "Poppins", sans-serif;
  font-size: clamp(18px, 3vw, 20px);
  font-weight: 500;
  margin-bottom: 8px;
  color: #252422;
}
.c-landoverzicht__highlight {
  color: #eb5e28;
  font-weight: 500;
}
.c-landoverzicht__list {
  font-family: "Poppins", sans-serif;
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.6;
  color: #333333;
  margin-bottom: 32px;
  padding-left: 32px;
}
.c-landoverzicht__grid {
  display: flex;
  gap: 64px;
  align-items: flex-start;
  flex-direction: column;
}
@media (min-width: 992px) {
  .c-landoverzicht__grid {
    flex-direction: row;
  }
}
.c-landoverzicht__content {
  flex: 1;
}
@media (min-width: 992px) {
  .c-landoverzicht__content {
    flex: 0 0 710px;
  }
}
.c-landoverzicht__card {
  flex: 1;
}
@media (min-width: 992px) {
  .c-landoverzicht__card {
    flex: 0 0 383px;
  }
}

.c-landoverzicht-card {
  flex: 0 0 383px;
  width: 100%;
  max-width: 383px;
  height: clamp(350px, 80vw, 450px);
  background: url("../assets/images/zuidafrikacard.webp") center/cover no-repeat;
  border-radius: 20px;
  padding: clamp(24px, 5vw, 48px) 20px;
  color: #ffffff;
  position: relative;
  margin: 0 auto;
}
.c-landoverzicht-card__nachten {
  font-family: "Poppins", sans-serif;
  font-size: clamp(14px, 2vw, 16px);
  color: #ffffff;
  text-align: left;
  margin-top: -20px;
}
.c-landoverzicht-card__title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(20px, 3vw, 24px);
  font-weight: 500;
  color: #ffffff;
  margin-bottom: -2px;
  text-align: left;
}
.c-landoverzicht-card__continent {
  font-family: "Poppins", sans-serif;
  font-size: clamp(14px, 2vw, 16px);
  color: #ffffff;
  margin-bottom: clamp(150px, 40vw, 244px);
  text-align: left;
}
.c-landoverzicht-card__prijs {
  text-align: left;
  margin-bottom: 8px;
}
.c-landoverzicht-card__oude-prijs {
  font-family: "Poppins", sans-serif;
  font-size: clamp(13px, 2vw, 15px);
  color: #eb5e28;
  text-decoration: line-through;
}
.c-landoverzicht-card__nieuwe-prijs {
  font-family: "Poppins", sans-serif;
  font-size: clamp(20px, 3vw, 24px);
  font-weight: 500;
  color: #ffffff;
}
.c-landoverzicht-card__aanbod {
  font-family: "Poppins", sans-serif;
  font-size: clamp(11px, 1.5vw, 12px);
  color: #ffffff;
  text-align: left;
  margin-top: -10px;
  opacity: 0.8;
}
.c-landoverzicht-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  right: 30px;
  bottom: 30px;
  width: clamp(100px, 25vw, 121px);
  height: 41px;
  background-color: #eb5e28;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-family: "Poppins", sans-serif;
  font-size: clamp(12px, 2vw, 14px);
  font-weight: 500;
  cursor: pointer;
}
.c-landoverzicht-card__button:hover {
  opacity: 0.9;
}
@media (max-width: 767px) {
  .c-landoverzicht-card__button {
    right: 20px;
    bottom: 20px;
  }
}

.c-topbestemmingen {
  background-color: rgba(235, 94, 40, 0.75);
  padding: clamp(48px, 8vw, 80px) 0;
}
.c-topbestemmingen__title {
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  font-weight: 500;
  text-align: center;
  color: #ffffff;
  margin-bottom: clamp(32px, 6vw, 48px);
}
.c-topbestemmingen__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  justify-items: center;
}

.c-topbestemmingen__filter {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.c-topbestemmingen__filter-icon {
  margin-right: 0.5rem;
  color: #ffffff;
}
.c-topbestemmingen__filter-text {
  font-size: 16px;
  color: #ffffff;
}

.c-topbestemmingen-card {
  width: 300px;
  height: 321px;
  background-color: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.c-topbestemmingen-card__image {
  width: 300px;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-topbestemmingen-card__content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.c-topbestemmingen-card__meta {
  display: flex;
  justify-content: flex-end;
}
.c-topbestemmingen-card__duration {
  font-size: 12px;
  color: #403d39;
  text-align: right;
}
.c-topbestemmingen-card__divider {
  border-top: 1px dashed #403d39;
  margin: 4px 0;
}
.c-topbestemmingen-card__country {
  font-size: 12px;
  color: #403d39;
  text-align: left;
}
.c-topbestemmingen-card__name {
  font-size: 15px;
  font-weight: 500;
  color: #252422;
  margin-top: 6px;
}
.c-topbestemmingen-card__price {
  font-size: 12px;
  color: #eb5e28;
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}
.c-topbestemmingen-card__old {
  text-decoration: line-through;
  opacity: 0.7;
  color: #403d39;
}
.c-topbestemmingen-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .c-topbestemmingen__grid {
    gap: 24px;
  }
}
.c-contact-hero {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-image: url("../assets/images/luchtballonnen.webp");
  min-height: clamp(500px, 80vh, 750px);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 32px;
}
.c-contact-hero .c-contact-form {
  width: 100%;
  max-width: 954px;
  min-height: auto;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 16px;
  padding: clamp(24px, 5vw, 40px);
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Poppins", sans-serif;
  gap: 16px;
}
.c-contact-hero .c-contact-form__title {
  font-size: clamp(24px, 4vw, 30px);
  font-weight: 500;
  text-align: center;
  margin-bottom: 8px;
}
.c-contact-hero .c-contact-form__subtitle {
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 300;
  font-style: italic;
  text-align: center;
  margin-bottom: 24px;
}
.c-contact-hero .c-contact-form__input, .c-contact-hero .c-contact-form__textarea {
  width: 100%;
  max-width: 710px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 400;
  border: none;
  border-radius: 8px;
  background-color: rgba(108, 108, 108, 0.8);
  color: #fff;
}
.c-contact-hero .c-contact-form__input::-moz-placeholder, .c-contact-hero .c-contact-form__textarea::-moz-placeholder {
  color: #fff;
  opacity: 0.8;
}
.c-contact-hero .c-contact-form__input::placeholder, .c-contact-hero .c-contact-form__textarea::placeholder {
  color: #fff;
  opacity: 0.8;
}
.c-contact-hero .c-contact-form__input {
  height: 40px;
}
.c-contact-hero .c-contact-form__textarea {
  height: clamp(120px, 20vh, 160px);
  resize: none;
}
.c-contact-hero .c-contact-form__checkbox {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: #fff;
  margin-top: 8px;
  text-align: left;
  width: 100%;
  max-width: 710px;
}
.c-contact-hero .c-contact-form__checkbox input {
  margin-right: 8px;
  flex-shrink: 0;
}
.c-contact-hero .c-contact-form__submit {
  width: clamp(120px, 30vw, 133px);
  height: 41px;
  background-color: #eb5e28;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  margin-top: 24px;
  align-self: center;
}
.c-contact-hero .c-contact-form__submit:hover {
  opacity: 0.9;
}

.c-contact-spacing {
  padding-top: clamp(40px, 8vw, 80px);
  padding-bottom: clamp(40px, 8vw, 80px);
}

.c-map-card {
  width: 100%;
  max-width: 486px;
  min-height: 425px;
  height: auto;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}
.c-map-card .c-opening-hours__logo,
.c-map-card .c-opening-hours__city {
  margin: 0 auto;
  display: block;
}
.c-map-card iframe {
  flex: 1;
  width: 100%;
  min-height: 300px;
  border: 0;
  margin-top: -50px;
}
@media (max-width: 767px) {
  .c-map-card iframe {
    min-height: 250px;
  }
}

.c-locations-openinghours .col-12.col-md-6 {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .c-locations-openinghours .col-12.col-md-6 {
    margin-bottom: 20px;
  }
}

.c-stats-section {
  display: flex;
  justify-content: center;
  margin: clamp(30px, 6vw, 60px) 0;
  padding: 0 24px;
}
.c-stats-section .c-content__stats {
  display: flex;
  gap: clamp(20px, 4vw, 40px);
  text-align: center;
  flex-wrap: wrap;
  justify-content: center;
}
.c-stats-section .c-content__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.c-stats-section .c-content__stat-number {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 700;
  color: #eb5e28;
  margin-bottom: 8px;
}
.c-stats-section .c-content__stat-label {
  font-size: clamp(12px, 2vw, 14px);
  color: #666666;
}

.c-about {
  padding: clamp(40px, 8vw, 80px) 24px;
}
.c-about .container {
  display: flex;
  align-items: flex-start;
  gap: clamp(20px, 8vw, 94px);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  flex-direction: column;
}
@media (min-width: 992px) {
  .c-about .container {
    flex-direction: row;
  }
}
.c-about__image {
  flex: 0 0 auto;
  width: 100%;
}
@media (min-width: 992px) {
  .c-about__image {
    width: auto;
  }
}
.c-about__image img {
  width: 100%;
  max-width: 636px;
  height: auto;
  aspect-ratio: 636/425;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  display: block;
}
@media (max-width: 767px) {
  .c-about__image img {
    aspect-ratio: 16/9;
  }
}
.c-about__text {
  flex: 1;
}
@media (min-width: 992px) {
  .c-about__text {
    flex: 0 0 400px;
  }
}
.c-about__text__title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(24px, 4vw, 30px);
  font-weight: 500;
  margin-bottom: 20px;
}
.c-about__text__paragraph {
  font-family: "Poppins", sans-serif;
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.8;
  color: #000;
  margin-bottom: 16px;
}

.c-troeven {
  padding: clamp(40px, 6vw, 60px) 24px;
  background-color: #fff;
}
.c-troeven .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.c-troeven__header {
  font-family: "Poppins", sans-serif;
  font-size: clamp(24px, 4vw, 30px);
  font-weight: 500;
  margin-bottom: clamp(12px, 2vw, 16px);
  text-align: left;
  width: 100%;
  max-width: 1160px;
}
.c-troeven__card {
  width: 100%;
  max-width: 1160px;
  min-height: 140px;
  height: auto;
  background-color: #fff8ef;
  border-left: clamp(10px, 2vw, 20px) solid #4d1f12;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: clamp(16px, 3vw, 20px) clamp(16px, 4vw, 30px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.c-troeven__title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 500;
  color: #eb5e28;
  margin-bottom: clamp(12px, 3vw, 24px);
}
.c-troeven__text {
  font-family: "Poppins", sans-serif;
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 400;
  color: #000;
  line-height: 1.6;
}

.c-faq {
  padding: 0 24px clamp(80px, 10vw, 120px);
}
.c-faq .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.c-faq__header {
  font-family: "Poppins", sans-serif;
  font-size: clamp(24px, 4vw, 30px);
  font-weight: 500;
  margin-bottom: clamp(20px, 4vw, 40px);
  text-align: left;
  width: 100%;
  max-width: 1160px;
}
.c-faq__accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 1160px;
  margin: 0 auto;
}
.c-faq__item {
  background-color: #fff8ef;
  border-left: clamp(10px, 2vw, 20px) solid #4d1f12;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.c-faq__button {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: default;
  background-color: transparent;
  font-family: "Poppins", sans-serif;
  font-size: clamp(15px, 2.5vw, 18px);
  font-weight: 500;
  color: #eb5e28;
  padding: clamp(16px, 3vw, 20px) clamp(16px, 4vw, 30px);
  border: none;
  position: relative;
}
.c-faq__arrow {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-right: 2px solid #eb5e28;
  border-bottom: 2px solid #eb5e28;
  transform: rotate(45deg);
  flex-shrink: 0;
}
.c-faq__body {
  display: none;
  font-family: "Poppins", sans-serif;
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.6;
  color: #252422;
  padding: 0 clamp(16px, 4vw, 30px) clamp(16px, 3vw, 20px);
}

/* =====================================
UTILITIES
===================================== */