/* --- SCOPED VARIABLES --- */
/* Define on :root as well for global availability if needed, but primarily on wrapper */
:root,
.beyen-premium-wrapper {
    /* Brand Palette */
    --c-primary: #0087BA;
    --c-purple: #0087BA; /* alias for backward compat */
    --c-secondary: #7d6aa5;
    --c-teal: #2ba9c3;
    --c-teal-dark: #1f8a9e;
    --c-pink: #d67c8f;
    --c-yellow: #eec643;
    --c-white: #ffffff;
    --c-text-dark: #2d2d2d;
    --c-text-muted: #555;

    /* Gradients */
    --grad-hero: linear-gradient(135deg, #fdfbfb 0%, #f3f0f5 100%);
    --grad-purple: linear-gradient(135deg, #088BBD, #055c7d);
    --grad-teal: linear-gradient(135deg, #2ba9c3, #238a9e);

    /* Spacing */
    --max-w: 1280px;

    /* Shapes */
    --radius-arch: 200px 200px 20px 20px;
    --radius-lg: 24px;
    /* Standard rounded */
    --radius-xl: 40px;

    /* Shadows */
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-float: 0 20px 40px rgba(0, 135, 186, 0.12);

    font-family: 'Host Grotesk', system-ui, sans-serif;
    color: #2d2d2d;
    /* Fallback */
    line-height: 1.7;
}

.beyen-premium-wrapper {
    width: 100%;
    overflow-x: hidden;
    position: relative;
    /* Anchor for absolute parallax layer */
    overflow: hidden;
}

/* --- FONTS & RESETS --- */
@import url('https://fonts.googleapis.com/css2?family=Host+Grotesk:wght@300;400;600;800&family=Parkinsans:wght@400;700;800&family=Amiri:wght@400;700&display=swap');

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
}

.beyen-premium-wrapper * {
    box-sizing: border-box;
}

.beyen-premium-wrapper h1,
.beyen-premium-wrapper h2,
.beyen-premium-wrapper h3 {
    font-family: 'Parkinsans', sans-serif;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.beyen-premium-wrapper .arabic-text {
    font-family: 'Amiri', serif;
    font-size: 1.2em;
}

.beyen-premium-wrapper a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

/* --- UTILITIES --- */
.bh-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.bh-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 900px) {
    .bh-grid-2 {
        grid-template-columns: 1fr 1fr;
    }

    .bh-grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .bh-grid-team {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
    }

    .bh-team-card {
        flex: 1 1 200px;
        max-width: 280px;
        /* Ensures cards don't get too wide */
    }

    .bh-team-card {
        flex: 1 1 200px;
        max-width: 250px;
    }
}

/* --- COMPONENTS --- */
.bh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.bh-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-float);
}

.bh-btn-primary {
    background: var(--grad-purple);
}

.bh-btn-teal {
    background: var(--grad-teal);
}

.bh-btn-outline {
    background: white;
    border: 1px solid var(--c-purple);
}

.bh-btn-pilot {
    background: var(--c-purple);
}

a.bh-btn,
a.bh-btn-primary,
a.bh-btn-teal,
a.bh-btn-light,
a.bh-btn-pilot,
a.bh-btn-submit,
a.bh-btn-blue,
a.bh-btn-purple,
a.bh-btn-download,
button.bh-btn,
button.bh-btn-primary,
button.bh-btn-teal,
button.bh-btn-light,
button.bh-btn-pilot,
button.bh-btn-submit,
button.bh-btn-blue,
button.bh-btn-purple,
button.bh-btn-download {
    color: white !important;
}

a.bh-btn-outline,
button.bh-btn-outline {
    color: var(--c-purple) !important;
}

.bh-btn-blue {
    background: #088BBD;
}

.bh-btn-blue:hover {
    background: #004B7C;
}

.bh-btn-purple {
    background: #AC97C8;
}

.bh-btn-purple:hover {
    background: #7d6aa5;
}

/* Nav specific small button overrides */
.bh-btn-nav {
    padding: 0.6rem 1.4rem;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    font-weight: 700;
}

/* --- HEADER & NAV --- */
.bh-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

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

.bh-desktop-menu {
    display: none;
    gap: 2.5rem;
    font-weight: 600;
    color: var(--c-purple);
}

.bh-desktop-menu a:hover {
    color: var(--c-teal);
    text-decoration: underline;
    text-underline-offset: 5px;
}

.bh-header-actions {
    display: none;
    gap: 1rem;
}

.bh-hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1002;
}

.bh-hamburger span {
    width: 30px;
    height: 3px;
    background: var(--c-purple);
    transition: 0.3s;
}

.bh-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bh-mobile-menu.active {
    transform: translateX(0);
}

.bh-mobile-menu a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--c-purple);
}

/* Responsive Header Query */
@media (min-width: 1024px) {

    /* Small Laptop+ */
    .bh-hamburger {
        display: none;
    }

    .bh-mobile-menu {
        display: none;
    }

    .bh-desktop-menu {
        display: flex;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .bh-header-actions {
        display: flex;
    }
}

/* --- SECTIONS --- */
.bh-section {
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
}


.bh-section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.bh-section-title h2 {
    font-size: 2.8rem;
    color: var(--c-purple);
}

.bh-section-title p {
    color: var(--c-text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}


/* 1. ANIMATED BLOB BG */
.bh-blob {
    position: absolute;
    z-index: 0;
    opacity: 0.6;
    mix-blend-mode: multiply;
    filter: blur(10px);
    animation: blobMorph 20s infinite alternate ease-in-out;
}

/* Lichtblauw */
.bh-blob-1 {
    top: -5%;
    right: -5%;
    width: 800px;
    height: 800px;
    background: #B0D3E0;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
}

/* Oranje (subtle) */
.bh-blob-2 {
    bottom: -10%;
    right: 5%;
    width: 600px;
    height: 600px;
    background: #E68479;
    border-radius: 60% 40% 30% 70% / 50% 60% 40% 50%;
    animation-delay: -5s;
    animation-duration: 25s;
}

/* Paars */
.bh-blob-3 {
    top: 20%;
    right: 15%;
    width: 550px;
    height: 550px;
    background: #AC97C8;
    border-radius: 30% 70% 50% 50% / 60% 40% 50% 40%;
    animation-delay: -10s;
    animation-duration: 22s;
}

/* Donkerblauw */
.bh-blob-4 {
    bottom: -15%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: #004B7C;
    border-radius: 50% 50% 30% 70% / 40% 60% 50% 40%;
    opacity: 0.45;
    animation-delay: -15s;
    animation-duration: 18s;
}

/* Primair blauw – centrum-rechts */
.bh-blob-5 {
    top: 10%;
    right: 30%;
    width: 420px;
    height: 420px;
    background: #088bbd;
    border-radius: 70% 30% 50% 50% / 30% 50% 70% 50%;
    opacity: 0.55;
    animation-delay: -8s;
    animation-duration: 15s;
}

@keyframes blobMorph {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }
    33% {
        border-radius: 60% 40% 30% 70% / 50% 60% 40% 50%;
    }
    66% {
        border-radius: 30% 70% 50% 50% / 60% 40% 50% 40%;
    }
    100% {
        transform: translate(40px, 30px) scale(1.05) rotate(15deg);
        border-radius: 50% 50% 40% 60% / 40% 60% 50% 50%;
    }
}

/* Hero */
.bh-hero {
    overflow: hidden;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    background: var(--grad-hero);
}

.bh-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--c-yellow);
    color: var(--c-text-dark);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    transform: rotate(15deg);
    border: 5px solid white;
    z-index: 10;
    box-shadow: var(--shadow-sm);
}

/* Image Container - ROUNDED SQUARE per request */
.bh-image-box {
    border-radius: var(--radius-lg);
    /* Reverted from Arch */
    overflow: hidden;
    box-shadow: var(--shadow-float);
    background: white;
    padding: 10px;
    position: relative;
    z-index: 2;
    transform: rotate(-2deg);
    /* Added slight playful tilt */
    transition: 0.3s;
}

.bh-image-box:hover {
    transform: rotate(0deg) scale(1.02);
}

/* Over Ons Team Cards */
.bh-team-card {
    text-align: center;
    padding: 2.5rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
}

.bh-team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--c-teal);
}

.bh-team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-float);
}

.bh-avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: #eee;
    margin: 0 auto 1.5rem;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Curriculum Scroll with Arrows */
.bh-scroll-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bh-scroll-container {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 2rem 1.5rem;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    width: 100%;
    min-width: 0;
}

.bh-scroll-container::-webkit-scrollbar {
    display: none;
}

.bh-arrow-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    color: var(--c-purple);
    font-size: 1.2rem;
    transition: 0.2s;
    z-index: 5;
    flex-shrink: 0;
}

.bh-arrow-btn:hover {
    background: var(--c-purple);
    color: white;
    transform: scale(1.1);
}

.bh-theme-card {
    min-width: 320px;
    background: white;
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid var(--c-purple);
    scroll-snap-align: center;
}

/* --- MOBILE & TABLET OPTIMIZATIONS --- */
@media (max-width: 1024px) {
    .bh-section-title h2 {
        font-size: 2.2rem;
    }

    .bh-hero {
        padding-top: 120px;
        text-align: center;
    }

    .bh-hero .bh-blob {
        opacity: 0.15 !important;
    }

    .bh-hero .bh-grid-2 {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .bh-hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .bh-image-box {
        max-width: 500px;
        margin: 0 auto;
    }

    .bh-hero .bh-btn,
    .bh-hero .bh-btn-pilot {
        width: 100%;
        justify-content: center;
    }

    /* Full width buttons on mobile */

    .bh-grid-3,
    .bh-grid-team {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .bh-arrow-btn {
        display: none;
        /* Hide arrows on touch, native swipe is better */
    }

    .bh-scroll-container {
        padding: 1rem;
    }

    .bh-theme-tile {
        border-radius: 16px;
        padding: 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        min-height: 180px;
        transition: 0.3s;
    }

    .bh-theme-tile:hover {
        transform: translateY(-5px);
        opacity: 0.9;
    }

    .bh-theme-icon {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }
    
    .bh-contact-card {
        padding: 2rem 1.2rem;
        border-radius: 20px;
        margin-left: 1rem;
        margin-right: 1rem;
    }
}

/* Refined Theme Card (Beyen.tv Clone) */
.bh-theme-card-new {
    min-width: 250px;
    scroll-snap-align: start;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.bh-theme-card-new:hover {
    transform: translateY(-5px);
}

.bh-theme-visual {
    height: 140px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    color: white;
    font-weight: 700;
    font-family: 'Parkinsans', sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.bh-theme-visual h3 {
    color: white;
    margin: 0;
    font-size: 1.4rem;
    z-index: 2;
    margin-top: 0.5rem;
}

.bh-theme-icon-large {
    font-size: 2.5rem;
    margin-bottom: 0px;
    opacity: 0.9;
    z-index: 2;
}

.bh-theme-meta h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--c-text-dark);
    font-weight: 700;
}

.bh-theme-meta span {
    font-size: 0.85rem;
    color: var(--c-text-muted);
    opacity: 0.8;
    display: block;
}

/* Custom Pilot Button */
.bh-btn-pilot {
    background: #6d5a98;
    color: #f5f5f5 !important;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(109, 90, 152, 0.3);
    border: none;
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.bh-btn-pilot:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(109, 90, 152, 0.4);
    color: #f5f5f5 !important;
    opacity: 0.9;
}

input:focus, 
textarea:focus {
    outline: none;
    border-color: var(--c-purple);
}

/* --- CONTACT FORM --- */
.bh-contact-card {
    background: white;
    padding: 3rem;
    border-radius: var(--radius-lg);
    color: var(--c-text-dark);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.bh-form-input {
    padding: 1.2rem;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    background: #fafafa;
    width: 100%;
    font-family: inherit;
    font-size: 1rem;
    color: #333;
    transition: 0.3s;
}

.bh-form-input:focus {
    outline: none;
    border-color: var(--c-purple);
    background: white;
}

.bh-btn-submit {
    background: #806ca5;
    color: white;
    width: 100%;
    border: none;
    border-radius: 50px;
    padding: 0.6rem 0.6rem 0.6rem 2rem;
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: 0.3s;
}

.bh-btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(125, 106, 165, 0.3);
}

.bh-btn-submit-icon {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #806ca5;
    font-size: 1.4rem;
    font-weight: bold;
}

/* --- BURGERSCHAP SECTION (Identiteit & Samenleving) --- */
.bh-burgerschap-section {
    padding: 6rem 0;
    background: #f4fafd;
}

.bh-burgerschap-grid {
    display: grid;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 900px) {
    .bh-burgerschap-grid {
        grid-template-columns: 1fr 1.2fr;
    }
}

.bh-burgerschap-label {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--c-purple);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    display: inline-block;
    border-bottom: 2px solid var(--c-purple);
    padding-bottom: 0.2rem;
}

.bh-burgerschap-title {
    font-size: 3rem;
    color: #2d2d2d;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.bh-burgerschap-text {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.bh-burgerschap-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.bh-burgerschap-list li {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-size: 1.05rem;
    color: #444;
}

.bh-burgerschap-icon {
    width: 45px;
    height: 45px;
    background: var(--c-purple);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.bh-burgerschap-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    border: 1px solid #f2f2f2;
    overflow: hidden;
}

.bh-burgerschap-card-header {
    background: #f4fafd; /* light blue */
    padding: 2rem 2.5rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.bh-burgerschap-card-icon {
    width: 55px;
    height: 55px;
    background: var(--c-purple);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}

.bh-burgerschap-card-title {
    font-size: 1.6rem;
    color: #2d2d2d;
    margin: 0;
    font-weight: 800;
}

.bh-burgerschap-table-wrap {
    padding: 1rem 2.5rem 2.5rem 2.5rem;
    overflow-x: auto;
}

.bh-burgerschap-table {
    width: 100%;
    border-collapse: collapse;
}

.bh-burgerschap-table th {
    text-align: left;
    padding: 1rem 0.5rem;
    color: var(--c-purple);
    font-weight: 700;
    font-size: 0.95rem;
    border-bottom: 2px solid #eaeaea;
}

.bh-burgerschap-table td {
    padding: 1.2rem 0.5rem;
    border-bottom: 1px solid #f5f5f5;
    color: #444;
    font-size: 1rem;
}

.bh-burgerschap-table tr:last-child td {
    border-bottom: none;
}

.bh-slo-pill {
    background: #f4f4f4;
    color: var(--c-purple);
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 800;
    margin-right: 1rem;
}

.bh-btn-download {
    width: 100%;
    padding: 1.2rem;
    border-radius: 12px;
    background: var(--c-purple);
    color: white;
    font-weight: 800;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.3s;
}

.bh-btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(8, 139, 189, 0.4);
    color: white;
}

/* --- GEZEGEND ONDERWIJS (AANPAK) CARDS --- */
.bh-aanpak-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    border: 1px solid #f0f0f0;
    transition: transform 0.3s;
}

.bh-aanpak-card:hover {
    transform: translateY(-5px);
}

.bh-aanpak-card-top {
    background: #ffffff;
    padding: 1.5rem;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.bh-aanpak-card-top img {
    opacity: 1;
    transition: transform 0.3s ease;
}

.bh-aanpak-laptop-img {
    width: 90%;
    max-height: 180px;
    object-fit: contain;
}

.bh-aanpak-mosque-img {
    width: 100%;
    max-height: 160px;
    object-fit: contain;
}

.bh-aanpak-books-img {
    width: 85%;
    max-height: 190px;
    object-fit: contain;
}

.bh-aanpak-card:hover .bh-aanpak-card-top img {
    transform: scale(1.05);
}

.bh-aanpak-mosque-svg {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    position: absolute;
    bottom: -5px;
    left: 0;
    opacity: 1 !important;
    transform: none !important;
    transition: transform 0.3s ease !important;
}

.bh-aanpak-card:hover .bh-aanpak-mosque-svg {
    transform: scale(1.03) !important;
}

/* Mosque SVG path depth styling */
.bh-aanpak-mosque-svg .cls-7 {
    fill: #ffffff !important;
    opacity: 1 !important;
}
.bh-aanpak-mosque-svg .cls-6,
.bh-aanpak-mosque-svg .cls-3 {
    fill: #ffffff !important;
    opacity: 0.8 !important;
}
.bh-aanpak-mosque-svg .cls-1,
.bh-aanpak-mosque-svg .cls-2,
.bh-aanpak-mosque-svg .cls-8 {
    fill: #ffffff !important;
    opacity: 0.35 !important;
}
.bh-aanpak-mosque-svg .cls-4,
.bh-aanpak-mosque-svg .cls-5 {
    fill: #ffffff !important;
    opacity: 0.15 !important;
}

.bh-aanpak-icon-circle {
    width: 45px;
    height: 45px;
    background: #e9e4f0;
    color: var(--c-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    position: absolute;
    bottom: -22.5px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border: 3px solid white;
    z-index: 2;
}

.bh-aanpak-card-bottom {
    padding: 3rem 2rem 2rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
}

.bh-aanpak-card-bottom h3 {
    font-size: 1.35rem;
    color: #2d2d2d;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.bh-aanpak-dash {
    width: 30px;
    height: 3px;
    background: #e68479; /* Red/Orange dash from mockup */
    border-radius: 2px;
    margin-bottom: 1rem;
}

.bh-aanpak-card-bottom p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.bh-btn-light {
    background: #088BBD;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: 0.3s;
}

.bh-btn-light:hover {
    background: #004B7C;
    color: white;
}

/* Card 2 Specific (Blue) */
.bh-aanpak-card-blue {
    background: linear-gradient(135deg, #0087BA, #055c7d);
    border: none;
    color: white;
}
.bh-aanpak-card-blue .bh-aanpak-card-top {
    background: transparent;
}
.bh-aanpak-card-blue .bh-aanpak-icon-circle {
    background: #0ba3e0;
    border-color: #055c7d;
    color: white;
}
.bh-aanpak-card-blue .bh-aanpak-card-bottom h3 {
    color: white;
}
.bh-aanpak-card-blue .bh-aanpak-card-bottom p {
    color: rgba(255,255,255,0.9);
}
.bh-aanpak-card-blue .bh-aanpak-dash {
    background: rgba(255,255,255,0.5);
}
.bh-aanpak-card-blue .bh-btn-light {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.5);
    color: white;
}
.bh-aanpak-card-blue .bh-btn-light:hover {
    background: rgba(255,255,255,0.1);
}

/* Sticky Back to Top */
.bh-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    font-size: 1.5rem;
    color: var(--c-purple);
    transition: transform 0.3s, opacity 0.3s;
    opacity: 0;
    pointer-events: none;
    border: 2px solid #f0f0f0;
}

.bh-back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
}

.bh-back-to-top:hover {
    transform: translateY(-5px);
    background: var(--c-purple);
    color: white;
    border-color: var(--c-purple);
}

/* --- FAQ ACCORDION ANIMATION --- */
.bh-faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border: 1px solid #f8f8f8;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.bh-faq-item.active {
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.bh-faq-header {
    padding: 1.2rem 1.5rem;
    font-weight: 700;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    user-select: none;
    transition: background 0.2s ease;
}

.bh-faq-header:hover {
    background: #fafafd;
}

.bh-faq-icon {
    width: 40px;
    height: 40px;
    background: #e8f4f9;
    color: #0087BA;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, color 0.3s;
}

.bh-faq-icon svg {
    color: #0087BA;
    stroke-width: 1.5px;
    transition: stroke 0.3s;
}

.bh-faq-item.active .bh-faq-icon {
    background: #0087BA;
    color: white;
}

.bh-faq-item.active .bh-faq-icon svg {
    stroke: white;
    color: white;
}

.bh-faq-toggle {
    font-size: 1.5rem;
    color: #0087BA;
    transition: transform 0.3s ease;
    display: inline-block;
    width: 20px;
    text-align: center;
}

.bh-faq-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.bh-faq-item.active .bh-faq-body {
    grid-template-rows: 1fr;
}

.bh-faq-body-inner {
    overflow: hidden;
}

.bh-faq-body-inner p {
    padding: 0 1.5rem 1.5rem 4.5rem;
    color: #555;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
}