/* ==========================================================================
   FIETSVERKOPEN.NL - PREMIUM UI & UX STYLESHEET
   Consolidated styling including custom widgets, glassmorphism, 
   layout stability, and high-fidelity Select2 custom themes.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Theme Variables & Base Style Overrides
   -------------------------------------------------------------------------- */
:root {
    --primary-brand: #10B981;
    --primary-dark: #0F172A;
    --secondary-brand: #059669;
    --bg-light: #F8FAFC;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition-fast: all 0.2s ease;
    --transition-slow: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/* Force the premium font family across all text elements (excluding web font icons) */
body, p, a, h1, h2, h3, h4, h5, h6, input, button, textarea, select, label, td, th,
span:not([class*="fa"]):not([class*="icon"]):not(i),
li:not([class*="fa"]):not([class*="icon"]) {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
}

body {
    background-color: var(--bg-light);
    color: #334155;
    font-size: 1rem;
    line-height: 1.6;
    font-size-adjust: from-font; /* Prevent CLS */
}

/* Let sizes inherit naturally so classes can control their own font sizes, defeating brute-force * in style.css */
* {
    font-size: inherit;
    line-height: inherit;
}

p, td, th, label, input, textarea, select {
    font-size: 1rem !important;
    line-height: 1.6 !important;
}

p {
    color: #64748B !important; /* Elegant slate-500 text color */
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    color: var(--primary-dark) !important;
    font-size-adjust: cap-height from-font; /* Keep headers stable */
}

/* Ensure headers and paragraphs in dark backgrounds / text-white components stay white */
.text-white h1, .text-white .h1, 
.text-white h2, .text-white .h2, 
.text-white h3, .text-white .h3, 
.text-white h4, .text-white .h4, 
.text-white h5, .text-white .h5, 
.text-white h6, .text-white .h6,
.text-white p,
.hero-section h1, .hero-section h2, .hero-section h3, .hero-section h4,
#waarde-berekenen-hero h1, #waarde-berekenen-hero h2, #waarde-berekenen-hero h3,
section[style*="background: radial-gradient"] h1, section[style*="background: radial-gradient"] h2, section[style*="background: radial-gradient"] h3,
section[style*="background: var(--primary-dark)"] h1, section[style*="background: var(--primary-dark)"] h2, section[style*="background: var(--primary-dark)"] h3, section[style*="background: var(--primary-dark)"] h4,
section[style*="background: var(--primary-dark)"] p,
[style*="background: var(--primary-dark)"] h1, [style*="background: var(--primary-dark)"] h2, [style*="background: var(--primary-dark)"] h3, [style*="background: var(--primary-dark)"] h4,
[style*="background: var(--primary-dark)"] p {
    color: #ffffff !important;
}

/* Retain high-contrast opacity for paragraphs in white-on-dark blocks */
.text-white p.opacity-75, .text-white .opacity-75,
[style*="background: var(--primary-dark)"] p.opacity-75, [style*="background: var(--primary-dark)"] .opacity-75 {
    color: rgba(255, 255, 255, 0.75) !important;
}
.text-white p.opacity-50, .text-white .opacity-50,
[style*="background: var(--primary-dark)"] p.opacity-50, [style*="background: var(--primary-dark)"] .opacity-50 {
    color: rgba(255, 255, 255, 0.5) !important;
}

/* Sleeker header link navigation sizes */
.core-navigation a,
.core-navigation li a,
.nav-link-custom {
    font-size: 0.88rem !important;
    letter-spacing: -0.015em !important;
    font-weight: 600 !important;
}

/* Prevent font-size-adjust from inheriting and shrinking web font icons */
.fa, .fa-solid, .fa-regular, .fa-brands, i {
    font-size-adjust: none !important;
}

footer img {
    height: 100px;
    max-height: 100px;
}

/* --------------------------------------------------------------------------
   2. Micro-Animations & Utilities
   -------------------------------------------------------------------------- */
.animate-bullet-fade ul li {
    opacity: 0; /* Hidden by default */
}

.animate-wave .card {
    transform: translateY(0);
    transition: transform 300ms ease-in-out;
}

/* --------------------------------------------------------------------------
   3. Floating Glassmorphic Navigation Bar Makeover (Consumer-Oriented)
   -------------------------------------------------------------------------- */
@media (min-width: 992px) {
    .navbar {
        height: 76px !important;
        margin: 15px auto !important;
        width: calc(100% - 40px) !important;
        max-width: 1440px !important;
        border-radius: 20px !important;
        background: rgba(255, 255, 255, 0.85) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        border: 1px solid rgba(255, 255, 255, 0.5) !important;
        box-shadow: 0 10px 40px -15px rgba(15, 23, 42, 0.06) !important;
        transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
        top: 15px !important;
        position: sticky !important;
    }
    
    .navbar.scrolled {
        margin-top: 5px !important;
        background: rgba(255, 255, 255, 0.95) !important;
        box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.12) !important;
        height: 70px !important;
    }
}

@media (max-width: 991.98px) {
    .navbar {
        background: rgba(255, 255, 255, 0.96) !important;
        backdrop-filter: blur(12px) !important;
        -webkit-backdrop-filter: blur(12px) !important;
        border-bottom: 1px solid rgba(16, 185, 129, 0.08) !important;
        height: 74px !important;
        top: 0 !important;
        position: sticky !important;
    }
}

.navbar {
    z-index: 1000 !important;
    transition: all 0.3s ease !important;
}

.navbar-brand {
    transition: transform 0.3s ease !important;
}
.navbar-brand:hover {
    transform: scale(1.03);
}

.navbar-brand img {
    height: 54px !important;
    margin: 0 !important;
    position: static !important;
    transition: all 0.3s ease !important;
}

.container-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
}

.core-navigation a,
.core-navigation li a,
.nav-link-custom {
    color: #1e293b !important; /* Elegant slate-800 for premium legibility */
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
    font-weight: 600 !important; /* Modern semi-bold rather than chunky bold */
    font-size: 0.92rem !important;
    letter-spacing: -0.2px !important; /* Sleek tracking */
    padding: 8px 16px !important;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
    border-radius: 12px;
    position: relative;
}

.core-navigation a:hover,
.core-navigation li a:hover,
.nav-link-custom:hover {
    color: var(--primary-brand) !important;
    background: rgba(16, 185, 129, 0.06) !important; /* Soft emerald background on hover */
    transform: translateY(-1px);
}

.core-navigation li.active a,
.core-navigation li.active > a,
.active .nav-link-custom {
    color: var(--primary-brand) !important;
    background: rgba(16, 185, 129, 0.04) !important;
}

.active .nav-link-custom::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 3px;
    background-color: var(--primary-brand);
    border-radius: 2px;
}

.navbar-toggler-custom {
    background: rgba(15, 23, 42, 0.04);
    border: 1px solid rgba(15, 23, 42, 0.06);
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 1100;
}
.navbar-toggler-custom:hover {
    background: rgba(0, 158, 226, 0.08);
}
.hamburger-line {
    display: block;
    height: 2px;
    width: 20px;
    background-color: var(--primary-dark);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    transform-origin: center;
}

.nav-mobile-active .line-1 {
    transform: translateY(6px) rotate(45deg);
    background-color: var(--primary-brand);
}
.nav-mobile-active .line-2 {
    opacity: 0;
}
.nav-mobile-active .line-3 {
    transform: translateY(-6px) rotate(-45deg);
    background-color: var(--primary-brand);
}

.nav-trust-tag {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
    font-size: 0.76rem !important;
    font-weight: 500;
    color: #64748B !important; /* Elegant slate-500 text */
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 0 0 16px !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: none !important;
    cursor: default;
    pointer-events: none;
    white-space: nowrap !important;
}
.nav-trust-tag:hover {
    background: transparent !important;
    transform: none !important;
}
.nav-trust-tag i {
    font-size: 0.8rem !important;
}
.nav-trust-tag strong {
    color: #475569 !important; /* slate-600 for contrast */
}

/* Premium Segmented Toggle styles */
.segmented-control {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 50px !important;
    padding: 3px !important;
    display: inline-flex;
    align-items: center;
    width: 100%;
    margin-bottom: 8px;
}
.segmented-btn {
    flex: 1;
    border: none !important;
    background: transparent !important;
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 0.82rem !important;
    font-weight: 700 !important;
    padding: 8px 16px !important;
    border-radius: 50px !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.segmented-btn:hover {
    color: #ffffff !important;
}
.segmented-btn.active {
    background: linear-gradient(135deg, #10B981, #059669) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25) !important;
}

.nav-cta-btn {
    background: linear-gradient(135deg, #10B981, #059669) !important;
    border: none !important;
    color: white !important;
    border-radius: 50px !important;
    padding: 10px 24px !important;
    font-size: 0.92rem !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.25) !important;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.nav-cta-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.35) !important;
    color: white !important;
}

.mobile-nav-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.3);
    backdrop-filter: blur(8px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.navbar.nav-mobile-active .mobile-nav-backdrop {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-drawer {
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    width: 85vw;
    max-width: 340px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid rgba(0, 158, 226, 0.1);
    border-bottom: 0;
    box-shadow: -10px 0 40px rgba(15, 23, 42, 0.08);
    z-index: 1050;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    padding: 95px 24px 40px 24px;
    overflow-y: auto;
}

.navbar.nav-mobile-active .mobile-menu-drawer {
    transform: translateX(0);
}

.mobile-nav-card {
    background: rgba(248, 250, 252, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none !important;
    color: var(--primary-dark) !important;
    transition: all 0.2s ease;
}
.mobile-nav-card:hover {
    background: rgba(16, 185, 129, 0.06);
    border-color: rgba(16, 185, 129, 0.15);
    transform: translateY(-2px);
}
.mobile-nav-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.2s ease;
}
.mobile-nav-card:hover .mobile-nav-icon {
    background: var(--primary-brand);
    color: white;
}
.mobile-nav-title {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 2px;
}
.mobile-nav-desc {
    font-size: 0.8rem;
    color: #64748B;
}

/* --------------------------------------------------------------------------
   4. Glassmorphic UI Components & Shadows
   -------------------------------------------------------------------------- */
.glass-card {
    background: rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid var(--glass-border) !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5) !important;
}

.glass-input {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    transition: var(--transition-fast) !important;
}

.glass-input:focus {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: var(--primary-brand) !important;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2) !important;
}

.glass-input option {
    background-color: var(--primary-dark);
    color: white;
}

.premium-shadow {
    box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.08) !important;
}

.custom-switch .form-check-input:checked {
    background-color: var(--primary-brand);
    border-color: var(--primary-brand);
}

/* --------------------------------------------------------------------------
   5. Hero Section Visual Enhancements
   -------------------------------------------------------------------------- */
.hero-section {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
    min-height: calc(100vh - 80px) !important;
    min-height: calc(100svh - 80px) !important;
    max-height: 860px !important;
    background: radial-gradient(circle at 70% 30%, rgba(16, 185, 129, 0.15), transparent 60%), var(--primary-dark) !important;
    display: flex !important;
    align-items: center !important;
    position: relative !important;
    overflow: hidden !important;
}

@media (max-width: 991.98px) {
    .hero-section {
        min-height: auto !important;
        max-height: none !important;
        height: auto !important;
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }
}


.hero-section .section-content {
    padding-top: 0 !important;
}

@media (min-width: 992px) and (max-height: 920px) {
    .hero-section {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }
    .expert-img {
        max-height: 310px !important;
    }
    .hero-badge {
        padding: 10px 14px !important;
    }
    .hero-badge .fw-bold {
        font-size: 0.9rem !important;
    }
    .hero-badge .small {
        font-size: 0.75rem !important;
    }
}

.hero-badge {
    backdrop-filter: blur(10px);
}

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

.expert-img {
    max-width: 420px;
    width: 100%;
}

section[data-sid="3"]:after {
    opacity: 0.5;
}

/* --------------------------------------------------------------------------
   6. Unified Button System & Effects
   -------------------------------------------------------------------------- */
.btn {
    border-radius: 12px !important;
    font-weight: 700 !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    padding: 12px 32px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-width: 2px !important;
}

.btn-primary {
    background-color: var(--primary-brand) !important;
    border-color: var(--primary-brand) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(0, 208, 132, 0.25) !important;
}

.btn-primary:hover {
    background-color: var(--secondary-brand) !important;
    border-color: var(--secondary-brand) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 208, 132, 0.35) !important;
    color: #ffffff !important;
}

.btn-lg {
    padding: 16px 48px !important;
    font-size: 1.15rem !important;
}

.btn-outline-primary {
    border-color: var(--primary-brand) !important;
    color: var(--primary-brand) !important;
    background: transparent !important;
}

.btn-outline-primary:hover {
    background-color: var(--primary-brand) !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 208, 132, 0.2) !important;
}

.btn-outline-white {
    border-color: #ffffff !important;
    color: #ffffff !important;
    background: transparent !important;
}

.btn-outline-white:hover {
    background-color: #ffffff !important;
    color: var(--primary-brand) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2) !important;
}

.btn-white {
    background-color: #ffffff !important;
    color: var(--primary-brand) !important;
    border-color: #ffffff !important;
}

.btn-white:hover {
    background-color: #f8f9fa !important;
    color: #00803a !important;
    transform: translateY(-2px);
}

.btn-cta-glow {
    animation: cta-glow 2s infinite;
}

@keyframes cta-glow {
    0% { box-shadow: 0 0 0 0 rgba(0, 152, 69, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(0, 152, 69, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 152, 69, 0); }
}

/* --------------------------------------------------------------------------
   7. Chat Widget & Interactive Floating Elements
   -------------------------------------------------------------------------- */
a.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: var(--primary-brand);
    color: white;
    display: block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00d084, #009845);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    box-shadow: 0 8px 16px rgba(0, 208, 132, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1000;
    animation: pulse 2s infinite;
    overflow: visible;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 152, 69, 0.6);
    animation: none;
}

.wave-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.wave {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(19, 213, 167, 0.9);
    border-radius: 50%;
    opacity: 0;
    animation: wave 3s infinite;
}

.wave-1 { animation-delay: 0s; }
.wave-2 { animation-delay: 1s; }
.wave-3 { animation-delay: 2s; }

.wave-container.paused .wave {
    animation: waveComplete 0.5s ease-out forwards;
}

@keyframes waveComplete {
    0% {
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes wave {
    0% {
        transform: translate(-50%, -50%) scale(0.6);
        opacity: 0.4;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0;
    }
}

.notification-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #ff3b30;
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: scale(0);
    animation: bounceIn 0.6s ease-out forwards;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.chat-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.chat-overlay.active {
    visibility: visible;
    pointer-events: auto;
    opacity: 1;
}

.chat-interface {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 380px;
    max-height: 70vh;
    z-index: 1001;
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 12px;
}

@media (max-width: 480px) {
    .chat-interface {
        width: calc(100vw - 40px);
        right: 20px;
        left: 20px;
        max-height: 80vh;
    }
    .chat-content {
        max-height: calc(80vh - 60px);
    }
}

.chat-interface.active {
    visibility: visible;
    pointer-events: auto;
    opacity: 1;
    transform: translateY(0) scale(1);
}

.chat-content {
    max-height: calc(70vh - 60px);
    overflow-y: auto;
    padding: 20px;
    padding-top: 10px;
    position: relative;
}

.chat-avatar {
    position: absolute;
    left: 10px;
    top: 32px;
    width: 50px;
    height: 50px;
    border-radius: 13px;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0px 3px 10px rgba(0,0,0,0.2);
}

.chat-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.chat-content::-webkit-scrollbar {
    width: 6px;
}

.chat-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.chat-content::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.chat-content::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

.chat-bubble {
    background: white;
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 15px;
    margin-left: 60px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    max-width: 340px;
    word-wrap: break-word;
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.5s ease forwards;
}

.chat-bubble.response-message {
    background: #f8f9fa;
    align-self: flex-start;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.chat-bubble.response-message::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #f0f0f0;
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-bubble::after {
    content: '';
    position: absolute;
    bottom: 57px;
    left: -8px;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 8px solid white;
}

.chat-bubble .profile-pic {
    width: 30px;
    height: 30px;
    min-width: 30px;
    min-height: 30px;
    border-radius: 50%;
    background: linear-gradient(90deg, #009845, #13d5a7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 14px;
}

.chat-bubble h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
    color: #333;
    font-weight: 600;
}

.chat-bubble p {
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

.chat-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
    align-items: flex-end;
}

.chat-option {
    padding: 9px 15px;
    border: 1px solid #ddd;
    border-radius: 18px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 14px;
    color: #333;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    position: relative;
    width: fit-content;
    min-width: 120px;
    max-width: 340px;
    word-wrap: break-word;
    align-self: flex-end;
    opacity: 0;
    transform: translateX(20px);
    animation: slideInRight 0.4s ease forwards;
}

.chat-option:nth-child(1) { animation-delay: 0.1s; }
.chat-option:nth-child(2) { animation-delay: 0.2s; }
.chat-option:nth-child(3) { animation-delay: 0.3s; }
.chat-option:nth-child(4) { animation-delay: 0.4s; }
.chat-option:nth-child(5) { animation-delay: 0.5s; }

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.typing-indicator {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 12px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    width: fit-content;
    align-self: flex-start;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(10px);
    animation: slideInUp 0.3s ease forwards;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.typing-indicator .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #999;
    animation: typing 1.4s infinite ease-in-out;
}

.typing-indicator .dot:nth-child(1) { animation-delay: -0.32s; }
.typing-indicator .dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes typing {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

.chat-option:hover {
    border-color: #13d5a7;
    background: #f8fff9;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.chat-option.primary {
    border: none;
    background: linear-gradient(90deg, #009845, #13d5a7);
    color: white;
}

.chat-option.primary:hover {
    background: linear-gradient(90deg, #0094c9, #10b991);
    transform: translateY(-3px) scale(1.02);
}

.chat-option.secondary {
    border-color: #333;
}

.chat-option.secondary:hover {
    border-color: #13d5a7;
    color: #13d5a7;
}

.close-button {
    position: absolute;
    top: -40px;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 8px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    z-index: 1002;
}

.close-button:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.chat-init-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.profile-name {
    font-size: 16px;
    font-weight: 600;
}

.chat-form {
    width: 100%;
    margin-top: 20px;
}

.order-status-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-left: 60px;
    position: relative;
    max-width: 340px;
}

.order-status-form::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: -8px;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 8px solid white;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-field label {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 2px;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field textarea {
    padding: 10px 14px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.form-field input[type="text"]:focus,
.form-field input[type="email"]:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #25D366;
    box-shadow: 0 0 0 2px rgba(37, 211, 102, 0.1);
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checkbox-option {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 4px 0;
}

.checkbox-option input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #13d5a7;
    cursor: pointer;
    margin: 0;
}

.checkbox-option label {
    font-size: 14px;
    color: #333;
    cursor: pointer;
    margin: 0;
    font-weight: 400;
    line-height: 1.4;
}

.order-status-form button[type="submit"] {
    margin-top: 8px;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(90deg, #009845, #13d5a7);
    color: white;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(0, 152, 69, 0.3);
}

.order-status-form button[type="submit"]:hover {
    background: linear-gradient(90deg, #0094c9, #10b991);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 165, 223, 0.4);
}

.form-error {
    background: #fef2f2;
    color: #dc2626;
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid #fecaca;
    font-size: 13px;
    margin-top: 8px;
    animation: slideInUp 0.3s ease forwards;
    margin-left: 80px;
    max-width: 340px;
}

.form-success {
    background: #f0fdf4;
    color: #166534;
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid #bbf7d0;
    font-size: 13px;
    margin-top: 8px;
    animation: slideInUp 0.3s ease forwards;
    margin-left: 80px;
    max-width: 340px;
}

.chat-bubble.response-message.error-response {
    background: #fef2f2;
    border-left: 3px solid #dc2626;
}

.chat-bubble.response-message.error-response h4 {
    color: #dc2626;
}

/* --------------------------------------------------------------------------
   8. Premium Select2 Glassmorphic Theme Custom Overrides
   -------------------------------------------------------------------------- */
/* Main selection box */
.valuation-card .select2-container--bootstrap-5 .select2-selection {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    border-radius: 12px !important;
    padding: 12px 14px !important;
    height: auto !important;
    transition: var(--transition-fast) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Select2 text */
.valuation-card .select2-container--bootstrap-5 .select2-selection .select2-selection__rendered {
    color: white !important;
    padding-left: 0 !important;
    font-size: 1rem;
    font-weight: 500;
}

/* Select2 placeholder */
.valuation-card .select2-container--bootstrap-5 .select2-selection--single .select2-selection__placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}

/* Arrow container and icon */
.valuation-card .select2-container--bootstrap-5 .select2-selection__arrow {
    top: 50% !important;
    transform: translateY(-50%) !important;
    right: 14px !important;
}

.valuation-card .select2-container--bootstrap-5 .select2-selection__arrow b {
    border-color: rgba(255, 255, 255, 0.6) transparent transparent transparent !important;
    border-width: 6px 6px 0 6px !important;
}

.valuation-card .select2-container--bootstrap-5.select2-container--open .select2-selection__arrow b {
    border-color: transparent transparent rgba(255, 255, 255, 0.6) transparent !important;
    border-width: 0 6px 6px 6px !important;
}

/* Focus and Active States */
.valuation-card .select2-container--bootstrap-5.select2-container--focus .select2-selection,
.valuation-card .select2-container--bootstrap-5.select2-container--open .select2-selection {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: var(--primary-brand) !important;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.25) !important;
    outline: none !important;
}

/* Dropdown Container */
.select2-container--bootstrap-5 .select2-dropdown {
    background: rgba(15, 23, 42, 0.95) !important; /* Premium slate color */
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5) !important;
    z-index: 10000 !important;
    padding: 6px !important;
    overflow: hidden;
}

/* Dropdown search container */
.select2-container--bootstrap-5 .select2-dropdown .select2-search {
    padding: 8px !important;
}

.select2-container--bootstrap-5 .select2-dropdown .select2-search__field {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    border-radius: 8px !important;
    padding: 8px 12px !important;
    font-size: 0.95rem;
}

.select2-container--bootstrap-5 .select2-dropdown .select2-search__field:focus {
    border-color: var(--primary-brand) !important;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2) !important;
    outline: none !important;
}

/* Results container styling */
.select2-container--bootstrap-5 .select2-results__options {
    max-height: 250px !important;
    padding: 4px 0 !important;
}

/* Results Option Items */
.select2-container--bootstrap-5 .select2-results__option {
    border-radius: 8px !important;
    padding: 10px 14px !important;
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition-fast);
    margin-bottom: 2px;
    background-color: transparent !important;
}

/* Selected option */
.select2-container--bootstrap-5 .select2-results__option[aria-selected="true"] {
    background-color: rgba(16, 185, 129, 0.2) !important;
    color: white !important;
    font-weight: 600;
}

/* Highlighted option (hover) */
.select2-container--bootstrap-5 .select2-results__option--highlighted,
.select2-container--bootstrap-5 .select2-results__option:hover {
    background-color: var(--primary-brand) !important;
    color: white !important;
    transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   Responsive Header Adjustments (Prevents layout wrapping & clipping)
   -------------------------------------------------------------------------- */
@media (min-width: 992px) and (max-width: 1200px) {
    .navbar {
        height: 68px !important;
    }
    .navbar-brand img {
        height: 42px !important;
    }
    .core-navigation a,
    .core-navigation li a,
    .nav-link-custom {
        padding: 6px 8px !important;
        font-size: 0.82rem !important;
    }
    .core-navigation {
        gap: 3px !important;
    }
    .nav-cta-btn {
        padding: 8px 16px !important;
        font-size: 0.82rem !important;
    }
}

@media (min-width: 1201px) and (max-width: 1399px) {
    .navbar {
        height: 72px !important;
    }
    .navbar-brand img {
        height: 48px !important;
    }
    .core-navigation a,
    .core-navigation li a,
    .nav-link-custom {
        padding: 8px 12px !important;
        font-size: 0.88rem !important;
    }
    .core-navigation {
        gap: 6px !important;
    }
    .nav-cta-btn {
        padding: 9px 20px !important;
        font-size: 0.88rem !important;
    }
}

@media (min-width: 1400px) and (max-width: 1550px) {
    .core-navigation a,
    .core-navigation li a,
    .nav-link-custom {
        padding: 8px 12px !important;
        font-size: 0.9rem !important;
    }
    .core-navigation {
        gap: 8px !important;
    }
    .nav-trust-tag {
        font-size: 0.74rem !important;
    }
}

/* Custom Navigation Hover & Opacity Stability Fixes */
.core-navigation li {
    opacity: 0.65;
    transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.core-navigation li:hover,
.core-navigation li.active {
    opacity: 1 !important;
}

/* --------------------------------------------------------------------------
   9. Mobile Performance & Clean Layout Optimizations
   -------------------------------------------------------------------------- */
@media (max-width: 767.98px) {
    /* Responsive typography scaling */
    .hero-title, 
    h1[style*="font-size: 2.7rem"], 
    h1[style*="font-size: 2.8rem"],
    h1 {
        font-size: 2.0rem !important;
        letter-spacing: -0.8px !important;
        line-height: 1.2 !important;
    }

    h2, 
    h2[style*="font-size: 2.8rem"], 
    h2[style*="font-size: 3.5rem"], 
    h2[style*="font-size: 2.5rem"],
    .display-5 {
        font-size: 1.75rem !important;
        letter-spacing: -0.5px !important;
        line-height: 1.25 !important;
    }

    /* Section padding normalization to prevent huge empty spaces */
    section {
        padding-top: 35px !important;
        padding-bottom: 35px !important;
    }
    section[style*="padding: 120px 0"], 
    section[style*="padding: 100px 0"], 
    .py-5 {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

    /* Adjust cards with heavy inline padding */
    .p-5 {
        padding: 1.5rem !important;
    }
    
    .rounded-4[style*="border-radius: 24px"], 
    .rounded-4[style*="border-radius: 32px"] {
        border-radius: 16px !important;
    }

    /* Spacing around the main hero content and iframe on mobile */
    .hero-content {
        padding-top: 0 !important;
        padding-bottom: 10px !important;
    }

    .hero-section {
        padding-top: 15px !important;
        padding-bottom: 25px !important;
    }
}

@media (max-width: 991.98px) {
    /* Prevent desktop navigation list from displaying on mobile when menu drawer toggles */
    .navbar.nav-mobile-active .core-navigation,
    .navbar .core-navigation,
    .core-navigation {
        display: none !important;
    }
}

@media (max-width: 575.98px) {
    /* Compact navbar on mobile */
    .navbar {
        height: 62px !important;
    }
    
    .navbar-brand img {
        height: 38px !important;
    }

    /* Compact iframe card styling */
    #valuation-iframe {
        height: 480px !important; /* Slightly shorter on extra small screens for better viewport fit */
    }
}
/* --------------------------------------------------------------------------
   10. High-End Premium Design Refinement Extensions
   -------------------------------------------------------------------------- */

/* Cinematic Layered Depth - Radial Dot-Grid Pattern */
.hero-section,
#waarde-berekenen-hero,
section[style*="background: radial-gradient"] {
    position: relative !important;
}

.hero-section::before,
#waarde-berekenen-hero::before,
section[style*="background: radial-gradient"]::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1.5px, transparent 1.5px) !important;
    background-size: 24px 24px !important;
    pointer-events: none !important;
    z-index: 1 !important;
}

/* Ensure content sits on top of dot grid */
.hero-section > *,
#waarde-berekenen-hero > *,
section[style*="background: radial-gradient"] > * {
    position: relative;
    z-index: 2;
}

/* Editorial Typography Kerning & Tight Leading */
h1, .h1, h2, .h2, h3, .h3 {
    letter-spacing: -0.03em !important;
    line-height: 1.15 !important;
}

/* Enhanced Glassmorphism Backdrop Blur & Glow */
.glass-card {
    background: rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: blur(25px) !important;
    -webkit-backdrop-filter: blur(25px) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.45) !important;
}

/* Soft Ambient Occlusion Shadows */
.premium-shadow {
    box-shadow: 0 12px 35px -12px rgba(15, 23, 42, 0.05),
                0 25px 55px -20px rgba(15, 23, 42, 0.04) !important;
}

/* Luxury Card Hover Micro-Interactions */
section .row [class^="col-"] > .premium-shadow,
section .row [class*=" col-"] > .premium-shadow,
.transition-hover,
.premium-shadow[style*="border-radius: 24px"],
.premium-shadow[style*="border-radius: 32px"] {
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), 
                box-shadow 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), 
                border-color 0.4s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
    border: 1px solid rgba(0, 0, 0, 0.02) !important;
}

section .row [class^="col-"] > .premium-shadow:hover,
section .row [class*=" col-"] > .premium-shadow:hover,
.transition-hover:hover,
.premium-shadow[style*="border-radius: 24px"]:hover,
.premium-shadow[style*="border-radius: 32px"]:hover {
    transform: translateY(-6px) scale(1.015) !important;
    box-shadow: 0 35px 70px -15px rgba(15, 23, 42, 0.09) !important;
    border-color: rgba(16, 185, 129, 0.2) !important;
}

/* Glossy CTA Light Sweep Animations */
.btn-primary, .btn-cta-glow {
    position: relative;
    overflow: hidden;
}

.btn-primary::after, .btn-cta-glow::after {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    transition: 0.75s;
    opacity: 0;
}

.btn-primary:hover::after, .btn-cta-glow:hover::after {
    left: 125%;
    opacity: 1;
    transition: all 0.75s ease-out;
}

/* Footer & Nav links visual polish */
.transition-hover-link {
    transition: color 0.25s ease, opacity 0.25s ease;
}

.transition-hover-link:hover {
    color: var(--primary-brand) !important;
    opacity: 1 !important;
}

/* Force all text-primary classes to represent the emerald brand color instead of Bootstrap's dark blue/black primary color */
.text-primary,
.text-primary i,
i.text-primary {
    color: var(--primary-brand) !important;
}

.qinox-banner {
  background: rgb(9.2589285714, 13.0714285714, 21.2410714286); /* Dynamisch aanpassen aan het actieve primaire kleurenpalet */
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.qinox-banner .qinox-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 15px;
  display: block;
}
.qinox-banner .qinox-logo {
  height: 30px;
  display: inline-block;
  color: rgba(255, 255, 255, 0.4);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.qinox-banner .qinox-logo:hover {
  color: #ffffff;
  transform: translateY(-2px);
}
.qinox-banner .qinox-logo svg {
  height: 100%;
  width: auto;
}

/* --------------------------------------------------------------------------
   11. Fietsverkopen Flat Trust Theme
   -------------------------------------------------------------------------- */
:root {
    --primary-brand: #009ee2;
    --primary-dark: #1d1d1b;
    --secondary-brand: #007eb5;
    --bg-light: #f4f4f4;
    --text-muted: #5f625f;
    --border-subtle: #e3e3e3;
}

html,
body {
    background-color: var(--bg-light);
    color: var(--primary-dark);
}

body,
p,
a,
h1,
h2,
h3,
h4,
h5,
h6,
input,
button,
textarea,
select,
label,
td,
th,
span:not([class*="fa"]):not([class*="icon"]):not(i),
li:not([class*="fa"]):not([class*="icon"]) {
    font-family: Inter, "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
}

p,
.section-subtitle,
.mobile-nav-desc,
.nav-trust-tag,
[style*="color: #64748B"],
[style*="color: #94A3B8"],
[style*="color: #334155"] {
    color: var(--text-muted) !important;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6,
[style*="color: var(--primary-dark)"] {
    color: var(--primary-dark) !important;
    letter-spacing: 0 !important;
}

.text-primary,
.text-primary i,
i.text-primary,
.bg-primary {
    color: var(--primary-brand) !important;
}

.bg-primary {
    background-color: var(--primary-brand) !important;
    color: #ffffff !important;
}

.navbar {
    background: #ffffff !important;
    border-radius: 0 !important;
    border: 0 !important;
    border-bottom: 1px solid var(--border-subtle) !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

@media (min-width: 992px) {
    .navbar,
    .navbar.scrolled {
        top: 0 !important;
        width: 100% !important;
        max-width: none !important;
        height: 76px !important;
        margin: 0 !important;
        background: #ffffff !important;
        box-shadow: none !important;
    }
}

@media (max-width: 991.98px) {
    .navbar {
        height: 68px !important;
        background: #ffffff !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
}

.navbar-brand:hover,
.nav-cta-btn:hover,
.core-navigation a:hover,
.core-navigation li a:hover,
.nav-link-custom:hover,
.mobile-nav-card:hover,
.btn:hover,
.transition-hover:hover,
.premium-shadow:hover,
section .row [class^="col-"] > .premium-shadow:hover,
section .row [class*=" col-"] > .premium-shadow:hover {
    transform: none !important;
}

.core-navigation li {
    opacity: 1 !important;
}

.core-navigation a,
.core-navigation li a,
.nav-link-custom {
    color: var(--primary-dark) !important;
    border-radius: 0 !important;
    background: transparent !important;
    letter-spacing: 0 !important;
}

.core-navigation a:hover,
.core-navigation li a:hover,
.nav-link-custom:hover,
.core-navigation li.active a,
.core-navigation li.active > a,
.active .nav-link-custom {
    color: var(--primary-brand) !important;
    background: transparent !important;
}

.active .nav-link-custom::after {
    background-color: var(--primary-brand);
    border-radius: 0;
    bottom: -8px;
    height: 2px;
    width: 22px;
}

.navbar-toggler-custom,
.mobile-nav-icon,
.icon-circle {
    border-radius: 4px !important;
    background: #f2f9fc !important;
    border-color: var(--border-subtle) !important;
    color: var(--primary-brand) !important;
}

.mobile-nav-backdrop {
    background: rgba(29, 29, 27, 0.45) !important;
    backdrop-filter: none !important;
}

.mobile-menu-drawer {
    background: #ffffff !important;
    border-bottom: 0 !important;
    border-left: 1px solid var(--border-subtle) !important;
    box-shadow: -10px 0 40px rgba(15, 23, 42, 0.05) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
}

.mobile-nav-card,
.mobile-nav-card[style] {
    background: #ffffff !important;
    border: 1px solid var(--border-subtle) !important;
    border-radius: 6px !important;
}

.mobile-nav-card:hover {
    border-color: var(--primary-brand) !important;
}

.mobile-nav-card:hover .mobile-nav-icon {
    background: var(--primary-brand) !important;
    color: #ffffff !important;
}

.nav-cta-btn,
.segmented-btn.active,
.chat-option.primary,
.order-status-form button[type="submit"],
.whatsapp-button {
    background: var(--primary-brand) !important;
    box-shadow: none !important;
}

.btn,
.nav-cta-btn,
.chat-option,
.order-status-form button[type="submit"] {
    border-radius: 6px !important;
    box-shadow: none !important;
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease !important;
}

.btn-primary,
.btn-cta-glow {
    background: var(--primary-brand) !important;
    border-color: var(--primary-brand) !important;
    color: #ffffff !important;
    box-shadow: none !important;
    animation: none !important;
}

.btn-primary:hover,
.btn-cta-glow:hover,
.nav-cta-btn:hover {
    background: var(--secondary-brand) !important;
    border-color: var(--secondary-brand) !important;
    color: #ffffff !important;
    box-shadow: none !important;
}

.btn-primary::after,
.btn-cta-glow::after {
    display: none !important;
}

.btn-outline-primary {
    border-color: var(--primary-brand) !important;
    color: var(--primary-brand) !important;
}

.btn-outline-primary:hover {
    background: var(--primary-brand) !important;
    color: #ffffff !important;
    box-shadow: none !important;
}

.glass-card,
.premium-shadow,
.shadow-sm,
.faq-container,
.chat-bubble,
.chat-option,
.order-status-form {
    box-shadow: none !important;
}

.glass-card {
    background: rgba(29, 29, 27, 0.72) !important;
    border: 1px solid rgba(255, 255, 255, 0.24) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.glass-card.rounded-pill,
div.rounded-pill.glass-card {
    background: transparent !important;
    border: 0 !important;
    border-bottom: 3px solid var(--primary-brand) !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0 0 7px !important;
}

.glass-card.rounded-pill > span[style*="width: 8px"],
div.rounded-pill.glass-card > span[style*="width: 8px"] {
    display: none !important;
}

.glass-card.rounded-pill .small,
div.rounded-pill.glass-card .small {
    color: #ffffff !important;
    letter-spacing: 0.08em !important;
}

.premium-shadow,
.faq-container,
.bg-white.rounded-4,
.card {
    border: 1px solid var(--border-subtle) !important;
}

.rounded-4,
.rounded-3,
.card,
.faq-container,
.premium-shadow,
[style*="border-radius: 24px"],
[style*="border-radius: 28px"],
[style*="border-radius: 32px"] {
    border-radius: 6px !important;
}

[style*="filter: blur"],
.hero-section::before,
#waarde-berekenen-hero::before,
section[style*="background: radial-gradient"]::before,
.wave-container,
.wave {
    display: none !important;
}

[style*="background: radial-gradient"],
[style*="background: linear-gradient"] {
    background: var(--primary-dark) !important;
}

.mobile-nav-card[style],
.mobile-menu-drawer .mobile-nav-card[style] {
    background: #ffffff !important;
    border-color: var(--border-subtle) !important;
}

.mobile-menu-drawer .mobile-nav-card[style] .mobile-nav-icon {
    background: var(--primary-brand) !important;
    color: #ffffff !important;
}

.hero-section {
    min-height: auto !important;
    max-height: none !important;
    padding: 86px 0 110px !important;
    background: linear-gradient(135deg, rgba(34, 48, 64, 0.78) 0%, rgba(20, 28, 38, 0.94) 100%), url("https://images.unsplash.com/photo-1541625602330-2277a4c46182?q=80&w=1920&auto=format&fit=crop") !important;
    background-size: cover !important;
    background-position: center !important;
    overflow: hidden !important;
    position: relative !important;
}

.hero-section::after {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 450px;
    height: 450px;
    background: rgba(0, 158, 226, 0.15) !important;
    filter: blur(150px) !important;
    border-radius: 50% !important;
    pointer-events: none;
    z-index: 1;
}

.hero-section::before {
    content: "";
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 350px;
    height: 350px;
    background: rgba(255, 130, 0, 0.1) !important;
    filter: blur(120px) !important;
    border-radius: 50% !important;
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.hero-eyebrow {
    display: inline-flex !important;
    align-items: center !important;
    background: rgba(255, 255, 255, 0.12) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 50px !important;
    padding: 6px 16px !important;
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    margin-bottom: 20px !important;
    border-bottom: 0 !important;
}

.hero-title {
    color: #ffffff !important;
    font-weight: 800 !important;
    font-size: clamp(2.2rem, 5vw, 3.8rem) !important;
    line-height: 1.15 !important;
}

.hero-title span {
    color: var(--primary-brand) !important;
}

.hero-lead {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 1.15rem !important;
    line-height: 1.55 !important;
}

.hero-subline {
    color: #ffffff !important;
    font-size: 1.05rem !important;
    font-weight: 600 !important;
}

.hero-subline i,
.hero-trust-list i {
    color: var(--accent-orange) !important;
    filter: none !important;
    text-shadow: none !important;
}

.hero-trust-list {
    font-size: 0.92rem !important;
}

.hero-trust-list span {
    border-right: 1px solid rgba(255, 255, 255, 0.2) !important;
    padding-right: 16px !important;
    color: rgba(255, 255, 255, 0.8) !important;
}

.hero-trust-list span:last-child {
    border-right: 0 !important;
    padding-right: 0 !important;
}

.hero-valuation-panel {
    background: #ffffff !important;
    border: 1px solid rgba(240, 230, 218, 0.7) !important;
    border-radius: 16px !important;
    max-width: 560px !important;
    margin-left: auto !important;
    box-shadow: 0 20px 50px rgba(139, 92, 26, 0.06) !important;
    overflow: hidden !important;
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
}

.hero-valuation-panel:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 25px 60px rgba(139, 92, 26, 0.1) !important;
}

.hero-section .mock-browser {
    max-width: 560px !important;
    margin-left: auto !important;
}

#valuation-iframe {
    border-radius: 16px !important;
    height: 520px !important;
}

section[data-sid="5"],
section[data-sid="6"],
section[data-sid="7"],
section[data-sid="25"] {
    background: var(--bg-light) !important;
}

section[data-sid="5"] .bg-white,
section[data-sid="6"] .bg-white,
section[data-sid="7"] .bg-white,
section[data-sid="25"] .bg-white {
    background: #ffffff !important;
}

section[data-sid="5"] .fa-solid,
section[data-sid="6"] .fa-solid,
section[data-sid="25"] .fa-solid {
    filter: none !important;
}

section[data-sid="5"] .col-md-3 > div,
section[data-sid="6"] .col-md-6 > div,
section[data-sid="25"] .bg-white,
.accordion-item {
    border: 1px solid var(--border-subtle) !important;
    border-radius: 6px !important;
}

section[data-sid="5"] .col-md-3 > div,
section[data-sid="6"] .col-md-6 > div {
    text-align: left !important;
}

section[data-sid="5"] .col-md-3 > div > div:first-child,
section[data-sid="6"] .col-md-6 > div > div:first-child,
section[data-sid="25"] .icon-circle {
    width: 44px !important;
    height: 44px !important;
    border-radius: 6px !important;
    background: #eef9fd !important;
    color: var(--primary-brand) !important;
    font-size: 1.15rem !important;
}

section[data-sid="6"] h2 span::after,
section[data-sid="6"] h2 span span {
    background: var(--primary-brand) !important;
    border-radius: 0 !important;
}

section[data-sid="25"] .position-absolute.bg-white {
    position: static !important;
    transform: none !important;
    display: inline-flex;
    margin-bottom: 18px;
}

section[data-sid="25"] .bg-white.p-5::before,
section[data-sid="25"] .bg-white.p-5 > .position-absolute {
    display: none !important;
}

section[data-sid="25"] .fa-piggy-bank {
    filter: none !important;
    font-size: 58px !important;
}

.accordion-button,
.accordion-item,
.accordion-item[style] {
    background: #ffffff !important;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-brand) !important;
    background: #ffffff !important;
}

.accordion-button:focus {
    border-color: var(--primary-brand) !important;
    box-shadow: 0 0 0 0.15rem rgba(0, 158, 226, 0.16) !important;
}

footer,
footer [style*="background: var(--primary-dark)"],
.qinox-banner {
    background: var(--primary-dark) !important;
}

footer .rounded-4 {
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.22) !important;
}

@media (max-width: 991.98px) {
    .hero-section {
        min-height: auto !important;
        padding: 58px 0 42px !important;
        background: linear-gradient(135deg, rgba(34, 48, 64, 0.88) 0%, rgba(20, 28, 38, 0.96) 100%), url("https://images.unsplash.com/photo-1541625602330-2277a4c46182?q=80&w=1920&auto=format&fit=crop") !important;
        background-size: cover !important;
        background-position: center top !important;
    }

    .hero-title {
        font-size: 2.4rem !important;
    }

    .hero-valuation-panel {
        margin-top: 20px;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding-top: 42px !important;
        padding-bottom: 32px !important;
    }

    .hero-trust-list span {
        border-right: 0;
        padding-right: 0;
    }

    section {
        padding-top: 42px !important;
        padding-bottom: 42px !important;
    }
}

/* Homepage content blocks inspired by the reference flow */
.home-hero-proof {
    position: relative;
    z-index: 5;
    margin: -70px 0 0;
}

.home-proof-card {
    height: 100%;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: #ffffff;
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    min-height: 124px;
    padding: 20px;
}

.home-proof-card i {
    color: var(--primary-brand);
    font-size: 1.2rem !important;
    margin-top: 3px;
}

.home-proof-card h3 {
    margin: 0 0 7px;
    font-size: 1.05rem !important;
    font-weight: 800;
    color: var(--primary-dark) !important;
}

.home-proof-card p {
    margin: 0;
    color: var(--text-muted) !important;
    font-size: 0.9rem !important;
    line-height: 1.45 !important;
}

.home-intro-section {
    padding-top: 76px !important;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    color: var(--primary-brand);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-bottom: 3px solid var(--primary-brand);
    padding-bottom: 7px;
}

.home-section-heading {
    max-width: 720px;
    color: var(--primary-dark) !important;
    font-size: clamp(2rem, 4vw, 3.4rem) !important;
    line-height: 1.08 !important;
    font-weight: 800 !important;
    letter-spacing: 0 !important;
}

.home-section-lead {
    max-width: 660px;
    color: var(--text-muted) !important;
    font-size: 1.12rem !important;
    line-height: 1.65 !important;
}

.home-check-list {
    display: grid;
    gap: 12px;
}

.home-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--primary-dark);
    font-size: 1rem !important;
    font-weight: 700;
    line-height: 1.45 !important;
}

.home-check-list i {
    color: var(--primary-brand) !important;
    margin-top: 4px;
}

.home-image-panel,
.home-split-image {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--border-subtle);
}

.home-image-panel img,
.home-split-image img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.home-image-note,
.home-split-badge {
    position: absolute;
    right: 18px;
    bottom: 18px;
    display: grid;
    gap: 2px;
    background: #ffffff;
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    padding: 13px 16px;
}

.home-image-note strong,
.home-split-badge strong {
    color: var(--primary-brand);
    font-size: 1.4rem;
    line-height: 1;
}

.home-image-note span,
.home-split-badge span {
    color: var(--text-muted);
    font-size: 0.8rem !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.home-mini-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-top: 16px;
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    overflow: hidden;
    background: var(--border-subtle);
}

.home-mini-stats > div {
    background: #ffffff;
    padding: 16px;
}

.home-mini-stats strong {
    display: block;
    color: var(--primary-brand);
    font-size: 1.45rem;
    line-height: 1;
}

.home-mini-stats span {
    display: block;
    margin-top: 6px;
    color: var(--text-muted);
    font-size: 0.78rem !important;
    font-weight: 700;
    line-height: 1.25 !important;
}

.home-support-card {
    display: flex;
    gap: 16px;
    margin-top: 16px;
    padding: 20px;
    background: #ffffff;
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
}

.home-support-card > i {
    color: var(--primary-brand);
    font-size: 1.35rem !important;
    margin-top: 3px;
}

.home-support-card h3 {
    margin: 0 0 7px;
    color: var(--primary-dark) !important;
    font-size: 1.1rem !important;
    font-weight: 800;
}

.home-support-card p {
    margin: 0;
    color: var(--text-muted) !important;
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
}

.home-step-grid {
    counter-reset: step;
}

.home-step-card,
.home-assurance-card {
    height: 100%;
    background: #ffffff;
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    padding: 26px;
}

.home-step-number {
    color: var(--primary-brand);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 18px;
}

.home-step-icon,
.home-assurance-card > div {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 6px;
    color: var(--primary-brand);
    background: #eef9fd;
}

.home-step-icon i,
.home-assurance-card i {
    font-size: 1.1rem !important;
}

.home-step-card h4,
.home-assurance-card h4 {
    color: var(--primary-dark) !important;
    font-size: 1.16rem !important;
    font-weight: 800;
    margin-bottom: 10px;
}

.home-step-card p,
.home-assurance-card p {
    color: var(--text-muted) !important;
    margin: 0;
    font-size: 0.95rem !important;
    line-height: 1.55 !important;
}

.home-video-card {
    position: relative;
    width: min(100%, 430px);
    margin-left: auto;
    margin-right: auto;
    background: #ffffff;
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    overflow: hidden;
}

.home-steps-video {
    display: block;
    width: 100%;
    aspect-ratio: 9 / 16;
    max-height: 820px;
    object-fit: cover;
    background: var(--primary-dark);
}

.home-video-play {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 0;
    background: rgba(29, 29, 27, 0.34);
    color: #ffffff;
    cursor: pointer;
}

.home-video-play i {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 4px;
    border-radius: 50%;
    background: var(--primary-brand);
    color: #ffffff !important;
    font-size: 1.5rem !important;
}

.home-video-play span {
    padding: 8px 14px;
    border-radius: 6px;
    background: rgba(29, 29, 27, 0.72);
    font-size: 0.92rem !important;
    font-weight: 800;
}

.home-video-card.is-playing .home-video-play {
    display: none;
}

.home-video-caption {
    display: grid;
    gap: 4px;
    padding: 16px 18px;
    background: #ffffff;
    border-top: 1px solid var(--border-subtle);
}

.home-video-caption strong {
    color: var(--primary-dark);
    font-size: 1rem;
    line-height: 1.2;
}

.home-video-caption span {
    color: var(--text-muted);
    font-size: 0.88rem !important;
    line-height: 1.35 !important;
}

.home-sale-cta {
    display: block;
    overflow: hidden;
    background: var(--primary-brand);
    border-radius: 6px;
    padding: 30px 34px;
}

.home-sale-cta h3 {
    color: #ffffff !important;
    font-size: clamp(1.8rem, 3vw, 2.7rem) !important;
    font-weight: 800;
    margin: 0 0 10px;
}

.home-sale-cta p {
    max-width: 520px;
    color: rgba(255, 255, 255, 0.88) !important;
    margin-bottom: 22px;
}

.home-assessment-section {
    background: #ffffff !important;
}

.home-reviews-section {
    border-top: 1px solid var(--border-subtle);
}

.home-review-card {
    background: #ffffff !important;
    border: 1px solid rgba(240, 230, 218, 0.6) !important;
    border-radius: 16px !important;
    padding: 32px !important;
    box-shadow: 0 10px 30px rgba(139, 92, 26, 0.025) !important;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
}

.home-review-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 15px 35px rgba(139, 92, 26, 0.06) !important;
    border-color: rgba(var(--accent-orange-rgb), 0.25) !important;
}

.home-review-stars {
    color: #ffaa00 !important;
    font-size: 0.95rem !important;
    display: flex !important;
    gap: 4px !important;
}

.home-review-title {
    color: var(--primary-dark) !important;
    font-size: 1.2rem !important;
    font-weight: 800 !important;
    line-height: 1.35 !important;
}

.home-review-quote {
    color: var(--text-muted) !important;
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    font-style: italic !important;
}

.home-review-footer {
    border-top: 1px solid rgba(240, 230, 218, 0.5) !important;
    padding-top: 16px !important;
}

.home-review-author {
    font-weight: 700 !important;
    color: var(--primary-dark) !important;
    font-size: 0.9rem !important;
}

.home-review-badge {
    background: rgba(0, 158, 226, 0.06) !important;
    color: var(--primary-brand) !important;
    font-size: 0.75rem !important;
    font-weight: 800 !important;
    padding: 4px 10px !important;
    border-radius: 50px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
}

/* Home Split Section 2x2 Feature Tags */
.home-feature-tag {
    background: #ffffff !important;
    border: 1px solid rgba(240, 230, 218, 0.6) !important;
    border-radius: 12px !important;
    padding: 14px 18px !important;
    box-shadow: 0 4px 12px rgba(139, 92, 26, 0.015) !important;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
    height: 100%;
}

.home-feature-tag:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(139, 92, 26, 0.04) !important;
    border-color: rgba(var(--accent-orange-rgb), 0.2) !important;
}

.feature-tag-icon {
    width: 38px !important;
    height: 38px !important;
    border-radius: 10px !important;
    background: rgba(0, 158, 226, 0.08) !important;
    color: var(--primary-brand) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.1rem !important;
    flex-shrink: 0 !important;
    transition: all 0.3s ease !important;
}

.home-feature-tag:hover .feature-tag-icon {
    background: var(--accent-orange) !important;
    color: #ffffff !important;
}

.feature-tag-text {
    font-weight: 700 !important;
    color: var(--primary-dark) !important;
    font-size: 0.95rem !important;
    line-height: 1.3 !important;
}

@media (max-width: 991.98px) {
    .home-hero-proof {
        position: relative;
        margin-top: 22px;
    }

    .home-intro-section {
        padding-top: 58px !important;
    }

    .home-video-card {
        width: 100% !important;
        max-width: 480px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

@media (max-width: 575.98px) {
    .home-proof-card,
    .home-step-card,
    .home-assurance-card,
    .home-support-card,
    .home-sale-cta {
        padding: 20px;
    }

    .home-mini-stats {
        grid-template-columns: 1fr;
    }

    .home-video-card {
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* ==========================================================================
   12. Fietsverkopen Theme Enhancements & Accents
   ========================================================================== */

/* Accent Kleuren */
:root {
    --accent-orange: #ff8200;
    --accent-orange-light: #fff5eb;
    --accent-blue-rgb: 0, 158, 226;
    --accent-orange-rgb: 255, 130, 0;
    
    /* Warm & friendly consumer-facing color palette overrides */
    --bg-light: #fdfaf6 !important; /* Soft warm cream */
    --primary-dark: #223040 !important; /* Friendly dark slate/navy instead of charcoal */
    --border-subtle: #f0e6da !important; /* Warm borders */
}

/* Verberg de zwevende WhatsApp-knop */
.whatsapp-button,
.whatsapp-float,
#whatsapp-button,
a[class*="whatsapp"] {
    display: none !important;
}

/* Soft colorful floating blobs in background of sections for high-end organic depth */
section[data-sid="6"],
section[data-sid="26"],
section[data-sid="28"] {
    position: relative;
    overflow: hidden;
}

section[data-sid="6"]::before {
    content: "";
    position: absolute;
    top: 15%;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 130, 0, 0.06) 0%, rgba(255, 130, 0, 0) 70%);
    pointer-events: none;
    z-index: 1;
}

section[data-sid="6"]::after {
    content: "";
    position: absolute;
    bottom: 15%;
    right: -150px;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(0, 158, 226, 0.07) 0%, rgba(0, 158, 226, 0) 70%);
    pointer-events: none;
    z-index: 1;
}

/* Decoratieve oranje strepen en accenten */
.orange-highlight {
    color: var(--accent-orange) !important;
}

/* Friendly Highlighter Marker effect */
.text-orange-underline {
    position: relative;
    display: inline-block;
    z-index: 1;
    color: inherit;
}

.text-orange-underline::after {
    content: "";
    position: absolute;
    left: -2px;
    bottom: -2px;
    width: calc(100% + 4px);
    height: 10px;
    background: rgba(255, 130, 0, 0.35) !important;
    border-radius: 4px !important;
    z-index: -1 !important;
    border: 0 !important;
    opacity: 0.2;
}

/* Section kicker redesigned as friendly pill badges instead of raw text */
.section-kicker {
    display: inline-flex !important;
    align-items: center !important;
    color: var(--accent-orange) !important;
    background: var(--accent-orange-light) !important;
    font-size: 0.8rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.05em !important;
    text-transform: uppercase !important;
    padding: 6px 14px !important;
    border-radius: 50px !important;
    border: 0 !important;
    margin-bottom: 16px !important;
}

/* Herschrijven van de styling voor de home-proof-cards (overlappende trust-cards onder de hero) */
.home-hero-proof {
    margin-top: -60px !important;
    position: relative;
    z-index: 10;
}

.home-proof-card {
    background: #ffffff !important;
    border: 1px solid rgba(240, 230, 218, 0.6) !important;
    border-radius: 16px !important;
    box-shadow: 0 10px 30px rgba(139, 92, 26, 0.03) !important;
    min-height: 124px;
    padding: 24px !important;
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
}

.home-proof-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 15px 35px rgba(139, 92, 26, 0.06) !important;
}

.home-proof-card i {
    color: var(--accent-orange) !important;
    font-size: 1.5rem !important;
    background: var(--accent-orange-light) !important;
    padding: 12px !important;
    border-radius: 50% !important;
    margin-top: 0 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.home-proof-card h3 {
    font-size: 1.15rem !important;
    font-weight: 800;
    margin-bottom: 6px;
    color: var(--primary-dark) !important;
}

/* Custom button styling - rounded pill-shape with playful lift */
.btn-primary,
.btn-cta-glow,
.btn-cta-blue {
    background: var(--primary-brand) !important;
    border-color: var(--primary-brand) !important;
    border-radius: 50px !important; /* Pill style */
    padding: 12px 32px !important;
    font-weight: 700 !important;
    box-shadow: 0 8px 24px rgba(0, 158, 226, 0.15) !important;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
}

.btn-primary:hover,
.btn-cta-glow:hover,
.btn-cta-blue:hover {
    background: var(--secondary-brand) !important;
    border-color: var(--secondary-brand) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 30px rgba(0, 158, 226, 0.28) !important;
    color: #ffffff !important;
}

/* Stappenplan styling */
.home-step-card {
    background: #ffffff !important;
    border: 1px solid rgba(240, 230, 218, 0.6) !important;
    border-radius: 16px !important;
    padding: 30px !important;
    box-shadow: 0 10px 30px rgba(139, 92, 26, 0.025) !important;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
}

.home-step-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 15px 35px rgba(139, 92, 26, 0.06) !important;
    border-color: rgba(var(--accent-orange-rgb), 0.25) !important;
}

/* Playful rounded step badges */
.home-step-number {
    background: linear-gradient(135deg, var(--accent-orange), #ffaa00) !important;
    color: #ffffff !important;
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.25rem !important;
    font-weight: 800 !important;
    box-shadow: 0 6px 16px rgba(255, 130, 0, 0.25) !important;
    flex-shrink: 0 !important;
    margin-bottom: 0 !important;
}

/* Split sections split lay-out */
.home-split-row {
    margin-bottom: 80px;
}

.home-split-image {
    border-radius: 16px !important;
    box-shadow: 0 15px 35px rgba(139, 92, 26, 0.06) !important;
    border: 0 !important;
    overflow: hidden;
}

.home-split-image img {
    aspect-ratio: 16 / 11 !important;
}

/* Fototips grid */
.photo-tips-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.photo-tip-card {
    background: #ffffff;
    border: 1px solid rgba(240, 230, 218, 0.6);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(139, 92, 26, 0.025);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.photo-tip-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(139, 92, 26, 0.06);
}

.photo-tip-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    border-bottom: 1px solid rgba(240, 230, 218, 0.6);
}

.photo-tip-card .photo-tip-label {
    padding: 14px 8px;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary-dark);
}

/* Oranje CTA banner - soft warmth gradient */
.orange-cta-section {
    background: linear-gradient(135deg, #ff8200, #ff9b00) !important;
    padding: 70px 0 !important;
    color: #ffffff !important;
    position: relative;
    overflow: hidden;
}

.orange-cta-section h2 {
    color: #ffffff !important;
    font-weight: 800 !important;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem) !important;
    line-height: 1.15 !important;
}

.orange-cta-pills {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.orange-cta-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1.05rem;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 16px;
    border-radius: 50px;
}

.orange-cta-pill i {
    font-size: 1.1rem;
}

.btn-cta-blue {
    background: #ffffff !important;
    color: var(--primary-brand) !important;
    border-color: #ffffff !important;
    border-radius: 50px !important;
    padding: 14px 38px !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    box-shadow: 0 10px 25px rgba(255, 130, 0, 0.15) !important;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
}

.btn-cta-blue:hover {
    background: var(--bg-light) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 15px 30px rgba(255, 130, 0, 0.25) !important;
}

/* Statistieken & Social proof gallery */
.stats-number-block {
    text-align: center;
    padding: 20px;
}

.stats-number-block strong {
    display: block;
    color: var(--primary-brand);
    font-size: clamp(2.8rem, 5.5vw, 4rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
}

.stats-number-block span {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-muted);
}

.sold-bikes-carousel {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 40px;
}

.sold-bike-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(240, 230, 218, 0.6);
    box-shadow: 0 6px 16px rgba(139, 92, 26, 0.02);
    transition: transform 0.3s ease;
}

.sold-bike-card:hover {
    transform: scale(1.03);
}

.sold-bike-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

/* Footer contact button and styles */
.footer-contact-wrapper {
    margin-bottom: 24px;
}

.btn-footer-contact {
    background: var(--primary-brand) !important;
    border-color: var(--primary-brand) !important;
    color: #ffffff !important;
    border-radius: 50px !important;
    padding: 10px 24px !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    transition: all 0.3s ease !important;
}

.btn-footer-contact:hover {
    background: var(--secondary-brand) !important;
    border-color: var(--secondary-brand) !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
}

/* Responsiveness overrides */
@media (max-width: 991.98px) {
    .photo-tips-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .sold-bikes-carousel {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .orange-cta-pills {
        gap: 12px;
    }
}

@media (max-width: 575.98px) {
    .photo-tips-grid {
        grid-template-columns: 1fr;
    }
    
    .sold-bikes-carousel {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .orange-cta-pill {
        width: 100%;
        justify-content: center;
    }
}

/* Subpage Hero Makeover Styles */
.subpage-hero {
    min-height: 400px !important;
    display: flex !important;
    align-items: center !important;
    background: linear-gradient(135deg, #fdfaf6 0%, #f7f0e6 100%) !important;
    position: relative !important;
    overflow: hidden !important;
    padding: 80px 0 !important;
}

.hero-glow-1 {
    position: absolute !important;
    top: -100px !important;
    right: -100px !important;
    width: 400px !important;
    height: 400px !important;
    background: rgba(0, 158, 226, 0.12) !important;
    filter: blur(120px) !important;
    border-radius: 50% !important;
    pointer-events: none !important;
    z-index: 0 !important;
}

.hero-glow-2 {
    position: absolute !important;
    bottom: -100px !important;
    left: -100px !important;
    width: 300px !important;
    height: 300px !important;
    background: rgba(255, 130, 0, 0.08) !important;
    filter: blur(100px) !important;
    border-radius: 50% !important;
    pointer-events: none !important;
    z-index: 0 !important;
}

.subpage-hero-badge {
    background: rgba(0, 158, 226, 0.06) !important;
    border: 1px solid rgba(0, 158, 226, 0.15) !important;
    border-radius: 50px !important;
    padding: 6px 16px !important;
    display: inline-flex !important;
    align-items: center !important;
    color: var(--primary-brand) !important;
    margin-bottom: 20px !important;
}

.badge-dot {
    width: 8px !important;
    height: 8px !important;
    background: var(--primary-brand) !important;
    border-radius: 50% !important;
    display: inline-block !important;
    margin-right: 10px !important;
    box-shadow: 0 0 10px rgba(0, 158, 226, 0.6) !important;
}

.subpage-hero-title {
    color: var(--primary-dark) !important;
    font-weight: 800 !important;
    font-size: clamp(2.2rem, 5vw, 3.8rem) !important;
    letter-spacing: -1.5px !important;
    line-height: 1.15 !important;
}

.subpage-hero-lead {
    color: var(--text-muted) !important;
    font-size: 1.25rem !important;
    font-weight: 400 !important;
}

/* Base style overrides to convert remaining green button styles to brand blue */
.segmented-btn.active {
    background: linear-gradient(135deg, var(--primary-brand), var(--secondary-brand)) !important;
    box-shadow: 0 4px 12px rgba(0, 158, 226, 0.25) !important;
}

.nav-cta-btn {
    background: linear-gradient(135deg, var(--primary-brand), var(--secondary-brand)) !important;
    box-shadow: 0 4px 14px rgba(0, 158, 226, 0.25) !important;
}

.nav-cta-btn:hover {
    background: var(--secondary-brand) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 18px rgba(0, 158, 226, 0.35) !important;
    color: #ffffff !important;
}
