:root {
    --primary-bg: #0B0F19;
    --secondary-bg: #111827;
    --accent-gold: #FFD700;
    --accent-blue: #3B82F6;
    --text-primary: #F9FAFB;
    --text-secondary: #9CA3AF;
    --card-border: rgba(255, 255, 255, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--primary-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pro-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: #FFFFFF;
    font-size: 4.2rem;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.6));
}

.pro-title .accent-text {
    background: linear-gradient(to right, #B8860B 0%, #FFD700 20%, #FFF5E1 40%, #FFD700 60%, #B8860B 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 4px 15px rgba(255, 215, 0, 0.5));
    animation: goldShineText 6s linear infinite;
}

@keyframes goldShineText {
    to {
        background-position: 200% center;
    }
}


/* Navigatie met Suriname Touch */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: transparent;
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

nav.scrolled {
    padding: 0.8rem 5%;
    background: rgba(11, 15, 25, 0.9);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    font-weight: bold;
    color: white;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background-image: url('logo.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(1.2) contrast(1.1) drop-shadow(0 0 8px rgba(255, 215, 0, 0.3));
}

.nav-links button {
    background: transparent;
    border: none;
    color: var(--text-primary);
    /* Witte tekst voor betere leesbaarheid */
    margin-left: 1.5rem;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nav-links button:hover {
    color: var(--accent-gold);
}

.cta-button {
    background: var(--accent-gold);
    color: var(--primary-bg);
    padding: 0.9rem 2.2rem;
    border-radius: 4px;
    /* More executive square-ish look */
    border: none;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.2);
}

.cta-button:hover {
    background: #FFFFFF;
    color: var(--primary-bg);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.cta-button.secondary {
    background: rgba(11, 15, 25, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #FFFFFF;
    margin-left: 1rem;
    backdrop-filter: blur(10px);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.cta-button.secondary:hover {
    background: rgba(11, 15, 25, 0.95);
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

/* Video Background Support */
.video-bg-section {
    position: relative;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    transform: translate(-50%, -50%);
    object-fit: cover;
    pointer-events: none;
    opacity: 0.4;
    /* Slightly lower opacity for more premium feel */
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(11, 15, 25, 0.4) 0%, rgba(11, 15, 25, 0.9) 100%);
    /* Vignette effect for more depth */
    z-index: 2;
}

.glass-box {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.glass-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.video-bg-section .section-container {
    position: relative;
    z-index: 3;
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.partnerships-section {
    padding: 6rem 5%;
    background: #050810;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 215, 0, 0.05);
}

/* Enhanced Video Overlay for Partnerships */
.partnerships-section .video-overlay {
    background: radial-gradient(circle at center, rgba(5, 8, 16, 0.4) 0%, rgba(5, 8, 16, 0.85) 60%, rgba(5, 8, 16, 0.98) 100%);
    z-index: 2;
}

.glass-hero-box {
    background: rgba(5, 8, 16, 0.65);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 215, 0, 0.25);
    border-radius: 25px;
    padding: 3rem 2.5rem;
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.8),
        inset 0 0 80px rgba(255, 215, 0, 0.05);
    position: relative;
    max-width: 850px;
    margin: 0 auto;
    overflow: hidden;
    z-index: 5;
}

.glass-hero-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.05), transparent);
    animation: sweep 6s infinite linear;
    pointer-events: none;
}

@keyframes sweep {
    0% {
        left: -100%;
    }

    50% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

.partners-content h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #FFFFFF;
    text-shadow:
        0 5px 15px rgba(0, 0, 0, 1),
        0 0 40px rgba(0, 0, 0, 0.8);
    position: relative;
    letter-spacing: 2px;
    font-weight: 800;
}

.partners-content h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    border-radius: 4px;
    box-shadow: 0 0 20px var(--accent-gold);
    animation: goldShimmer 4s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes goldShimmer {

    0%,
    100% {
        width: 100px;
        opacity: 0.5;
        filter: brightness(1);
    }

    50% {
        width: 180px;
        opacity: 1;
        filter: brightness(1.5);
    }
}

@keyframes pulseGold {

    0%,
    100% {
        width: 150px;
        opacity: 0.6;
        box-shadow: 0 0 10px var(--accent-gold);
    }

    50% {
        width: 220px;
        opacity: 1;
        box-shadow: 0 0 25px var(--accent-gold);
    }
}

@keyframes pulseGold {

    0%,
    100% {
        width: 100px;
        opacity: 0.6;
        box-shadow: 0 0 10px var(--accent-gold);
    }

    50% {
        width: 180px;
        opacity: 1;
        box-shadow: 0 0 25px var(--accent-gold);
    }
}

.partners-content .premium-lead {
    font-size: 1.25rem;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.7;
    max-width: 850px;
    margin: 0 auto;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.9);
    opacity: 0.9;
    /* Resetting elite lead border for this special section */
    padding-left: 0;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0 0;
    /* Removed bottom margin, added top margin */
    width: 100%;
}

.partner-card {
    background: rgba(5, 8, 16, 0.92);
    /* Nearly solid for absolute legibility */
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 4rem 2.5rem;
    border-radius: 24px;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.8),
        inset 0 0 40px rgba(255, 215, 0, 0.05);
}

.partner-card:hover {
    background: rgba(10, 15, 30, 0.95);
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-15px);
    box-shadow: 0 30px 70px rgba(255, 215, 0, 0.1);
}

.partner-card i {
    font-size: 3rem;
    /* Larger icon */
    color: var(--accent-gold);
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.5));
}

.partner-card h4 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #FFFFFF !important;
    /* Forced White */
    letter-spacing: 1px;
    text-shadow:
        0 2px 10px rgba(0, 0, 0, 1),
        0 4px 20px rgba(0, 0, 0, 1);
}

.partner-card p {
    color: #FFFFFF !important;
    /* Forced White */
    font-size: 1.15rem;
    font-weight: 500;
    /* Slightly bolder for clarity */
    line-height: 1.7;
    opacity: 1 !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 1);
}

.partner-cta {
    margin-top: 2rem;
}

/* Hero Section */
.hero-split {
    min-height: 85vh;
    display: flex;
    flex-direction: row;
    /* Text links, logo rechts */
    align-items: flex-start;
    justify-content: space-between;
    /* Spread text and logo */
    padding: 140px 5% 60px 8%;
    /* Meer ruimte links voor tekst */
    position: relative;
    overflow: hidden;
}

.hero-split::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('hero-front-final.jpg');
    background-size: cover;
    background-position: center;
    filter: contrast(1.08) brightness(1.05) saturate(1.1);
    /* Subtielere filters voor de nieuwe scherpe foto */
    z-index: 1;
    transition: background 0.8s ease-in-out;
}

.hero-split.contact-active::before {
    background:
        linear-gradient(135deg, rgba(5, 8, 20, 0.45) 0%, rgba(10, 15, 35, 0.35) 100%),
        url('contact-hero.png');
}

.badge-global {
    display: inline-block;
    background: rgba(59, 130, 246, 0.35);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(59, 130, 246, 0.6);
    backdrop-filter: blur(4px);
}

.hero-text {
    flex: 1.5;
    z-index: 5;
    text-align: left;
    max-width: 700px;
    margin-top: 40px;
    padding: 2.5rem;
    background: transparent;
    border-radius: 12px;
    backdrop-filter: none;
    position: relative;
    /* Essential for absolute positioning of card */
    min-height: 350px;
    /* Ensure space for card flip */
}

.hero-text h1 {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
    text-shadow:
        2px 2px 20px rgba(0, 0, 0, 0.8),
        0 10px 40px rgba(0, 0, 0, 1);
}

.hero-content-main {
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    transform: translateY(0);
}

.hero-content-main p {
    font-size: 1.35rem;
    font-weight: 500;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    max-width: 650px;
    padding: 1.2rem 1.5rem;
    background: rgba(11, 15, 25, 0.45);
    border-left: 4px solid var(--accent-gold);
    border-radius: 4px;
    backdrop-filter: blur(8px);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}

.hero-split.contact-active .hero-content-main,
.hero-split.contact-active .availability-banner {
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
}

.contact-info-card {
    position: absolute;
    top: 68%;
    /* Pushed down to clear the "THE STANDARD IN CONSULTANCY" line */
    left: 2rem;
    right: 2rem;
    transform: translateY(-30%) scale(0.95);
    opacity: 0;
    pointer-events: none;
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.hero-split.contact-active .contact-info-card {
    opacity: 1;
    transform: translateY(-50%) scale(1);
    pointer-events: auto;
}

.contact-item {
    background: rgba(11, 15, 25, 0.95);
    border: 1px solid rgba(255, 215, 0, 0.4);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), inset 0 0 15px rgba(255, 215, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 215, 0, 0.05);
    border-color: rgba(255, 215, 0, 0.5);
    transform: translateY(-5px);
}

.contact-item i {
    font-size: 2rem;
    color: var(--accent-gold);
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.4));
}

.contact-detail {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-gold);
    font-weight: 700;
    margin-bottom: 2px;
}

.contact-link {
    font-size: 1.1rem;
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.contact-footer {
    margin-top: 8rem;
    /* Increased margin to stay below the dropped cards */
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.6s ease;
    text-align: left;
    pointer-events: none;
}

.hero-split.contact-active .contact-footer {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.back-to-main {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.back-to-main:hover {
    color: var(--accent-gold);
    transform: translateX(-5px);
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    /* Logo strak naar rechts tegen de rand */
    position: relative;
    height: 320px;
    padding-right: 0;
    margin-right: -3rem;
    /* Nóg een stukje verder naar rechts geduwd */
    z-index: 5;
}

.hero-logo-large {
    width: 250px;
    height: 250px;
    background: url('logo.png');
    background-size: 160%;
    background-position: center 30%;
    background-repeat: no-repeat;
    border-radius: 50%;
    position: absolute;
    top: 25%;
    /* Adjusted higher for new text position */
    right: 18.2%;
}

/* LEADERSHIP SECTION REFINEMENT */
.ceo-section {
    padding: 120px 0;
    background: #050505;
    position: relative;
    overflow: hidden;
}

.leadership-header {
    text-align: center;
    margin-bottom: 80px;
}

.leadership-header h2 {
    font-size: 3rem;
    color: #fff;
    margin-top: 10px;
}

.section-intro {
    max-width: 700px;
    margin: 20px auto 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
}

.ceo-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12rem;
    padding-top: 4rem;
}

.ceo-item {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
    gap: 0;
    position: relative;
}

.mariella-block {
    grid-template-columns: 1.2fr 1fr;
}

.ceo-visual-panel {
    position: relative;
    z-index: 2;
}

/* Elite Portrait Frame */
.ceo-frame {
    position: relative;
    width: 100%;
    /* Increased from 90% for fuller view */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.3);
    aspect-ratio: 1/1;
    /* Square aspect ratio often helps with hair visibility L/R */
    background: radial-gradient(circle at center, #111827 0%, #050810 100%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.ceo-portrait {
    width: 110%;
    /* Slightly oversized to allow room for soft edges if needed */
    height: 110%;
    object-fit: contain;
    /* Changed from cover to avoid cutting off hair */
    object-position: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
}

.ceo-item:hover .ceo-portrait {
    transform: translate(-50%, -55%) scale(1.02);
    /* Subtle hover lift */
}

/* Floating Gold Accents */
.ceo-floating-accent {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 50%;
    z-index: 1;
    animation: floatAccents 8s infinite ease-in-out;
}

.mariella-block .ceo-floating-accent {
    left: -40px;
    right: auto;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    animation-delay: -4s;
}

/* Parallax-like floating ring */
.ceo-floating-accent::after {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80%;
    height: 80%;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
}

@keyframes floatAccents {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(15px, -15px) rotate(5deg);
    }

    66% {
        transform: translate(-10px, 10px) rotate(-5deg);
    }
}

.ceo-content-panel {
    background: rgba(11, 15, 25, 0.75);
    padding: 4rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    margin-left: -80px;
    z-index: 3;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
    position: relative;
}

.mariella-block .ceo-content-panel {
    margin-left: 0;
    margin-right: -80px;
    text-align: right;
    border-right: 1px solid rgba(212, 175, 55, 0.2);
    border-left: none;
    order: -1;
}

.mariella-block .ceo-intro {
    border-left: none;
    border-right: 3px solid var(--accent-gold);
    padding-left: 0;
    padding-right: 30px;
    text-align: right;
    /* Ensure symmetry */
}

.ceo-name {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 2px;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.ceo-title {
    color: var(--accent-gold);
    font-size: 0.9rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    display: block;
}

@media (max-width: 1100px) {

    .ceo-item,
    .mariella-block {
        grid-template-columns: 1fr;
        text-align: center !important;
    }

    .ceo-content-panel,
    .mariella-block .ceo-content-panel {
        margin: -100px 5% 0;
        padding: 3rem;
        order: 2;
        border-right: 1px solid rgba(255, 255, 255, 0.05);
    }

    .mariella-block .ceo-intro {
        border-right: none;
        border-left: 3px solid var(--accent-gold);
        padding-right: 0;
        padding-left: 20px;
        text-align: left;
    }

    .ceo-frame {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
}

.hero-logo-large {
    transform: translateY(-50%);
    z-index: 999;
    animation: floatWall 6s ease-in-out infinite;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
    /* Slightly more opaque for better visibility */
    transition: all 0.5s ease;
}

.hero-split.contact-active .hero-logo-large {
    opacity: 0.2;
    filter: blur(5px) grayscale(1);
    transform: translateY(-50%) scale(0.8);
}

@keyframes floatWall {
    0% {
        transform: translateY(-50%) translateX(0);
    }

    50% {
        transform: translateY(-53%) translateX(2px);
    }

    100% {
        transform: translateY(-50%) translateX(0);
    }
}

/* Visibility Toggle is now handled inside .contact-info-card */

/* Standards Section (COPC Inspired) */
.standards-section {
    padding: 8rem 5%;
    background-color: #050810;
}

.section-container {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.standards-text {
    flex: 1;
}

.sub-title {
    color: var(--accent-gold);
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 1rem;
    display: block;
}

.standards-text h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
}

.standards-grid {
    flex: 1.5;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.standard-box {
    background: var(--secondary-bg);
    padding: 2.5rem;
    border-left: 4px solid var(--accent-blue);
    border-radius: 0 8px 8px 0;
    transition: all 0.3s ease;
}

.standard-box:hover {
    background: #1a2335;
    transform: translateX(10px);
}

.box-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    color: var(--accent-blue);
    margin-bottom: 1rem;
    display: block;
    opacity: 0.5;
}

/* Stats Bar */
.stats-bar {
    display: flex;
    justify-content: space-around;
    background: var(--secondary-bg);
    padding: 4rem 5%;
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-gold);
    font-family: 'Orbitron', sans-serif;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Expertise Section (ICMI Inspired) */
.expertise-section {
    padding: 8rem 5%;
}

.expertise-header {
    text-align: center;
    margin-bottom: 5rem;
}

.expertise-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.expertise-card {
    background: #161D2D;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--card-border);
    transition: all 0.3s;
}

.expertise-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.card-image {
    height: 240px;
    width: 100%;
    background-size: cover;
    background-position: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: grayscale(100%) brightness(0.8) contrast(1.1);
    position: relative;
}

.expertise-card:hover .card-image {
    filter: grayscale(0%) brightness(1) contrast(1);
    transform: scale(1.05);
}

.card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, rgba(11, 15, 25, 0.8) 100%);
}

.img-training {
    background-image: url('resource-consultant-1.png');
}

.img-strategy {
    background-image: url('resource-tech.png');
}

.img-leadership {
    background-image: url('resource-consultant-2.png');
}

.card-content {
    padding: 2.5rem;
}

.category-tag {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: rgba(59, 130, 246, 0.15);
    color: var(--accent-blue);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 99px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.read-more {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-bottom: 2px solid var(--accent-gold);
    padding-bottom: 4px;
    transition: 0.3s;
}

.read-more:hover {
    color: var(--accent-gold);
    border-bottom-color: transparent;
}

/* Featured Service Section */
.featured-service-section .standards-section {
    background: #0B0F19;
    padding: 8rem 0;
}

.featured-service {
    display: flex;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 4rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.featured-image {
    flex: 1;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.featured-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(11, 15, 25, 0.5));
}

.featured-content {
    flex: 1.2;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-content h3 {
    font-size: 2.5rem;
    margin: 1rem 0 1.5rem;
    color: #fff;
    font-family: 'Orbitron', sans-serif;
}

.featured-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.featured-perks {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.featured-perks li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    color: var(--accent-gold);
    font-weight: 500;
}

.featured-perks i {
    font-size: 1rem;
}

@media (max-width: 900px) {
    .featured-service {
        flex-direction: column;
    }

    .featured-image {
        min-height: 300px;
    }

    .featured-content {
        padding: 2.5rem;
    }

    .featured-perks {
        grid-template-columns: 1fr;
    }
}

/* Elite Footer Styles */
.elite-footer {
    background: #050810;
    padding: 6rem 0 0;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-accent-bar {
    height: 4px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(to right, #377E3F 20%, #FFFFFF 20% 40%, #B40A2D 40% 60%, #E4C811 60% 80%, #377E3F 80%);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 4rem;
}

.footer-col h4 {
    color: var(--accent-gold);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.footer-col p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 1rem;
}

.footer-col ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.social-links a {
    color: var(--text-primary);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-gold);
    transform: translateY(-3px);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@keyframes floatLogo {
    0% {
        transform: translate(-50%, -50%);
    }

    50% {
        transform: translate(-50%, -55%);
    }

    100% {
        transform: translate(-50%, -50%);
    }
}

@media (max-width: 1024px) {
    .section-container {
        flex-direction: column;
    }

    .hero-text h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-split {
        flex-direction: column;
        text-align: center;
    }

    .hero-text p {
        margin: 0 auto 2.5rem;
    }

    .stats-bar {
        flex-direction: column;
        gap: 3rem;
    }
}

/* About Us Section */
.about-section {
    padding: 10rem 5%;
    background: #0B0F19;
    position: relative;
    overflow: hidden;
}

.about-section .section-container {
    display: flex;
    align-items: center;
    gap: 5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 3.2rem;
    margin-bottom: 2rem;
    line-height: 1.1;
    color: white;
}

.premium-lead {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--accent-gold);
    font-weight: 500;
    margin-bottom: 2rem;
    border-left: 3px solid var(--accent-gold);
    padding-left: 2rem;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.about-visual {
    flex: 1;
    height: 550px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: url('about-agent.png');
    background-size: cover;
    background-position: center;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 215, 0, 0.2);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.6s ease;
}

.about-visual:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.about-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(11, 15, 25, 0.6), transparent);
}

@media (max-width: 1024px) {
    .about-section .section-container {
        flex-direction: column;
        text-align: center;
    }

    .premium-lead {
        border-left: none;
        padding-left: 0;
        border-bottom: 3px solid var(--accent-gold);
        padding-bottom: 2rem;
    }

    .about-visual {
        width: 100%;
        height: 300px;
    }
}

/* Culture & Diversity Section */
.culture-section {
    padding: 4rem 5%;
    background: linear-gradient(to bottom, #0B0F19, #050814);
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
}

.culture-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 20px;
    padding: 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.culture-card:hover {
    border-color: rgba(255, 215, 0, 0.3);
    background: rgba(255, 255, 255, 0.04);
}


.culture-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.sparkle-icon {
    font-size: 3.5rem;
    color: var(--accent-gold);
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.4));
    animation: glitter 3s infinite ease-in-out;
}

.culture-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
}

.culture-text p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

@keyframes glitter {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
        filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
    }

    50% {
        transform: scale(1.1) rotate(5deg);
        filter: drop-shadow(0 0 25px rgba(255, 215, 0, 0.7));
    }
}

@media (max-width: 1100px) {
    .culture-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .culture-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .culture-card {
        text-align: center;
        align-items: center;
        padding: 3rem 2rem;
    }

    .sparkle-icon {
        font-size: 3rem;
    }
}

/* Locations Section */
.locations-section {
    min-height: 60vh;
    position: relative;
    background-color: #050814;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 100px 5%;
}

.locations-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 70%;
    height: 100%;
    background: url('locations-tech.png');
    background-size: cover;
    background-position: center;
    z-index: 1;
    mask-image: linear-gradient(to left, black 60%, transparent 100%);
    -webkit-mask-image: linear-gradient(to left, black 60%, transparent 100%);
    filter: brightness(0.7) contrast(1.1);
}

.locations-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #0B0F19 30%, rgba(11, 24, 25, 0.4) 100%);
    z-index: 2;
}

.location-card {
    position: relative;
    z-index: 10;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.location-card h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: white;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.detail-item i {
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-top: 5px;
}

.detail-text {
    display: flex;
    flex-direction: column;
}

.detail-label {
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    color: var(--accent-gold);
    font-weight: 700;
    margin-bottom: 5px;
}

.detail-text p {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

@media (max-width: 768px) {
    .locations-section::before {
        width: 100%;
        opacity: 0.4;
    }

    .location-card {
        padding: 2rem;
    }
}

/* --- Added Availability Banner --- */
.availability-banner {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(11, 15, 25, 0.85);
    border: 1px solid var(--accent-gold);
    padding: 12px 24px;
    border-radius: 50px;
    margin-top: 1.5rem;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.25);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.availability-banner:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.pulse-dot {
    width: 12px;
    height: 12px;
    background-color: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 10px #22c55e;
    animation: pulse-animation 1.5s infinite;
}

@keyframes pulse-animation {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
    70% { transform: scale(1.1); box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.availability-text {
    color: #ffffff;
    font-size: 1rem;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.availability-text strong {
    color: var(--accent-gold);
    font-weight: 700;
}

/* =========================================
   DIENSTEN VAN WERELDKLASSE SECTION
========================================= */
.standards-section {
    padding: 100px 5%;
    background: radial-gradient(circle at center top, #0A0F1D 0%, #050505 100%);
    position: relative;
    overflow: hidden;
}

.standards-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 2;
}

.standards-text .sub-title {
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.9rem;
    font-weight: 700;
    display: block;
    margin-bottom: 1rem;
}

.standards-text h2 {
    font-size: 3rem;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.standards-text p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.services-elite-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.service-pillar-card {
    background: rgba(15, 20, 35, 0.6);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    backdrop-filter: blur(15px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.service-pillar-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-pillar-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 215, 0, 0.1);
    background: rgba(20, 26, 45, 0.8);
}

.service-pillar-card:hover::after {
    opacity: 1;
}

.service-pillar-card.featured-pillar {
    background: rgba(25, 30, 50, 0.7);
    border-color: rgba(255, 215, 0, 0.25);
    transform: scale(1.02);
}

.service-pillar-card.featured-pillar:hover {
    transform: scale(1.02) translateY(-10px);
}

.pillar-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: inset 0 0 15px rgba(255, 215, 0, 0.05);
}

.pillar-icon i {
    font-size: 2.2rem;
    color: var(--accent-gold);
}

.service-pillar-card h3 {
    font-size: 1.6rem;
    color: #FFFFFF;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.pillar-lead {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 20px;
    display: block;
}

.service-pillar-card p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
    font-size: 1.05rem;
}

.pillar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pillar-tags span {
    font-size: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 14px;
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 500;
    letter-spacing: 0.5px;
}