/* Reset en basis styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #4a90e2 0%, #2c5aa0 100%);
    overflow-x: hidden;
}

.logo {
    max-width: 200px;
    margin-top: 10px;
}

/* Glas effect */
.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(74, 144, 226, 0.37);
}

/* Glow effect */
.glow {
    box-shadow: 0 0 20px rgba(74, 144, 226, 0.7);
}

/* Animaties */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Navigatie */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #f7f7f7;
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.nav-logo h2 {
    color: #4a90e2;
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #4a90e2;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #4a90e2;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hamburger menu met Font Awesome icons */
.hamburger {
    display: none;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
}

.hamburger i {
    font-size: 1.5rem;
    color: #4a90e2;
    transition: all 0.3s ease;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hamburger-open {
    opacity: 1;
}

.hamburger-close {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(180deg);
}

.hamburger.active .hamburger-open {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(-180deg);
}

.hamburger.active .hamburger-close {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0deg);
}

/* Hero sectie */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)),url('/img/bg_deal.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*background: linear-gradient(135deg, rgba(74, 144, 226, 0.1) 0%, rgba(44, 90, 160, 0.1) 100%);*/
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #f0f0f0;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.cta-button {
    background: linear-gradient(135deg, #4a90e2 0%, #2c5aa0 100%);
    color: white;
    padding: 1rem 1rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(74, 144, 226, 0.4);
    animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(74, 144, 226, 0.6);
    background: linear-gradient(135deg, #5ba0f2 0%, #3c6ab0 100%);
}

.cta-button:active {
    transform: translateY(-1px);
}

/* Responsieve styling */
@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
        min-height: 100vh;
        padding: 2rem 0;
    }

    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .hero-content {
        padding: 0 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 100vh;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .cta-button {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero-content {
        padding: 0 1rem;
    }
}

/* Parallax effect voor moderne browsers */
@supports (background-attachment: fixed) {
    .hero {
        background-attachment: fixed;
    }
}

/* Fallback voor browsers die geen backdrop-filter ondersteunen */
@supports not (backdrop-filter: blur(15px)) {
    .hero-overlay {
        background: linear-gradient(135deg, rgba(74, 144, 226, 0.3) 0%, rgba(44, 90, 160, 0.5) 100%);
    }
}

/* Secties */
.section {
    padding: 5rem 0;
    margin: 2rem 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffffff;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #4a90e2;
    border-radius: 2px;
}

.section-title sup {
    font-size: 0.6em;
    vertical-align: super;
}

.nav-item sup {
    font-size: 0.6em;
    vertical-align: super;
}



/* Features grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(74, 144, 226, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: #e0e0e0;
    line-height: 1.6;
}

/* Visie sectie */
.vision-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.vision-description {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.vision-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #e0e0e0;
    font-weight: 500;
}

/* Prijzen Sectie */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    background: rgba(52, 152, 219, 0.2);
    border: 1px solid rgba(52, 152, 219, 0.3);
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.1);
}

.pricing-card.featured:hover {
    background: rgba(52, 152, 219, 0.3);
    border: 1px solid rgba(52, 152, 219, 0.4);
}

.pricing-header {
    position: relative;
    margin-bottom: 1.5rem;
}

.pricing-header h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.pricing-badge {
    position: absolute;
    top: -1rem;
    right: -1rem;
    background: rgba(46, 204, 113, 0.8);
    color: white;
    padding: 0.3rem 0.8rem;
    font-size: 0.8rem;
    font-weight: bold;
    backdrop-filter: blur(5px);
}

.featured-badge {
    background: rgba(52, 152, 219, 0.8);
}

.pricing-price {
    text-align: center;
    margin-bottom: 2rem;
}

.price-amount {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.price-period {
    color: #e0e0e0;
    font-size: 0.9rem;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
}

.pricing-features li {
    color: #e0e0e0;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.pricing-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #46d160;
    font-weight: bold;
}

/* Kortingen sectie */
.pricing-discounts {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
}

.pricing-discounts h3 {
    color: #ffffff;
    text-align: center;
    margin-bottom: 1.5rem;
}

.discount-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.discount-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.discount-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.discount-info {
    display: flex;
    flex-direction: column;
}

.discount-info strong {
    color: #ffffff;
    margin-bottom: 0.3rem;
}

.discount-info span {
    color: #e0e0e0;
    font-size: 0.9rem;
}

.pricing-note {
    text-align: center;
    margin-top: 2rem;
}

.pricing-note p {
    color: #bbb;
    font-style: italic;
}

/* Responsive design */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .price-amount {
        font-size: 2rem;
    }

    .discount-grid {
        grid-template-columns: 1fr;
    }
}


/* Contact sectie */
.contact-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-info h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-info p {
    color: #e0e0e0;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    margin-bottom: 1rem;
    color: #e0e0e0;
    font-size: 1.1rem;
    padding: 1rem;
    transition: all 0.3s ease;
}

.contact-item strong {
    color: #ffffff;
}


.contact-item.green {
    background: rgba(37, 211, 102, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(37, 211, 102, 0.3);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.1);
}

.contact-item.green:hover {
    background: rgba(37, 211, 102, 0.3);
    border: 1px solid rgba(37, 211, 102, 0.4);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.2);
    transform: translateY(-2px);
}

/* WhatsApp link styling */
.whatsapp-mobile-only {
    text-decoration: none;
    display: block;
}

.whatsapp-mobile-only:hover {
    text-decoration: none;
}

/* Normale contact items krijgen ook wat styling */
.contact-details a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.contact-details a:hover {
    text-decoration: none;
}

.contact-item:not(.green) {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-item:not(.green):hover {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Mobiele optimalisatie */
@media (max-width: 768px) {
    .contact-item {
        padding: 0.8rem;
        font-size: 1rem;
    }

    .contact-item.green {
        margin-bottom: 1.5rem;
    }
}


/* Footer */
.footer {
    background-color: #f7f7f7;
    padding: 3rem 0 1rem;
    color: #333;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    color: #333;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: #333;
}

.footer-section p {
    margin-bottom: 0.5rem;
    color: #333;
}

.partners {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
}

.partner-logo img {
    max-height: 80px;
    max-width: 150px;
    width: auto;
    height: auto;
    opacity: 0.5;
    transition: opacity 0.6s ease;
    object-fit: contain;
}

.partner-logo img:hover {
    opacity: 1;
}

/* Mobiele styling voor partners */
@media (max-width: 768px) {
    .partners {
        justify-content: center;
        gap: 1.5rem;
    }

    .partner-logo {
        height: 60px;
    }

    .partner-logo img {
        max-height: 60px;
        max-width: 120px;
    }
}

@media (max-width: 480px) {
    .partners {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }

    .partner-logo {
        height: 50px;
        width: 100%;
    }

    .partner-logo img {
        max-height: 50px;
        max-width: 100px;
    }
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #333;
    font-size: 0.8rem;
}

/* Responsieve styling */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 81px;
        flex-direction: column;
        background-color: #f7f7f7;
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 1rem 0;
        z-index: 1000;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 0.1rem 0;
    }

    .nav-link {
        font-size: 1.1rem;
        display: block;
        transition: all 0.3s ease;
    }

    .nav-link:hover {
        color: #333;
        transform: translateY(-2px);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .vision-stats {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

    .container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section {
        padding: 3rem 0;
    }
}

/* CRM Sectie Styling */
.crm-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.crm-intro p {
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.crm-intro strong {
    color: #ffffff;
}

/* Features table wrapper */
.features-table-wrapper {
    margin: 2rem 0;
}

/* Features Table Container */
.features-table-container {
    overflow-x: auto;
    margin-top: 3rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
}

/* Features Table Styling */
.features-table {
    width: 100%;
    border-collapse: collapse;
    color: #ffffff;
    background: transparent;
}

.features-table td {
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    vertical-align: top;
}

.features-table td:first-child {
    font-weight: 600;
    color: #ffffff;
    width: 30%;
    background: rgba(74, 144, 226, 0.2);
}

.features-table td:last-child {
    color: #e0e0e0;
    width: 70%;
}

.features-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease;
}

.features-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

.features-table tbody tr:last-child {
    border-bottom: none;
}

.features-table i {
    margin-right: 0.8rem;
    font-size: 1.1em;
    width: 20px;
    text-align: center;
}

/* Asterisk styling */
.asterisk {
    font-weight: bold;
    font-size: 0.9em;
    margin-left: 2px;
}

/* Table footnote */
.table-footnote {
    margin-top: 1rem;
    padding-top: 0.5rem;
}

.table-footnote p {
    font-size: 0.9rem;
    color: #e0e0e0;
    margin: 0;
    font-style: italic;
}

.table-footnote .asterisk {
    color: #ffffff;
    font-weight: bold;
    font-size: 0.8em;
    font-style: normal;
}

/* Responsieve styling */
@media (max-width: 768px) {
    .features-table-container {
        margin-top: 2rem;
    }

    .features-table {
        font-size: 0.9rem;
    }

    .features-table td {
        padding: 1rem;
    }

    .features-table td:first-child {
        width: 35%;
    }

    .features-table td:last-child {
        width: 65%;
    }

    .features-table i {
        margin-right: 0.5rem;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .features-table {
        font-size: 0.8rem;
    }

    .features-table td {
        padding: 0.8rem;
        display: block;
        width: 100% !important;
    }

    .features-table td:first-child {
        border-right: none;
        font-size: 0.9rem;
        padding-bottom: 0.5rem;
        background: rgba(74, 144, 226, 0.15);
    }

    .features-table td:last-child {
        padding-top: 0.5rem;
        background: transparent;
    }

    .table-footnote {
        margin-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    .crm-intro p {
        font-size: 1rem;
    }

    .features-table th,
    .features-table td {
        padding: 0.6rem 0.3rem;
        font-size: 0.8rem;
    }
}

/* CRM Image Styling */
.crm-image {
    text-align: center;
    margin: 2rem 0;
}

.crm-image img {
    max-width: 70%;
    height: auto;
    box-shadow: 0 15px 35px rgba(74, 144, 226, 0.3);
    transition: all 0.3s ease;
}

.crm-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(74, 144, 226, 0.4);
}

/* Responsieve styling voor de afbeelding */
@media (max-width: 768px) {
    .crm-image img {
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .crm-image img {
        max-width: 95%;
    }
}

.impressie-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('/img/bg_impression.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 !important;
    margin: 0 !important;
}

.features-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('/img/bg_features.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 !important;
    margin: 0 !important;
}

.platform-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)),
                url('/img/bg_platform.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 !important;
    margin: 0 !important;
}

/* Contact sectie met achtergrondafbeelding */
.contact-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2)),
                url('/img/bg_contact.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 !important;
    margin: 0 !important;
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.2) 0%, rgba(44, 90, 160, 0.3) 100%);
    z-index: 1;
}

.contact-bg .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.contact-bg .section-title {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Contact info box styling */
.contact-info {
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem 2.5rem;
    text-align: center;
    backdrop-filter: blur(15px);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.3);
}

.contact-info h3 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.contact-info p {
    color: #f0f0f0;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-details a {
    text-decoration: none;
    color: inherit;
}

.contact-item {
    margin-bottom: 1.5rem;
    color: #f0f0f0;
    font-size: 1.1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

.contact-item strong {
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Responsieve styling */
@media (max-width: 768px) {
    .contact-bg {
        background-attachment: scroll;
        min-height: 80vh;
    }

    .contact-bg .container {
        padding: 3rem 1rem;
    }

    .contact-info {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }

    .contact-info h3 {
        font-size: 1.5rem;
    }

    .contact-info p {
        font-size: 1rem;
    }

    .contact-item {
        font-size: 1rem;
        padding: 0.8rem;
    }
}

@media (max-width: 480px) {
    .contact-bg {
        min-height: 70vh;
    }

    .contact-bg .container {
        padding: 2rem 1rem;
    }
    .contact-info {
        padding: 1.5rem 1rem;
    }

    .contact-info h3 {
        font-size: 1.3rem;
    }

    .contact-item {
        font-size: 0.9rem;
        padding: 0.7rem;
    }
}

/* Parallax effect voor moderne browsers */
@supports (background-attachment: fixed) {
    .contact-bg {
        background-attachment: fixed;
    }
}

/* Fallback voor browsers die geen backdrop-filter ondersteunen */
@supports not (backdrop-filter: blur(15px)) {
    .contact-info {
        background: rgba(74, 144, 226, 0.8);
    }
}

/* Asterisk styling */
.asterisk {
    color: #ffffff;
    font-weight: bold;
    font-size: 0.9em;
    margin-left: 2px;
}

/* Table footnote */
.table-footnote {
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding-top: 0.5rem;
}

.table-footnote p {
    font-size: 0.9rem;
    color: #ffffff;
    margin: 0;
    font-style: italic;
}

.table-footnote .asterisk {
    color: #ffffff;
    font-weight: bold;
    font-size: 0.8em;
    font-style: normal;
}

/* WhatsApp button - alleen zichtbaar op mobiel */
.whatsapp-mobile-only {
    display: none;
}

/* Toon WhatsApp button op mobiele apparaten */
@media (max-width: 768px) {
    .whatsapp-mobile-only {
        display: block;
    }
}


/* Thumbnail Gallery */
.thumbnail-slideshow {
    width: 100%;
    margin: 0 auto;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
}

/* Thumbnails Grid */
.thumbnails-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    justify-items: center;
}

/* Thumbnail Item Container */
.thumbnail-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 150px;
}

/* Thumbnail Styling */
.thumbnail {
    position: relative;
    width: 100%;
    height: 150px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    -webkit-tap-highlight-color: transparent;
    border: 2px solid #f3f3f3;
    margin-bottom: 0.5rem;
}

.thumbnail:hover,
.thumbnail:active {
    box-shadow: 0 15px 35px rgba(74, 144, 226, 0.4);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    pointer-events: none;
}

/* Thumbnail Caption */
.thumbnail-caption {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    padding: 0.3rem 0.5rem;
    width: 100%;
    line-height: 1.2;
}

/* Thumbnail Overlay */
.thumbnail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.thumbnail:hover .thumbnail-overlay {
    opacity: 1;
}

.thumbnail-overlay i {
    font-size: 2rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.lightbox.active {
    display: block;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
}

.lightbox-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: zoomIn 0.3s ease;
}

.lightbox-content img {
    max-width: 90%;
    max-height: 80%;
    object-fit: contain;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}

/* Lightbox Navigation */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.prev-lightbox {
    left: 20px;
}

.next-lightbox {
    right: 20px;
}

.lightbox-nav:hover,
.lightbox-nav:active {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 10;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.close-btn:hover,
.close-btn:active {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

/* Lightbox Caption */
.lightbox-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Lightbox Indicator */
.lightbox-indicator {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.6);
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Animaties */
@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Tablet styling */
@media (max-width: 768px) {
    .thumbnail-slideshow {
        padding: 1rem;
    }

    .thumbnails-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 1rem;
    }

    .thumbnail-item {
        max-width: 100px;
    }

    .thumbnail {
        height: 80px;
    }

    .thumbnail-caption {
        font-size: 0.8rem;
    }

    .lightbox-nav {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }

    .close-btn {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
}

/* Mobiele styling */
@media (max-width: 480px) {
    .thumbnail-slideshow {
        padding: 0.5rem;
    }

    .thumbnails-grid {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        gap: 0.8rem;
    }

    .thumbnail-item {
        max-width: 80px;
    }

    .thumbnail {
        height: 60px;
        margin-bottom: 0.3rem;
    }

    .thumbnail-caption {
        font-size: 0.7rem;
        padding: 0.2rem 0.3rem;
    }

    /* Verberg overlay op mobiel - gebruik alleen :active */
    .thumbnail-overlay {
        opacity: 0;
    }

    .thumbnail:active .thumbnail-overlay {
        opacity: 1;
    }

    .lightbox-nav {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }

    .prev-lightbox {
        left: 15px;
    }

    .next-lightbox {
        right: 15px;
    }

    .close-btn {
        top: 15px;
        right: 15px;
        width: 25px;
        height: 25px;
        font-size: 1rem;
    }

    .lightbox-caption {
        bottom: 15px;
        font-size: 1rem;
        padding: 0.8rem 1.2rem;
        max-width: 85%;
    }

    .lightbox-indicator {
        top: 15px;
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
}

/* Zeer kleine schermen */
@media (max-width: 320px) {
    .thumbnails-grid {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        gap: 0.5rem;
    }

    .thumbnail-item {
        max-width: 80px;
    }

    .thumbnail {
        height: 60px;
    }

    .thumbnail-caption {
        font-size: 0.65rem;
    }

    .lightbox-nav {
        width: 25px;
        height: 25px;
        font-size: 1rem;
    }

    .close-btn {
        width: 25px;
        height: 25px;
        font-size: 1rem;
    }
}

/* Long press feedback */
.thumbnail.long-press-active {
    transform: scale(0.95);
    opacity: 0.7;
    box-shadow: 0 0 20px rgba(74, 144, 226, 0.6);
    border-color: rgba(74, 144, 226, 0.8);
}

/* Strikte long press feedback */
.thumbnail.long-press-active {
    transform: scale(0.95);
    opacity: 0.8;
    transition: all 0.1s ease;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.3);
}

.thumbnail.long-press-progress {
    position: relative;
    overflow: hidden;
}

.thumbnail.long-press-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    animation: longPressProgress 0.3s linear;
}

.thumbnail.long-press-success {
    transform: scale(1.1);
    transition: all 0.2s ease;
}

@keyframes longPressProgress {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

/* Disable touch callout op mobiel */
.thumbnail {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

/* Cookie Banner Styling */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: white;
    z-index: 9999;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-text h3 {
    margin: 0 0 10px 0;
    font-size: 1.2em;
}

.cookie-text p {
    margin: 0;
    font-size: 0.9em;
    opacity: 0.9;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9em;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: #28a745;
    color: white;
}

.cookie-btn.accept:hover {
    background: #218838;
}

.cookie-btn.decline {
    background: #dc3545;
    color: white;
}

.cookie-btn.decline:hover {
    background: #c82333;
}

.cookie-btn.settings {
    background: #6c757d;
    color: white;
}

.cookie-btn.settings:hover {
    background: #5a6268;
}

/* Cookie Modal */
.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: white;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-modal-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-modal-header h3 {
    margin: 0;
    color: #333;
}

.cookie-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.cookie-modal-body {
    padding: 20px;
}

.cookie-category {
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.cookie-category h4 {
    margin: 0 0 5px 0;
    color: #333;
}

.cookie-category p {
    margin: 0;
    color: #666;
    font-size: 0.9em;
}

.cookie-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
    flex-shrink: 0;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #2196F3;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

input:disabled + .slider {
    background-color: #28a745;
    cursor: not-allowed;
}

.cookie-modal-footer {
    padding: 20px;
    border-top: 1px solid #eee;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }

    .cookie-category {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}






