/*
 Theme Name:   VAKO Theme
 Theme URI:    https://vakotransportsystems.nl/
 Description:  Custom child theme voor VAKO Transport Systems
 Author:       Lomero Media
 Author URI:   https://lomero.nl/
 Template:     understrap
 Version:      1.0.0
*/

/* Local Roboto Font - GDPR Compliant */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('assets/fonts/roboto-light.woff2') format('woff2'),
         url('assets/fonts/roboto-light.woff') format('woff');
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('assets/fonts/roboto-regular.woff2') format('woff2'),
         url('assets/fonts/roboto-regular.woff') format('woff');
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('assets/fonts/roboto-medium.woff2') format('woff2'),
         url('assets/fonts/roboto-medium.woff') format('woff');
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('assets/fonts/roboto-bold.woff2') format('woff2'),
         url('assets/fonts/roboto-bold.woff') format('woff');
}

/* Hier kun je je eigen CSS toevoegen */



.custom-topbar {
  background-color: #01447B;
  color: #ffffff;
  padding: 10px 0;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  position: fixed;
  z-index: 9999;
  width: 100vw;
}

.topbar-container {
    max-width: 1290px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-left {
    display: flex;
    gap: 0;
    align-items: center;
}

/* Verticale scheidingslijn */
.topbar-divider {
    display: inline-block;
    width: 1px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 0 30px;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.topbar-item {
    color: #bcbcbc;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.3s ease;
}

.topbar-item:hover {
    opacity: 0.8;
    color: #ffffff;
}

.topbar-item i {
    font-size: 18px;
}

.topbar-vacatures {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 8px 20px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.topbar-vacatures:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Taalvlaggetjes styling - CSS vlaggen */
.topbar-languages {
    display: flex;
    gap: 10px;
    align-items: center;
    padding-left: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.language-flag {
    display: inline-block;
    opacity: 0.6;
    transition: opacity 0.3s ease, transform 0.2s ease;
}

.language-flag:hover {
    opacity: 1;
    transform: scale(1.1);
}

.language-flag.active {
    opacity: 1;
}

/* Nederlandse vlag */
.flag-nl {
    display: inline-block;
    width: 24px;
    height: 16px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.flag-nl::before,
.flag-nl::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 33.33%;
}

.flag-nl::before {
    top: 0;
    background-color: #AE1C28;
}

.flag-nl::after {
    bottom: 0;
    background-color: #21468B;
}

/* Britse vlag */
.flag-gb {
    display: inline-block;
    width: 24px;
    height: 16px;
    background-color: #012169;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.flag-gb::before,
.flag-gb::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.flag-gb::before {
    background: 
        linear-gradient(to bottom, transparent 45%, #FFF 45%, #FFF 55%, transparent 55%),
        linear-gradient(to right, transparent 45%, #FFF 45%, #FFF 55%, transparent 55%);
}

.flag-gb::after {
    background: 
        linear-gradient(to bottom, transparent 40%, #C8102E 40%, #C8102E 60%, transparent 60%),
        linear-gradient(to right, transparent 40%, #C8102E 40%, #C8102E 60%, transparent 60%);
}

/* Responsive design */
@media (max-width: 768px) {
    .topbar-container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .topbar-left {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0;
    }
    
    .topbar-divider {
        margin: 0 15px;
    }
    
    .topbar-right {
        flex-direction: column;
        gap: 15px;
    }
    
    .topbar-languages {
        border-left: none;
        padding-left: 0;
        border-top: 0px solid rgba(255, 255, 255, 0.2);
        padding-top: 5px;
    }
    
    .custom-topbar {
        font-size: 14px;
    }
	.flag-emoji {
		font-size:20px;
	}
}

/* Als je Font Awesome gebruikt in plaats van Dashicons */
.topbar-item .fa {
    font-size: 16px;
}
.lang-code {
    font-weight: 600;
    font-size: 12px;
    padding: 4px 8px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 3px;
    display: inline-block;
    transition: all 0.3s ease;
}

.language-flag:hover .lang-code {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
}

.language-flag.active .lang-code {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
}
.topbar-logo {
    position: absolute;
    left: 20px;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s ease;
    height: 35px;
}

.topbar-logo img {
    height: 100%;
    width: auto;
    display: block;
}

/* Container aanpassing voor logo */
.topbar-container {
    position: relative;
}

/* Topbar-left transitie voor smooth verschuiving */
.topbar-left {
    transition: margin-left 0.3s ease;
}

/* Wanneer gescrolld wordt */
.scrolled .topbar-logo {
    opacity: 1;
    transform: translateX(0);
}

/* Verschuif contactgegevens naar rechts bij scroll */
.scrolled .topbar-left {
    margin-left: 150px; /* Pas aan op basis van logo breedte */
}


/* ==========================================================================
   NAVIGATIE MENU STYLING
   ========================================================================== */

/* Basis styling voor alle top-level nav items */
.navbar-nav > .nav-item > a.nav-link {
    position: relative;
    transition: all 0.3s ease;
}

/* ::after pseudo-element voor hover animatie (alleen top-level) */
.navbar-nav > .nav-item > a.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 30px;
    height: 2px;
    background-color: #F15D22;
    border-radius: 0;
    transition: transform 0.3s ease;
}

/* Hover effect op top-level items */
.navbar-nav > .nav-item > a.nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

/* GEEN oranje lijn voor dropdown items wanneer menu open is */
.navbar-nav > .nav-item.dropdown:hover > a.nav-link::after {
    transform: translateX(-50%) scaleX(0);
}

/* Actieve pagina - toon de lijn (alleen voor EXACTE current item, niet ancestors) */
.navbar-nav > .nav-item.current-menu-item:not(.current-menu-ancestor) > a.nav-link::after,
.navbar-nav > .nav-item.current_page_item:not(.current-menu-ancestor) > a.nav-link::after {
    transform: translateX(-50%) scaleX(1);
}

/* Kleur voor actieve en hover states */
.navbar-nav .current-menu-item:not(.current-menu-ancestor) > a.nav-link,
.navbar-nav .current_page_item:not(.current-menu-ancestor) > a.nav-link,
.navbar-nav > .nav-item:not(.dropdown) > a.nav-link:hover,
.nav-link:focus {
    color: #F15D22 !important;
}

/* Dropdown parent blijft normaal wanneer menu open is */
.navbar-nav > .nav-item.dropdown:hover > a.nav-link {
    color: inherit !important;
}

/* ==========================================================================
   DROPDOWN SUBMENU STYLING - VAKO Donkerblauw Thema
   ========================================================================== */

/* Dropdown menu basis */
.navbar-nav .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    border: none;
    border-radius: 0;
    box-shadow: 0 15px 40px rgba(1, 68, 123, 0.3);
    padding: 0;
    margin-top: 0;
    min-width: 240px;
    background: #01447B;
    overflow: hidden;
}

/* Toon dropdown op hover */
.navbar-nav .nav-item.dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Dropdown items styling */
.navbar-nav .dropdown-menu .dropdown-item {
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.navbar-nav .dropdown-menu .dropdown-item:last-child,
.navbar-nav .dropdown-menu li:last-child .dropdown-item {
    border-bottom: none;
}

.navbar-nav .dropdown-menu .dropdown-item:hover,
.navbar-nav .dropdown-menu .dropdown-item:focus {
    background-color: transparent;
    color: #ffffff;
}

/* Actief item in dropdown */
.navbar-nav .dropdown-menu .current-menu-item > .dropdown-item {
    color: #ffffff;
    background-color: transparent;
}

/* Oranje accent lijn links bij hover */
.navbar-nav .dropdown-menu .dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: #F15D22;
    transform: scaleY(0);
    transition: transform 0.2s ease;
}

.navbar-nav .dropdown-menu .dropdown-item:hover::before,
.navbar-nav .dropdown-menu .current-menu-item > .dropdown-item::before {
    transform: scaleY(1);
}

/* Dropdown toggle pijltje */
.navbar-nav .dropdown-toggle::after {
    margin-left: 6px;
    vertical-align: middle;
    border-top-color: currentColor;
    transition: transform 0.2s ease;
}

.navbar-nav .nav-item.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* Parent item wanneer op subpagina - subtiele indicator */
.navbar-nav > .nav-item.current-menu-ancestor > a.nav-link,
.navbar-nav > .nav-item.current-menu-parent > a.nav-link {
    color: #01447B !important;
}




:root {
    --topbar-height: 54px;
}

.custom-topbar {
    position: fixed;
    top: 0;
    width: 100%;
    /* je andere styles */
}

body {
    padding-top: var(--topbar-height);
}

/* Voor responsive */
@media (max-width: 768px) {
    :root {
        --topbar-height: 120px;
    }
}

.maxwidth {
    max-width: 800px;
    margin: 0 auto;
}

.wrapper {
    padding: 0.8rem 0!important;
}






/* VAKO Sidelifter Model Detail Page Styles */
/* Add this to your existing style.css or create a new file */

.vako-model-detail {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #2d3748;
    line-height: 1.6;
    margin-top: 13px;
}

/* Container */
.vako-model-detail .vako-container {
    max-width: 1295px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Breadcrumbs */
.vako-breadcrumbs {
    font-size: 14px;
    color: #2d3748;
    margin-bottom: 0;
}

.vako-breadcrumbs a {
    color: #01447b;
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 500;
}

.vako-breadcrumbs a:hover {
    color: #f15d22;
}

.vako-breadcrumbs span {
    margin: 0 8px;
    color: #718096;
}

.vako-breadcrumbs span:last-child {
    color: #2d3748;
    margin: 0;
    font-weight: 500;
}

/* Hero Section */
.vako-hero {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    padding: 40px 0 80px;
    margin-bottom: 60px;
}

.vako-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.vako-model-title {
    font-size: 48px;
    font-weight: 300;
    margin: 0 0 30px;
    letter-spacing: -1px;
    line-height: 1.1;
}

.vako-hero-features {
    margin-bottom: 40px;
}

.vako-hero-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vako-hero-features li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 16px;
    color: #4a5568;
}

.vako-hero-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #e66500;
    font-weight: bold;
    font-size: 18px;
}

.vako-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.vako-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 40px 14px 20px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vako-btn-primary {
    background: #f15d22;
    color: #ffffff !important;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 0 100%);
}

.vako-btn-primary:hover {
    background: #d94d15;
    transform: translateX(3px);
}

.vako-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #01447b !important;
    padding: 14px 40px 14px 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    border: none;
    z-index: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vako-btn-secondary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(1, 68, 123, 0.3);
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 0 100%);
    transition: background 0.3s ease;
    z-index: -2;
}

.vako-btn-secondary::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: #f7fafc;
    clip-path: polygon(0 0, calc(100% - 19px) 0, 100% 50%, calc(100% - 19px) 100%, 0 100%);
    z-index: -1;
}

.vako-btn-secondary:hover::before {
    background: rgba(1, 68, 123, 0.5);
}

.vako-btn-secondary:hover {
    transform: translateX(3px);
    color: #01447b !important;
}

.vako-btn-white {
    background: transparent;
    color: #2d3748 !important;
    z-index: 0;
}

.vako-btn-white::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #e2e8f0;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 0 100%);
    transition: background 0.3s ease;
    z-index: -2;
}

.vako-btn-white::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: #ffffff;
    clip-path: polygon(0 0, calc(100% - 19px) 0, 100% 50%, calc(100% - 19px) 100%, 0 100%);
    z-index: -1;
}

.vako-btn-white:hover {
    transform: translateX(3px);
    color: #01447b !important;
}

.vako-btn-white:hover::before {
    background: #01447b;
}

.vako-hero-image {
    position: relative;
    height: 400px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.vako-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vako-no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: #f7fafc;
}

/* Tabs Section */
.vako-tabs-section {
    margin-bottom: 130px;
}

.vako-tabs-nav {
    display: flex;
    gap: 8px;
    border-bottom: 2px solid #e2e8f0;
    margin-bottom: 40px;
}

.vako-tab-btn {
    padding: 16px 24px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    color: #718096;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    margin-bottom: -2px;
}

.vako-tab-btn:hover {
    color: #2d3748;
    background: #f7fafc;
}

.vako-tab-btn.active {
    color: #e66500;
    border-bottom-color: #e66500;
}

.vako-tab-pane {
    display: none;
    animation: fadeIn 0.3s ease;
}

.vako-tab-pane.active {
    display: block;
}

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

/* Tab Content Styles */
.vako-tab-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.vako-tab-pane h2 {
    font-size: 32px;
    font-weight: 300;
    margin: 0 0 30px;
    color: #2d3748;
}

.vako-tab-pane h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 40px 0 20px;
    color: #2d3748;
}

.vako-content {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
}

.vako-content p {
    margin-bottom: 20px;
}

/* Features Grid */
.vako-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.vako-feature-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: #f7fafc;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.vako-feature-card:hover {
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.vako-feature-icon {
    flex-shrink: 0;
}

.vako-feature-card p {
    margin: 0;
    font-size: 15px;
    color: #4a5568;
}

/* Quick Specs Sidebar */
.vako-quick-specs {
    position: sticky;
    top: 20px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 30px;
}

.vako-quick-specs h3 {
    margin-top: 0;
}

.vako-quick-specs dl {
    margin: 0;
}

.vako-quick-specs dt {
    font-size: 13px;
    font-weight: 600;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 20px;
}

.vako-quick-specs dd {
    font-size: 18px;
    font-weight: 500;
    color: #2d3748;
    margin: 8px 0 0 0;
}

.vako-view-all {
    display: inline-flex;
    align-items: center;
    color: #e66500;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    margin-top: 20px;
    transition: all 0.2s ease;
}

.vako-view-all:hover {
    gap: 4px;
}

/* Specifications Table */
.vako-specs-table {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.vako-specs-table table {
    width: 100%;
    border-collapse: collapse;
}

.vako-specs-table th,
.vako-specs-table td {
    padding: 16px 24px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.vako-specs-table th {
    background: #f7fafc;
    font-weight: 600;
    color: #4a5568;
    width: 40%;
}

.vako-specs-table td {
    color: #2d3748;
    font-weight: 500;
}

.vako-specs-table tr:last-child th,
.vako-specs-table tr:last-child td {
    border-bottom: none;
}

/* Technical Data Grid */
/* Technical Data Table Style (match Specifications) */
.vako-tech-grid {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.vako-tech-category {
    margin-bottom: 0; /* geen extra gap tussen categorieën */
}

.vako-tech-category h3 {
    background: #e8f0f5;
    padding: 16px 24px;
    margin: 0;
    font-weight: 600;
    color: #2d3748;
    border-bottom: 1px solid #e2e8f0;
}

.vako-tech-items {
    display: table;
    width: 100%;
    border-collapse: collapse;
}

.vako-tech-item {
    display: table-row;
}

.vako-tech-label,
.vako-tech-value {
    display: table-cell;
    padding: 16px 24px;
    border-bottom: 1px solid #e2e8f0;
    font-size: 15px;
}

.vako-tech-label {
    background: #f7fafc;
    font-weight: 600;
    width: 40%;
    color: #4a5568;
}

.vako-tech-value {
    color: #2d3748;
    font-weight: 500;
}

.vako-tech-category:last-child .vako-tech-label,
.vako-tech-category:last-child .vako-tech-value {
    border-bottom: none;
}
.vako-tech-category h3 {
	text-align:left;
}

/* Gallery */
.vako-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

.vako-gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
    background: #f7fafc;
}

.vako-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.vako-gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vako-gallery-item:hover img {
    transform: scale(1.1);
}

.vako-gallery-item:hover .vako-gallery-overlay {
    opacity: 1;
}

/* Video */
.vako-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
}

.vako-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Downloads */
.vako-downloads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.vako-download-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 30px 20px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    text-decoration: none;
    color: #2d3748;
    transition: all 0.2s ease;
    text-align: center;
}

.vako-download-card:hover {
    border-color: #e66500;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.vako-download-card:hover .vako-download-icon svg {
    transform: scale(1.1);
}

.vako-download-icon svg {
    transition: transform 0.2s ease;
}

/* CTA Section */
.vako-cta-section {
    background: linear-gradient(135deg, #e66500 0%, #cc5a00 100%);
    padding: 80px 0;
    margin-top: 80px;
}

.vako-cta-content {
    text-align: center;
    color: white;
}

.vako-cta-content h2 {
    font-size: 40px;
    font-weight: 300;
    margin: 0 0 16px;
    letter-spacing: -1px;
}

.vako-cta-content p {
    font-size: 18px;
    margin: 0 0 40px;
    opacity: 0.95;
}

.vako-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 992px) {
    .vako-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .vako-tab-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .vako-quick-specs {
        position: static;
    }
    
    .vako-model-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .vako-tabs-nav {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .vako-tab-btn {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .vako-features-grid {
        grid-template-columns: 1fr;
    }
    
    .vako-tech-items {
        grid-template-columns: 1fr;
    }
    
    .vako-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .vako-downloads-grid {
        grid-template-columns: 1fr;
    }
    
    .vako-cta-content h2 {
        font-size: 32px;
    }
    
    .vako-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .vako-cta-buttons .vako-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .vako-model-title {
        font-size: 28px;
    }
    
    .vako-hero-actions {
        flex-direction: column;
    }
    
    .vako-hero-actions .vako-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .vako-tabs-nav,
    .vako-hero-actions,
    .vako-cta-section {
        display: none;
    }
    
    .vako-tab-pane {
        display: block !important;
        page-break-before: always;
    }
    
    .vako-tab-pane:first-child {
        page-break-before: auto;
    }
}






/* VAKO Hero - Slider tot browserrand rechts */
.vako-model-detail .vako-hero {
    min-height: 600px !important;
    overflow: hidden;
}

.vako-model-detail .vako-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 !important;
    max-width: 1295px;
    margin: 0 auto;
    padding-left: 20px;
}

.vako-model-detail .vako-hero-text {
    padding-right: 60px;
}

.vako-model-detail .vako-hero-image {
    position: relative !important;
    height: 600px !important;
    min-height: 600px !important;
    margin-right: calc(-50vw + 50%) !important;
    width: calc(50vw + -2.5%) !important; 
}

/* Slider absolute positioning binnen hero-image */
.vako-model-detail .vako-hero-slider {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
}

.vako-model-detail .vako-hero-slider .has-accordion-container,
.vako-model-detail .vako-hero-slider .has-accordion-wrapper {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.vako-model-detail .vako-hero-slider .has-slide {
    height: 100% !important;
}

/* Responsive */
@media (max-width: 768px) {
    .vako-model-detail .vako-hero {
        min-height: auto !important;
    }
    
    .vako-model-detail .vako-hero-content {
        grid-template-columns: 1fr !important;
    }
    
    .vako-model-detail .vako-hero-image {
        margin-right: 0 !important;
        width: 100% !important;
        height: 400px !important;
    }
}

.vako-model-detail .vako-hero-image {
  position: relative !important;
  height: 600px !important;
  min-height: 600px !important;
  margin-right: calc(-50vw + 50%) !important;
  width: calc(50vw + -2.5%) !important;
  margin: -65px 0 -80px 0;
}
.has-slide-title {
  font-size: 38px;
}
.vako-hero-image .has-slide-title {
  font-size: 26px;
}






/* Slider blijft normaal op dezelfde grootte */
.vako-model-detail .vako-hero-slider {
    position: relative;
    z-index: 1;
}

/* ===========================================
   VIDEO BREAKOUT - Alleen bij actieve video slide
   =========================================== */

/* Zorg dat parent containers de hover niet blokkeren bij video */
.vako-model-detail .vako-hero-slider:has(.has-video-active) {
    z-index: 1;
}

.vako-model-detail:has(.has-video-active) .vako-hero {
    position: relative;
    overflow: visible !important;
}

.vako-model-detail:has(.has-video-active) .vako-hero-content {
    position: relative;
    overflow: visible !important;
}

.vako-model-detail:has(.has-video-active) .vako-hero-image {
    overflow: visible !important;
}

/* Hover effect - Alleen uitbreiden bij video slides */
.vako-model-detail .vako-hero-slider:has(.has-video-active) {
    transition: all 0.4s ease;
    cursor: zoom-in;
}

.vako-model-detail .vako-hero-slider:has(.has-video-active):hover {
    position: absolute !important;
    left: calc(-100vw + 60vw + -21%) !important;
    right: auto !important;
    width: 100vw !important;
    height: 600px !important;
    z-index: 9999 !important;
    cursor: zoom-out;
    box-shadow: 0 0 50px rgba(0,0,0,0.3);
}

.vako-model-detail .vako-hero-slider:has(.has-video-active):hover .has-accordion-container,
.vako-model-detail .vako-hero-slider:has(.has-video-active):hover .has-accordion-wrapper {
    width: 100vw !important;
    height: 600px !important;
}













/* ============================================
   VAKO ABOUT US - WITH HOMEPAGE HERO STYLE
   Complete styling including hero cover section
   Plak deze CSS onderaan je style.css
   ============================================ */

/* Hero Cover Section (like homepage) */
.about-hero-cover {
    position: relative;
}

.about-hero-cover .wp-block-cover__inner-container {
    max-width: 1290px;
    width: 100%;
}

.about-hero-title-overlay {
    font-size: 56px !important;
    font-weight: 300 !important;
    color: white !important;
    margin-bottom: 20px !important;
    line-height: 1.1 !important;
    letter-spacing: -1px !important;
}

/* Orange Subtitle Bubble (like "Why vertical" on homepage) */
.hero-subtitle-bubble {
    display: inline-block !important;
    max-width: fit-content !important;
    margin-bottom: 0 !important;
}

.hero-subtitle-bubble p {
    margin: 0 !important;
    color: white !important;
    font-size: 16px !important;
    font-weight: 500 !important;
}

/* White Button in Hero */
.vako-btn-white .wp-block-button__link {
    background: transparent !important;
    color: #2d3748 !important;
    padding: 14px 40px 14px 20px !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    position: relative !important;
    z-index: 0 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.vako-btn-white .wp-block-button__link::before {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    background: #e2e8f0 !important;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 0 100%) !important;
    transition: background 0.3s ease !important;
    z-index: -2 !important;
}

.vako-btn-white .wp-block-button__link::after {
    content: '' !important;
    position: absolute !important;
    top: 2px !important;
    left: 2px !important;
    right: 2px !important;
    bottom: 2px !important;
    background: #ffffff !important;
    clip-path: polygon(0 0, calc(100% - 19px) 0, 100% 50%, calc(100% - 19px) 100%, 0 100%) !important;
    z-index: -1 !important;
}

.vako-btn-white .wp-block-button__link:hover {
    transform: translateX(3px) !important;
    color: #01447b !important;
}

.vako-btn-white .wp-block-button__link:hover::before {
    background: #01447b !important;
}

.vako-btn-white .wp-block-button__link:hover::after {
    background: #ffffff !important;
}

/* H4 Subtitles (like homepage) */
h4.wp-block-heading {
    font-size: 16px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    color: #e66500 !important;
}

/* Stats Cards */
.stats-cards.wp-block-columns {
    margin: 40px 0 !important;
}

.stats-cards .wp-block-column {
    text-align: center !important;
    padding: 30px 20px !important;
    background: white !important;
    border: 2px solid #e2e8f0 !important;
    border-radius: 8px !important;
    transition: all 0.2s ease !important;
}

.stats-cards .wp-block-column:hover {
    border-color: #e66500 !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08) !important;
}

.stats-cards .stat-number {
    font-size: 36px !important;
    font-weight: 700 !important;
    color: #e66500 !important;
    margin-bottom: 8px !important;
    line-height: 1 !important;
}

.stats-cards .stat-label {
    font-size: 14px !important;
    color: #718096 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

/* Full-Width Gray Sections (like homepage) */
.timeline-wrapper.wp-block-group,
.location-wrapper.wp-block-group {
    background-color: #f3f3f3 !important;
}

/* Mission Section */
.mission-section .wp-block-media-text {
    margin: 0 !important;
}

.mission-section .wp-block-media-text__content h4 {
    color: #e66500 !important;
}

.mission-section .wp-block-media-text__content h2 {
    font-size: 36px !important;
    font-weight: 300 !important;
    color: #2d3748 !important;
    margin: 0 0 20px !important;
}

.mission-section .wp-block-media-text__content p {
    font-size: 16px !important;
    line-height: 1.8 !important;
    color: #4a5568 !important;
    margin-bottom: 16px !important;
}

.mission-section .wp-block-media-text__media img {
    border-radius: 8px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

/* Timeline Section */
.timeline-section {
    margin: 0 !important;
}

.timeline-container {
    position: relative !important;
    max-width: 900px !important;
    margin: 0 auto !important;
}

.timeline-container::before {
    content: '' !important;
    position: absolute !important;
    left: 100px !important;
    top: 0 !important;
    bottom: 0 !important;
    width: 2px !important;
    background: #e2e8f0 !important;
}

.timeline-item {
    display: flex !important;
    gap: 40px !important;
    margin-bottom: 50px !important;
    position: relative !important;
}

.timeline-year {
    flex-shrink: 0 !important;
    width: 100px !important;
    text-align: right !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #e66500 !important;
    padding-top: 5px !important;
    position: relative !important;
}

.timeline-year::after {
    content: '' !important;
    position: absolute !important;
    right: -22px !important;
    top: 10px !important;
    width: 14px !important;
    height: 14px !important;
    background: white !important;
    border: 3px solid #e66500 !important;
    border-radius: 50% !important;
    z-index: 1 !important;
}

.timeline-content {
    background: white !important;
    padding: 24px 28px !important;
    border: 2px solid #e2e8f0 !important;
    border-radius: 8px !important;
    flex: 1 !important;
    transition: all 0.2s ease !important;
}

.timeline-content:hover {
    border-color: #e66500 !important;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08) !important;
    transform: translateY(-2px) !important;
}

.timeline-content h3 {
    font-size: 20px !important;
    color: #2d3748 !important;
    margin: 0 0 10px !important;
    font-weight: 600 !important;
}

.timeline-content p {
    color: #4a5568 !important;
    margin: 0 !important;
    line-height: 1.6 !important;
}


.expertise-cards.wp-block-columns .wp-block-column {
    background: white !important;
    border: 2px solid #e2e8f0 !important;
    border-radius: 8px !important;
    padding: 32px 28px !important;
    transition: all 0.2s ease !important;
}

.expertise-cards.wp-block-columns .wp-block-column:hover {
    border-color: #e66500 !important;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08) !important;
    transform: translateY(-3px) !important;
}

.expertise-cards h3 {
    font-size: 22px !important;
    color: #2d3748 !important;
    margin: 0 0 16px !important;
    font-weight: 600 !important;
}

.expertise-cards p {
    color: #4a5568 !important;
    line-height: 1.7 !important;
    margin-bottom: 20px !important;
}

.expertise-cards ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.expertise-cards ul li {
    padding: 10px 0 !important;
    padding-left: 24px !important;
    position: relative !important;
    color: #4a5568 !important;
    border-bottom: 1px solid #e2e8f0 !important;
    font-size: 15px !important;
}

.expertise-cards ul li:last-child {
    border-bottom: none !important;
}

.expertise-cards ul li::before {
    content: "›" !important;
    position: absolute !important;
    left: 0 !important;
    color: #e66500 !important;
    font-weight: bold !important;
    font-size: 20px !important;
}

/* Location Section */
.location-section {
    margin: 0 !important;
}

.location-section .location-columns {
    gap: 60px !important;
}

.location-section .location-map iframe {
    width: 100% !important;
    height: 450px !important;
    border-radius: 8px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

.location-section .location-text p {
    font-size: 16px !important;
    line-height: 1.8 !important;
    color: #4a5568 !important;
    margin-bottom: 16px !important;
}

/* Team Section */
.team-section {
    margin: 0 !important;
}

.team-cards.wp-block-columns .wp-block-column {
    background: white !important;
    border: 2px solid #e2e8f0 !important;
    border-radius: 8px !important;
    padding: 28px 24px !important;
    text-align: center !important;
    transition: all 0.2s ease !important;
}

.team-cards.wp-block-columns .wp-block-column:hover {
    border-color: #e66500 !important;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08) !important;
    transform: translateY(-3px) !important;
}

.team-cards h3 {
    font-size: 18px !important;
    color: #2d3748 !important;
    margin: 0 0 10px !important;
    font-weight: 600 !important;
}

.team-cards p {
    color: #718096 !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

/* CTA Cover Block (like homepage blue section) */
.cta-cover.wp-block-cover {
    background-color: #01447b !important;
}

.cta-cover h4 {
    color: white !important;
    text-transform: uppercase !important;
}

.cta-cover h2 {
    font-size: 36px !important;
    font-weight: 300 !important;
    color: white !important;
    margin-bottom: 20px !important;
}

.cta-cover p {
    font-size: 18px !important;
    color: white !important;
    line-height: 1.7 !important;
    max-width: 700px !important;
    margin: 0 auto !important;
}



.readmore-button.is-style-outline .wp-block-button__link {
    background: transparent !important;
    color: white !important;
    border: none !important;
    padding: 14px 40px 14px 20px !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
    border-radius: 0 !important;
    position: relative !important;
    z-index: 0 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.readmore-button.is-style-outline .wp-block-button__link::before {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    background: rgba(255, 255, 255, 0.4) !important;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 0 100%) !important;
    transition: background 0.3s ease !important;
    z-index: -2 !important;
}

.readmore-button.is-style-outline .wp-block-button__link::after {
    content: '' !important;
    position: absolute !important;
    top: 2px !important;
    left: 2px !important;
    right: 2px !important;
    bottom: 2px !important;
    background: #01447b !important;
    clip-path: polygon(0 0, calc(100% - 19px) 0, 100% 50%, calc(100% - 19px) 100%, 0 100%) !important;
    z-index: -1 !important;
}

.readmore-button.is-style-outline .wp-block-button__link:hover {
    transform: translateX(3px) !important;
    color: white !important;
}

.readmore-button.is-style-outline .wp-block-button__link:hover::before {
    background: rgba(255, 255, 255, 0.7) !important;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-hero-title-overlay {
        font-size: 42px !important;
    }
    
    .timeline-container::before {
        left: 80px !important;
    }
    
    .timeline-year {
        width: 80px !important;
        font-size: 18px !important;
    }
    
    .location-section .location-columns {
        gap: 40px !important;
    }
}

@media (max-width: 768px) {
    .about-hero-title-overlay {
        font-size: 36px !important;
    }
    
    .hero-subtitle-bubble p {
        font-size: 14px !important;
    }
    
    .stats-cards.wp-block-columns,
    .expertise-cards.wp-block-columns,
    .team-cards.wp-block-columns {
        flex-direction: column !important;
    }
    
    .timeline-container::before {
        left: 50px !important;
    }
    
    .timeline-year {
        width: 50px !important;
        font-size: 16px !important;
    }
    
    .timeline-item {
        gap: 20px !important;
    }
    
    .location-section .location-map iframe {
        height: 300px !important;
    }
    
    .cta-cover h2 {
        font-size: 28px !important;
    }
}

a.vako-explore-btn:hover {
    color: white !important;
}

/* =============================================================================
   VAKO PROFESSIONAL FOOTER STYLES
   ============================================================================= */

.vako-footer {
    background-color: #01447B;
    color: #ffffff;
    padding: 60px 0 0 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.vako-footer-container {
    max-width: 1295px;
    margin: 0 auto;
    padding: 0 20px;
}

.vako-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Logo & Description Column */
.vako-footer-brand {
    padding-right: 40px;
}

.vako-footer-logo {
    max-width: 140px;
    margin-bottom: 20px;
}

.vako-footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.vako-footer-social {
    display: flex;
    gap: 12px;
}

.vako-footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.vako-footer-social a:hover {
    background: #F15D22;
    transform: translateY(-3px);
}

.vako-footer-social svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Footer Columns */
.vako-footer-column h4 {
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.vako-footer-column h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: #F15D22;
}

.vako-footer-links,
.vako-footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vako-footer-links li {
    margin-bottom: 12px;
}

.vako-footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.vako-footer-links a:hover {
    color: #F15D22;
    padding-left: 5px;
}

/* Contact Info */
.vako-footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vako-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
}

.vako-footer-contact li svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    color: #F15D22;
}

.vako-footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.vako-footer-contact a:hover {
    color: #F15D22;
}

/* Footer Bottom */
.vako-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.vako-footer-bottom p {
  margin: 0;
  color: white;
  font-size: 0.85rem;
}

.vako-footer-legal {
    display: flex;
    gap: 25px;
}

.vako-footer-legal a,
.vako-footer-legal-menu a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.vako-footer-legal a:hover,
.vako-footer-legal-menu a:hover {
    color: #F15D22;
}

.vako-footer-legal-menu {
    display: flex;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.vako-footer-legal-menu li {
    margin: 0;
}

/* Disable active page indicator in footer */
.vako-footer .current-menu-item > a::after,
.vako-footer .current_page_item > a::after,
.vako-footer .nav-item.active > a::after {
    display: none;
}

.vako-footer .current-menu-item > a,
.vako-footer .current_page_item > a,
.vako-footer .nav-item.active > a {
    padding-bottom: 0;
}

/* Footer Responsive */
@media (max-width: 992px) {
    .vako-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px 30px;
    }
    
    .vako-footer-brand {
        grid-column: span 2;
        padding-right: 0;
    }
}

@media (max-width: 576px) {
    .vako-footer {
        padding: 40px 0 0 0;
    }
    
    .vako-footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .vako-footer-brand {
        grid-column: span 1;
    }
    
    .vako-footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .vako-footer-legal,
    .vako-footer-legal-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
}
/* =============================================================================
   VAKO VACATURES STYLING
   Voeg deze CSS toe aan style.css
   ============================================================================= */

/* -----------------------------------------------------------------------------
   Vacatures Overzicht (Shortcode)
   ----------------------------------------------------------------------------- */

.vako-vacatures-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Filter buttons */
.vako-vacatures-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
}

.vako-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #4a5568;
    padding: 12px 40px 12px 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    border: none;
    z-index: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vako-filter-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #e2e8f0;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 0 100%);
    transition: background 0.3s ease;
    z-index: -2;
}

.vako-filter-btn::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: #ffffff;
    clip-path: polygon(0 0, calc(100% - 19px) 0, 100% 50%, calc(100% - 19px) 100%, 0 100%);
    z-index: -1;
}

.vako-filter-btn:hover {
    color: #01447b;
    transform: translateX(3px);
}

.vako-filter-btn:hover::before {
    background: #01447b;
}

.vako-filter-btn.active {
    color: #ffffff;
}

.vako-filter-btn.active::before {
    background: #01447b;
}

.vako-filter-btn.active::after {
    display: none;
}

/* Vacature grid */
.vako-vacatures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

/* Vacature card - New design with image */
.vako-vacancy-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.vako-vacancy-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.vako-vacancy-card.featured {
    box-shadow: 0 4px 20px rgba(241, 93, 34, 0.2);
}

.vako-vacancy-card.featured:hover {
    box-shadow: 0 12px 40px rgba(241, 93, 34, 0.25);
}

.vako-vacancy-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

/* Card image */
.vako-vacancy-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #01447b 0%, #023a68 100%);
}

.vako-vacancy-image img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    aspect-ratio: unset !important;
    object-fit: cover !important;
    object-position: bottom !important;
    transition: transform 0.5s ease;
}

.vako-vacancy-card:hover .vako-vacancy-image img {
    transform: scale(1.08);
}

.vako-vacancy-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #01447b 0%, #023a68 100%);
    color: rgba(255, 255, 255, 0.3);
}

.vako-vacancy-department {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(241, 93, 34, 0.95);
    color: #ffffff;
    padding: 6px 24px 6px 14px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%);
}

.vako-vacancy-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f15d22;
    color: #ffffff;
    padding: 5px 22px 5px 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%);
}

.vako-vacancy-content {
    padding: 25px;
    flex-grow: 1;
}

.vako-vacancy-title {
    margin: 0 0 15px 0;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
    color: #01447b;
    transition: color 0.3s ease;
}

.vako-vacancy-card:hover .vako-vacancy-title {
    color: #f15d22;
}

.vako-vacancy-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vako-vacancy-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 13px;
}

.vako-vacancy-meta-item svg {
    color: #01447b;
    flex-shrink: 0;
    opacity: 0.7;
}

.vako-vacancy-excerpt {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 15px 0 0 0;
}

.vako-vacancy-footer {
    padding: 20px 25px;
    background: #f8f9fa;
    border-top: 1px solid #eee;
    margin-top: auto;
}

.vako-vacancy-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #01447b;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: gap 0.3s ease, color 0.3s ease;
}

.vako-vacancy-card:hover .vako-vacancy-btn {
    color: #f15d22;
    gap: 12px;
}

.vako-vacancy-btn svg {
    transition: transform 0.3s ease;
}

.vako-vacancy-card:hover .vako-vacancy-btn svg {
    transform: translateX(3px);
}

.vako-vacancy-date {
    color: #888;
    font-size: 13px;
}

.vako-vacancy-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #01447b;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: gap 0.3s ease;
}

.vako-vacancy-btn:hover {
    gap: 12px;
    color: #f15d22;
}

.vako-vacancy-btn svg {
    transition: transform 0.3s ease;
}

.vako-vacancy-btn:hover svg {
    transform: translateX(3px);
}

/* Geen vacatures state */
.vako-no-vacatures {
    text-align: center;
    padding: 60px 20px;
    background: #f8f9fa;
    border-radius: 12px;
}

.vako-no-vacatures-icon {
    color: #ccc;
    margin-bottom: 20px;
}

.vako-no-vacatures h3 {
    color: #333;
    margin-bottom: 10px;
}

.vako-no-vacatures p {
    color: #666;
    max-width: 400px;
    margin: 0 auto 25px;
}

.vako-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #ffffff !important;
    padding: 14px 40px 14px 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    border: none;
    z-index: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vako-cta-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.4);
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 0 100%);
    transition: background 0.3s ease;
    z-index: -2;
}

.vako-cta-button::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: #01447b;
    clip-path: polygon(0 0, calc(100% - 19px) 0, 100% 50%, calc(100% - 19px) 100%, 0 100%);
    z-index: -1;
}

.vako-cta-button:hover::before {
    background: rgba(255, 255, 255, 0.7);
}

.vako-cta-button:hover {
    transform: translateX(3px);
}

/* Animation */
.vako-vacancy-card.fade-in {
    animation: fadeInUp 0.4s ease;
}

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

/* -----------------------------------------------------------------------------
   Vacature Single Page
   ----------------------------------------------------------------------------- */

.vako-vacancy-single {
    background: #ffffff;
}
.vako-vacancy-hero {
    background: #01447b;
    padding: 60px 0 60px;
    color: #ffffff;
    margin-top: 12px;
}

.vako-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Breadcrumbs on dark background (vacancy pages) */
.vako-vacancy-single .vako-breadcrumbs {
    margin-bottom: 30px;
    font-size: 14px;
}

.vako-vacancy-single .vako-breadcrumbs a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.vako-vacancy-single .vako-breadcrumbs a:hover {
    color: #ffffff;
}

.vako-vacancy-single .vako-breadcrumbs span {
    color: rgba(255, 255, 255, 0.5);
    margin: 0 8px;
}

.vako-vacancy-single .vako-breadcrumbs span:last-child {
    color: #ffffff;
    margin-left: 0;
}

/* Hero content */
.vako-vacancy-hero-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}

.vako-vacancy-hero-main {
    flex: 1;
    min-width: 300px;
}

.vako-vacancy-department-tag {
    display: inline-block;
    background: rgba(241, 93, 34, 0.95);
    color: #ffffff;
    padding: 8px 30px 8px 16px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 50%, calc(100% - 15px) 100%, 0 100%);
}

.vako-vacancy-single-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 20px;
    line-height: 1.2;
}

.vako-vacancy-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
}

.vako-vacancy-hero-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.vako-vacancy-hero-meta-item svg {
    opacity: 0.8;
}

.vako-vacancy-hero-date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

/* Hero CTA */
.vako-vacancy-hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.vako-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f15d22;
    color: #ffffff !important;
    padding: 14px 40px 14px 20px;
    border-radius: 0;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 0 100%);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vako-btn-primary:hover {
    background: #d94d15;
    transform: translateX(3px);
}

.vako-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #ffffff !important;
    padding: 14px 40px 14px 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    border: none;
    z-index: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vako-btn-outline::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.4);
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 0 100%);
    transition: background 0.3s ease;
    z-index: -2;
}

.vako-btn-outline::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: #01447b;
    clip-path: polygon(0 0, calc(100% - 19px) 0, 100% 50%, calc(100% - 19px) 100%, 0 100%);
    z-index: -1;
}

.vako-btn-outline:hover::before {
    background: rgba(255, 255, 255, 0.7);
}

.vako-btn-outline:hover {
    transform: translateX(3px);
}

/* Body layout */
.vako-vacancy-body {
    padding: 60px 0;
}

.vako-vacancy-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 50px;
}

/* Main content */
.vako-vacancy-main {
    min-width: 0;
}

.vako-vacancy-content-block {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}

.vako-vacancy-content-block h2,
.vako-vacancy-content-block h3 {
    color: #1a1a1a;
    margin-top: 30px;
    margin-bottom: 15px;
}

.vako-vacancy-content-block h2:first-child,
.vako-vacancy-content-block h3:first-child {
    margin-top: 0;
}

.vako-vacancy-content-block p {
    color: #444;
    line-height: 1.7;
    margin-bottom: 15px;
}

.vako-vacancy-content-block ul,
.vako-vacancy-content-block ol {
    color: #444;
    line-height: 1.7;
    padding-left: 25px;
    margin-bottom: 20px;
}

.vako-vacancy-content-block li {
    margin-bottom: 8px;
}

/* Sidebar */
.vako-vacancy-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.vako-vacancy-info-card,
.vako-vacancy-apply-card,
.vako-vacancy-company-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}

.vako-vacancy-info-card h3,
.vako-vacancy-apply-card h3 {
    font-size: 1.2rem;
    margin: 0 0 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f3f3f3;
    color: #1a1a1a;
}

.vako-vacancy-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vako-vacancy-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f3f3f3;
}

.vako-vacancy-info-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.vako-vacancy-info-list li svg {
    color: #01447b;
    flex-shrink: 0;
    margin-top: 2px;
}

.vako-vacancy-info-list li .label {
    display: block;
    color: #888;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
}

.vako-vacancy-info-list li .value {
    display: block;
    color: #333;
    font-weight: 600;
}

/* Apply card */
.vako-vacancy-apply-card p {
    color: #666;
    margin-bottom: 20px;
    font-size: 14px;
}

.vako-btn-block {
    width: 100%;
    justify-content: center;
    text-align: center;
}

.vako-vacancy-contact-info {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #f3f3f3;
}

.vako-vacancy-contact-info p {
    margin-bottom: 15px;
}

.vako-contact-person,
.vako-contact-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
    font-weight: 500;
    margin-bottom: 10px;
}

.vako-contact-phone {
    color: #01447b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.vako-contact-phone:hover {
    color: #f15d22;
}

/* Company card */
.vako-vacancy-company-card {
    text-align: center;
}

.vako-company-logo {
    max-width: 180px;
    margin-bottom: 15px;
}

.vako-vacancy-company-card h4 {
    font-size: 1.1rem;
    margin: 0 0 10px;
    color: #1a1a1a;
}

.vako-vacancy-company-card p {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.vako-link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #01447b;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: gap 0.3s ease;
}

.vako-link-arrow:hover {
    gap: 12px;
    color: #f15d22;
}

/* CTA Section */
.vako-vacancy-cta-section {
    background: linear-gradient(135deg, #f15d22 0%, #d94d15 100%);
    padding: 80px 0;
}

.vako-vacancy-cta-content {
    text-align: center;
    color: #ffffff;
}

.vako-vacancy-cta-content h2 {
    font-size: 2rem;
    margin: 0 0 15px;
}

.vako-vacancy-cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.vako-btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    color: #f15d22 !important;
    padding: 16px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.vako-btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Back to all vacancies link */
.vako-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #01447b;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    transition: color 0.3s ease, gap 0.3s ease;
}

.vako-back-link:hover {
    color: #f15d22;
    gap: 10px;
}

.vako-back-link svg {
    transition: transform 0.3s ease;
}

.vako-back-link:hover svg {
    transform: translateX(-3px);
}

/* Related vacatures */
.vako-vacancy-related {
    background: #f8f9fa;
    padding: 80px 0;
}

.vako-vacancy-related h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.vako-related-grid {
    max-width: 1000px;
    margin: 0 auto;
}

.vako-related-cta {
    text-align: center;
    margin-top: 40px;
}

/* -----------------------------------------------------------------------------
   Benefits Cards (Careers Page)
   ----------------------------------------------------------------------------- */

.benefits-cards .wp-block-column {
    padding: 0 10px;
}

.benefit-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.2rem;
    margin: 0 0 12px;
    color: #1a1a1a;
}

.benefit-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* -----------------------------------------------------------------------------
   Conditions Section (Careers Page)
   ----------------------------------------------------------------------------- */

.conditions-section {
    max-width: 900px;
    margin: 0 auto;
}

.condition-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.condition-item:last-child {
    border-bottom: none;
}

.condition-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(1, 68, 123, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.condition-text {
    flex: 1;
}

.condition-text strong {
    display: block;
    color: #1a1a1a;
    font-size: 16px;
    margin-bottom: 4px;
}

.condition-text span {
    color: #666;
    font-size: 14px;
}

/* -----------------------------------------------------------------------------
   Responsive Design
   ----------------------------------------------------------------------------- */

@media (max-width: 992px) {
    .vako-vacancy-layout {
        grid-template-columns: 1fr;
    }
    
    .vako-vacancy-sidebar {
        order: -1;
    }
    
    .vako-vacancy-single-title {
        font-size: 2rem;
    }
    
    .vako-vacancy-hero-content {
        flex-direction: column;
    }
    
    .vako-vacancy-hero-cta {
        width: 100%;
    }
    
    .vako-btn-primary,
    .vako-btn-outline {
        flex: 1;
        justify-content: center;
    }
	.vako-systems-archive, .vako-projects-archive {
    margin-top: -55px;
}
.topbar-vacatures {
    position: absolute!important;
    width: max-content!important;
    left: 50%!important;
    transform: translateX(-50%)!important;
    font-size: 13px!important;
}
	
}

@media (max-width: 768px) {
    .vako-vacatures-grid {
        grid-template-columns: 1fr;
    }
    
    .vako-vacancy-image {
        height: 180px;
    }
    
    .vako-vacancy-hero {
        padding: 100px 0 40px;
    }
    
    .vako-vacancy-single-title {
        font-size: 1.6rem;
    }
    
    .vako-vacancy-content-block {
        padding: 25px;
    }
    
    .vako-vacancy-info-card,
    .vako-vacancy-apply-card,
    .vako-vacancy-company-card {
        padding: 25px;
    }
    
    .vako-filter-btn {
        padding: 8px 18px;
        font-size: 12px;
    }
    
    .benefits-cards {
        flex-direction: column;
    }
    
    .conditions-columns {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .vako-vacancy-hero-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .vako-vacancy-hero-cta {
        flex-direction: column;
    }
    
    .vako-btn-primary,
    .vako-btn-outline {
        width: 100%;
    }
}









/* -----------------------------------------------------------------------------
   Team Members Section
   ----------------------------------------------------------------------------- */

.team-members-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.team-members-grid {
    gap: 40px;
}

.team-member-card {
    text-align: center;
}

.team-member-photo {
    margin-bottom: 25px;
    overflow: hidden;
    border-radius: 8px;
}

.team-member-photo img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member-card:hover .team-member-photo img {
    transform: scale(1.03);
}

.team-member-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px;
}

.team-member-role {
    font-size: 1rem;
    font-weight: 600;
    color: #f15d22;
    margin: 0 0 20px;
}

.team-member-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.team-contact-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #01447b;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.team-contact-item:hover {
    color: #f15d22;
}

.team-contact-item svg {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .team-members-grid {
        flex-direction: column;
    }
    
    .team-member-photo img {
        max-width: 280px;
        margin: 0 auto;
        display: block;
    }
}

/* ==========================================================================
   Gutenberg/WordPress Button Overrides - Arrow Style
   ========================================================================== */

/* Filled style buttons (default - orange) */
.wp-block-button:not(.is-style-outline) .wp-block-button__link,
.wp-block-button:not(.is-style-outline) .wp-element-button {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    background: #f15d22 !important;
    color: #ffffff !important;
    padding: 14px 40px 14px 20px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
    cursor: pointer;
    position: relative;
    border: none !important;
    border-radius: 0 !important;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 0 100%);
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.wp-block-button:not(.is-style-outline) .wp-block-button__link:hover,
.wp-block-button:not(.is-style-outline) .wp-element-button:hover {
    background: #d94d15 !important;
    color: #ffffff !important;
    transform: translateX(3px);
}

/* Outline style buttons (on dark backgrounds) */
.wp-block-button.is-style-outline .wp-block-button__link,
.wp-block-button.is-style-outline .wp-element-button {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    background: transparent !important;
    color: #ffffff !important;
    padding: 14px 40px 14px 20px !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    border: none !important;
    border-radius: 0 !important;
    z-index: 0;
}

.wp-block-button.is-style-outline .wp-block-button__link::before,
.wp-block-button.is-style-outline .wp-element-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.4);
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 0 100%);
    transition: background 0.3s ease;
    z-index: -2;
}

.wp-block-button.is-style-outline .wp-block-button__link::after,
.wp-block-button.is-style-outline .wp-element-button::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: #01447b;
    clip-path: polygon(0 0, calc(100% - 19px) 0, 100% 50%, calc(100% - 19px) 100%, 0 100%);
    z-index: -1;
}

.wp-block-button.is-style-outline .wp-block-button__link:hover::before,
.wp-block-button.is-style-outline .wp-element-button:hover::before {
    background: rgba(255, 255, 255, 0.7);
}

.wp-block-button.is-style-outline .wp-block-button__link:hover,
.wp-block-button.is-style-outline .wp-element-button:hover {
    transform: translateX(3px);
    background: transparent !important;
    color: #ffffff !important;
}

/* ==========================================================================
   MOBILE HEADER & NAVBAR IMPROVEMENTS
   Only affects screens 991px and smaller
   ========================================================================== */

@media (max-width: 991px) {
    
    /* ---- HIDE the entire navbar section on mobile ---- */
    #wrapper-navbar {
        display: none !important;
    }
    
    /* ---- Hide everything in topbar except essentials ---- */
    .topbar-left,
    .topbar-divider {
        display: none !important;
    }
    
    /* ---- Simplified Topbar ---- */
    .custom-topbar {
        padding: 12px 0;
    }
    
    .topbar-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0 15px;
        gap: 0;
    }
    
    /* ---- Show Logo in Topbar on Mobile ---- */
    .topbar-logo {
        position: static !important;
        opacity: 1 !important;
        transform: none !important;
        height: 40px;
        display: block !important;
    }
    
    .topbar-logo img {
        height: 100%;
        width: auto;
    }
    
    /* ---- Right side: vacatures + flags + hamburger ---- */
    .topbar-right {
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }
    
    /* Show vacatures button on mobile */
    .topbar-vacatures {
        display: flex !important;
        padding: 6px 12px;
        font-size: 10px;
    }
    
    .topbar-languages {
        border-left: none;
        padding-left: 0;
        gap: 8px;
    }
    
    /* Adjust body padding */
    :root {
        --topbar-height: 64px;
    }
    
    body {
        padding-top: var(--topbar-height) !important;
    }
}

/* Even smaller screens */
@media (max-width: 576px) {
    
    .topbar-logo {
        height: 32px;
    }
    
    .topbar-vacatures {
        padding: 5px 10px;
        font-size: 9px;
    }
    
    :root {
        --topbar-height: 56px;
    }
	#our-story .wp-block-media-text__content {
    padding-top: 20px;
    padding-left: 0;
    padding-right: 0;
}
	.timeline-wrapper .wp-block-group__inner-container, .why-vako-wrapper .wp-block-group__inner-container  {
    margin: 0px 20px;
}
	.wp-block-group.maxwidthcont {
    margin: 0px 20px;
}
	.team-member-info h3, .team-member-role {
  text-align: center !important;
}
}

/* ==========================================================================
   MOBILE HAMBURGER MENU & NAVIGATION
   ========================================================================== */

/* Hide hamburger on desktop */
.mobile-menu-toggle {
    display: none;
}

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

@media (max-width: 991px) {
    
    /* Show hamburger on mobile - WHITE lines, NO border */
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 30px;
        height: 24px;
        padding: 0;
        background: transparent;
        border: none;
        cursor: pointer;
        gap: 5px;
    }
    
    .mobile-menu-toggle span {
        display: block;
        width: 24px;
        height: 2px;
        background-color: #ffffff;
        border-radius: 1px;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    
    /* Mobile Navigation Menu */
    .mobile-nav-menu {
        display: none;
        position: fixed;
        top: var(--topbar-height);
        left: 0;
        right: 0;
        bottom: 0; /* Fix: expliciet bottom zorgt voor correcte hoogte */
        background: #01447B;
        padding: 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        border-top: 3px solid #F15D22;
        z-index: 9998;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch; /* Fix: cruciaal voor iOS scroll */
        overscroll-behavior: contain; /* Voorkomt scroll doorlekken naar body */
    }
    
    .mobile-nav-menu.active {
        display: block;
    }
    
    .mobile-menu-list {
        list-style: none;
        margin: 0;
        padding: 0;
        padding-bottom: 30px; /* Extra ruimte onderaan voor laatste menu item */
    }
    
    .mobile-menu-list li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .mobile-menu-list li:last-child {
        border-bottom: none;
    }
    
    .mobile-menu-list a {
        display: block;
        color: #ffffff !important;
        padding: 15px 20px;
        font-size: 16px;
        text-decoration: none;
        transition: all 0.2s ease;
    }
    
    .mobile-menu-list a:hover,
    .mobile-menu-list .current-menu-item > a {
        color: #F15D22 !important;
        background: rgba(255, 255, 255, 0.05);
    }
    
    /* Orange bullets for mobile submenu items */
    .mobile-menu-list .sub-menu {
        list-style: disc;
        padding-left: 30px;
        margin: 0;
    }
    
    .mobile-menu-list .sub-menu li {
        color: #F15D22;
    }
    
    .mobile-menu-list .sub-menu li::marker {
        color: #F15D22;
    }
    
    .mobile-menu-list .sub-menu a {
        padding: 12px 20px;
        font-size: 15px;
    }
}

.home .has-accordion-wrapper {
    height: 575px !important;
}

@media (max-width: 576px) {
    .mobile-menu-toggle {
        width: 26px;
        height: 20px;
        gap: 4px;
    }
    
    .mobile-menu-toggle span {
        width: 20px;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
	iframe[src*="youtube"],
iframe[src*="youtu.be"],
.wp-block-embed-youtube iframe {
    max-width: 100vw !important;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 16/9;
}
	.has-accordion-container {
  margin-top: -15px;
}
	.home .has-accordion-wrapper {
    height: auto !important;
}
	figure.alignright, figure.alignleft {
    margin: 0 auto !important;
}
	
	body.understrap-no-sidebar .alignfull .wp-block-cover__inner-container, body.understrap-no-sidebar .alignwide .wp-block-cover__inner-container, body.understrap-no-sidebar .wp-block-cover.alignfull .wp-block-cover__inner-container, body.understrap-no-sidebar .wp-block-cover.alignwide .wp-block-cover__inner-container {
    margin-right: 20px!important;
    margin-left: 20px!important;
}
	.vako-calculator-wrapper {
    padding: 0;
}
}



/* ==========================================================================
   VAKO SYSTEMS ARCHIVE PAGE (/systems/)
   Moved from inline styles in vako-sidelifter-carousel plugin
   ========================================================================== */

.vako-systems-archive {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Hero */
.vako-systems-hero {
    background: #01447b;
    padding: 80px 0 80px;
    color: #ffffff;
    text-align: center;
	margin-top:13px;
}

.vako-systems-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.vako-systems-subtitle {
    display: inline-flex;
    align-items: center;
    background: rgba(241, 93, 34, 0.95);
    color: #ffffff;
    padding: 8px 30px 8px 16px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 50%, calc(100% - 15px) 100%, 0 100%);
}

.vako-systems-title {
    font-size: 3rem;
    font-weight: 700;
    margin: 0 0 20px;
    line-height: 1.2;
}

.vako-systems-intro {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Filters */
.vako-systems-filters {
    background: #f8f9fa;
    padding: 30px 0;
    border-bottom: 1px solid #e2e8f0;
}

.vako-filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

/* Content */
.vako-systems-content {
    padding: 60px 0 80px;
    background: #ffffff;
}

/* Grid */
.vako-systems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

/* Card */
.vako-system-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.vako-system-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.vako-system-card.hidden {
    display: none;
}

.vako-system-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* Card Image */
.vako-system-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #01447b 0%, #023a68 100%);
}

.vako-system-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.vako-system-card:hover .vako-system-image img {
    transform: scale(1.08);
}

.vako-system-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
}

.vako-system-category {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(241, 93, 34, 0.95);
    color: #ffffff;
    padding: 6px 24px 6px 14px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%);
}

/* Card Content */
.vako-system-content {
    padding: 25px;
}

.vako-system-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #01447b;
    margin: 0 0 15px;
    transition: color 0.3s ease;
}

.vako-system-card:hover .vako-system-title {
    color: #f15d22;
}

/* Features */
.vako-system-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.vako-system-features li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #4a5568;
    line-height: 1.5;
}

.vako-system-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #f15d22;
    font-weight: bold;
}

/* Card Link */
.vako-system-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #01447b;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.vako-system-card:hover .vako-system-link {
    color: #f15d22;
    gap: 12px;
}

.vako-system-link svg {
    transition: transform 0.3s ease;
}

.vako-system-card:hover .vako-system-link svg {
    transform: translateX(3px);
}

/* No Systems */
.vako-no-systems {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .vako-systems-hero {
        padding: 100px 0 60px;
    }
    
    .vako-systems-title {
        font-size: 2rem;
    }
    
    .vako-systems-grid {
        grid-template-columns: 1fr;
    }
    
    .vako-filter-buttons {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 10px;
    }
    
    .vako-filter-btn {
        flex-shrink: 0;
    }
}

/* ==========================================================================
   SCROLL TO TOP BUTTON
   ========================================================================== */

.vako-scroll-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 40px;
    height: 48px;
    background: #f15d22;
    color: #ffffff;
    border: none;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Same arrow shape as buttons, rotated 90° (point up) */
    clip-path: polygon(0 100%, 0 35%, 50% 0, 100% 35%, 100% 100%);
}

.vako-scroll-top:hover {
    background: #d94d15;
    transform: translateY(-3px);
}

.vako-scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.vako-scroll-top svg {
    width: 18px;
    height: 18px;
    margin-top: 6px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .vako-scroll-top {
        bottom: 20px;
        right: 20px;
        width: 36px;
        height: 43px;
    }
    
    .vako-scroll-top svg {
        width: 16px;
        height: 16px;
    }
	.vako-calculator .vako-title {
		padding:0px 10px 0px 10px;
	}
}

@media (max-width: 576px) {
  body.understrap-no-sidebar .alignfull .wp-block-cover__inner-container, body.understrap-no-sidebar .alignwide .wp-block-cover__inner-container, body.understrap-no-sidebar .wp-block-cover.alignfull .wp-block-cover__inner-container, body.understrap-no-sidebar .wp-block-cover.alignwide .wp-block-cover__inner-container {
    margin-right: 10px !important;
    margin-left: 10px !important;
  }
	.wp-block-group {
    margin-left: 10px;
    margin-right: 10px;
}
}






/* Bullet lists met oranje vinkjes */
.entry-content ul:not(.blocks-gallery-grid):not(.wp-block-social-links) {
    list-style: none;
    padding-left: 0;
}

.entry-content ul:not(.blocks-gallery-grid):not(.wp-block-social-links) li {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.7;
    color: #4a4a4a;
    padding-left: 30px;
    position: relative;
}

.entry-content ul:not(.blocks-gallery-grid):not(.wp-block-social-links) li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #F15D22;
    font-weight: 600;
    font-size: 1.1rem;
}

















/* ==========================================================================
   VAKO SINGLE SYSTEM PAGE - MOBILE RESPONSIVE FIXES
   Add this to the end of your theme's style.css file
   ========================================================================== */

/* ==========================================================================
   MOBILE HERO SECTION FIXES
   ========================================================================== */

@media (max-width: 992px) {
    /* Hero content grid - stack vertically */
    .vako-model-detail .vako-hero-content {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        padding: 0 0px !important;
    }
    
    /* Hero text section */
    .vako-model-detail .vako-hero-text {
        padding-right: 0 !important;
        order: 1; /* Text first */
    }
    
    /* Hero image section */
    .vako-model-detail .vako-hero-image {
        order: 2; /* Image second */
        margin: 0 !important;
        width: 100% !important;
        height: 350px !important;
        min-height: 350px !important;
        border-radius: 8px;
    }
    
    /* Hero section padding */
    .vako-model-detail .vako-hero {
        padding: 30px 0 50px !important;
        min-height: auto !important;
    }
    
    /* Model title */
    .vako-model-detail .vako-model-title {
        font-size: 32px !important;
        margin-bottom: 20px !important;
    }
    
    /* Breadcrumbs */
    .vako-model-detail .vako-breadcrumbs {
        margin-bottom: 20px !important;
        font-size: 13px;
    }
    
    /* Hero features list */
    .vako-model-detail .vako-hero-features {
        margin-bottom: 25px !important;
    }
    
    .vako-model-detail .vako-hero-features li {
        font-size: 14px !important;
        margin-bottom: 8px !important;
        padding-left: 24px !important;
    }
    
    /* Hero action buttons */
    .vako-model-detail .vako-hero-actions {
        flex-direction: column !important;
        gap: 12px !important;
    }
    
    .vako-model-detail .vako-hero-actions .vako-btn {
        width: 100% !important;
        justify-content: center !important;
        padding: 14px 30px 14px 20px !important;
    }
}

@media (max-width: 768px) {
    /* Smaller hero image on small screens */
    .vako-model-detail .vako-hero-image {
        height: 280px !important;
        min-height: 280px !important;
    }
    
    /* Even smaller title */
    .vako-model-detail .vako-model-title {
        font-size: 28px !important;
        line-height: 1.2 !important;
    }
    
    /* Hero padding adjustment */
    .vako-model-detail .vako-hero {
        padding: 25px 0 40px !important;
    }
}

@media (max-width: 480px) {
    /* Smallest screens */
    .vako-model-detail .vako-hero-image {
        height: 220px !important;
        min-height: 220px !important;
    }
    
    .vako-model-detail .vako-model-title {
        font-size: 24px !important;
    }
    
    .vako-model-detail .vako-hero-features li {
        font-size: 13px !important;
    }
	center {
    margin-left: 5px;
    margin-right: 5px;
}
}

/* ==========================================================================
   MOBILE TABS SECTION FIXES
   ========================================================================== */

@media (max-width: 992px) {
    /* Tabs section spacing */
    .vako-tabs-section {
        margin-bottom: 60px !important;
    }
    
    /* Tab navigation - horizontal scroll */
    .vako-tabs-nav {
        display: flex !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important; /* Firefox */
        gap: 0 !important;
        padding-bottom: 2px !important;
    }
    
    .vako-tabs-nav::-webkit-scrollbar {
        display: none; /* Chrome, Safari */
    }
    
    /* Tab buttons */
    .vako-tab-btn {
        flex-shrink: 0 !important;
        padding: 14px 20px !important;
        font-size: 14px !important;
        white-space: nowrap !important;
    }
    
    /* Tab content grid - single column */
    .vako-tab-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    /* Tab headings */
    .vako-tab-pane h2 {
        font-size: 26px !important;
        margin-bottom: 20px !important;
    }
    
    .vako-tab-pane h3 {
        font-size: 18px !important;
        margin: 30px 0 15px !important;
    }
}

@media (max-width: 768px) {
    .vako-tab-btn {
        padding: 12px 16px !important;
        font-size: 13px !important;
    }
    
    .vako-tab-pane h2 {
        font-size: 22px !important;
    }
}

/* ==========================================================================
   MOBILE QUICK SPECS SIDEBAR FIXES
   ========================================================================== */

@media (max-width: 992px) {
    /* Quick specs sidebar - full width on mobile */
    .vako-tab-sidebar {
        width: 100% !important;
        order: 2 !important;
    }
    
    .vako-quick-specs {
        position: static !important;
        margin-top: 30px !important;
    }
    
    .vako-quick-specs h3 {
        font-size: 18px !important;
    }
    
    .vako-quick-specs dl {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 0 !important;
    }
    
    .vako-quick-specs dt,
    .vako-quick-specs dd {
        padding: 12px 15px !important;
        font-size: 13px !important;
    }
    
    .vako-view-all {
        font-size: 14px !important;
    }
}

@media (max-width: 480px) {
    .vako-quick-specs dl {
        grid-template-columns: 1fr !important;
    }
    
    .vako-quick-specs dt {
        border-bottom: none !important;
        padding-bottom: 5px !important;
    }
    
    .vako-quick-specs dd {
        padding-top: 0 !important;
        border-bottom: 1px solid #e2e8f0 !important;
        margin-bottom: 0 !important;
    }
}

/* ==========================================================================
   MOBILE CONTENT SECTION FIXES
   ========================================================================== */

@media (max-width: 992px) {
    /* Content text */
    .vako-content {
        font-size: 15px !important;
        line-height: 1.7 !important;
    }
    
    /* Features grid */
    .vako-features-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    .vako-feature-card {
        padding: 16px !important;
    }
    
    .vako-feature-card p {
        font-size: 14px !important;
    }
}

/* ==========================================================================
   MOBILE SPECIFICATIONS TAB FIXES
   ========================================================================== */

@media (max-width: 992px) {
    /* Tech grid - single column */
    .vako-tech-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .vako-tech-category {
        margin-bottom: 20px !important;
    }
    
    .vako-tech-category h3 {
        font-size: 16px !important;
        padding: 12px 15px !important;
    }
    
    .vako-tech-items {
        grid-template-columns: 1fr !important;
    }
    
    .vako-tech-item {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 4px !important;
        padding: 12px 15px !important;
    }
    
    .vako-tech-label {
        font-size: 12px !important;
    }
    
    .vako-tech-value {
        font-size: 14px !important;
    }
}

/* ==========================================================================
   MOBILE GALLERY TAB FIXES
   ========================================================================== */

@media (max-width: 992px) {
    .vako-gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }
    
    .vako-gallery-item img {
        height: 150px !important;
    }
}

@media (max-width: 480px) {
    .vako-gallery-grid {
        grid-template-columns: 1fr !important;
    }
    
    .vako-gallery-item img {
        height: 200px !important;
    }
}

/* ==========================================================================
   MOBILE DOWNLOADS TAB FIXES
   ========================================================================== */

@media (max-width: 992px) {
    .vako-downloads-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    .vako-download-card {
        padding: 20px !important;
    }
    
    .vako-download-card span {
        font-size: 14px !important;
    }
}

/* ==========================================================================
   MOBILE VIDEO SECTION FIXES
   ========================================================================== */

@media (max-width: 992px) {
    .vako-video-section {
        margin-top: 30px !important;
    }
    
    .vako-video-wrapper {
        padding-bottom: 56.25% !important; /* 16:9 aspect ratio */
        height: 0 !important;
        position: relative !important;
    }
    
    .vako-video-wrapper iframe {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
    }
}

/* ==========================================================================
   MOBILE SLIDER IN HERO FIXES
   ========================================================================== */

@media (max-width: 992px) {
    /* Reset slider positioning on mobile */
    .vako-model-detail .vako-hero-slider {
        position: relative !important;
        width: 100% !important;
        height: 100% !important;
    }
    
    .vako-model-detail .vako-hero-slider .has-accordion-container,
    .vako-model-detail .vako-hero-slider .has-accordion-wrapper {
        position: relative !important;
        height: 100% !important;
    }
    
    /* Disable hover expand effect on mobile */
    .vako-model-detail .vako-hero-slider:has(.has-video-active):hover {
        position: relative !important;
        left: auto !important;
        width: 100% !important;
        height: 100% !important;
        z-index: 1 !important;
    }
    
    /* Slide title size on mobile */
    .vako-hero-image .has-slide-title {
        font-size: 18px !important;
    }
}

@media (max-width: 768px) {
    .vako-hero-image .has-slide-title {
        font-size: 16px !important;
    }
}

/* ==========================================================================
   GENERAL MOBILE CONTAINER FIXES
   ========================================================================== */

@media (max-width: 992px) {
    .vako-model-detail .vako-container {
        padding: 0 15px !important;
    }
	.vako-model-detail {
    margin-top: 0px;
}
}

@media (max-width: 480px) {
    .vako-model-detail .vako-container {
        padding: 0 20px !important;
    }
}

/* ==========================================================================
   FIX FOR BUTTON CLIP-PATH ON MOBILE
   ========================================================================== */

@media (max-width: 768px) {
    /* Adjust button arrow for smaller screens */
    .vako-btn-primary {
        padding: 12px 30px 12px 16px !important;
        font-size: 13px !important;
        clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 50%, calc(100% - 15px) 100%, 0 100%) !important;
    }
    
    .vako-btn-secondary {
        padding: 12px 30px 12px 16px !important;
        font-size: 13px !important;
    }
    
    .vako-btn-secondary::before {
        clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 50%, calc(100% - 15px) 100%, 0 100%) !important;
    }
    
    .vako-btn-secondary::after {
        clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 50%, calc(100% - 14px) 100%, 0 100%) !important;
    }
}