/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #7B2C26;
    --primary-dark: #5A1F1A;
    --primary-light: #9D4A42;
    --accent-color: #D4A574;
    --text-dark: #2C2C2C;
    --text-light: #666;
    --bg-light: #F8F7F5;
    --bg-white: #FFFFFF;
    --bg-dark: #2C2C2C;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    z-index: 1000;
    transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-lg);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: var(--transition);
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 50%;
}

.navbar.scrolled .nav-social-link {
    color: var(--text-dark);
}

.nav-social-link:hover {
    color: var(--primary-color);
    background: rgba(123, 44, 38, 0.1);
}

.nav-social-link svg {
    width: 24px;
    height: 24px;
}

.nav-logo {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.navbar.scrolled .nav-link {
    color: var(--text-dark);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color);
}

.navbar:not(.scrolled) .nav-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    transition: var(--transition);
}

.navbar.scrolled .nav-toggle span {
    background: var(--primary-color);
}

/* Hero Section */
.hero {
    position: relative;
    height: 90vh;
    min-height: 540px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

/* Hero Video Background (for index-video.html) */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 1;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 2rem;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--accent-color);
    color: white;
}

.btn-primary:hover {
    background: #C49660;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    opacity: 0.8;
    z-index: 2;
    animation: bounce 2s infinite;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-indicator span {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.scroll-arrow {
    font-size: 1.5rem;
}

/* Sections */
.section {
    padding: 5rem 0;
    background: var(--bg-white);
}

.section-alt {
    background: var(--bg-light);
}

.section-dark {
    background: var(--bg-dark);
    color: white;
}

.section-with-image {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
}

.text-light {
    color: rgba(255, 255, 255, 0.95);
}

.intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

#aanbod .intro-text {
    max-width: 100%;
}


.intro-text .aanbod-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
}

#aanbod .intro-text .aanbod-list {
    width: 100%;
    max-width: 100%;
}

.intro-text .aanbod-list li {
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: rgba(123, 44, 38, 0.05);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    line-height: 1.8;
    position: relative;
    padding-left: 3rem;
}

.intro-text .aanbod-list li strong {
    display: block;
    margin-bottom: 0.5rem;
}


.intro-text .aanbod-list li::before {
    content: '📌';
    position: absolute;
    left: 1.5rem;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-color);
}

.section-title-light {
    color: white;
}

.section-title-light::after {
    background: var(--accent-color);
}

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

.text-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.text-content p strong {
    display: block;
    margin-bottom: 0.5rem;
}

.lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--primary-color);
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.content-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    overflow: hidden;
    flex: 0 0 auto;
    width: 100%;
    min-width: 300px;
    max-width: 400px;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.content-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.content-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Carousel voor Evenementen */
.carousel-wrapper {
    position: relative;
    margin-top: 2rem;
    padding: 0 3rem;
}

.carousel-container {
    position: relative;
}

.carousel-track {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.carousel-track::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.carousel-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-btn-prev {
    left: 0;
}

.carousel-btn-next {
    right: 0;
}

.carousel-btn span {
    line-height: 1;
    display: block;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
    align-items: start;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info {
    padding-top: 0;
}

.contact-info h3,
.contact-cta h3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-item {
    display: block;
    margin-bottom: 1rem;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.contact-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin: 0;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--accent-color);
}

.contact-note {
    margin-top: 1rem;
    font-style: italic;
    opacity: 0.8;
}

/* PDF Section */
.pdf-section {
    margin-top: 3rem;
    padding-top: 0;
    border-top: none;
}

.pdf-section-title {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.pdf-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (max-width: 1200px) {
    .pdf-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .pdf-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .pdf-grid {
        grid-template-columns: 1fr;
    }
}

.pdf-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    color: var(--text-dark);
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px solid transparent;
}

.pdf-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.pdf-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.pdf-card h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.pdf-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

.delivery-info {
    text-align: center;
    font-size: 1rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 1rem;
}

/* Lessen Section */
.lessen-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

.lessen-image img {
    width: 70%;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

#lessen .lessen-image img {
    height: 370px;
    object-fit: cover;
}

.lessen-text h4 {
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.themes-list {
    list-style: none;
    padding: 0;
}

.themes-list li {
    padding: 0.25rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
    line-height: 1.6;
}

.themes-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Advies Section */
.advies-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
}

.advies-content {
    width: 100%;
    margin: 0 auto;
}

#advies .advies-list {
    width: 100%;
}

#advies.section {
    padding-bottom: 2rem;
}

#b2b.section {
    padding-top: 2rem;
}

#b2b .b2b-grid {
    width: 100%;
}

/* Zorg dat advies lijst dezelfde breedte heeft als b2b-grid */
#advies .advies-content {
    width: 100%;
}

/* Horizontale lijn tussen Advies en B2B */
.section-divider {
    border: none;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    margin: 2rem auto 0;
    max-width: 1200px;
    width: calc(100% - 4rem);
}

.advies-list li {
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: rgba(123, 44, 38, 0.05);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    line-height: 1.8;
    color: var(--text-dark);
}

.b2b-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.b2b-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    color: var(--text-dark);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.b2b-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.b2b-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.b2b-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.b2b-placeholder span {
    font-size: 4rem;
}

.b2b-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.b2b-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Map */
.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.contact-form-wrapper {
    margin-top: 0;
}

.contact-form-wrapper h3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-info h3 {
    display: none; /* Verberg als er nog een h3 staat */
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.95rem;
}

.required {
    color: var(--accent-color);
}

.form-group input,
.form-group textarea {
    padding: 0.875rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    width: 100%;
    box-sizing: border-box;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(232, 197, 71, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn {
    align-self: flex-start;
    margin-top: 0.5rem;
}

.contact-form .btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.contact-map-button {
    margin-top: 0.5rem;
    display: flex;
    align-items: flex-start;
}

.contact-map {
    margin-top: 0;
}

.contact-form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-form-message.success {
    background: rgba(76, 175, 80, 0.2);
    border: 2px solid rgba(76, 175, 80, 0.5);
    color: #a5d6a7;
}

.contact-form-message.error {
    background: rgba(244, 67, 54, 0.2);
    border: 2px solid rgba(244, 67, 54, 0.5);
    color: #ef9a9a;
}

.contact-map-button {
    margin-top: 0.5rem;
    display: flex;
    align-items: flex-start;
}

.contact-map {
    margin-top: 0;
}

.contact-map h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer-content p {
    margin: 0.5rem 0;
    opacity: 0.9;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-separator {
    margin: 0 0.5rem;
}

.footer-social {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: var(--transition);
    text-decoration: none;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.facebook-link:hover {
    background: #1877F2;
}

/* VaDoBot Chat Button */
.vadobot-chat-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    text-decoration: none;
    gap: 0;
    padding: 0;
}

.vadobot-chat-button:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.vadobot-chat-button svg {
    width: 24px;
    height: 24px;
}

.vadobot-tooltip {
    position: absolute;
    right: calc(100% + 15px);
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    font-size: 0.95rem;
    white-space: nowrap;
    opacity: 1;
    pointer-events: auto;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    font-weight: 500;
    cursor: pointer;
    display: inline-block;
    white-space: nowrap;
}

.vadobot-avatar {
    position: absolute;
    bottom: calc(100% + 15px);
    right: 0;
    transform: none;
    width: 160px;
    height: 160px;
    object-fit: contain;
    display: none;
    background: transparent;
    padding: 0;
    box-shadow: none;
    border: none;
    z-index: 1001;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.vadobot-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 8px solid transparent;
    border-left-color: var(--primary-color);
    transition: var(--transition);
}

.vadobot-chat-button:hover .vadobot-tooltip,
.vadobot-tooltip:hover {
    background: var(--primary-dark);
    transform: translateY(-50%) translateX(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(123, 44, 38, 0.4);
}

.vadobot-chat-button:hover .vadobot-avatar,
.vadobot-tooltip:hover .vadobot-avatar {
    display: block;
    animation: avatarFadeIn 0.3s ease;
}

.vadobot-chat-button:hover .vadobot-tooltip::after,
.vadobot-tooltip:hover::after {
    border-left-color: var(--primary-dark);
}

@keyframes tooltipPulse {
    0%, 100% {
        transform: translateX(-5px) scale(1.05);
    }
    50% {
        transform: translateX(-8px) scale(1.08);
    }
}

@keyframes avatarFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* VaDoBot Section */
.vadobot-content-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
    margin-top: 2rem;
}

.vadobot-image-container {
    text-align: center;
    background: transparent;
}

.vadobot-main-image {
    width: 100%;
    max-width: 320px;
    height: auto;
    background: transparent;
    mix-blend-mode: normal;
}

.vadobot-text-content .lead {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.vadobot-highlight {
    background: var(--bg-light);
    padding: 1rem 1.5rem;
    border-left: 4px solid var(--accent-color);
    border-radius: 5px;
    margin: 1.5rem 0;
    font-size: 1.05rem;
}

.vadobot-subtitle {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.vadobot-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.vadobot-features li {
    padding: 0.25rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
    line-height: 1.8;
}

#vadobot .vadobot-features li {
    color: rgba(255, 255, 255, 0.95);
}

#vadobot .vadobot-text-content h4 {
    color: rgba(255, 255, 255, 0.95);
}

.vadobot-features li::before {
    content: none;
}

.vadobot-features li a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.vadobot-features li a:hover {
    text-decoration: underline;
}

.vadobot-cta {
    margin-top: 2rem;
}

/* Newsletter Section */
.newsletter-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.newsletter-intro {
    text-align: left;
}

.newsletter-intro .lead {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.newsletter-intro p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
}

.newsletter-form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin: 0;
}

.newsletter-form-fields {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.mc-field-group {
    width: 100%;
}

.mc-field-group input {
    width: 100%;
    padding: 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    background: var(--bg-light);
    color: var(--text-dark);
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.mc-field-group input::placeholder {
    color: var(--text-light);
    opacity: 0.7;
}

.mc-field-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(123, 44, 38, 0.1);
}

.mc-field-group input:valid {
    border-color: var(--accent-color);
}

.newsletter-form .btn {
    width: 100%;
    margin-top: 0.5rem;
    padding: 1.25rem;
}

#mce-error-response,
#mce-success-response {
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1.5rem;
    font-size: 0.95rem;
}

#mce-error-response {
    background: rgba(220, 53, 69, 0.1);
    color: #d32f2f;
    border: 2px solid rgba(220, 53, 69, 0.3);
}

#mce-success-response {
    background: rgba(40, 167, 69, 0.1);
    color: #2e7d32;
    border: 2px solid rgba(40, 167, 69, 0.3);
}

.marketing-consent-text {
    width: 100%;
    max-width: 1200px;
    margin: 1.5rem auto 0;
    padding: 0 1rem;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-light);
    text-align: left;
}

.marketing-consent-text h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.marketing-consent-text p {
    margin: 0;
}

.gdpr-footer-text {
    width: 100%;
    max-width: 1200px;
    margin: 2rem auto 0;
    padding: 0 1rem;
    font-size: 0.55rem;
    line-height: 1.6;
    color: var(--text-light);
    text-align: left;
}

.gdpr-footer-text p {
    margin-bottom: 1rem;
}

.gdpr-footer-text p:last-child {
    margin-bottom: 0;
}

.gdpr-footer-text a {
    color: var(--primary-color);
    text-decoration: underline;
}


/* Opendeurdag Popup - Simple HTML5 Modal */
.opendeurdag-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.opendeurdag-popup.show {
    opacity: 1;
}

.opendeurdag-popup-content {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.opendeurdag-popup.show .opendeurdag-popup-content {
    transform: scale(1);
    opacity: 1;
}

.opendeurdag-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.opendeurdag-close:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.opendeurdag-popup-content h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}

.opendeurdag-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.opendeurdag-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 15px;
}

.opendeurdag-detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.opendeurdag-detail-item strong {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.opendeurdag-detail-text {
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
}

.opendeurdag-buttons {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.opendeurdag-buttons .btn {
    min-width: 150px;
}

/* Opendeurdag Collapsible Button in Navbar */
.nav-opendeurdag-item {
    position: relative;
    list-style: none;
}

.nav-opendeurdag-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
}

.nav-opendeurdag-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(123, 44, 38, 0.3);
}

.nav-opendeurdag-btn-icon {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.nav-opendeurdag-item.active .nav-opendeurdag-btn-icon {
    transform: rotate(180deg);
}

.nav-opendeurdag-content {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    min-width: 370px;
    max-width: 520px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(-10px);
    z-index: 1001;
}

.nav-opendeurdag-item.active .nav-opendeurdag-content {
    max-height: 600px;
    opacity: 1;
    transform: translateY(0);
}

.nav-opendeurdag-inner {
    padding: 1.5rem;
}

.nav-opendeurdag-inner h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    margin-top: 0;
}

.nav-opendeurdag-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

.nav-opendeurdag-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 10px;
}

.nav-opendeurdag-detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.nav-opendeurdag-detail-item strong {
    color: var(--primary-color);
    font-size: 0.95rem;
    font-weight: 700;
}

.nav-opendeurdag-detail-text {
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 0.9rem;
    margin: 0;
}

/* Mobile styles for collapsible button */
@media (max-width: 768px) {
    .nav-opendeurdag-item {
        width: 100%;
        margin-top: 1rem;
    }
    
    .nav-opendeurdag-btn {
        width: 100%;
        justify-content: center;
    }
    
    .nav-opendeurdag-content {
        position: static;
        width: 100%;
        min-width: auto;
        max-width: none;
        margin-top: 0.5rem;
        box-shadow: none;
        border: 1px solid rgba(123, 44, 38, 0.2);
    }
    
    .nav-opendeurdag-inner {
        padding: 1.25rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .container {
        padding: 0 1rem;
    }

    .vadobot-chat-button {
        right: 1rem;
        bottom: 1rem;
        width: 50px;
        height: 50px;
    }

    .vadobot-tooltip {
        right: 70px;
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
    }
    
    .vadobot-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .newsletter-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .newsletter-intro {
        text-align: center;
    }

    .vadobot-main-image {
        max-width: 240px;
    }
    
    @media (max-width: 480px) {
        .vadobot-tooltip {
            right: 60px;
            font-size: 0.75rem;
            padding: 0.5rem 0.75rem;
        }
        
        .vadobot-chat-button {
            width: 50px;
            height: 50px;
        }
    }

    .opendeurdag-popup-content {
        width: 95%;
        padding: 2rem 1.5rem;
    }

    .opendeurdag-buttons .btn {
        width: 100%;
        max-width: 250px;
    }

    .opendeurdag-details {
        padding: 1rem;
        gap: 1rem;
    }

    .opendeurdag-detail-item strong {
        font-size: 1rem;
    }

    .opendeurdag-detail-text {
        font-size: 0.95rem;
    }

    .features-grid,
    .content-grid,
    .contact-grid,
    .b2b-grid {
        grid-template-columns: 1fr;
    }
    
    .pdf-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lessen-content {
        grid-template-columns: 1fr;
    }

    .lessen-image {
        order: -1;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section {
        padding: 3rem 0;
    }

    .feature-card,
    .content-card {
        padding: 1.5rem;
    }
}

