:root {
    --primary: #0072bb !important;
    --primary-dark: #214b7f;
    --secondary: #f4f7fc;
    --accent: #eb8b4a;
    --text: #212529;
    --muted: #6c7f96;
    --border: #dbe4f0;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(31, 75, 127, 0.12);
    --radius: 18px;
    --radius-sm: 12px;
    --container: 1280px;

    --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
    --font-heading: 'Crete Round', Georgia, serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--text);
    background: linear-gradient(180deg, #f8fbff 0%, #eef4fb 100%);
    overflow-x: hidden;
    font-size: 16px;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: #0072bb;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.h2,
h2 {
    font-size: 25px !important;
    font-weight: 700 !important;
    color: #0072bb !important;
    font-family: var(--font-heading);
}

.h3,
h3 {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #0072bb !important;
    font-family: var(--font-heading);
}

.h4,
h4 {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #0072bb !important;
    font-family: var(--font-heading);
}

.container {
    width: min(calc(100% - 32px), var(--container));
    margin: 0 auto;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    height: auto;
    padding-top: 10px;
    padding-bottom: 10px;
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 82px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
}

.brand__logo {
    width: 68px;
    height: 68px;
    border-radius: 8px;
    overflow: hidden;
    background: #dfeaf8;
    flex-shrink: 0;
}

.brand__title {
    margin: 0;
    font-size: 2rem;
    line-height: 1;
    color: var(--primary);
    font-weight: 700;
    font-family: var(--font-heading);
}

.brand__subtitle {
    margin: 6px 0 0;
    font-size: 1rem;
    color: var(--primary);
    opacity: 0.9;
    font-family: var(--font-body);
}

.icon-btn {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border: 1px solid var(--border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    box-shadow: 0 4px 14px rgba(32, 73, 122, 0.08);
}

/* Desktop navigatie */
.main-nav {
    position: relative;
    flex: 1;
    overflow: visible;
}

.main-nav__list {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 28px;
    margin: 0;
    padding: 0;
}

.main-nav__list > li {
    position: static;
}

.main-nav__list > li > a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    padding: 0.75rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    font-family: var(--font-body);
}

.main-nav__list > li > a.is-active::after,
.main-nav__list > li > a:hover::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    border-radius: 999px;
    background: var(--primary);
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #ddd;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    padding: 24px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 999;
}

.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu__inner {
    width: 100%;
    padding: 0 24px;
}

.submenu__grid {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 18px 48px;
    margin: 0;
    padding: 0;
    max-width: 620px;
}

.submenu__grid li {
    margin: 0;
    padding: 0;
}

.submenu__grid a {
    display: block;
    padding: 0;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    font-family: var(--font-body);
}

/* Mobiele menu knop */
.mobile-nav-toggle {
    display: none;
    width: 140px;
    height: 140px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #fff;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(32, 73, 122, 0.08);
    flex-shrink: 0;
}

.mobile-nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--primary);
    border-radius: 999px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Mobiele overlay */
.mobile-nav {
    position: fixed;
    inset: 0;
    background: rgba(20, 33, 51, 0.42);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 1200;
}

.mobile-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-nav__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 90%;
    height: 100%;
    background: #fff;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.12);
    transform: translateX(100%);
    transition: transform 0.25s ease;
    display: flex;
    flex-direction: column;
}

.mobile-nav.is-open .mobile-nav__panel {
    transform: translateX(0);
}

.mobile-nav__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid var(--border);
    color: var(--primary);
    font-size: 3.1rem;
    font-family: var(--font-heading);
}

.mobile-nav-close {
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    background: #fff;
    border-radius: 10px;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    color: var(--primary);
}

.mobile-nav__list,
.mobile-submenu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav__list {
    padding: 12px 0 24px;
    overflow-y: auto;
}

.mobile-nav__list > li {
    border-bottom: 1px solid #edf2f8;
    font-size: 36px;
}

.mobile-nav__list > li > a,
.mobile-submenu-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 36px 20px;
    color: var(--primary);
    font-size: 2.6rem;
    font-weight: 600;
    background: transparent;
    border: 0;
    text-align: left;
    cursor: pointer;
    font-family: var(--font-body);
}

.mobile-nav__list > li > a.is-active {
    background: #edf4fc;
}

.mobile-has-submenu .mobile-submenu {
    display: none;
    background: #f8fbff;
    padding-bottom: 10px;
}

.mobile-has-submenu.is-open .mobile-submenu {
    display: block;
}

.mobile-submenu li a {
    display: block;
    padding: 20px 20px 20px 34px;
    color: #0072bb;
    font-size: 2.1rem;
    line-height: 1.5;
    font-family: var(--font-body);
}

.mobile-submenu-icon {
    font-size: 1.4rem;
    line-height: 1;
    color: var(--primary);
}

/* Hamburger animatie actief */
.mobile-nav-toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-nav-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, rgba(244, 248, 253, 0.98) 0%, rgba(244, 248, 253, 0.84) 40%, rgba(244, 248, 253, 0.25) 100%);
}

.hero::before,
.hero::after,
.section-wave::before,
.section-wave::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 140px;
    pointer-events: none;
}

.hero::after {
    bottom: -50px;
    background:
        radial-gradient(120% 120% at 0% 100%, rgba(72, 135, 219, 0.24) 0%, rgba(72, 135, 219, 0) 65%),
        radial-gradient(120% 120% at 30% 100%, rgba(45, 93, 155, 0.26) 0%, rgba(45, 93, 155, 0) 60%),
        radial-gradient(120% 120% at 60% 100%, rgba(141, 195, 255, 0.20) 0%, rgba(141, 195, 255, 0) 50%);
}

.hero__inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 48px;
    min-height: 700px;
    padding: 80px 0 120px;
    position: relative;
    z-index: 1;
}

.hero__content h2 {
    margin: 0 0 16px;
    font-size: 50px !important;
    color: #0072bb;
    line-height: 1.18;
    font-family: var(--font-heading);
}

.hero__content h2 strong {
    display: block;
    font-size: 1.12em;
}

.hero__meta {
    margin: 0 0 36px;
    font-size: 17px;
    line-height: 1.8;
    color: var(--primary-dark);
}

.hero__visual {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #dfeaf8;
    box-shadow: var(--shadow);
}

.hero__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: auto;
    padding: 15px 15px;
    border-radius: 0.5em;
    border: 0;
    color: #fff;
    background-color: #0072bb !important;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: var(--font-body);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
    text-align: center;
}

.btn--primary {
    color: var(--white) !important;
    border: 2px solid #0072bb;
    background: #0072bb;
}

a.btn.btn--primary:hover {
    color: #0072bb !important;
    border: 2px solid #0072bb !important;
    background-color: #fff !important;
    text-decoration: none;
}

.btn:hover {
    transform: translateY(-1px);
    text-decoration: none;
}

/* Sections */
.section {
    position: relative;
    padding: 72px 0;
}

.section-wave {
    overflow: hidden;
}

.section-wave::before {
    top: -85px;
    background:
        radial-gradient(120% 120% at 0% 100%, rgba(135, 182, 240, 0.15) 0%, rgba(135, 182, 240, 0) 55%),
        radial-gradient(100% 120% at 20% 90%, rgba(50, 116, 191, 0.20) 0%, rgba(50, 116, 191, 0) 50%);
}

.section-wave::after {
    bottom: -80px;
    background:
        radial-gradient(120% 120% at 0% 100%, rgba(63, 130, 219, 0.22) 0%, rgba(63, 130, 219, 0) 55%),
        radial-gradient(120% 120% at 30% 100%, rgba(45, 93, 155, 0.18) 0%, rgba(45, 93, 155, 0) 52%),
        radial-gradient(120% 120% at 55% 100%, rgba(147, 193, 251, 0.18) 0%, rgba(147, 193, 251, 0) 45%);
}

.section-title {
    margin: 0 0 24px;
    font-size: clamp(2rem, 2.5vw, 3rem);
    color: var(--primary);
    line-height: 1.2;
    font-family: var(--font-heading);
}

.section-heading-centered {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.section-heading-centered::before,
.section-heading-centered::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--border);
}

.section-heading-centered h2 {
    margin: 0;
    color: var(--primary);
    font-size: clamp(2rem, 2.6vw, 2.8rem);
    text-align: center;
    font-family: var(--font-heading);
}

/* Layoutblokken */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #dfeaf8;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 28px;
}

.service-card,
.faq-topic {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.service-card__icon,
.faq-topic__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 110px;
    font-size: 2rem;
    color: var(--primary);
    background: linear-gradient(180deg, rgba(241, 246, 252, 0.7) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.service-card__title,
.faq-topic__title {
    margin: 0;
    padding: 18px 20px;
    text-align: center;
    font-size: 20px;
    color: var(--primary);
    background: #edf4fc;
    font-weight: 700;
    font-family: var(--font-heading);
}

.service-card--accent .service-card__title,
.faq-topic--accent .faq-topic__title {
    color: #ca6f34;
    background: #fbece2;
}

.banner-note {
    margin-top: 36px;
    padding: 26px 30px;
    border-radius: 20px;
    background: linear-gradient(90deg, rgba(228, 239, 250, 0.65) 0%, rgba(255, 255, 255, 0.95) 100%);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.8;
}

/* FAQ */
.faq-topics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-bottom: 32px;
}

.faq-layout {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 28px;
    align-items: start;
}

.accordion {
    display: grid;
    gap: 16px;
}

details {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(32, 73, 122, 0.08);
    overflow: hidden;
}

summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 24px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-body);
}

summary::-webkit-details-marker {
    display: none;
}

details p {
    margin: 0;
    padding: 0 24px 22px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text);
}

.map-card {
    min-height: auto;
    border-radius: 18px;
    overflow: hidden;
    background: #dfeaf8;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.map-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Contact */
.contact-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}

.contact-card {
    padding: 32px;
    background: rgba(255, 255, 255, 0.86);
    border-radius: 20px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.contact-card h3 {
    margin: 0 0 16px;
    color: var(--primary);
    font-size: 1.8rem;
    font-family: var(--font-heading);
}

.contact-card p,
.contact-card li {
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.9;
}

.contact-card ul {
    margin: 0;
    padding-left: 20px;
}

/* Footer */
.site-footer {
    margin-top: 40px;
    padding: 28px 0;
    background: #edf4fc;
    border-top: 1px solid var(--border);
    color: var(--muted);
    text-align: center;
}

/* Overig */
ul {
    font-size: 16px;
}

div#tolkie-separate-container {
    display: none;
}

textarea#powermail_field_uwvraagofbericht {
    width: 100%;
}

/* Mobiel */
@media (max-width: 480px) {
  
  
.main-nav {
        display: none!important;
    }

    .mobile-nav-toggle {
        display: inline-flex!important;
    }
  
    .container {
        width: min(calc(100% - 20px), var(--container));
    }

    .site-header {
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .site-header__inner {
        min-height: 72px;
        gap: 12px;
    }

    .brand {
        gap: 12px;
        max-width: calc(100% - 60px);
    }

    .brand__logo {
        width: 52px;
        height: 52px;
    }

    .brand__title {
        font-size: 1.2rem;
        line-height: 1.1;
    }

    .brand__subtitle {
        font-size: 0.8rem;
        line-height: 1.3;
        margin-top: 4px;
    }

    .mobile-nav-toggle {
        width: 44px;
        height: 44px;
        border-radius: 10px;
    }

    .hero {
        background: linear-gradient(180deg, rgba(244, 248, 253, 0.98) 0%, rgba(244, 248, 253, 0.92) 100%);
    }

    .hero::after,
    .section-wave::before,
    .section-wave::after {
        height: 80px;
    }

    .hero__inner {
        padding: 32px 0 56px;
        gap: 20px;
    }

    .hero__content h2 {
        font-size: 30px !important;
        line-height: 1.2;
        margin-bottom: 14px;
    }

    .hero__content h2 strong {
        display: inline;
        font-size: 1em;
    }

    .hero__meta {
        margin-bottom: 20px;
        font-size: 15px;
        line-height: 1.65;
    }

    .hero__visual {
        min-height: 240px;
        border-radius: 16px;
    }

    .section {
        padding: 44px 0;
    }

    .section-title,
    .section-heading-centered h2 {
        font-size: 28px !important;
        line-height: 1.2;
    }

    .h2,
    h2 {
        font-size: 24px !important;
    }

    .h3,
    h3 {
        font-size: 18px !important;
    }

    .h4,
    h4 {
        font-size: 16px !important;
    }

    .section-heading-centered {
        gap: 12px;
        margin-bottom: 22px;
    }

    .cards-grid,
    .faq-topics {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 20px;
    }

    .service-card__icon,
    .faq-topic__icon {
        min-height: 82px;
        font-size: 1.6rem;
    }

    .service-card__title,
    .faq-topic__title {
        padding: 14px 16px;
        font-size: 1.1rem;
    }

    .banner-note {
        margin-top: 24px;
        padding: 18px 16px;
        border-radius: 16px;
        font-size: 1rem;
        line-height: 1.65;
    }

    summary {
        padding: 16px 18px;
        font-size: 1rem;
        line-height: 1.5;
        align-items: flex-start;
    }

    details p {
        padding: 0 18px 18px;
        font-size: 0.98rem;
        line-height: 1.7;
    }

    .about-image,
    .map-card,
    .contact-card {
        border-radius: 16px;
    }

    .contact-card {
        padding: 20px 18px;
    }

    .contact-card h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }

    .contact-card p,
    .contact-card li,
    ul {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .btn {
        width: 100%;
        padding: 14px 16px;
        font-size: 1rem;
    }

    .mobile-nav__panel {
        width: 100%;
        max-width: 360px;
    }

    .mobile-nav__header {
        padding: 16px 18px;
        font-size: 1rem;
    }

    .mobile-nav__list > li > a,
    .mobile-submenu-toggle {
        padding: 15px 18px;
        font-size: 0.98rem;
    }

    .mobile-submenu li a {
        padding: 11px 18px 11px 30px;
        font-size: 0.92rem;
    }
}

/* Tablet*/
@media (min-width: 768px) and (max-width: 1024px){
    .hero__inner,
    .about-grid,
    .faq-layout,
    .contact-block {
        grid-template-columns: 1fr;
    }

.contact-card p, .contact-card li {
    margin: 0;
    font-size: 2.5rem;
    line-height: 1.9;
}
  
    .cards-grid,
    .faq-topics {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero__inner {
        min-height: auto;
        padding: 56px 0 90px;
        gap: 32px;
    }

    .hero__content h2 {
        font-size: 40px !important;
    }

    .hero__meta {
        margin-bottom: 28px;
        font-size: 16px;
        line-height: 1.75;
    }

    .hero__visual {
        min-height: 420px;
        border-radius: 24px;
    }

    .main-nav {
        display: none;
    }

    .mobile-nav-toggle {
        display: inline-flex;
    }
} 




/* Kleine smartphones
@media (max-width: 480px) {
    .brand__title {
        font-size: 1.05rem;
    }

    .brand__subtitle {
        font-size: 0.75rem;
    }

    .hero__content h2 {
        font-size: 26px !important;
    }

    .hero__meta {
        font-size: 14px;
    }

    .hero__visual {
        min-height: 200px;
    }

    .section-title,
    .section-heading-centered h2 {
        font-size: 24px !important;
    }

    .service-card__title,
    .faq-topic__title {
        font-size: 1rem;
    }

    summary {
        font-size: 0.96rem;
    }

    details p,
    .contact-card p,
    .contact-card li {
        font-size: 0.92rem;
    }
}*/

/* Alleen desktop */
@media (min-width: 1181px) {
    .mobile-nav {
        display: none;
    }
}