/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Lato",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Open Sans",  sans-serif;
  --nav-font: "Roboto",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #f5f5f5; /* Background color for the entire website, including individual sections */
  --default-color: #212529; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #16537e; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #f77f00; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #16537e; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #212529;  /* The default color of the main navmenu links */
  --nav-hover-color: #f77f00; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #f77f00; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f5f5f5;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 26px;
  margin: 0;
  border-radius: 4px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 20px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding: 40px 0 0 0;
  position: relative;
}

.footer .icon {
  color: var(--accent-color);
  margin-right: 15px;
  font-size: 24px;
  line-height: 0;
}

.footer h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer .address p {
  margin-bottom: 0px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 5px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  min-height: 50vh;
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  /* Overlay */
  /* Content boven overlay leggen */
}

.hero .btn {
  background-color: var(--surface-color);
  color: #fff;
}

.hero .btn.action {
  background-color: var(--accent-color);
}

.hero h1 {
  color: #fff;
  font-weight: 800;
}

.hero p {
  font-weight: 600;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  padding-top: 60px;
  position: relative;
  background: var(--background-color);
  padding-bottom: 60px;
}

.about .about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 992px) {
  .about .about-wrapper {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.about .image-showcase {
  position: relative;
}

.about .main-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 64px color-mix(in srgb, var(--default-color), transparent 85%);
}

.about .main-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .about .main-image img {
    height: 360px;
  }
}

.about .main-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, color-mix(in srgb, var(--accent-color), transparent 70%) 100%);
}

.about .experience-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 16px 24px;
  border-radius: 16px;
  text-align: center;
  z-index: 2;
}

.about .experience-badge .years {
  display: block;
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
}

.about .experience-badge .label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.9;
}

.about .floating-card {
  position: absolute;
  bottom: -32px;
  right: -24px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--surface-color);
  padding: 20px 24px;
  border-radius: 16px;
  box-shadow: 0 16px 48px color-mix(in srgb, var(--default-color), transparent 85%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  z-index: 3;
}

@media (max-width: 768px) {
  .about .floating-card {
    right: 16px;
    bottom: -24px;
    padding: 16px 20px;
  }
}

.about .floating-card .card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  border-radius: 12px;
}

.about .floating-card .card-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.about .floating-card .card-content strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 2px;
}

.about .floating-card .card-content span {
  font-size: 0.8125rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.about .content-block {
  padding-left: 16px;
}

@media (max-width: 992px) {
  .about .content-block {
    padding-left: 0;
    padding-top: 32px;
  }
}

.about .section-tag {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  position: relative;
  padding-left: 48px;
}

.about .section-tag::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 2px;
  background: var(--accent-color);
}

.about h2 {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--heading-color);
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .about h2 {
    font-size: 1.875rem;
  }
}

.about .intro-text {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 32px;
}

.about .feature-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.about .feature-item {
  display: flex;
  gap: 20px;
}

.about .feature-item .feature-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), #000000 20%) 100%);
  border-radius: 12px;
}

.about .feature-item .feature-icon i {
  font-size: 1.375rem;
  color: var(--contrast-color);
}

.about .feature-item .feature-content h4 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0 0 6px 0;
}

.about .feature-item .feature-content p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.about .action-area {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

@media (max-width: 576px) {
  .about .action-area {
    gap: 24px;
  }
}

.about .btn-primary-action {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.about .btn-primary-action:hover {
  background: color-mix(in srgb, var(--accent-color), #000000 15%);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px color-mix(in srgb, var(--accent-color), transparent 50%);
}

.about .contact-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.about .contact-info i {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 50%;
  font-size: 1.125rem;
}

.about .contact-info .info-text span {
  display: block;
  font-size: 0.8125rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 2px;
}

.about .contact-info .info-text strong {
  font-size: 1rem;
  font-weight: 700;
  color: var(--heading-color);
}

.about .stats-banner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--accent-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 48px color-mix(in srgb, var(--accent-color), transparent 65%);
}

@media (max-width: 992px) {
  .about .stats-banner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .about .stats-banner {
    grid-template-columns: 1fr;
  }
}

.about .stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 32px;
  position: relative;
  transition: background 0.3s ease;
}

.about .stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 50%;
  width: 1px;
  background: color-mix(in srgb, var(--contrast-color), transparent 70%);
}

@media (max-width: 992px) {
  .about .stat-item:not(:last-child)::after {
    display: none;
  }
}

.about .stat-item:hover {
  background: color-mix(in srgb, var(--accent-color), #000000 10%);
}

@media (max-width: 768px) {
  .about .stat-item {
    padding: 24px;
  }
}

.about .stat-item>i {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
  border-radius: 12px;
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.about .stat-item .stat-content .stat-number,
.about .stat-item .stat-content .stat-suffix {
  font-size: 2rem;
  font-weight: 800;
  color: var(--contrast-color);
  line-height: 1;
}

.about .stat-item .stat-content .stat-text {
  display: block;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--contrast-color), transparent 25%);
  margin-top: 4px;
}

/*--------------------------------------------------------------
# Features 2 Section
--------------------------------------------------------------*/
.features-2 {
  padding: 0;
}

.features-2 .video-play {
  min-height: 400px;
  background: linear-gradient(color-mix(in srgb, var(--background-color), transparent 90%), color-mix(in srgb, var(--background-color), transparent 75%)), url("https://www.toerismecongres.nl/uploads/2026/255341324_m.jpg") center center;
  background-size: cover;
}

.features-2 .content {
  background: linear-gradient(color-mix(in srgb, var(--background-color), transparent 90%), color-mix(in srgb, var(--background-color), transparent 75%)), url("../img/bg/abstract-bg-4.webp") center center;
  background-size: cover;
  padding: 40px;
}

@media (min-width: 768px) {
  .features-2 .content {
    padding: 80px;
  }
}

.features-2 .content h3 {
  font-weight: 600;
  font-size: 32px;
}

.features-2 .content ul {
  list-style: none;
  padding: 0;
}

.features-2 .content ul li {
  padding-bottom: 10px;
}

.features-2 .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.features-2 .content p:last-child {
  margin-bottom: 0;
}

.features-2 .content .read-more {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: -nline-flex;
  align-items: center;
  justify-content: center;
  color: var(--contrast-color);
  background: var(--accent-color);
}

.features-2 .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.features-2 .content .read-more:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, black 15%);
  padding-right: 19px;
}

.features-2 .content .read-more:hover i {
  margin-left: 10px;
}

.features-2 .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .feature-gallery {
  position: relative;
}

.features .feature-gallery img.img-fluid {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 4px 32px color-mix(in srgb, var(--accent-color) 12%, transparent 90%);
  background: var(--surface-color);
}

.features .feature-gallery .feature-thumb {
  position: absolute;
  right: -32px;
  bottom: -32px;
  display: flex;
  gap: 16px;
  z-index: 2;
}

.features .feature-gallery .feature-thumb img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border: 3px solid var(--background-color);
  border-radius: 50%;
  box-shadow: 0 2px 12px color-mix(in srgb, var(--heading-color) 10%, transparent 90%);
  background: var(--surface-color);
  transition: box-shadow 0.3s;
}

.features .feature-gallery .feature-thumb img:hover {
  box-shadow: 0 2px 16px color-mix(in srgb, var(--accent-color) 35%, transparent 65%);
}

.features .features-content h3 {
  font-size: 2.2rem;
  font-family: var(--heading-font);
  font-weight: 800;
  color: var(--heading-color);
}

.features .features-content>p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 1.1rem;
  font-family: var(--default-font);
}

.features .feature-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--accent-color) 5%, transparent 95%);
  border-radius: 1rem;
  padding: 1.7rem 1.25rem;
  box-shadow: 0 1px 10px color-mix(in srgb, var(--heading-color) 3%, transparent 97%);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.features .feature-card .icon-wrap {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color) 11%, transparent 89%);
  margin-right: 8px;
  font-size: 2rem;
  color: var(--accent-color);
  box-shadow: 0 2px 10px color-mix(in srgb, var(--accent-color) 4%, transparent 96%);
  transition: background 0.3s, color 0.3s;
}

.features .feature-card h5 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.features .feature-card p {
  margin-bottom: 0;
  font-size: 0.98rem;
  color: color-mix(in srgb, var(--default-color), transparent 28%);
}

.features .feature-card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 8px 32px color-mix(in srgb, var(--accent-color) 12%, transparent 88%);
}

.features .feature-card:hover .icon-wrap {
  background: var(--accent-color);
  color: var(--contrast-color);
}

@media (max-width: 992px) {
  .features .feature-gallery img.img-fluid {
    height: 260px;
  }

  .features .feature-gallery .feature-thumb {
    right: 0;
    bottom: -12px;
  }
}

@media (max-width: 768px) {
  .features .feature-gallery {
    text-align: center;
  }

  .features .feature-gallery img.img-fluid {
    height: 190px;
  }

  .features .feature-gallery .feature-thumb {
    position: static;
    margin-top: 12px;
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Venue Section
--------------------------------------------------------------*/
.venue {
  --background-color: #f9f2e8;
  padding-top: 60px;
  padding-bottom: 60px;
}

.venue .venue-header .venue-title-badge {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 20%));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.venue .venue-header .venue-title-badge i {
  font-size: 1.8rem;
  color: var(--contrast-color);
}

.venue .venue-header h3 {
  color: var(--heading-color);
  font-size: 2.5rem;
  margin-bottom: 16px;
  font-weight: 700;
}

.venue .venue-header .venue-location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--default-color);
  font-size: 1.05rem;
}

.venue .venue-header .venue-location i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

.venue .main-venue-card {
  background-color: var(--surface-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.venue .main-venue-card .venue-image-wrapper {
  position: relative;
  overflow: hidden;
}

.venue .main-venue-card .venue-image-wrapper img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.venue .main-venue-card .venue-image-wrapper:hover img {
  transform: scale(1.05);
}

.venue .main-venue-card .venue-image-wrapper .capacity-overlay {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--contrast-color);
  backdrop-filter: blur(10px);
  padding: 16px 24px;
  border-radius: 12px;
  text-align: center;
}

.venue .main-venue-card .venue-image-wrapper .capacity-overlay .capacity-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
}

.venue .main-venue-card .venue-image-wrapper .capacity-overlay .capacity-label {
  font-size: 0.85rem;
  color: var(--default-color);
  margin-top: 4px;
  font-weight: 500;
}

.venue .main-venue-card .venue-description {
  padding: 32px;
}

.venue .main-venue-card .venue-description p {
  margin: 0;
  line-height: 1.8;
  font-size: 1.05rem;
}

.venue .amenities-card {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.venue .amenities-card h5 {
  color: var(--heading-color);
  font-size: 1.4rem;
  margin-bottom: 24px;
  font-weight: 600;
}

.venue .amenities-card .amenities-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  flex-grow: 1;
}

.venue .amenities-card .amenities-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.venue .amenities-card .amenities-list li i {
  color: var(--accent-color);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.venue .amenities-card .amenities-list li span {
  font-size: 0.95rem;
  line-height: 1.5;
}

.venue .amenities-card .action-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.venue .amenities-card .action-buttons .btn-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.venue .amenities-card .action-buttons .btn-action.primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.venue .amenities-card .action-buttons .btn-action.primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateX(4px);
}

.venue .amenities-card .action-buttons .btn-action.secondary {
  background-color: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
}

.venue .amenities-card .action-buttons .btn-action.secondary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  transform: translateX(4px);
}

.venue .interactive-map {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.venue .interactive-map .map-header {
  text-align: center;
  margin-bottom: 32px;
}

.venue .interactive-map .map-header h4 {
  color: var(--heading-color);
  font-size: 1.8rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.venue .interactive-map .map-header p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.venue .interactive-map .map-frame {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.venue .interactive-map .map-frame iframe {
  width: 100%;
  height: 450px;
}

.venue .transportation-section h4 {
  color: var(--heading-color);
  font-size: 1.8rem;
  margin-bottom: 32px;
  text-align: center;
  font-weight: 600;
}

.venue .transportation-section .transport-card {
  background-color: var(--surface-color);
  border-radius: 16px;
  padding: 32px 24px;
  height: 100%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.venue .transportation-section .transport-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-color);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.venue .transportation-section .transport-card .transport-header {
  text-align: center;
  margin-bottom: 20px;
}

.venue .transportation-section .transport-card .transport-header .transport-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.venue .transportation-section .transport-card .transport-header .transport-icon.air {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 85%), color-mix(in srgb, var(--accent-color), transparent 75%));
}

.venue .transportation-section .transport-card .transport-header .transport-icon.rail {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 85%), color-mix(in srgb, var(--accent-color), transparent 75%));
}

.venue .transportation-section .transport-card .transport-header .transport-icon.car {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 85%), color-mix(in srgb, var(--accent-color), transparent 75%));
}

.venue .transportation-section .transport-card .transport-header .transport-icon i {
  font-size: 2rem;
  color: var(--accent-color);
}

.venue .transportation-section .transport-card .transport-header h6 {
  color: var(--heading-color);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
}

.venue .transportation-section .transport-card .transport-body p {
  margin: 0;
  line-height: 1.7;
  text-align: center;
}

.venue .hotels-section .hotels-header {
  text-align: center;
  margin-bottom: 40px;
}

.venue .hotels-section .hotels-header h4 {
  color: var(--heading-color);
  font-size: 1.8rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.venue .hotels-section .hotels-header p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 1.05rem;
}

.venue .hotels-section .hotel-item {
  background-color: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  height: 100%;
}

.venue .hotels-section .hotel-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.venue .hotels-section .hotel-item:hover .hotel-image img {
  transform: scale(1.1);
}

.venue .hotels-section .hotel-item .hotel-image {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.venue .hotels-section .hotel-item .hotel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.venue .hotels-section .hotel-item .hotel-image .hotel-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.venue .hotels-section .hotel-item .hotel-image .hotel-badge.discount {
  background-color: color-mix(in srgb, var(--accent-color), black 20%);
}

.venue .hotels-section .hotel-item .hotel-details {
  padding: 24px;
}

.venue .hotels-section .hotel-item .hotel-details h6 {
  color: var(--heading-color);
  font-size: 1.15rem;
  margin-bottom: 12px;
  font-weight: 600;
}

.venue .hotels-section .hotel-item .hotel-details .hotel-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.venue .hotels-section .hotel-item .hotel-details .hotel-meta .distance {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--default-color);
}

.venue .hotels-section .hotel-item .hotel-details .hotel-meta .distance i {
  color: var(--accent-color);
}

.venue .hotels-section .hotel-item .hotel-details .hotel-meta .rating {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--default-color);
  font-weight: 500;
}

.venue .hotels-section .hotel-item .hotel-details .hotel-meta .rating i {
  color: #ffc107;
  font-size: 0.85rem;
}

.venue .hotels-section .hotel-item .hotel-details .hotel-pricing .price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
}

.venue .hotels-section .hotel-item .hotel-details .hotel-pricing .period {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.9rem;
}

@media (max-width: 992px) {
  .venue .venue-header h3 {
    font-size: 2rem;
  }

  .venue .main-venue-card .venue-image-wrapper img {
    height: 300px;
  }

  .venue .interactive-map .map-frame iframe {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .venue .venue-header h3 {
    font-size: 1.75rem;
  }

  .venue .amenities-card {
    margin-top: 24px;
  }

  .venue .interactive-map {
    padding: 24px;
  }

  .venue .interactive-map .map-frame iframe {
    height: 280px;
  }

  .venue .transportation-section h4,
  .venue .hotels-section .hotels-header h4 {
    font-size: 1.5rem;
  }

  .venue .transport-card,
  .venue .hotel-item {
    margin-bottom: 24px;
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  --background-color: #cfe2f3;
  position: relative;
  overflow: hidden;
}

.call-to-action .container {
  position: relative;
  z-index: 2;
}

.call-to-action .display-4 {
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.call-to-action .lead {
  font-size: 1.125rem;
  line-height: 1.6;
  font-weight: 400;
}

.call-to-action .stats-wrapper {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 3rem 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.call-to-action .stat-item {
  text-align: center;
  padding: 1rem 0;
}

.call-to-action .stat-item .stat-icon {
  width: 60px;
  height: 60px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
}

.call-to-action .stat-item .stat-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.call-to-action .stat-item .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.call-to-action .stat-item .stat-label {
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.call-to-action .stat-item:hover .stat-icon {
  background: var(--accent-color);
  transform: translateY(-2px);
}

.call-to-action .stat-item:hover .stat-icon i {
  color: var(--contrast-color);
}

.call-to-action .cta-content h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.call-to-action .cta-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 1.125rem;
  line-height: 1.6;
}

.call-to-action .cta-buttons {
  margin-bottom: 2rem;
}

.call-to-action .cta-buttons .btn {
  border-radius: 50px;
  padding: 0.875rem 2rem;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border-width: 2px;
}

.call-to-action .cta-buttons .btn.btn-primary {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.call-to-action .cta-buttons .btn.btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
  border-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.call-to-action .cta-buttons .btn.btn-outline-secondary {
  color: var(--default-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 70%);
  background: transparent;
}

.call-to-action .cta-buttons .btn.btn-outline-secondary:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.call-to-action .security-note {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-top: 1rem;
}

.call-to-action .security-note small {
  display: inline-flex;
  align-items: center;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.call-to-action .security-note small i {
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .call-to-action .display-4 {
    font-size: 2rem;
  }

  .call-to-action .stats-wrapper {
    padding: 2rem 1rem;
  }

  .call-to-action .stat-item {
    margin-bottom: 2rem;
  }

  .call-to-action .stat-item .stat-number {
    font-size: 2rem;
  }

  .call-to-action .cta-buttons .btn {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
  }

  .call-to-action .cta-buttons .btn:last-child {
    margin-bottom: 0;
  }
}

/*--------------------------------------------------------------
# Partners Section
--------------------------------------------------------------*/
.partners {
  /* Add your styles here */
  background-color: var(--contrast-color);
}

.partners .organisatie {
  background: var(--surface-color);
  color: #ffffff;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.partners .organisatie h3 {
  color: #fff;
}

.partners .logo-balk {
  padding-top: 1rem;
}