/* ============================================================================
 * Cultural Consultancy — compiled theme stylesheet.
 * Port of the NextJS app/globals.css + per-component CSS files, verbatim.
 * One file, hand-concatenated — no build step.
 * ========================================================================= */

/* ---------------------------------------------------------------------------
 * Fonts (self-hosted WOFF2 from Fontsource — replaces next/font Outfit/Inter)
 * ------------------------------------------------------------------------- */

@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/outfit-latin-400-normal.woff2') format('woff2');
}
@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('../fonts/outfit-latin-500-normal.woff2') format('woff2');
}
@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/outfit-latin-600-normal.woff2') format('woff2');
}
@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/outfit-latin-700-normal.woff2') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/inter-latin-400-normal.woff2') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('../fonts/inter-latin-500-normal.woff2') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/inter-latin-600-normal.woff2') format('woff2');
}

/* ---------------------------------------------------------------------------
 * globals.css (ported 1:1 — CSS variables + base resets)
 * ------------------------------------------------------------------------- */

:root {
    --primary-dark: #3A605E;
    --primary-light: #4D897C;
    --bg-color: #F8F9FA;
    --bg-light: #F8F9FA;
    --text-main: #1A1A1A;
    --text-muted: #555555;
    --white: #FFFFFF;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Typography Scale */
    --text-xs: 0.875rem;   /* 14px */
    --text-sm: 1rem;       /* 16px */
    --text-base: 1rem;     /* 16px */
    --text-md: 1.125rem;   /* 18px */
    --text-lg: 1.25rem;    /* 20px */
    --text-xl: 1.5rem;     /* 24px */
    --text-2xl: 2rem;      /* 32px */
    --text-3xl: 2.75rem;   /* 44px */
    --text-4xl: 3.5rem;    /* 56px */

    /* Font Weights */
    --font-regular: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;

    --max-width: 1280px;
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

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

html,
body {
    max-width: 100vw;
    overflow-x: hidden;
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: var(--font-bold);
    line-height: 1.2;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0%   { transform: translateY(0px); }
    50%  { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* ---------------------------------------------------------------------------
 * Header (Layout/Header.css)
 * ------------------------------------------------------------------------- */

.header {
    padding: 1.5rem 0;
    background-color: transparent;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo-img {
    max-width: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.main-nav {
    display: none;
}

@media (min-width: 900px) {
    .main-nav { display: block; }
}

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

.nav-list a {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--text-main);
    transition: color 0.2s ease;
}

.nav-list a:hover {
    color: var(--primary-light);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.lang-toggle {
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 0.4rem 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.lang-toggle:hover {
    color: var(--primary-light);
    border-color: var(--primary-light);
}

.lang-toggle-text {
    font-family: var(--font-heading);
    font-weight: var(--font-semibold);
    font-size: var(--text-sm);
    letter-spacing: 0.05em;
}

.btn-primary {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-family: var(--font-heading);
    font-weight: var(--font-semibold);
    font-size: var(--text-sm);
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background-color: var(--primary-light);
}

.desktop-only {
    display: none;
}
@media (min-width: 900px) {
    .desktop-only { display: inline-block; }
}

.mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    z-index: 101;
    position: relative;
    padding: 0.5rem;
}
@media (min-width: 900px) {
    .mobile-menu-toggle { display: none; }
}

.mobile-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--white);
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
}

.mobile-nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.mobile-nav-list a {
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    color: var(--primary-dark);
    display: block;
}

.mobile-nav-actions {
    display: flex;
    flex-direction: column;
}

.mobile-nav-actions .btn-primary {
    text-align: center;
}

.header.header-light { background-color: transparent; }
.header-light .nav-list a {
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.header-light .nav-list a:hover { color: var(--primary-light); }
.header-light .lang-toggle {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}
.header-light .lang-toggle:hover {
    color: var(--primary-light);
    border-color: var(--primary-light);
}
.header-light .mobile-menu-toggle {
    color: var(--white);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}
.header-light .logo-img {
    filter: brightness(0) invert(1) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* ---------------------------------------------------------------------------
 * Hero (components/Hero/Hero.css)
 * ------------------------------------------------------------------------- */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.hero-card {
    background-color: var(--white);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    padding-top: 150px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    flex-grow: 1;
    position: relative;
    z-index: 1;
    margin-bottom: 3rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

@media (min-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr 1fr;
        align-items: center;
        padding-left: 4rem;
        padding-right: 0;
    }
}

.hero-content {
    position: relative;
    max-width: 600px;
    animation: fadeIn 0.8s ease-out;
    padding-bottom: 2rem;
}

.hero-title {
    color: var(--text-main);
    font-size: var(--text-3xl);
    font-weight: var(--font-bold);
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    position: relative;
    z-index: 2;
}

@media (min-width: 992px) {
    .hero-title { font-size: var(--text-4xl); }
}

.hero-description {
    color: var(--text-muted);
    font-size: var(--text-md);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 100%;
    position: relative;
    z-index: 2;
}

@media (min-width: 768px) {
    .hero-description { max-width: 85%; }
}

.hero-images {
    position: relative;
    height: 400px;
    width: 100%;
}

@media (min-width: 992px) {
    .hero-images { height: 550px; }
}

.image-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 70%;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .image-main { width: 100%; }
}

.image-secondary {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 55%;
    height: 60%;
    overflow: hidden;
    border: 6px solid var(--white);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

@media (min-width: 768px) {
    .image-secondary {
        bottom: -20px;
        left: -40px;
        width: 65%;
        border-width: 10px;
    }
}

.hero-bottom-bar {
    display: grid;
    grid-template-columns: 1fr;
    color: var(--white);
    margin-top: auto;
}

@media (min-width: 992px) {
    .hero-bottom-bar { grid-template-columns: 3fr 2fr; }
}

.bottom-bar-stats {
    background-color: var(--primary-light);
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}

@media (min-width: 768px) {
    .bottom-bar-stats {
        padding: 3rem 4rem;
        grid-template-columns: repeat(3, 1fr);
    }
}

.bottom-bar-info {
    background-color: var(--primary-dark);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 768px) {
    .bottom-bar-info { padding: 3rem 4rem; }
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: var(--text-2xl);
    font-weight: var(--font-bold);
    color: var(--white);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.stat-label {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

.stat-highlight {
    display: block;
    font-family: var(--font-heading);
    font-weight: var(--font-semibold);
    font-size: var(--text-lg);
    color: var(--white);
    margin-bottom: 0.5rem;
}

.stat-subtext {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

/* ---------------------------------------------------------------------------
 * AboutSection — homepage bento grid (components/Home/AboutSection.css)
 * ------------------------------------------------------------------------- */

.about-section {
    padding: 6rem 0;
    background-color: var(--white);
}

.about-intro {
    max-width: 850px;
    margin: 0 auto 4rem auto;
    text-align: center;
}

.section-title {
    font-size: var(--text-3xl);
    font-weight: var(--font-bold);
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.section-description {
    font-size: var(--text-md);
    color: var(--text-muted);
    line-height: 1.7;
}

.bento-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: 300px;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 280px;
    }
    .bento-large {
        grid-column: span 2;
        grid-row: span 2;
    }
}

.bento-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background-color: var(--bg-light);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.bento-card:hover {
    transform: translateY(-8px) scale(1.01);
}

.bento-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.6s ease;
}

.bento-card:hover .bento-image {
    transform: scale(1.05);
}

.bento-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 8rem 2rem 2rem 2rem;
    background: linear-gradient(to top, rgba(14, 33, 33, 0.95) 0%, rgba(14, 33, 33, 0.6) 40%, rgba(14, 33, 33, 0) 100%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.bento-overlay h3 {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: var(--text-xl);
    margin-bottom: 0.5rem;
    font-weight: var(--font-bold);
}

.bento-overlay p {
    color: rgba(255, 255, 255, 0.85);
    font-size: var(--text-base);
    line-height: 1.5;
    margin: 0;
}

@media (min-width: 1024px) {
    .bento-large .bento-overlay h3 {
        font-size: var(--text-2xl);
        margin-bottom: 1rem;
    }
    .bento-large .bento-overlay p {
        font-size: var(--text-md);
    }
}

/* ---------------------------------------------------------------------------
 * ServicesSection — (kept intact though not used on homepage; may be used
 * as a future block). components/Home/ServicesSection.css
 * ------------------------------------------------------------------------- */

.services-section {
    padding: 6rem 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background-color: var(--primary-light);
    opacity: 0.05;
    border-radius: 50%;
    z-index: 0;
}

.services-container {
    position: relative;
    z-index: 1;
}

.services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem auto;
}

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

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

.service-card {
    background-color: #FAFAFB;
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-radius: 16px;
    padding: 3rem 2rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-card:hover {
    background-color: var(--white);
    box-shadow: 0 15px 40px rgba(58, 96, 94, 0.08);
    transform: translateY(-5px);
}

.service-icon-wrapper {
    background-color: var(--primary-dark);
    color: var(--white);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 2rem;
    transition: background-color 0.3s ease;
}

.service-card:hover .service-icon-wrapper {
    background-color: var(--primary-light);
}

.service-title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: var(--font-bold);
    color: var(--text-main);
    margin-bottom: 1rem;
}

.service-body {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-dark);
    font-weight: var(--font-semibold);
    text-decoration: none;
    transition: gap 0.2s ease, color 0.2s ease;
}

.service-link:hover {
    gap: 0.75rem;
    color: var(--primary-light);
}

/* ---------------------------------------------------------------------------
 * Footer (components/Layout/Footer.css)
 * ------------------------------------------------------------------------- */

.footer {
    color: var(--white);
    font-family: var(--font-body);
    position: relative;
}

.footer-main {
    background-color: var(--primary-dark);
    padding-top: 4rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-bottom: 4rem;
    padding-top: 3rem;
}

@media (min-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        padding-top: 4rem;
    }
}

@media (min-width: 1024px) {
    .footer-container {
        grid-template-columns: 2fr 1fr 2fr;
        gap: 6rem;
    }
}

.brand-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.footer-logo-link:hover {
    transform: scale(1.02);
}

.footer-logo-img {
    height: auto;
    width: auto;
    max-height: 80px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: var(--text-base);
    max-width: 320px;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-light);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: var(--font-bold);
    margin-bottom: 1.5rem;
    color: var(--white);
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-light);
    border-radius: 2px;
}

.footer-nav-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-list a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-block;
}

.footer-nav-list a:hover {
    color: var(--primary-light);
    transform: translateX(5px);
}

.footer-info-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-lang-highlight {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    padding: 1.25rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--primary-light);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: var(--text-sm);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.footer-lang-highlight strong {
    color: var(--primary-light);
    font-size: var(--text-base);
    display: inline-block;
    margin-bottom: 0.25rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.5);
    background-color: rgba(0, 0, 0, 0.2);
}

.bottom-container {
    display: flex;
    justify-content: center;
    text-align: center;
}

/* ---------------------------------------------------------------------------
 * About page (app/[locale]/wie-zijn-wij/AboutUs.css)
 * ------------------------------------------------------------------------- */

.about-page {
    background-color: var(--bg-color);
    min-height: 100vh;
}

.about-hero {
    position: relative;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 160px;
    padding-bottom: 100px;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

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

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(58, 96, 94, 0.7) 0%, rgba(26, 26, 26, 0.85) 100%);
    z-index: 2;
}

.about-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-kicker {
    display: inline-block;
    color: var(--primary-light);
    font-size: var(--text-base);
    font-weight: var(--font-bold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.about-hero-title {
    color: var(--white);
    font-size: var(--text-3xl);
    margin-bottom: 1.5rem;
    font-weight: var(--font-bold);
    letter-spacing: -0.02em;
    line-height: 1.15;
}

@media (min-width: 992px) {
    .about-hero-title { font-size: var(--text-4xl); }
}

.about-hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.animate-kicker   { animation: fadeInDown 0.6s ease-out forwards; }
.animate-title    { opacity: 0; animation: fadeInDown 0.6s ease-out 0.2s forwards; }
.animate-subtitle { opacity: 0; animation: fadeInUp   0.6s ease-out 0.4s forwards; }

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.slide-up {
    opacity: 0;
    animation: slideUpFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

@keyframes slideUpFade {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}

.about-content-section {
    padding: 6rem 0;
    background: var(--bg-color);
    position: relative;
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: start;
}

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

.text-block {
    margin-bottom: 2.5rem;
}

.lead-text {
    font-size: 1.5rem;
    color: var(--text-main);
    line-height: 1.6;
    font-family: var(--font-heading);
    font-weight: var(--font-medium);
}

.text-block p {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.highlight-text {
    padding-left: 1.5rem;
    border-left: 4px solid var(--primary-light);
    color: var(--primary-dark) !important;
    font-weight: var(--font-medium);
    font-style: italic;
    background: linear-gradient(90deg, rgba(77, 137, 124, 0.05) 0%, transparent 100%);
    border-radius: 0 8px 8px 0;
    padding: 1.5rem;
}

.expertise-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    margin: 2.5rem 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.expertise-card h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--primary-dark);
}

.expertise-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.expertise-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.125rem;
    color: var(--text-main);
    transition: transform 0.3s ease;
}

.expertise-list li:hover {
    transform: translateX(10px);
}

.check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--primary-light);
    color: white;
    border-radius: 50%;
    font-size: 14px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(77, 137, 124, 0.3);
}

.about-visuals {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: sticky;
    top: 120px;
}

.visual-card {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #2A4846 100%);
    border-radius: var(--border-radius);
    padding: 3rem;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 200px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(58, 96, 94, 0.15);
}

.visual-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 60%);
    transform: rotate(30deg);
}

.strategy-card {
    background: linear-gradient(135deg, #2c3e3d 0%, var(--primary-dark) 100%);
}

.about-stat {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.about-stat-number {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: var(--font-bold);
    line-height: 1;
    background: linear-gradient(to right, #ffffff, #c4d7d6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-stat-label {
    font-size: 1.125rem;
    font-weight: var(--font-medium);
    opacity: 0.9;
}

/* ---------------------------------------------------------------------------
 * Services page (app/[locale]/wat-bieden-wij-aan/WatBiedenWijAan.css)
 * ------------------------------------------------------------------------- */

.services-page {
    background-color: var(--bg-color);
    min-height: 100vh;
}

.services-hero {
    position: relative;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 160px;
    padding-bottom: 100px;
}

.services-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

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

.services-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(58, 96, 94, 0.6) 0%, rgba(26, 26, 26, 0.9) 100%);
    z-index: 2;
}

.services-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.services-hero-title {
    color: var(--white);
    font-size: var(--text-3xl);
    margin-bottom: 1.5rem;
    font-weight: var(--font-bold);
    letter-spacing: -0.02em;
    line-height: 1.15;
}

@media (min-width: 992px) {
    .services-hero-title { font-size: var(--text-4xl); }
}

.services-hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.services-list-section {
    padding: 5rem 0 8rem;
    position: relative;
    background-color: var(--bg-color);
}

.services-wrap {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.service-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 992px) {
    .service-row {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
    .service-row:nth-child(even) .service-visual  { order: 2; }
    .service-row:nth-child(even) .service-details { order: 1; }
}

.service-visual {
    position: relative;
    width: 100%;
}

.service-image-container {
    position: relative;
    border-radius: min(var(--border-radius), 24px);
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-row:hover .service-img {
    transform: scale(1.05);
}

.service-number {
    position: absolute;
    bottom: -15px;
    right: 20px;
    font-size: 8rem;
    line-height: 1;
    font-family: var(--font-heading);
    font-weight: var(--font-bold);
    color: var(--white);
    opacity: 0.6;
    text-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 10;
    pointer-events: none;
}

.service-details {
    padding: 1rem 0;
}

.service-details h2 {
    font-size: var(--text-3xl);
    color: var(--primary-dark);
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.service-details h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--primary-light);
    border-radius: 2px;
}

.service-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-points li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: var(--text-md);
    color: var(--text-main);
    line-height: 1.6;
}

.service-points .check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(77, 137, 124, 0.1);
    color: var(--primary-dark);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.1rem;
    box-shadow: none;
    transition: background 0.3s ease, color 0.3s ease;
}

.service-points li:hover .check-icon {
    background: var(--primary-light);
    color: var(--white);
    box-shadow: 0 4px 10px rgba(77, 137, 124, 0.3);
}

/* ---------------------------------------------------------------------------
 * Contact page (app/[locale]/contact/Contact.css)
 * ------------------------------------------------------------------------- */

.contact-page {
    background-color: var(--bg-color);
    min-height: 100vh;
}

.contact-hero {
    position: relative;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 160px;
    padding-bottom: 100px;
}

.contact-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

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

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(58, 96, 94, 0.6) 0%, rgba(26, 26, 26, 0.9) 100%);
    z-index: 2;
}

.contact-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-hero-title {
    color: var(--white);
    font-size: var(--text-3xl);
    margin-bottom: 1.5rem;
    font-weight: var(--font-bold);
    letter-spacing: -0.02em;
    line-height: 1.15;
}

@media (min-width: 992px) {
    .contact-hero-title { font-size: var(--text-4xl); }
}

.contact-hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.contact-form-section {
    padding: 5rem 0;
    position: relative;
    background-color: var(--bg-color);
}

.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: min(var(--border-radius), 24px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0,0,0,0.02);
}

.contact-form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.contact-form-header h2 {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.contact-form-header p {
    color: var(--text-main);
    font-size: var(--text-md);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 600px) {
    .contact-form { grid-template-columns: 1fr; }
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
}

.contact-form .form-group-full {
    grid-column: 1 / -1;
}

.contact-form label {
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.contact-form input,
.contact-form textarea {
    padding: 0.875rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-size: var(--text-base);
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background: var(--bg-color);
    color: var(--text-main);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(77, 137, 124, 0.1);
}

.contact-form textarea {
    resize: vertical;
}

.contact-form .btn-submit {
    width: 100%;
    padding: 1rem;
    font-size: var(--text-base);
    cursor: pointer;
}

.contact-form input.has-error,
.contact-form textarea.has-error {
    border-color: #c0392b;
}

.form-notice {
    margin-bottom: 2rem;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    font-size: var(--text-base);
    line-height: 1.5;
}

.form-notice.is-success {
    background: rgba(77, 137, 124, 0.1);
    color: var(--primary-dark);
    border: 1px solid rgba(77, 137, 124, 0.25);
}

.form-notice.is-error {
    background: rgba(192, 57, 43, 0.08);
    color: #8c2b1f;
    border: 1px solid rgba(192, 57, 43, 0.25);
}

.hidden-field {
    display: none;
}

/* ---------------------------------------------------------------------------
 * WordPress / Gutenberg editor overrides
 * Skill Gotchas: #1 (unlayered reset), #16a (editor canvas font),
 *                #16b (neutralize in-preview links), #16d (full-width blocks)
 * ------------------------------------------------------------------------- */

/* Gutenberg editor canvas — match body font/background so block previews look
 * like the frontend (not Times New Roman on white). */
html .editor-styles-wrapper {
    background: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    max-width: none;
}

html .editor-styles-wrapper .wp-block[data-align="full"],
html .editor-styles-wrapper .wp-block.alignfull {
    max-width: none;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

html .editor-styles-wrapper .wp-block > [data-type^="acf/"] {
    max-width: none;
}

/* Neutralize in-preview link clicks so editors don't navigate the iframe. */
html .editor-styles-wrapper a[href] {
    pointer-events: none !important;
    cursor: default !important;
}
