/* 
 * Trevaliorix - Plantaardige Detox
 * CSS Stylesheet
 * 
 * Kleurenpalet:
 * - Primair groen: #4CAF50
 * - Licht groen/mint: #A8D5BA
 * - Crème/wit achtergrond: #FAFAF5
 * - Tekst donkergrijs: #333333
 * - Accent (CTA): #FFC107
 */

/* ===== ALGEMENE STIJLEN ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #FAFAF5;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 1rem;
    line-height: 1.3;
    color: #333;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
    position: relative;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.75rem;
    font-weight: 600;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #4CAF50;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #2E7D32;
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: 80px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.section-header h2 {
    margin-bottom: 15px;
}

.section-header h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background-color: #4CAF50;
    margin: 15px auto 0;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
}

.section-header.light h2,
.section-header.light p {
    color: #FAFAF5;
}

.section-header.light h2::after {
    background-color: #FAFAF5;
}

/* Knoppen */
.cta-button {
    display: inline-block;
    background-color: #FFC107;
    color: #333;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    transition: all 0.5s ease;
    z-index: -1;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 193, 7, 0.4);
    color: #333;
}

.cta-button:hover::before {
    width: 100%;
}

.cta-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.3);
}

.cta-button-small {
    font-size: 0.85rem;
    padding: 8px 20px;
    background-color: #4CAF50;
    color: white;
}

.cta-button-small:hover {
    color: white;
    background-color: #3d8b40;
}

/* ===== HEADER & NAVIGATIE ===== */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(250, 250, 245, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 15px 0;
}

#header.scrolled {
    padding: 10px 0;
    background-color: rgba(250, 250, 245, 0.98);
}

#header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    transition: all 0.3s ease;
}

#header.scrolled .logo img {
    height: 40px;
}

#main-nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 1.5rem;
}

.nav-links a {
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #4CAF50;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #4CAF50;
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #333;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ===== HERO SECTIE ===== */
.hero-section {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0;
    background: url('images/hero.jpg') center/cover no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.8), rgba(46, 125, 50, 0.85));
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-content {
    width: 55%;
    color: #fff;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
    line-height: 1.2;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.hero-content .subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-animation {
    position: absolute;
    width: 35%;
    height: 100%;
    right: 0;
    top: 0;
    overflow: hidden;
}

.leaf {
    position: absolute;
    background-image: url('images/leaf.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.7;
}

.leaf-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    right: 30%;
    animation: float 8s ease-in-out infinite;
}

.leaf-2 {
    width: 80px;
    height: 80px;
    top: 40%;
    right: 10%;
    animation: float 12s ease-in-out infinite 1s;
    transform: rotate(45deg);
}

.leaf-3 {
    width: 60px;
    height: 60px;
    bottom: 25%;
    right: 25%;
    animation: float 10s ease-in-out infinite 2s;
    transform: rotate(-30deg);
}

.water-drop {
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    top: 35%;
    right: 25%;
    animation: drop 10s linear infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes drop {
    0% {
        top: -5%;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        top: 100%;
        opacity: 0;
    }
}

.hero-features {
    display: flex;
    margin-top: 2.5rem;
}

.feature {
    display: flex;
    align-items: center;
    margin-right: 2rem;
}

.feature i {
    margin-right: 0.5rem;
    color: #FFC107;
}

/* ===== HOE WERKT HET SECTIE ===== */
.how-it-works {
    background-color: #FAFAF5;
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/how.jpg');
    background-size: 300px;
    opacity: 0.1;
    z-index: 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.benefit-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 10px;
    overflow: hidden;
}

.benefit-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.benefit-card h3 {
    margin-bottom: 15px;
    color: #4CAF50;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    width: 80%;
    height: 2px;
    background-color: #A8D5BA;
    z-index: -1;
}

.step {
    width: 20%;
    text-align: center;
    padding: 0 10px;
}

.step-number {
    width: 80px;
    height: 80px;
    background-color: #4CAF50;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.step h4 {
    margin-bottom: 10px;
    color: #4CAF50;
}

/* ===== PROGRAMMA SECTIE ===== */
.program-section {
    background-color: #4CAF50;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.program-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background-image: url('images/pro.jpg');
    background-size: 400px;
    opacity: 0.2;
    z-index: 0;
}

.program-timeline {
    position: relative;
    padding: 30px 0;
    z-index: 1;
}

.timeline-track {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%);
    z-index: -1;
}

.day-card {
    display: flex;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    color: #333;
    position: relative;
}

.day-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.day-number {
    width: 120px;
    background-color: #2E7D32;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.day-number::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1));
}

.day-content {
    padding: 25px;
    flex-grow: 1;
}

.day-content h3 {
    color: #4CAF50;
    margin-bottom: 10px;
}

.day-foods {
    display: flex;
    flex-wrap: wrap;
    margin-top: 15px;
}

.day-foods span {
    background-color: #E8F5E9;
    color: #2E7D32;
    padding: 5px 12px;
    border-radius: 20px;
    margin-right: 8px;
    margin-bottom: 8px;
    font-size: 0.85rem;
    font-weight: 600;
}

.program-cta {
    text-align: center;
    margin-top: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
}

.program-cta h3 {
    color: #fff;
    margin-bottom: 20px;
}

/* ===== VOORDELEN SECTIE ===== */
.benefits-section {
    background-color: #FAFAF5;
    position: relative;
    overflow: hidden;
}

.benefits-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.stat-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #4CAF50, #A8D5BA);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #4CAF50;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.benefits-testimonials {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 60px;
}

blockquote {
    width: calc(50% - 15px);
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

blockquote::before {
    content: '"';
    font-family: 'Dancing Script', cursive;
    font-size: 5rem;
    position: absolute;
    top: 10px;
    left: 20px;
    color: rgba(76, 175, 80, 0.1);
    line-height: 1;
}

blockquote p {
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

blockquote cite {
    display: block;
    font-style: normal;
    font-weight: 600;
    margin-top: 15px;
    color: #4CAF50;
    font-family: 'Dancing Script', cursive;
    font-size: 1.3rem;
}

.benefits-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.feature-box {
    text-align: center;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-box i {
    font-size: 2.5rem;
    color: #4CAF50;
    margin-bottom: 20px;
}

.feature-box h4 {
    margin-bottom: 15px;
}

/* ===== REVIEWS SECTIE ===== */
.reviews-section {
    background-color: #2E7D32;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.leaf-decoration {
    position: absolute;
    width: 300px;
    height: 300px;
    background-image: url('images/dec.jpg');
    background-size: contain;
    background-repeat: no-repeat;
}

.leaf-top-left {
    top: -100px;
    left: -100px;
    transform: rotate(45deg);
}

.leaf-bottom-right {
    bottom: -100px;
    right: -100px;
    transform: rotate(225deg);
}

.reviews-slider {
    position: relative;
    overflow: hidden;
}

.review-card {
    display: flex;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    color: #333;
}

.review-image {
    width: 180px;
    overflow: hidden;
}

.review-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-content {
    padding: 30px;
    flex-grow: 1;
}

.review-stars {
    margin-bottom: 15px;
}

.review-stars i {
    color: #FFC107;
    margin-right: 3px;
}

.review-content h4 {
    margin: 15px 0 5px;
    color: #4CAF50;
}

.review-content span {
    display: block;
    font-size: 0.9rem;
    color: #666;
}

.reviews-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.prev-review,
.next-review {
    background-color: transparent;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
    transition: all 0.3s ease;
}

.prev-review:hover,
.next-review:hover {
    color: #FFC107;
}

.review-dots {
    display: flex;
    align-items: center;
    margin: 0 20px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #fff;
    transform: scale(1.2);
}

/* ===== TARIEVEN SECTIE ===== */
.pricing-section {
    background-color: #FAFAF5;
    position: relative;
}

.pricing-plans {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
}

.plan-card {
    width: 100%;
    max-width: 350px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.plan-card.featured {
    transform: scale(1.05);
    border: 2px solid #4CAF50;
}

.plan-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.plan-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #FFC107;
    color: #333;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
}

.plan-header {
    padding: 30px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.plan-header h3 {
    color: #333;
    margin-bottom: 15px;
}

.plan-price {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 15px;
}

.plan-price .currency {
    font-size: 1.5rem;
    vertical-align: top;
    margin-right: 5px;
    color: #4CAF50;
}

.plan-price .amount {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    color: #4CAF50;
}

.plan-description {
    color: #666;
    margin-bottom: 0;
}

.plan-features {
    padding: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.feature-item i {
    margin-right: 10px;
    color: #4CAF50;
    font-size: 1.1rem;
}

.feature-item.disabled {
    color: #999;
}

.feature-item.disabled i {
    color: #ccc;
}

.plan-button {
    display: block;
    background-color: #4CAF50;
    color: #fff;
    text-align: center;
    padding: 15px;
    margin: 0 30px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.plan-button:hover {
    background-color: #3d8b40;
    color: #fff;
}

.featured .plan-button {
    background-color: #FFC107;
    color: #333;
}

.featured .plan-button:hover {
    background-color: #e6ac00;
}

.pricing-guarantee {
    display: flex;
    align-items: center;
    background-color: #E8F5E9;
    padding: 20px 30px;
    border-radius: 10px;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-guarantee i {
    font-size: 2.5rem;
    color: #4CAF50;
    margin-right: 20px;
}

.pricing-guarantee h4 {
    margin-bottom: 5px;
    color: #4CAF50;
}

/* ===== FAQ SECTIE ===== */
.faq-section {
    background-color: #fff;
    position: relative;
}

.faq-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.faq-column {
    flex: 1;
    min-width: 300px;
}

.faq-item {
    background-color: #F5F5F5;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    position: relative;
}

.faq-question i:first-child {
    margin-right: 15px;
    color: #4CAF50;
    font-size: 1.2rem;
}

.faq-question h4 {
    margin: 0;
    flex-grow: 1;
    font-size: 1.1rem;
}

.toggle-icon {
    font-size: 0.9rem;
    color: #4CAF50;
    transition: all 0.3s ease;
}

.faq-item.active .toggle-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px 20px 55px;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* ===== OVER ONS SECTIE ===== */
.about-section {
    background-color: #FAFAF5;
    position: relative;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.about-image {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.about-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.badge {
    background-color: #fff;
    color: #4CAF50;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
}

.badge i {
    margin-right: 5px;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    margin-bottom: 10px;
}

.about-text h3 {
    color: #4CAF50;
    margin-bottom: 20px;
    font-weight: 500;
}

.about-values {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
}

.value {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.value i {
    font-size: 2rem;
    color: #4CAF50;
    margin-bottom: 15px;
}

.value h4 {
    margin-bottom: 10px;
}

/* ===== MAP SECTIE ===== */
.map-section {
    padding-bottom: 0;
    background-color: #fff;
}

.google-map {
    height: 450px;
    width: 100%;
    margin: 30px 0;
}

.location-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 30px;
    margin-top: -100px;
    margin-bottom: 50px;
    position: relative;
    z-index: 10;
}

.info-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    flex: 1;
    min-width: 250px;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.info-card i {
    font-size: 2rem;
    color: #4CAF50;
    margin-bottom: 15px;
}

.info-card h4 {
    margin-bottom: 15px;
    color: #4CAF50;
}

.info-card p {
    margin-bottom: 0;
}

/* ===== CONTACT SECTIE ===== */
.contact-section {
    background-color: #4CAF50;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/con.jpg');
    background-size: 300px;
    opacity: 0.1;
    z-index: 0;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    position: relative;
    z-index: 1;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h2 {
    color: #fff;
    margin-bottom: 20px;
}

.contact-methods {
    margin: 40px 0;
}

.contact-method {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.contact-method i {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    font-size: 1.2rem;
    color: #fff;
}

.contact-method div {
    flex-grow: 1;
}

.contact-method h4 {
    margin-bottom: 5px;
    color: #fff;
}

.contact-cta {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
}

.contact-form-container {
    flex: 1;
    min-width: 300px;
    background-color: #fff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.contact-form-container h3 {
    margin-bottom: 30px;
    text-align: center;
    color: #4CAF50;
}

.contact-form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.form-group {
    width: calc(50% - 10px);
}

.form-group.full-width {
    width: 100%;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #4CAF50;
    outline: none;
    box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.2);
}

.checkbox-wrapper {
    display: flex;
    align-items: flex-start;
}

.checkbox-wrapper input {
    width: auto;
    margin-right: 10px;
    margin-top: 3px;
}

.checkbox-wrapper label {
    margin-bottom: 0;
    font-weight: normal;
}

.checkbox-wrapper a {
    text-decoration: underline;
}

.form-submit {
    width: 100%;
    text-align: center;
    margin-top: 20px;
}

.submit-button {
    background-color: #4CAF50;
    color: #fff;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.submit-button:hover {
    background-color: #3d8b40;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.4);
}

/* ===== FOOTER ===== */
#footer {
    background-color: #333;
    color: #fff;
    position: relative;
}

.footer-top {
    padding: 70px 0 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.footer-info {
    flex: 2;
    min-width: 300px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-contact {
    margin-top: 20px;
}

.footer-contact p {
    margin-bottom: 10px;
}

.footer-contact i {
    margin-right: 10px;
    color: #4CAF50;
}

.footer-links,
.footer-legal {
    flex: 1;
    min-width: 200px;
}

.footer-newsletter {
    flex: 2;
    min-width: 300px;
}

#footer h4 {
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

#footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #4CAF50;
}

#footer ul {
    list-style: none;
}

#footer ul li {
    margin-bottom: 10px;
}

#footer ul a {
    color: #ccc;
    transition: all 0.3s ease;
}

#footer ul a:hover {
    color: #4CAF50;
    padding-left: 5px;
}

.newsletter-form {
    margin-top: 20px;
}

.newsletter-form .form-group {
    display: flex;
    width: 100%;
    margin-bottom: 15px;
}

.newsletter-form input[type="email"] {
    flex-grow: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 50px 0 0 50px;
    font-family: 'Open Sans', sans-serif;
}

.newsletter-form button {
    background-color: #4CAF50;
    color: #fff;
    border: none;
    padding: 0 20px;
    border-radius: 0 50px 50px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #3d8b40;
}

.form-consent {
    display: flex;
    align-items: flex-start;
}

.form-consent input {
    margin-right: 10px;
    margin-top: 3px;
}

.form-consent label {
    font-size: 0.9rem;
    color: #ccc;
}

.form-consent a {
    color: #4CAF50;
    text-decoration: underline;
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: #888;
}

.footer-bottom i {
    color: #F44336;
}

/* ===== COOKIE CONSENT ===== */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: #333;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: none;
}

.cookie-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-content p {
    margin-bottom: 0;
    flex-grow: 1;
}

.cookie-content a {
    color: #4CAF50;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-button.accept {
    background-color: #4CAF50;
    color: #fff;
}

.cookie-button.accept:hover {
    background-color: #3d8b40;
}

.cookie-button.decline {
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
}

.cookie-button.decline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #4CAF50;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #3d8b40;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    color: #fff;
}

/* ===== RESPONSIVITEIT ===== */
@media (max-width: 1200px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .process-steps {
        flex-wrap: wrap;
    }
    
    .step {
        width: 45%;
        margin-bottom: 30px;
    }
    
    .process-steps::before {
        display: none;
    }
    
    .day-number {
        width: 100px;
    }
}

@media (max-width: 992px) {
    section {
        padding: 60px 0;
    }
    
    .hero-section {
        height: auto;
        min-height: 600px;
    }
    
    .hero-section .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        width: 100%;
        margin-bottom: 50px;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-animation {
        width: 100%;
        position: relative;
        height: 200px;
    }
    
    blockquote {
        width: 100%;
    }
    
    .review-card {
        flex-direction: column;
    }
    
    .review-image {
        width: 100%;
        height: 200px;
    }
}

@media (max-width: 768px) {
    #header .container {
        padding: 0 20px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: #FAFAF5;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: -1;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        z-index: 999;
    }
    
    .nav-links li {
        margin: 10px 0;
    }
    
    .day-card {
        flex-direction: column;
    }
    
    .day-number {
        width: 100%;
        padding: 15px;
    }
    
    .step {
        width: 100%;
    }
    
    .footer-bottom .container {
        flex-direction: column;
    }
    
    .footer-bottom p:first-child {
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .benefit-card {
        padding: 20px;
    }
    
    .location-info {
        margin-top: 0;
    }
    
    .contact-form-container {
        padding: 30px 20px;
    }
    
    .form-group {
        width: 100%;
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ===== ANIMATIES ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeIn {
    animation: fadeIn 1s ease forwards;
}

/* ===== EXTRA STIJLEN VOOR PAGINA'S ===== */
.page-header {
    background-color: #4CAF50;
    color: #fff;
    padding: 80px 0 40px;
    text-align: center;
}

.page-header h1 {
    color: #fff;
}

.page-content {
    padding: 60px 0;
}

.content-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.content-section h2 {
    margin-top: 40px;
    margin-bottom: 20px;
}

.content-section h3 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.content-section p {
    margin-bottom: 20px;
}

.content-section ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.content-section ul li {
    margin-bottom: 10px;
}

.success-message {
    text-align: center;
    padding: 100px 0;
}

.success-message i {
    font-size: 5rem;
    color: #4CAF50;
    margin-bottom: 30px;
}

.success-message h2 {
    margin-bottom: 20px;
}

.success-back-link {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 25px;
    background-color: #4CAF50;
    color: #fff;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.success-back-link:hover {
    background-color: #3d8b40;
    color: #fff;
}