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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #1d1d1f;
    background-color: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

/* Contact Info Cards - Nu met de grijze rand zoals de rest */
.contact-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1.5rem;
    text-align: center;
    /* Grijze rand die matcht met de rest van de site */
    border: 2px solid #e5e5e5; 
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.05);
}

.contact-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #2D5F3F;
    letter-spacing: -0.5px;
}

/* Terminal / Console Form Styling */
.console-row-stacked {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.console-hint {
    color: #666;
    font-size: 0.85rem;
    font-style: italic;
    font-weight: normal;
}

.console-input {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 0.75rem;
    color: #1d1d1f; /* Donkere tekst voor leesbaarheid */
    padding: 1rem;
    font-family: 'Courier New', Courier, monospace;
}

.console-input:focus {
    border-color: #2D5F3F;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(45, 95, 63, 0.1);
}

@media (min-width: 768px) {
    h1 {
        font-size: 3.75rem;
    }

    h2 {
        font-size: 2.5rem;
    }
}

/* Icons */
.icon {
    width: 1.5rem;
    height: 1.5rem;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.icon-sm {
    width: 1rem;
    height: 1rem;
}

.icon-lg {
    width: 3rem;
    height: 3rem;
}

.icon-check {
    width: 1.25rem;
    height: 1.25rem;
    color: #2D5F3F;
}

.icon-arrow {
    transition: transform 0.3s ease;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
}

.btn-primary {
    background-color: #2D5F3F;
    color: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background-color: #1F4D36;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

.btn-outline {
    border: 2px solid white;
    color: white;
    background-color: transparent;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-outline:hover {
    background-color: white;
    color: #1d1d1f;
    transform: scale(1.05);
}

.btn-dark {
    background-color: #1d1d1f;
    color: white;
}

.btn-dark:hover {
    background-color: #424245;
    transform: scale(1.05);
}

.btn-green {
    background: linear-gradient(to right, #2D5F3F, #3A6B4F);
    color: white;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.btn-green:hover {
    background: linear-gradient(to right, #1F4D36, #2D5F3F);
    transform: scale(1.05);
}

.btn-gradient {
    background: linear-gradient(to right, #1d1d1f, #424245);
    color: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-gradient:hover {
    background: linear-gradient(to right, #424245, #1d1d1f);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.btn-white {
    background-color: white;
    color: #2D5F3F;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.btn-white:hover {
    background-color: #f5f5f5;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
    transform: scale(1.1);
}

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

.btn-icon:hover .icon-arrow {
    transform: translateX(0.25rem);
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

.nav {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav {
        display: flex;
    }
}

.nav-link {
    color: #525252;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #2D5F3F;
}

.btn-nav {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(to bottom right, #1d1d1f, rgba(45, 95, 63, 0.2), #424245);
    color: white;
    padding: 6rem 0;
    overflow: hidden;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
}

.hero-blob-1 {
    top: 0;
    right: 0;
    width: 24rem;
    height: 24rem;
    background-color: #2D5F3F;
}

.hero-blob-2 {
    bottom: 0;
    left: 0;
    width: 18rem;
    height: 18rem;
    background-color: #3A6B4F;
}

.hero-grid {
    position: relative;
    z-index: 10;
    display: grid;
    gap: 3rem;
    align-items: center;
}

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

.hero-title {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.text-accent {
    color: #3A6B4F;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: black;
    margin-bottom: 2rem;
}

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

.hero-image-container {
    position: relative;
}

.hero-image {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 4px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}
.hero-image:hover {
    transform: scale(1.03) translateX(-5px);
}

.hero-image img {
    width: 100%;
    height: 32rem;
    object-fit: cover;
    display: block;
}

/* adjusted end */

.floating-badge {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background-color: white;
    color: #171717;
    border-radius: 0.75rem;
    padding: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.badge-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(to bottom right, #2D5F3F, #3A6B4F);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.badge-title {
    font-weight: 700;
    font-size: 0.875rem;
}

.badge-subtitle {
    font-size: 0.75rem;
    color: #525252;
}

/* Section Styles */
.section {
    padding: 5rem 0;
}

.section-grey {
    background: linear-gradient(to bottom, #fafafa, white);
}

.section-white {
    background-color: white;
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    color: #171717;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: #525252;
    font-size: 1.125rem;
}

/* Problems Section */
.problems-container {
    max-width: 48rem;
    margin: 0 auto;
}

.problem-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background-color: white;
    border: 2px solid #e5e5e5;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.problem-item:hover {
    border-color: #f87171;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.problem-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.125rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.problem-icon-red {
    background: linear-gradient(to bottom right, #ef4444, #dc2626);
    color: white;
}

.problem-text {
    font-size: 1.125rem;
    color: #525252;
}

.problem-item:hover .problem-text {
    color: #171717;
}

/* Solution Section */
.solution-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(45, 95, 63, 0.05), transparent);
}

.solution-grid {
    position: relative;
    z-index: 10;
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .solution-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.solution-card {
    border: 2px solid #e5e5e5;
    background-color: white;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    height: 100%;
}

.solution-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(-0.5rem);
}

.card-content {
    padding: 3rem 2rem 2rem;
    text-align: center;
}

.solution-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 6rem;
    height: 6rem;
    border-radius: 1rem;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.gradient-amber {
    background: linear-gradient(to bottom right, #f59e0b, #f97316);
}

.gradient-green {
    background: linear-gradient(to bottom right, #2D5F3F, #3A6B4F);
}

.gradient-blue {
    background: linear-gradient(to bottom right, #3b82f6, #06b6d4);
}

.gradient-purple {
    background: linear-gradient(to bottom right, #a855f7, #ec4899);
}

.gradient-emerald {
    background: linear-gradient(to bottom right, #10b981, #059669);
}

.solution-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #171717;
}

.solution-description {
    color: #525252;
    line-height: 1.625;
}

/* Packages Section */
.packages-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .packages-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.package-card {
    position: relative;
    border: 2px solid #e5e5e5;
    background-color: white;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-0.5rem);
}

.package-featured {
    border: 4px solid #2D5F3F;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: scale(1.05);
}

.package-featured:hover {
    transform: scale(1.05) translateY(-0.5rem);
}

.featured-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(to right, #2D5F3F, #3A6B4F);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(45, 95, 63, 0.05), transparent);
    border-radius: 0.5rem;
}

.package-header {
    position: relative;
    padding: 2rem 1.5rem;
}

.package-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    color: white;
}

.package-name {
    font-size: 1.5rem;
    text-align: center;
}

.package-price {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: #1d1d1f;
    margin-top: 1rem;
}

.package-description {
    text-align: center;
    color: #525252;
    margin-top: 0.5rem;
}

.package-content {
    padding: 0 1.5rem;
    flex-grow: 1;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-item span {
    color: #525252;
}

.package-footer {
    padding: 1.5rem;
}

/* Services Section */
.services-grid {
    display: grid;
    gap: 1rem;
}

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

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: linear-gradient(to bottom right, white, #fafafa);
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid #e5e5e5;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
    text-decoration: none;
    color: black;
}

.service-card:hover {
    border-color: #2D5F3F;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.service-title {
    font-weight: 700;
    color: #171717;
    font-size: 1.25rem;
}

/* Extra Services Section */
.extra-services-container {
    max-width: 48rem;
    margin: 0 auto;
}

.extra-services-grid {
    display: grid;
    gap: 1rem;
}

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

.extra-service-item {
    position: relative;
}

.extra-service-glow {
    position: absolute;
    inset: 0;
    border-radius: 0.75rem;
    opacity: 0;
    filter: blur(8px);
    transition: opacity 0.3s ease;
}

.extra-service-item:hover .extra-service-glow {
    opacity: 1;
}

.extra-service-content {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background-color: white;
    border: 2px solid #e5e5e5;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.extra-service-item:hover .extra-service-content {
    border-color: transparent;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: scale(1.02);
}

.extra-service-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.extra-service-text {
    font-size: 1.125rem;
    color: #525252;
    font-weight: 500;
}

.extra-service-item:hover .extra-service-text {
    color: #171717;
}

/* About Section */
.about-blob {
    position: absolute;
    top: 0;
    right: 0;
    width: 24rem;
    height: 24rem;
    background-color: #2D5F3F;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.1;
}

.about-grid {
    position: relative;
    z-index: 10;
    display: grid;
    gap: 6rem; /* Verhoogd van 3rem naar 6rem voor veel meer ademruimte */
    align-items: center;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

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

.about-image-container {
    position: relative;
}

.about-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: linear-gradient(to bottom right, #2D5F3F, #3A6B4F);
    color: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.about-badge-number {
    font-size: 2.25rem;
    font-weight: 700;
}

.about-badge-text {
    font-size: 0.875rem;
    opacity: 0.9;
}

.about-title {
    color: #171717;
    margin-bottom: 1.5rem;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.about-text p {
    font-size: 1.125rem;
    color: #404040;
    line-height: 1.625;
}

.about-image {
    /* Maakt de foto groter en laat hem naar links uitlijnen/bloeden */
    width: 120%; 
    margin-left: -15%; /* Trekt de foto over de linkerrand van de container */
    
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.3);
    border: 4px solid rgba(45, 95, 63, 0.2);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 5;
}

.about-image:hover {
    /* Subtiele zoom en beweging naar rechts bij hover */
    transform: scale(1.03) translateX(5px);
}

.about-image img {
    width: 100%;
    height: 32rem; /* Dezelfde hoogte als de hero-image */
    object-fit: cover;
    display: block;
}

/* CTA Section original */
.cta-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(to bottom right, #2D5F3F, #3A6B4F, #1F4D36);
    color: white;
    overflow: hidden;
    text-align: center;
}

.cta-patterns {
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

.cta-pattern {
    position: absolute;
    border: 4px solid white;
}

.cta-circle-1 {
    top: 2.5rem;
    left: 2.5rem;
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
}

.cta-circle-2 {
    bottom: 2.5rem;
    right: 2.5rem;
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
}

.cta-square {
    top: 50%;
    left: 33.33%;
    width: 6rem;
    height: 6rem;
    border-radius: 0.5rem;
    transform: rotate(45deg);
}

.cta-content {
    position: relative;
    z-index: 10;
    max-width: 56rem;
    margin: 0 auto;
    padding: 0 1rem;
}

.cta-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.cta-title {
    margin-bottom: 1.5rem;
}

/* CTA Section original end */

/* cta section adjusted */
/* CTA Section */
.cta-section {
    position: relative;
    padding: 8rem 0 6rem 0;
    /* Ruimte bovenin voor de golf */
    /* background: linear-gradient(to bottom right, #2D5F3F, #3A6B4F, #1F4D36); */
    background: #3A6B4F;
    color: white;
    overflow: hidden;
    text-align: center;
}

.cta-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    /* We geven de container een witte achtergrond */
    background-color: #ffffff;
    /* We draaien de golf om zodat de 'vulling' aan de onderkant zit */
    transform: rotate(180deg);
}

.cta-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.cta-wave .shape-fill {
    /* De golf zelf wordt nu groen (matcht met het begin van je gradient) */
    fill: #396a4e;

}


/* cta section adjusted end */

@media (min-width: 768px) {
    .cta-title {
        font-size: 3rem;
    }
}

.cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    position: relative;
    background-color: #1d1d1f;
    color: white;
    padding: 3rem 0;
    overflow: hidden;
}

.footer-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1rem;
    background: linear-gradient(to right, #2D5F3F, #3A6B4F, #2D5F3F);
}

.footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    justify-items: center;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-logo {
    height: 10rem;
    width: auto;
    margin-bottom: 1rem;
}

.logo {
    height: 7rem;
    width: auto;
}

.footer-description {
    color: #d4d4d4;
    font-size: 0.875rem;
    line-height: 1.625;
}

.footer-heading {
    font-weight: 700;
    margin-bottom: 1rem;
    color: #3A6B4F;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link {
    color: #d4d4d4;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #3A6B4F;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-contact-item {
    font-size: 0.875rem;
    color: #d4d4d4;
    transition: color 0.3s ease;
    cursor: pointer;
}

.footer-contact-item:hover {
    color: white;
}

.footer-text {
    font-size: 0.875rem;
    color: #d4d4d4;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 2.5rem;
    height: 2.5rem;
    background-color: #404040;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-family: monospace;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.social-icon:hover {
    background: linear-gradient(to bottom right, #2D5F3F, #3A6B4F);
    transform: scale(1.1);
}

.footer-bottom {
    border-top: 1px solid #404040;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: #a3a3a3;
}

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

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

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

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-in {
    animation: fadeInLeft 0.6s ease-out;
}

.animate-in-delay {
    animation: fadeInScale 0.6s ease-out 0.2s both;
}

.animate-scroll {
    opacity: 0;
}

.animate-scroll.visible {
    animation: fadeInUp 0.5s ease-out forwards;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .hero-section {
        padding: 3rem 0;
    }

    .section {
        padding: 3rem 0;
    }

    .floating-badge {
        position: static;
        margin-top: 1rem;
    }

    .about-badge {
        position: static;
        margin-top: 1rem;
        display: inline-block;
    }
}

/* Voeg deze nieuwe blauwe gradient toe aan je CSS bestand */
.gradient-blue-accent {
    background: linear-gradient(to bottom right, #3182ce, #63b3ed);
}

.contact-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1.5rem;
    text-align: center;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.05);
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: #2D5F3F;
}

.contact-card-icon {
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 auto 1.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.contact-card h4 {
    margin-bottom: 0.5rem;
    color: #1d1d1f;
}

.contact-card p {
    color: #525252;
    font-weight: 500;
}

/* IT Console / Terminal Form */
.contact-console-container {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff; /* Wit in plaats van zwart */
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid #e5e5e5;
    box-shadow: 0 20px 40px -15px rgba(0,0,0,0.1);
}

.console-header {
    background: #f1f3f5; /* Lichtgrijs in plaats van donkergrijs */
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border-bottom: 1px solid #e5e5e5;
}

.console-label {
    color: #2D5F3F; /* Onze eigen groene kleur i.p.v. neon groen */
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
}

.console-buttons {
    display: flex;
    gap: 0.5rem;
}

.console-buttons span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.console-buttons span:nth-child(1) { background: #ff5f56; }
.console-buttons span:nth-child(2) { background: #ffbd2e; }
.console-buttons span:nth-child(3) { background: #27c93f; }

.console-title {
    color: #888;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.8rem;
}

.console-body {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.console-row {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

a {
    text-decoration: none;
}