/*!
 * Helderkruin Widgets for Elementor
 * Stylesheet for all widgets — Laerskool Helderkruin
 * "Reik na die Kruin"
 */

/* =========================================================================
   1. ROOT TOKENS — brand palette, fonts, easing curves
   ========================================================================= */
:root {
    --hkw-red:        #E71615;
    --hkw-red-dark:   #b81211;
    --hkw-navy:       #15204D;
    --hkw-navy-dark:  #0d1532;
    --hkw-blue:       #7096C8;
    --hkw-blue-soft:  #c9d7ec;
    --hkw-bg:         #ffffff;
    --hkw-bg-soft:    #f6f8fc;
    --hkw-text:       #2a2f4a;
    --hkw-muted:      #6b7280;
    --hkw-border:     #e5e9f2;

    --hkw-font-display: 'Bebas Neue', 'Oswald', 'Impact', sans-serif;
    --hkw-font-body:    'Montserrat', 'Century Gothic', 'Helvetica Neue', Arial, sans-serif;

    --hkw-ease:        cubic-bezier(0.4, 0, 0.2, 1);
    --hkw-ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
    --hkw-ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

    --hkw-shadow-sm:  0 4px 12px rgba(21, 32, 77, 0.08);
    --hkw-shadow-md:  0 10px 30px rgba(21, 32, 77, 0.12);
    --hkw-shadow-lg:  0 20px 50px rgba(21, 32, 77, 0.18);
}

/* =========================================================================
   2. SHARED UTILITIES
   ========================================================================= */
[class^="hkw-"] *,
[class*=" hkw-"] *,
[class^="hkw-"]::before,
[class^="hkw-"]::after {
    box-sizing: border-box;
}

.hkw-cta-wrap,
.hkw-team-wrap {
    width: 100%;
}

/* -------------------------------------------------------------------------
   Icon sizing — SVGs rendered by Elementor don't inherit font-size for
   dimensions. Force every icon container's SVG/i to 1em square so the
   widget-level icon_size controls (font-size) actually work.
   ------------------------------------------------------------------------- */
.hkw-kruin-card__icon svg,
.hkw-kruin-card__icon i,
.hkw-koedoe-card__badge svg,
.hkw-koedoe-card__badge i,
.hkw-kruin-tabs__tab-icon svg,
.hkw-kruin-tabs__tab-icon i,
.hkw-waardes__circle-inner svg,
.hkw-waardes__circle-inner i,
.hkw-timeline__dot svg,
.hkw-timeline__dot i,
.hkw-cta__eyebrow svg,
.hkw-cta__eyebrow i {
    width: 1em;
    height: 1em;
    font-size: inherit;
    line-height: 1;
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}

/* Normalize the span wrappers so they collapse to their icon */
.hkw-kruin-tabs__tab-icon,
.hkw-waardes__circle-inner,
.hkw-timeline__dot,
.hkw-koedoe-card__badge,
.hkw-kruin-card__icon {
    line-height: 1;
}

/* =========================================================================
   3. KRUIN CARD — hero card with mountain peak SVG mask
   ========================================================================= */
.hkw-kruin-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--hkw-bg);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--hkw-shadow-sm);
    transition: transform 0.5s var(--hkw-ease-out),
                box-shadow 0.5s var(--hkw-ease-out);
    height: 100%;
}

.hkw-kruin-card__media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.hkw-kruin-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s var(--hkw-ease-out);
}

.hkw-kruin-card__peak {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    width: 100%;
    height: 60px;
    color: var(--hkw-bg);
    pointer-events: none;
}

.hkw-kruin-card__icon {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    width: 64px;
    height: 64px;
    background: var(--hkw-red);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 6px 20px rgba(231, 22, 21, 0.4);
    z-index: 2;
    transition: transform 0.4s var(--hkw-ease-bounce);
}

.hkw-kruin-card__icon i,
.hkw-kruin-card__icon svg {
    transition: transform 0.4s var(--hkw-ease);
}

.hkw-kruin-card__body {
    padding: 28px 28px 32px;
    display: flex;
    flex-direction: column;
    flex: 1;
    text-align: center;
}

.hkw-kruin-card__subtitle {
    color: var(--hkw-red);
    font-family: var(--hkw-font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 0 8px;
}

.hkw-kruin-card__title {
    font-family: var(--hkw-font-display);
    color: var(--hkw-navy);
    font-size: 28px;
    line-height: 1.1;
    margin: 0 0 12px;
    letter-spacing: 0.5px;
}

.hkw-kruin-card__description {
    color: var(--hkw-text);
    font-family: var(--hkw-font-body);
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 20px;
    flex: 1;
}

.hkw-kruin-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: center;
    padding: 12px 24px;
    background: var(--hkw-navy);
    color: #fff;
    font-family: var(--hkw-font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 999px;
    transition: background 0.3s var(--hkw-ease), transform 0.3s var(--hkw-ease);
    overflow: hidden;
    position: relative;
}

.hkw-kruin-card__btn:hover {
    background: var(--hkw-red);
    color: #fff;
}

.hkw-kruin-card__btn-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.3s var(--hkw-ease);
}

.hkw-kruin-card__btn:hover .hkw-kruin-card__btn-arrow {
    transform: translateX(4px);
}

/* Hover effect variants */
.hkw-kruin-card.hkw-hover-lift-zoom:hover,
.hkw-kruin-card.hkw-hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: var(--hkw-shadow-lg);
}

.hkw-kruin-card.hkw-hover-zoom:hover .hkw-kruin-card__media img,
.hkw-kruin-card.hkw-hover-lift-zoom:hover .hkw-kruin-card__media img {
    transform: scale(1.08);
}

.hkw-kruin-card.hkw-hover-tilt {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.hkw-kruin-card.hkw-hover-tilt:hover {
    transform: perspective(1000px) rotateX(2deg) rotateY(-2deg) translateY(-6px);
    box-shadow: var(--hkw-shadow-lg);
}

.hkw-kruin-card:hover .hkw-kruin-card__icon {
    transform: translateX(-50%) scale(1.1) rotate(-8deg);
}

.hkw-kruin-card:hover .hkw-kruin-card__icon i,
.hkw-kruin-card:hover .hkw-kruin-card__icon svg {
    transform: scale(1.15);
}

/* =========================================================================
   4. KOEDOE CARD — circular with double ring
   ========================================================================= */
.hkw-koedoe-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px;
    background: var(--hkw-bg);
    border-radius: 20px;
    transition: transform 0.4s var(--hkw-ease-out), box-shadow 0.4s var(--hkw-ease-out);
    height: 100%;
}

.hkw-koedoe-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--hkw-shadow-md);
}

.hkw-koedoe-card__ring-wrap {
    position: relative;
    display: inline-block;
    margin: 0 auto 24px;
    line-height: 0;
}

.hkw-koedoe-card__ring {
    /* width / height come from image_size control */
    /* padding  comes from ring_width control (= outer ring thickness) */
    /* background comes from ring_outer control (= outer ring colour) */
    width: 180px;
    height: 180px;
    padding: 6px;
    background: var(--hkw-red);
    border-radius: 50%;
    box-sizing: border-box;
    transition: transform 0.6s var(--hkw-ease-out);
}

.hkw-koedoe-card__ring-inner {
    /* padding    comes from inner_ring_width control (= inner ring thickness) */
    /* background comes from ring_inner control (= inner ring colour) */
    width: 100%;
    height: 100%;
    padding: 4px;
    background: var(--hkw-navy);
    border-radius: 50%;
    box-sizing: border-box;
}

.hkw-koedoe-card__img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--hkw-bg-soft);
    overflow: hidden;
    position: relative;
}

.hkw-koedoe-card__img-el {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: var(--hkw-img-pos-x, 50%) var(--hkw-img-pos-y, 50%);
    display: block;
    transform: scale(var(--hkw-img-scale, 1));
    transform-origin: center;
    transition: transform 0.6s var(--hkw-ease-out);
}

.hkw-koedoe-card__badge {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(18%, -18%);
    width: 44px;
    height: 44px;
    background: var(--hkw-red);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 1;
    box-shadow: 0 4px 12px rgba(231, 22, 21, 0.4);
    border: 3px solid var(--hkw-bg);
    z-index: 2;
    transition: transform 0.4s var(--hkw-ease-bounce);
}

.hkw-koedoe-card__badge svg,
.hkw-koedoe-card__badge i {
    width: 1em;
    height: 1em;
    font-size: inherit;
    display: inline-block;
    line-height: 1;
}

.hkw-koedoe-card:hover .hkw-koedoe-card__ring {
    transform: rotate(45deg);
}

.hkw-koedoe-card:hover .hkw-koedoe-card__img-el {
    transform: scale(calc(var(--hkw-img-scale, 1) * 1.08));
}

.hkw-koedoe-card:hover .hkw-koedoe-card__badge {
    transform: translate(18%, -18%) scale(1.15) rotate(15deg);
}

.hkw-koedoe-card__subtitle {
    color: var(--hkw-red);
    font-family: var(--hkw-font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 0 6px;
}

.hkw-koedoe-card__title {
    font-family: var(--hkw-font-display);
    color: var(--hkw-navy);
    font-size: 26px;
    line-height: 1.1;
    margin: 0 0 12px;
    letter-spacing: 0.5px;
}

.hkw-koedoe-card__description {
    color: var(--hkw-text);
    font-family: var(--hkw-font-body);
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 16px;
}

.hkw-koedoe-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--hkw-navy);
    font-family: var(--hkw-font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.3s var(--hkw-ease), gap 0.3s var(--hkw-ease);
}

.hkw-koedoe-card__cta:hover {
    color: var(--hkw-red);
    gap: 14px;
}

.hkw-koedoe-card__cta-arrow {
    width: 18px;
    height: 12px;
    transition: transform 0.3s var(--hkw-ease);
}

.hkw-koedoe-card__cta:hover .hkw-koedoe-card__cta-arrow {
    transform: translateX(3px);
}

/* =========================================================================
   5. SUMMIT CARD — full-bleed image, hover-reveal description
   ========================================================================= */
.hkw-summit-card {
    position: relative;
    display: block;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    color: #fff;
    text-decoration: none;
    box-shadow: var(--hkw-shadow-md);
    transition: transform 0.5s var(--hkw-ease-out), box-shadow 0.5s var(--hkw-ease-out);
    cursor: pointer;
    height: 100%;
}

.hkw-summit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--hkw-shadow-lg);
}

.hkw-summit-card__image {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hkw-summit-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.2s var(--hkw-ease-out);
}

.hkw-summit-card:hover .hkw-summit-card__image img {
    transform: scale(1.08);
}

.hkw-summit-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        var(--hkw-grad-end, rgba(21, 32, 77, 0.95)) 0%,
        var(--hkw-grad-end, rgba(21, 32, 77, 0.6)) 40%,
        var(--hkw-grad-start, rgba(21, 32, 77, 0)) 100%
    );
    transition: opacity 0.5s var(--hkw-ease);
}

.hkw-summit-card:hover .hkw-summit-card__overlay {
    background: linear-gradient(
        to top,
        var(--hkw-grad-end, rgba(231, 22, 21, 0.92)) 0%,
        var(--hkw-grad-end, rgba(231, 22, 21, 0.55)) 50%,
        var(--hkw-grad-start, rgba(21, 32, 77, 0.1)) 100%
    );
}

.hkw-summit-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px;
    z-index: 2;
}

.hkw-summit-card__subtitle {
    display: inline-block;
    color: #fff;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    font-family: var(--hkw-font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 999px;
    margin: 0 0 12px;
}

.hkw-summit-card__title {
    font-family: var(--hkw-font-display);
    font-size: 32px;
    line-height: 1;
    margin: 0;
    letter-spacing: 0.5px;
    transform: translateY(0);
    transition: transform 0.5s var(--hkw-ease-out);
}

.hkw-summit-card__reveal {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--hkw-ease-out),
                opacity 0.4s var(--hkw-ease) 0.05s,
                margin-top 0.5s var(--hkw-ease-out);
    margin-top: 0;
}

.hkw-summit-card:hover .hkw-summit-card__reveal {
    max-height: 200px;
    opacity: 1;
    margin-top: 12px;
}

.hkw-summit-card__description {
    font-family: var(--hkw-font-body);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
}

.hkw-summit-card__arrow {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: transform 0.4s var(--hkw-ease-bounce), background 0.3s var(--hkw-ease);
    z-index: 2;
}

.hkw-summit-card:hover .hkw-summit-card__arrow {
    transform: rotate(-45deg) scale(1.1);
    background: var(--hkw-red);
}

/* =========================================================================
   6. KRUIN TABS
   ========================================================================= */
.hkw-kruin-tabs {
    display: flex;
    gap: 32px;
    width: 100%;
}

.hkw-kruin-tabs--horizontal {
    flex-direction: column;
}

.hkw-kruin-tabs--vertical .hkw-kruin-tabs__nav {
    flex-direction: column;
    border-bottom: none;
    border-right: 2px solid var(--hkw-border);
    min-width: 240px;
}

.hkw-kruin-tabs__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    border-bottom: 2px solid var(--hkw-border);
    margin: 0;
    padding: 0;
    list-style: none;
}

.hkw-kruin-tabs__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 22px;
    background: transparent;
    border: none;
    color: var(--hkw-muted);
    font-family: var(--hkw-font-body);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    transition: color 0.3s var(--hkw-ease);
    text-align: left;
}

.hkw-kruin-tabs__btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 22px;
    right: 22px;
    height: 3px;
    background: var(--hkw-red);
    border-radius: 3px 3px 0 0;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s var(--hkw-ease-out);
}

.hkw-kruin-tabs--vertical .hkw-kruin-tabs__btn::after {
    bottom: 16px;
    top: 16px;
    left: auto;
    right: -2px;
    width: 3px;
    height: auto;
    border-radius: 3px 0 0 3px;
    transform: scaleY(0);
}

.hkw-kruin-tabs__btn:hover {
    color: var(--hkw-navy);
}

.hkw-kruin-tabs__btn.is-active {
    color: var(--hkw-navy);
}

.hkw-kruin-tabs__btn.is-active::after {
    transform: scaleX(1);
}

.hkw-kruin-tabs--vertical .hkw-kruin-tabs__btn.is-active::after {
    transform: scaleY(1);
}

.hkw-kruin-tabs__tab-icon {
    font-size: 18px;
    color: var(--hkw-red);
    transition: transform 0.3s var(--hkw-ease);
}

.hkw-kruin-tabs__btn:hover .hkw-kruin-tabs__tab-icon,
.hkw-kruin-tabs__btn.is-active .hkw-kruin-tabs__tab-icon {
    transform: scale(1.15) rotate(-5deg);
}

/* Stack ALL panels in the same grid cell so the container's height
   is driven by the tallest panel, not the currently-active one. This
   gives the widget a rock-solid, constant size across tab switches. */
.hkw-kruin-tabs__panels {
    flex: 1;
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    min-height: 200px;
}

.hkw-kruin-tabs__panel {
    grid-area: 1 / 1 / 2 / 2; /* every panel occupies the same cell */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.4s var(--hkw-ease), transform 0.4s var(--hkw-ease-out);
}

.hkw-kruin-tabs__panel.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    animation: hkw-fade-up 0.5s var(--hkw-ease-out);
    z-index: 1; /* visually on top of the inert stacked panels */
}

@keyframes hkw-fade-up {
    from { opacity: 0; transform: translateY(15px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hkw-kruin-tabs__panel-inner {
    display: grid;
    grid-template-columns: var(--hkw-tab-img-w, 40%) 1fr;
    gap: 32px;
    align-items: center;
}

/* Prevent intrinsic content width (especially from <video> elements,
   which carry their source resolution as an intrinsic width hint) from
   pushing the grid tracks wider than the template declares. This is
   THE fix for the "videos make the image column wider" issue. */
.hkw-kruin-tabs__panel-inner > * {
    min-width: 0;
}

.hkw-kruin-tabs__panel--no-image .hkw-kruin-tabs__panel-inner {
    grid-template-columns: 1fr;
}

.hkw-kruin-tabs__panel--no-image .hkw-kruin-tabs__panel-image {
    display: none;
}

.hkw-kruin-tabs__panel-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--hkw-shadow-md);
}

.hkw-kruin-tabs__panel-image-inner {
    width: 100%;
    aspect-ratio: 4 / 3;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.6s var(--hkw-ease-out);
}

.hkw-kruin-tabs__panel-image-inner img,
.hkw-kruin-tabs__panel-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s var(--hkw-ease-out);
}

.hkw-kruin-tabs__panel:hover .hkw-kruin-tabs__panel-image-inner,
.hkw-kruin-tabs__panel:hover .hkw-kruin-tabs__panel-image img {
    transform: scale(1.04);
}

.hkw-kruin-tabs__panel-subtitle {
    color: var(--hkw-red);
    font-family: var(--hkw-font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 0 8px;
}

.hkw-kruin-tabs__panel-title {
    font-family: var(--hkw-font-display);
    color: var(--hkw-navy);
    font-size: 36px;
    line-height: 1.05;
    margin: 0 0 16px;
    letter-spacing: 0.5px;
}

.hkw-kruin-tabs__panel-description {
    color: var(--hkw-text);
    font-family: var(--hkw-font-body);
    font-size: 15px;
    line-height: 1.7;
    margin: 0 0 20px;
}

.hkw-kruin-tabs__panel-description p:last-child { margin-bottom: 0; }

/* =========================================================================
   7. KRUIN CTA — banner with optional popup form
   ========================================================================= */
.hkw-cta {
    position: relative;
    padding: 56px 48px;
    background: var(--hkw-navy);
    border-radius: 20px;
    overflow: hidden;
    color: #fff;
    isolation: isolate;
}

.hkw-cta--has-bg {
    background-size: cover;
    background-position: center;
}

.hkw-cta__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(21, 32, 77, 0.92) 0%, rgba(21, 32, 77, 0.75) 100%);
    z-index: 0;
}

.hkw-cta__decoration {
    position: absolute;
    right: -40px;
    bottom: -40px;
    width: 320px;
    height: 320px;
    color: rgba(231, 22, 21, 0.18);
    z-index: 0;
    pointer-events: none;
    animation: hkw-float 6s ease-in-out infinite;
}

@keyframes hkw-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50%      { transform: translateY(-12px) rotate(2deg); }
}

.hkw-cta__content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.hkw-cta__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-family: var(--hkw-font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin: 0 0 14px;
    opacity: 0.9;
}

.hkw-cta__eyebrow-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--hkw-red);
    border-radius: 50%;
    animation: hkw-pulse 2s ease-in-out infinite;
}

@keyframes hkw-pulse {
    0%, 100% { transform: scale(1);   opacity: 1; }
    50%      { transform: scale(1.4); opacity: 0.6; }
}

.hkw-cta__title {
    font-family: var(--hkw-font-display);
    font-size: 44px;
    line-height: 1.05;
    margin: 0 0 14px;
    letter-spacing: 0.5px;
    color: #fff;
}

.hkw-cta__description {
    font-family: var(--hkw-font-body);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    max-width: 540px;
    opacity: 0.92;
    color: #fff;
}

.hkw-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 32px;
    background: var(--hkw-red);
    color: #fff;
    font-family: var(--hkw-font-body);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.3s var(--hkw-ease),
                transform 0.3s var(--hkw-ease-bounce),
                box-shadow 0.3s var(--hkw-ease);
    box-shadow: 0 8px 24px rgba(231, 22, 21, 0.35);
    flex-shrink: 0;
}

.hkw-cta__btn:hover {
    background: #fff;
    color: var(--hkw-red);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}

.hkw-cta__btn-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s var(--hkw-ease);
}

.hkw-cta__btn:hover .hkw-cta__btn-icon {
    transform: translateX(5px);
}

/* =========================================================================
   8. KRUINER TEAM
   ========================================================================= */
.hkw-team {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    width: 100%;
}

.hkw-team__card {
    background: var(--hkw-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--hkw-shadow-sm);
    transition: transform 0.5s var(--hkw-ease-out),
                box-shadow 0.5s var(--hkw-ease-out);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.hkw-team__card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hkw-shadow-lg);
}

.hkw-team__photo {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--hkw-bg-soft);
}

.hkw-team__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s var(--hkw-ease-out);
}

.hkw-team__card:hover .hkw-team__photo img {
    transform: scale(1.08);
}

.hkw-team__photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(21, 32, 77, 0.85) 0%, rgba(21, 32, 77, 0) 50%);
    opacity: 0;
    transition: opacity 0.4s var(--hkw-ease);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
}

.hkw-team__card:hover .hkw-team__photo-overlay {
    opacity: 1;
}

.hkw-team__quick-contact {
    display: flex;
    gap: 10px;
    transform: translateY(20px);
    transition: transform 0.45s var(--hkw-ease-out) 0.05s;
}

.hkw-team__card:hover .hkw-team__quick-contact {
    transform: translateY(0);
}

.hkw-team__quick-btn {
    width: 42px;
    height: 42px;
    background: #fff;
    color: var(--hkw-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.25s var(--hkw-ease), color 0.25s var(--hkw-ease), transform 0.25s var(--hkw-ease);
}

.hkw-team__quick-btn:hover {
    background: var(--hkw-red);
    color: #fff;
    transform: translateY(-3px);
}

.hkw-team__accent-bar {
    height: 4px;
    background: linear-gradient(90deg, var(--hkw-red) 0%, var(--hkw-navy) 50%, var(--hkw-blue) 100%);
    transform: scaleX(0.3);
    transform-origin: left;
    transition: transform 0.5s var(--hkw-ease-out);
}

.hkw-team__card:hover .hkw-team__accent-bar {
    transform: scaleX(1);
}

.hkw-team__content {
    padding: 22px 24px 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hkw-team__name {
    font-family: var(--hkw-font-display);
    color: var(--hkw-navy);
    font-size: 24px;
    line-height: 1.1;
    margin: 0 0 4px;
    letter-spacing: 0.5px;
}

.hkw-team__position {
    color: var(--hkw-red);
    font-family: var(--hkw-font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 0 0 12px;
}

.hkw-team__bio {
    color: var(--hkw-text);
    font-family: var(--hkw-font-body);
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 18px;
    flex: 1;
}

.hkw-team__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 20px;
    background: var(--hkw-bg-soft);
    color: var(--hkw-navy);
    font-family: var(--hkw-font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.3s var(--hkw-ease), color 0.3s var(--hkw-ease);
    align-self: flex-start;
}

.hkw-team__btn:hover {
    background: var(--hkw-red);
    color: #fff;
}

/* =========================================================================
   9. WAARDES SHOWCASE — values circles
   ========================================================================= */
.hkw-waardes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    width: 100%;
}

.hkw-waardes__item {
    text-align: center;
    padding: 16px;
    transition: transform 0.4s var(--hkw-ease-out);
}

.hkw-waardes__item:hover {
    transform: translateY(-6px);
}

.hkw-waardes__circle {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto 24px;
}

.hkw-waardes__circle-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px dashed var(--hkw-val-color, var(--hkw-red));
    opacity: 0.6;
    transition: transform 0.8s var(--hkw-ease-out);
}

.hkw-waardes__item:hover .hkw-waardes__circle-ring {
    transform: rotate(180deg);
    opacity: 1;
}

.hkw-waardes__circle-inner {
    position: absolute;
    inset: 12px;
    border-radius: 50%;
    background: var(--hkw-val-color, var(--hkw-red));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    box-shadow: 0 8px 24px rgba(21, 32, 77, 0.18);
    transition: transform 0.4s var(--hkw-ease-bounce);
}

.hkw-waardes__item:hover .hkw-waardes__circle-inner {
    transform: scale(1.08);
}

.hkw-waardes__title {
    font-family: var(--hkw-font-display);
    color: var(--hkw-navy);
    font-size: 32px;
    line-height: 1.05;
    margin: 0 0 6px;
    letter-spacing: 1px;
}

.hkw-waardes__subtitle {
    color: var(--hkw-val-color, var(--hkw-red));
    font-family: var(--hkw-font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 0 12px;
}

.hkw-waardes__description {
    color: var(--hkw-text);
    font-family: var(--hkw-font-body);
    font-size: 14px;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 280px;
}

/* =========================================================================
   10. KRUIN TIMELINE — alternating left/right
   ========================================================================= */
.hkw-timeline {
    position: relative;
    padding: 20px 0;
    width: 100%;
}

.hkw-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--hkw-red) 0%, var(--hkw-navy) 100%);
    transform: translateX(-50%);
    border-radius: 3px;
}

.hkw-timeline__item {
    position: relative;
    padding: 18px 0;
    width: 50%;
    box-sizing: border-box;
}

.hkw-timeline__item--left {
    padding-right: 50px;
    margin-left: 0;
    text-align: right;
}

.hkw-timeline__item--right {
    padding-left: 50px;
    margin-left: 50%;
    text-align: left;
}

.hkw-timeline__dot {
    position: absolute;
    top: 30px;
    width: 44px;
    height: 44px;
    background: var(--hkw-red);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    border: 4px solid var(--hkw-bg);
    box-shadow: 0 0 0 3px var(--hkw-red);
    z-index: 2;
    transition: transform 0.4s var(--hkw-ease-bounce);
}

.hkw-timeline__item--left .hkw-timeline__dot  { right: -22px; }
.hkw-timeline__item--right .hkw-timeline__dot { left:  -22px; }

.hkw-timeline__item:hover .hkw-timeline__dot {
    transform: scale(1.15) rotate(15deg);
}

.hkw-timeline__card {
    background: var(--hkw-bg);
    border-radius: 16px;
    padding: 22px 26px;
    box-shadow: var(--hkw-shadow-sm);
    transition: transform 0.4s var(--hkw-ease-out), box-shadow 0.4s var(--hkw-ease-out);
}

.hkw-timeline__item:hover .hkw-timeline__card {
    transform: translateY(-4px);
    box-shadow: var(--hkw-shadow-md);
}

.hkw-timeline__date {
    color: var(--hkw-red);
    font-family: var(--hkw-font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 0 6px;
}

.hkw-timeline__title {
    font-family: var(--hkw-font-display);
    color: var(--hkw-navy);
    font-size: 26px;
    line-height: 1.1;
    margin: 0 0 10px;
    letter-spacing: 0.5px;
}

.hkw-timeline__description {
    color: var(--hkw-text);
    font-family: var(--hkw-font-body);
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 12px;
}

.hkw-timeline__description:last-child { margin-bottom: 0; }

.hkw-timeline__image {
    border-radius: 10px;
    overflow: hidden;
    margin-top: 14px;
    width: 100%;
    aspect-ratio: 16 / 9;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.6s var(--hkw-ease-out);
}

.hkw-timeline__image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s var(--hkw-ease-out);
}

.hkw-timeline__item:hover .hkw-timeline__image img {
    transform: scale(1.05);
}

/* Reveal-on-scroll animation (JS adds .is-revealed) */
.hkw-timeline__item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s var(--hkw-ease-out), transform 0.6s var(--hkw-ease-out);
}

.hkw-timeline__item.is-revealed {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================================================
   11. MODAL + FORM (used by CTA, Team)
   ========================================================================= */
.hkw-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.hkw-modal[hidden] { display: none; }

.hkw-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(13, 21, 50, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    animation: hkw-modal-fade-in 0.3s var(--hkw-ease) forwards;
}

@keyframes hkw-modal-fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.hkw-modal__dialog {
    position: relative;
    background: var(--hkw-bg);
    border-radius: 20px;
    width: 100%;
    max-width: 540px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--hkw-shadow-lg);
    animation: hkw-modal-pop-in 0.4s var(--hkw-ease-bounce) forwards;
    padding: 0;
}

@keyframes hkw-modal-pop-in {
    from { opacity: 0; transform: translateY(20px) scale(0.95); }
    to   { opacity: 1; transform: translateY(0)    scale(1); }
}

.hkw-modal__header {
    padding: 28px 32px 16px;
    border-bottom: 1px solid var(--hkw-border);
    position: relative;
}

.hkw-modal__badge {
    display: inline-block;
    background: var(--hkw-red);
    color: #fff;
    font-family: var(--hkw-font-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 999px;
    margin: 0 0 10px;
}

.hkw-modal__title {
    font-family: var(--hkw-font-display);
    color: var(--hkw-navy);
    font-size: 28px;
    line-height: 1.1;
    margin: 0 0 6px;
    letter-spacing: 0.5px;
}

.hkw-modal__subtitle {
    color: var(--hkw-muted);
    font-family: var(--hkw-font-body);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.hkw-modal__close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 36px;
    height: 36px;
    background: var(--hkw-bg-soft);
    color: var(--hkw-navy);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s var(--hkw-ease), color 0.25s var(--hkw-ease), transform 0.25s var(--hkw-ease);
}

.hkw-modal__close:hover {
    background: var(--hkw-red);
    color: #fff;
    transform: rotate(90deg);
}

.hkw-modal__close svg {
    width: 16px;
    height: 16px;
}

.hkw-modal__form {
    padding: 24px 32px 32px;
}

.hkw-modal__footer {
    padding: 0 32px 24px;
    color: var(--hkw-muted);
    font-family: var(--hkw-font-body);
    font-size: 12px;
    text-align: center;
}

/* Form */
.hkw-form__row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.hkw-form__row--split {
    grid-template-columns: 1fr 1fr;
}

.hkw-form__field {
    display: flex;
    flex-direction: column;
}

.hkw-form__label {
    color: var(--hkw-navy);
    font-family: var(--hkw-font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 6px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hkw-form__field input,
.hkw-form__field select,
.hkw-form__field textarea {
    padding: 12px 14px;
    border: 1.5px solid var(--hkw-border);
    border-radius: 10px;
    font-family: var(--hkw-font-body);
    font-size: 14px;
    color: var(--hkw-text);
    background: var(--hkw-bg);
    transition: border-color 0.25s var(--hkw-ease), box-shadow 0.25s var(--hkw-ease);
    width: 100%;
    font-weight: 500;
}

.hkw-form__field textarea {
    resize: vertical;
    min-height: 100px;
    font-family: var(--hkw-font-body);
}

.hkw-form__field input:focus,
.hkw-form__field select:focus,
.hkw-form__field textarea:focus {
    outline: none;
    border-color: var(--hkw-red);
    box-shadow: 0 0 0 3px rgba(231, 22, 21, 0.15);
}

.hkw-form__field select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2315204D' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 38px;
}

.hkw-form__actions {
    margin-top: 18px;
}

.hkw-form__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 24px;
    background: var(--hkw-red);
    color: #fff;
    font-family: var(--hkw-font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.3s var(--hkw-ease),
                transform 0.3s var(--hkw-ease-bounce),
                box-shadow 0.3s var(--hkw-ease);
    box-shadow: 0 6px 16px rgba(231, 22, 21, 0.3);
}

.hkw-form__submit:hover:not(:disabled) {
    background: var(--hkw-navy);
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(21, 32, 77, 0.3);
}

.hkw-form__submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.hkw-form__submit-icon {
    width: 14px;
    height: 14px;
    transition: transform 0.3s var(--hkw-ease);
}

.hkw-form__submit:hover:not(:disabled) .hkw-form__submit-icon {
    transform: translateX(4px);
}

.hkw-form__message,
.hkw-form-message {
    margin-top: 14px;
    padding: 12px 16px;
    border-radius: 10px;
    font-family: var(--hkw-font-body);
    font-size: 14px;
    text-align: center;
    display: none;
}

.hkw-form__message.is-success,
.hkw-form-message.is-success {
    display: block;
    background: rgba(16, 185, 129, 0.1);
    color: #047857;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.hkw-form__message.is-error,
.hkw-form-message.is-error {
    display: block;
    background: rgba(231, 22, 21, 0.08);
    color: var(--hkw-red-dark);
    border: 1px solid rgba(231, 22, 21, 0.25);
}

body.hkw-modal-open {
    overflow: hidden;
}

/* =========================================================================
   12. RESPONSIVE
   ========================================================================= */
@media (max-width: 1024px) {
    .hkw-team    { grid-template-columns: repeat(2, 1fr); }
    .hkw-waardes { grid-template-columns: repeat(2, 1fr); }

    .hkw-cta {
        padding: 44px 32px;
    }

    .hkw-cta__title { font-size: 36px; }

    .hkw-kruin-tabs--vertical {
        flex-direction: column;
    }

    .hkw-kruin-tabs--vertical .hkw-kruin-tabs__nav {
        flex-direction: row;
        border-right: none;
        border-bottom: 2px solid var(--hkw-border);
        min-width: 0;
        overflow-x: auto;
    }

    .hkw-kruin-tabs--vertical .hkw-kruin-tabs__btn::after {
        bottom: -2px;
        top: auto;
        left: 22px;
        right: 22px;
        height: 3px;
        width: auto;
        transform: scaleX(0);
    }

    .hkw-kruin-tabs--vertical .hkw-kruin-tabs__btn.is-active::after {
        transform: scaleX(1);
    }

    .hkw-kruin-tabs__panel-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hkw-team    { grid-template-columns: 1fr; }
    .hkw-waardes { grid-template-columns: 1fr; }

    .hkw-cta {
        padding: 36px 24px;
    }

    .hkw-cta__content {
        flex-direction: column;
        align-items: flex-start;
    }

    .hkw-cta__title       { font-size: 30px; }
    .hkw-cta__description { font-size: 15px; }

    .hkw-kruin-tabs__nav {
        overflow-x: auto;
        flex-wrap: nowrap;
        scrollbar-width: thin;
    }

    .hkw-kruin-tabs__btn {
        white-space: nowrap;
        padding: 14px 16px;
        font-size: 13px;
    }

    .hkw-kruin-tabs__panel-title { font-size: 28px; }

    /* Timeline collapses to single column */
    .hkw-timeline::before {
        left: 22px;
    }

    .hkw-timeline__item--left,
    .hkw-timeline__item--right {
        width: 100%;
        margin-left: 0;
        padding-left: 60px;
        padding-right: 0;
        text-align: left;
    }

    .hkw-timeline__item--left  .hkw-timeline__dot,
    .hkw-timeline__item--right .hkw-timeline__dot {
        left: 0;
        right: auto;
    }

    .hkw-modal__dialog       { max-width: 100%; border-radius: 16px; }
    .hkw-modal__header       { padding: 24px 24px 14px; }
    .hkw-modal__form         { padding: 20px 24px 24px; }
    .hkw-modal__footer       { padding: 0 24px 20px; }

    .hkw-form__row--split    { grid-template-columns: 1fr; }
}

/* =========================================================================
   13. ACCESSIBILITY — reduced motion
   ========================================================================= */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .hkw-cta__decoration,
    .hkw-cta__eyebrow-dot {
        animation: none;
    }

    .hkw-timeline__item {
        opacity: 1;
        transform: none;
    }
}

/* =========================================================================
   14. ELEMENTOR EDITOR PREVIEW COMPATIBILITY
   ========================================================================= */
.elementor-editor-active .hkw-modal {
    position: relative;
    inset: auto;
    padding: 0;
    margin-top: 20px;
}

.elementor-editor-active .hkw-modal[hidden] {
    display: none;
}

/* =========================================================================
   15. KRUIN ACTION PANELS — repeatable three-up action cards, Light/Featured
       Used for the "before you leave" footer CTA pattern: follow us, event,
       contact, etc. Each panel is its own self-contained card that expands
       to fill the column and uses flex-column so CTA buttons bottom-align.
   ========================================================================= */

.hkw-action-panels {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
    width: 100%;
}

/* -- The card itself ---- */
.hkw-action-panel {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 36px 32px;
    border-radius: 24px;
    background: #FFFFFF;
    overflow: hidden;
    isolation: isolate;
    color: #15204D;
    min-height: 100%;
    box-shadow: 0 18px 40px -12px rgba(21, 32, 77, 0.12);
    transition: transform 0.28s ease-out, box-shadow 0.28s ease-out;
}
.hkw-action-panel:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 50px -14px rgba(21, 32, 77, 0.18);
}

/* Featured variant has a soft decorative circle in the upper-right */
.hkw-action-panel--featured {
    background: #E71615;
    color: #FFFFFF;
}
.hkw-action-panel--featured::before {
    content: "";
    position: absolute;
    top: -110px;
    right: -110px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    pointer-events: none;
    z-index: 0;
}
.hkw-action-panel--featured > * { position: relative; z-index: 1; }

/* -- Header row: top icon + optional badge pill ---- */
.hkw-action-panel__header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 18px;
}

.hkw-action-panel__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #EEF2F8;
    color: #15204D;
    font-size: 18px;
    flex-shrink: 0;
}
.hkw-action-panel__icon i,
.hkw-action-panel__icon svg {
    width: 18px;
    height: 18px;
    line-height: 1;
}

/* Badge pill — for date / event labels */
.hkw-action-panel__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border-radius: 999px;
    background: #15204D;
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1;
    white-space: nowrap;
}
.hkw-action-panel__badge-icon {
    display: inline-flex;
    align-items: center;
}
.hkw-action-panel__badge-icon i,
.hkw-action-panel__badge-icon svg {
    width: 12px;
    height: 12px;
    font-size: 12px;
    line-height: 1;
}

/* -- Title / description ---- */
.hkw-action-panel__title {
    margin: 0 0 14px 0;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    letter-spacing: 1.2px;
    line-height: 1.15;
    text-transform: uppercase;
    color: inherit;
    font-weight: 400;
}

.hkw-action-panel__desc {
    margin: 0 0 22px 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.55;
    color: #55627E;
}
.hkw-action-panel__desc strong,
.hkw-action-panel__desc b {
    font-weight: 700;
    color: inherit;
}
.hkw-action-panel--featured .hkw-action-panel__desc {
    color: rgba(255, 255, 255, 0.92);
}

/* -- Info list (socials / contact rows) ---- */
.hkw-action-panel__info-list {
    margin: 0 0 18px 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hkw-action-panel__info-item-wrap {
    display: block;
}

.hkw-action-panel__info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px 10px 10px;
    border-radius: 14px;
    background: #F6F8FC;
    color: inherit;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.3;
    transition: background 0.18s ease, transform 0.18s ease;
}
a.hkw-action-panel__info-item:hover {
    background: #EDF1F9;
    transform: translateX(2px);
}

.hkw-action-panel--featured .hkw-action-panel__info-item {
    background: rgba(255, 255, 255, 0.14);
    color: #FFFFFF;
}
.hkw-action-panel--featured a.hkw-action-panel__info-item:hover {
    background: rgba(255, 255, 255, 0.22);
}

/* The small square icon chip on the left of each info row */
.hkw-action-panel__info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: #FFFFFF;
    color: #E71615;
    flex-shrink: 0;
    box-shadow: 0 2px 6px -1px rgba(21, 32, 77, 0.1);
}
.hkw-action-panel__info-icon i,
.hkw-action-panel__info-icon svg {
    width: 14px;
    height: 14px;
    font-size: 14px;
    line-height: 1;
}

.hkw-action-panel--featured .hkw-action-panel__info-icon {
    background: #FFFFFF;
    color: #E71615;
}

.hkw-action-panel__info-label {
    flex: 1;
    color: inherit;
    word-break: break-word;
}

/* Pushes the button down to the card bottom */
.hkw-action-panel__spacer {
    flex: 1;
    min-height: 8px;
}

/* -- Primary CTA button ---- */
.hkw-action-panel__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 999px;
    background: #E71615;
    color: #FFFFFF;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
    align-self: stretch;
    text-align: center;
}
.hkw-action-panel__btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px -8px rgba(231, 22, 21, 0.5);
}
.hkw-action-panel--featured .hkw-action-panel__btn {
    background: #FFFFFF;
    color: #15204D;
}
.hkw-action-panel--featured .hkw-action-panel__btn:hover {
    box-shadow: 0 10px 24px -8px rgba(0, 0, 0, 0.3);
}
.hkw-action-panel__btn-icon {
    display: inline-flex;
    align-items: center;
}
.hkw-action-panel__btn-icon i,
.hkw-action-panel__btn-icon svg {
    width: 14px;
    height: 14px;
    font-size: 14px;
    line-height: 1;
}

/* -- Optional footer note ---- */
.hkw-action-panel__footer {
    margin: 14px 0 0 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
    font-style: italic;
    text-align: center;
    color: #55627E;
}
.hkw-action-panel--featured .hkw-action-panel__footer {
    color: rgba(255, 255, 255, 0.85);
}

/* -- Responsive ---- */
@media (max-width: 1024px) {
    .hkw-action-panels {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .hkw-action-panels {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .hkw-action-panel {
        padding: 30px 24px;
    }
    .hkw-action-panel--featured::before {
        top: -80px;
        right: -80px;
        width: 220px;
        height: 220px;
    }
}

/* =========================================================================
   16. KRUIN TABS — VIDEO MEDIA variant
       Short looping clip option that sits in the same rounded frame as the
       image. Autoplay + loop + muted + playsinline are forced in the HTML
       (they're the defining features of the "fun 5-sec clip" pattern).
   ========================================================================= */
.hkw-kruin-tabs__panel-image--video {
    /* inherits border-radius, overflow and shadow from .hkw-kruin-tabs__panel-image */
    background: #0b1330; /* dark fill for the tiny gap before the first frame paints */
}

.hkw-kruin-tabs__panel-video {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 4 / 3; /* default; overridden by the Aspect Ratio control selector */
    display: block;
    object-fit: cover;
    transition: transform 0.6s var(--hkw-ease-out);
}

.hkw-kruin-tabs__panel:hover .hkw-kruin-tabs__panel-video {
    transform: scale(1.04);
}
