/* Base Styles and Reset */
:root {
    --primary-color: #2d5a27; /* Forest green */
    --secondary-color: #8bc34a; /* Light green */
    --dark-color: #1b4332; /* Dark green */
    --light-color: #f8f9fa;
    --text-color: #4a5568;
    --border-color: #e2e8f0;
    --hover-color: #3d7a35;
    --accent-color: #8bc34a;
    --accent-hover: #7cb342;
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-secondary: linear-gradient(135deg, #8bc34a 0%, #7cb342 100%);
    --gradient-bg: linear-gradient(135deg, #f8f9fa 0%, #e8f5e8 100%);
    --shadow-light: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 15px 35px rgba(0, 0, 0, 0.15);
    --border-radius: 12px;
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--gradient-bg);
    overflow-x: hidden;
}

/* Loading Animation */
@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);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) rotate(45deg);
    }
    40% {
        transform: translateY(-10px) rotate(45deg);
    }
    60% {
        transform: translateY(-5px) rotate(45deg);
    }
}

/* Scroll Animation Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    transition: var(--transition-smooth);
}

.fade-in-up.animate {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: var(--transition-smooth);
}

.slide-in-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: var(--transition-smooth);
}

.slide-in-right.animate {
    opacity: 1;
    transform: translateX(0);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Specific container styling for reviews section */
.reviews .container {
    padding: 0 0px;
}

.reviews .carousel-container {
    margin: 50px 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: var(--accent-color);
    transition: color 0.3s;
}

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

.btn {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 14px 28px;
    border-radius: var(--border-radius);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-medium);
    border: none;
    cursor: pointer;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
    transition: left 0.7s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.btn:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-secondary::before {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-color);
    font-size: 2.8rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 20px;
    text-rendering: optimizeLegibility;
    font-feature-settings: "liga", "kern";
}

.section-title::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 4px;
    background: var(--gradient-secondary);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 4px;
    background: var(--primary-color);
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* ================= Header Styles ================= */
header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition-smooth);
    
}

/* Header Container Layout */
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 7px 4px 7px;
    transition: var(--transition-smooth);
    min-height: 80px;
}

/* Logo Styling */
header .logo {
    text-align: center;
    flex: 0 0 auto;
    margin: 0 40px;
    position: relative;
}

header .logo .logo-image {
    height: 60px;
    object-fit: contain;
    border-radius: 0;
    border: none;
    box-shadow: none;
    transition: var(--transition-smooth);
    width: auto;
    max-width: 300px;
}

header .logo .logo-image:hover {
    transform: scale(1.05);
    box-shadow: none;
}

/* Navigation Containers */
header .left-nav {
    flex: 1.5;
    display: flex;
    justify-content: space-around;
}

header .right-nav {
    flex: 1.5;
    display: flex;
    justify-content: space-around;
}

/* Navigation Lists */
header .left-nav ul,
header .right-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

header .left-nav li,
header .right-nav li {
    margin: 0 40px; /* Spacing between nav items */
}

/* Navigation Links */
header .left-nav a,
header .right-nav a {
    color: var(--text-color);
    font-weight: 600;
    padding: 8px 0;
    position: relative;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
}

/* Navigation Link Underline Effect */
header .left-nav a::after,
header .right-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background: var(--gradient-secondary);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: var(--transition-smooth);
    border-radius: 2px;
}

header .left-nav a:hover,
header .right-nav a:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

header .left-nav a:hover::after,
header .right-nav a:hover::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 2px 0;
    transition: all 0.3s;
}

/* ================= Hero Section ================= */
.hero {
    /* background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/garden.jpg'); */

    background: linear-gradient(#13271170, #00000073), url('../images/achtergrond-ai-1-ps-1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    color: white;
    text-align: center;
    padding: 250px 20px 80px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
    min-height: 700px;
}

.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    animation: float 20s ease-in-out infinite;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(45, 90, 39, 0.1), rgba(139, 195, 74, 0.1));

    animation: pulse 14s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h2 {
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.2s forwards;
    background: linear-gradient(45deg, #ffffff, #e8f5e8);

    background-clip: text;
    text-rendering: optimizeLegibility;
    font-feature-settings: "liga", "kern";

    font-size: 3.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 700;
    letter-spacing: -0.5px;
    min-height: 4.2rem;
    line-height: 1.2;

}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.3s forwards;
    font-weight: 300;
    line-height: 1.8;
}

/* ================= Ladybug Emoji Styling ================= */
.ladybug-emoji {
    display: inline-block;
    transform: rotate(-90deg); /* Rotate 15 degrees to the left */
    animation: ladybugWiggle 5s ease-in-out infinite;
    transform-origin: center;
}

/* Optional subtle animation for the ladybug */
@keyframes ladybugWiggle {
    0%, 100% { transform: rotate(-90deg); }
    50% { transform: rotate(-50deg); }
}

.hero .btn {
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
    font-size: 1.1rem;
    border-radius: 50px;
}

/* ================= Hero Buttons Styling ================= */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-secondary::before {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

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

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    opacity: 0;
    animation: fadeInUp 1s ease-out 2s forwards;
}

.scroll-arrow {
    width: 2px;
    height: 40px;
    background: rgba(255, 255, 255, 0.8);
    position: relative;
    margin: 0 auto;
    border-radius: 1px;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: -4px;
    width: 10px;
    height: 10px;
    border-right: 2px solid rgba(255, 255, 255, 0.8);
    border-bottom: 2px solid rgba(255, 255, 255, 0.8);
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

/* ================= Services Section ================= */
.services {
    padding: 50px 0 120px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e8 50%, #f0f8f0 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 195, 74, 0.05) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.service-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition-bounce);
    border: 1px solid rgba(139, 195, 74, 0.1);
    position: relative;
    overflow: hidden;
    transform: translateY(0);
    box-sizing: border-box;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 195, 74, 0.04), transparent);
    transition: left 0.8s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-heavy);
    border-color: var(--accent-color);
}

.service-icon {
    font-size: 3.5rem;
    color: var(--accent-color);
    margin-bottom: 25px;
    transition: var(--transition-smooth);
    position: relative;
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(5deg);
    animation: pulse 1.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    color: var(--accent-color);
    transition: var(--transition-smooth);
}

.service-card h3 {
    margin-bottom: 20px;
    color: var(--text-color);
    font-size: 1.4rem;
    font-weight: 700;
    transition: var(--transition-smooth);
}

.service-card:hover h3 {
    color: var(--primary-color);
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 1rem;
}

.price {
    font-weight: bold;
    color: var(--accent-color);
    font-size: 1.1rem;
}

.services-cta {
    text-align: center;
    margin-top: 40px;
}

.services-cta .btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    transform: translateY(0);
}

.services-cta .btn:hover {
    background-color: var(--accent-hover);
    transform: translateY(-3px);
}

/* ================= Gallery Section ================= */
.gallery {
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 90, 39, 0.7) 0%, rgba(139, 195, 74, 0.5) 100%);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 2;
}

.gallery-item::after {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 2rem;
    color: white;
    z-index: 3;
    transition: var(--transition-bounce);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-heavy);
}

.gallery-item img {
    display: block;
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* ================= About Section ================= */
.about {
    padding: 120px 0;
    background: linear-gradient(135deg, #f0f8f0 0%, #e8f5e8 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(139, 195, 74, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-text {
    position: relative;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 40px;
}

.about-text .section-title::before,
.about-text .section-title::after {
    left: 0;
    transform: none;
}

.about-text p {
    margin-bottom: 25px;
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.8;
    position: relative;
    padding-left: 20px;
}

.about-text p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 4px;
    height: 20px;
    background: var(--gradient-secondary);
    border-radius: 2px;
}

.about-image {
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    background: var(--gradient-secondary);
    border-radius: var(--border-radius);
    z-index: -1;
    opacity: 0.3;
}

.about-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-heavy);
    transition: var(--transition-smooth);
    width: 100%;
    height: auto;
}

.about-image:hover img {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* ================= Reviews Section ================= */
.reviews {
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #e8f5e8 100%);
    position: relative;
    overflow: hidden;
}

.reviews::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(139, 195, 74, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 18s ease-in-out infinite;
}

/* ================= Reviews Carousel ================= */
.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 50px 0;
    max-width: 100%;
}

.carousel-wrapper {
    width: 100%;
    max-width: 800px;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.review-card {
    width: 100%;
    flex-shrink: 0;
    background: white;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: none;
    border: 1px solid rgba(139, 195, 74, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}

.review-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(139, 195, 74, 0.2), 0 4px 12px rgba(139, 195, 74, 0.1);
}

.reviewer-info {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    box-shadow: var(--shadow-light);
}

/* Google-style avatar colors */
.reviewer-avatar:nth-child(1) { background: #4285F4; } /* Google Blue */
.reviewer-avatar:nth-child(2) { background: #34A853; } /* Google Green */
.reviewer-avatar:nth-child(3) { background: #EA4335; } /* Google Red */
.reviewer-avatar:nth-child(4) { background: #009688; } /* Teal */
.reviewer-avatar:nth-child(5) { background: #9C27B0; } /* Purple */
.reviewer-avatar:nth-child(7) { background: #795548; } /* Brown */
.reviewer-avatar:nth-child(8) { background: #607D8B; } /* Blue Grey */
.reviewer-avatar:nth-child(9) { background: #E91E63; } /* Pink */
.reviewer-avatar:nth-child(10) { background: #009688; } /* Teal */

/* Alternative approach using specific reviewer initials */
.reviewer-avatar[data-initial="P"] { background: #4285F4; }
.reviewer-avatar[data-initial="I"] { background: #34A853; }
.reviewer-avatar[data-initial="A"] { background: #EA4335; }
.reviewer-avatar[data-initial="S"] { background: #009688; } /* Changed from yellow to teal */
.reviewer-avatar[data-initial="K"] { background: #9C27B0; }
.reviewer-avatar[data-initial="B"] { background: #34A853; }
.reviewer-avatar[data-initial="J"] { background: #795548; }

.reviewer-details h4 {
    margin: 0 0 5px 0;
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 600;
}

.stars {
    color: #ffc107;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.review-card p {
    color: var(--text-color);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
    font-style: italic;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: none;
    white-space: normal;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(139, 195, 74, 0.3);
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-light);
}

.carousel-btn:hover {
    background: var(--accent-color);
    color: white;
    transform: scale(1.1);
    box-shadow: var(--shadow-medium);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(139, 195, 74, 0.3);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dot.active,
.dot:hover {
    background: var(--accent-color);
    transform: scale(1.2);
}

/* Mobile Responsive for Reviews */
@media (max-width: 768px) {
    .carousel-container {
        gap: 12px;
        margin: 40px 8px;
    }
    
    .carousel-wrapper {
        width: calc(100vw - 80px); /* More space utilization */
        max-width: none;
    }
    
    .review-card {
        padding: 25px 20px;
    }
    
    .review-card p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        flex-shrink: 0; /* Prevent button deformation */
    }
    
    .reviewer-avatar {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .carousel-container {
        gap: 8px;
        margin: 30px 4px;
    }
    
    .carousel-wrapper {
        width: calc(100vw - 65px); /* Even more space usage */
        max-width: none;
    }
    
    .review-card {
        padding: 20px 15px;
    }
    
    .review-card p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        flex-shrink: 0; /* Prevent button deformation */
    }
    
    .reviewer-avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .reviewer-details h4 {
        font-size: 0.95rem;
    }
    
    .reviewer-info {
        gap: 12px;
        margin-bottom: 15px;
    }
    
    .carousel-dots {
        margin-top: 25px;
        gap: 8px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}

/* Extra small screens - maximize space usage */
@media (max-width: 375px) {
    .carousel-container {
        gap: 6px;
        margin: 30px 2px;
    }
    
    .carousel-wrapper {
        width: calc(100vw - 55px); /* Maximum space utilization */
        max-width: none;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
        flex-shrink: 0;
    }
}

/* ================= Contact Section ================= */
.contact {
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #e8f5e8 100%);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(45, 90, 39, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 12s ease-in-out infinite reverse;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    position: relative;
    z-index: 2;
}

.contact-info {
    position: relative;
}

.contact-info h3 {
    margin: 35px 0 20px;
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 700;
    position: relative;
    padding-left: 30px;
}

.contact-info h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 3px;
    background: var(--gradient-secondary);
    border-radius: 2px;
}

.contact-info p {
    margin-bottom: 15px;
    color: var(--text-color);
    font-size: 1.05rem;
    padding: 8px 0;
    transition: var(--transition-smooth);
}

.contact-info p:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.contact-info i {
    color: var(--accent-color);
    margin-right: 15px;
    width: 25px;
    text-align: center;
    font-size: 1.1rem;
}

.social-media {
    margin-top: 25px;
}

.social-media a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: background-color 0.3s;
}

.social-media a:hover {
    background-color: var(--accent-hover);
}

.contact-form {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-heavy);
    padding: 40px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(139, 195, 74, 0.2);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-secondary);
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-color);
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-smooth);
    background: rgba(255, 255, 255, 0.8);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(139, 195, 74, 0.1);
    transform: translateY(-2px);
}

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

/* ================= Enhanced Form Validation Styles ================= */
.form-group.focused label {
    color: var(--accent-color);
    transform: translateY(-2px);
}

.form-group.success input,
.form-group.success select,
.form-group.success textarea {
    border-color: #27ae60;
    background-color: rgba(39, 174, 96, 0.05);
}

.form-group.success::after {
    content: '✓';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #27ae60;
    font-weight: bold;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #e74c3c;
    background-color: rgba(231, 76, 60, 0.05);
}

.form-group.error::after {
    content: '✗';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #e74c3c;
    font-weight: bold;
}

/* ================= Loading States ================= */
.btn.loading {
    position: relative;
    color: transparent;
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ================= Micro Interactions ================= */
.service-icon,
.gallery-item,
.btn,
.logo-image {
    will-change: transform;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ================= Footer ================= */
footer {
    background: linear-gradient(135deg, #1b4332 0%, #2d5a27 100%);
    color: white;
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-secondary);
}

footer::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(139, 195, 74, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.footer-logo h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.8rem;
    font-weight: 700;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.footer-social {
    display: flex;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border-radius: 12px;
    margin-left: 15px;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-social a:hover {
    background: var(--accent-color);
    transform: translateY(-3px) scale(1.1);
    box-shadow: var(--shadow-medium);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 2;
}
/* ================= Price List Page ================= */
.prijslijst {
    padding: 120px 0 80px;
    background-color: #fff;
}

.price-list {
    margin-top: 30px;
}

.price-category {
    margin-bottom: 40px;
}

.price-category h2 {
    color: var(--accent-color);
    font-size: 1.8rem;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-color);
    margin-bottom: 20px;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 15px;
}

.price-table th {
    background-color: #f9f9f9;
    text-align: left;
    padding: 12px 15px;
    font-weight: 600;
    color: #333;
    border-bottom: 2px solid var(--accent-color);
}

.price-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
    vertical-align: top;
}

.price-table td.price {
    font-weight: bold;
    color: var(--accent-color);
    font-size: 1.1rem;
    white-space: nowrap;
}

.price-table td h3 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.price-table td p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.price-notes {
    background-color: #faf5f5;
    padding: 20px 25px;
    border-radius: 8px;
    margin-top: 30px;
}

.price-notes h3 {
    margin-bottom: 10px;
    color: #333;
}

.price-notes ul {
    padding-left: 20px;
}

.price-notes li {
    margin-bottom: 8px;
    color: #666;
}

/* Mobile responsiveness for price list */
@media (max-width: 768px) {
    .price-table th:nth-child(3),
    .price-table td:nth-child(3) {
        display: none; /* Hide duration column on mobile */
    }
    
    .price-table td h3 {
        font-size: 1rem;
    }
}
/* ================= Responsive Styles ================= */
@media screen and (max-width: 992px) {
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile responsiveness - hamburger menu */
@media (max-width: 768px) {
    header .left-nav,
    header .right-nav {
        display: none;
    }
    
    header .logo {
        margin: 0 auto;
    }
    
    header .logo .logo-image {
        height: 45px; /* Smaller on mobile */
    }
    
    header .hamburger {
        display: flex;
        position: absolute;
        right: 20px;
    }
    
    /* Show menu when active (add via JavaScript) */
    header.menu-active .left-nav,
    header.menu-active .right-nav {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        z-index: 100;
    }
    
    header.menu-active .left-nav ul,
    header.menu-active .right-nav ul {
        flex-direction: column;
        padding: 10px 0;
    }
    
    header.menu-active .left-nav li,
    header.menu-active .right-nav li {
        margin: 10px 20px;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
}
/* Eenvoudige Hamburger Menu Styling */
.mobile-menu {
    display: none;
    width: 100%;
    background: white;
    position: absolute;
    top: 100%;
    left: 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    display: block;
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu li {
    border-bottom: 1px solid #eee;
}

.mobile-menu a {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-size: 1.1rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 2px 0;
    transition: all 0.3s;
}

/* Eenvoudige hamburger animatie */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

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

@media (max-width: 768px) {
    header .left-nav,
    header .right-nav {
        display: none;
    }
    
    header .logo {
        margin: 0 auto;
    }
    
    .hamburger {
        display: flex;
        position: absolute;
        right: 20px;
    }
}

.category-header {
    display: flex;
    align-items: center;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 4px;
    cursor: pointer;
}

.category-drag-handle {
    padding: 0 10px;
    color: #666;
    cursor: grab;
}

.category-drag-handle:active {
    cursor: grabbing;
}

.category-item.dragging {
    opacity: 0.5;
    background: #f8f9fa;
    border: 2px dashed #ccc;
}

.category-item.drag-over {
    border-top: 2px solid var(--accent-color);
}

.category-header h3 {
    flex: 1;
    margin: 0;
    padding: 0 15px;
}

.category-actions {
    display: flex;
    gap: 10px;
}

/* Warning message styling */
.warning-message {
    color: #d36c18 !important;
    margin-top: 10px;
    font-weight: 500;
    line-height: 1.5;
}

.warning-message strong {
    display: block;
    margin: 5px 0;
    color: #f16d00 !important;
}

/* ================= Modern Lightbox ================= */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    cursor: pointer;
    opacity: 0;
    animation: fadeIn 0.3s ease-out forwards;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-heavy);
    transform: scale(0.8);
    animation: scaleIn 0.3s ease-out 0.1s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    to {
        transform: scale(1);
    }
}

/* ================= Enhanced Mobile Menu ================= */
.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(139, 195, 74, 0.3);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-menu ul {
    flex-direction: column;
    padding: 20px 0;
}

.mobile-menu li {
    margin: 0;
    padding: 0;
}

.mobile-menu a {
    display: block;
    padding: 15px 30px;
    color: var(--text-color);
    font-weight: 600;
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(139, 195, 74, 0.1);
}

.mobile-menu a:hover {
    background: rgba(139, 195, 74, 0.1);
    color: var(--primary-color);
    padding-left: 40px;
}

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

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

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

/* ================= Enhanced Responsive Design ================= */
@media (max-width: 1024px) {
    .hero-content h2 {
        font-size: 3.2rem;
    }
    
    .about-content,
    .contact-grid {
        gap: 50px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    /* Header adjustments - consolidated in main mobile section above */
    
    header .logo .logo-image {
        height: 45px;
    }
    
    /* Hero section mobile */
    .hero {
        padding: 180px 20px 100px;
        background-attachment: scroll;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
        margin-bottom: 25px;
        min-height: auto; /* Remove fixed min-height for better spacing */
        line-height: 1.1; /* Tighter line height for mobile */
    }
    
    .hero-content p {
        font-size: 1.2rem;
        margin-bottom: 35px;
    }
    
    /* Section spacing */
    .services,
    .gallery,
    .about,
    .contact {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }
    
    /* Grid adjustments */
    .about-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-text .section-title {
        text-align: center;
    }
    
    .about-text .section-title::before,
    .about-text .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px; /* Reduce gap between images on mobile */
    }
    
    /* Make gallery images smaller on mobile */
    .gallery-item img {
        height: 250px; /* Reduced from 350px for mobile */
    }
    
    /* Footer mobile */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
}

/* ================= Specific fix for medium mobile screens (481px-767px) ================= */
@media (max-width: 767px) and (min-width: 481px) {
    .hero-content h2 {
        font-size: 2.3rem; /* Slightly smaller than 768px breakpoint */
        min-height: auto; /* Remove fixed min-height */
        line-height: 1.1; /* Tighter line height */
        margin-bottom: 20px; /* Reduce bottom margin */
    }
    
    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    /* Keep reviews container override */
    .reviews .container {
        padding: 0 0px;
    }
    
    .hero-content h2 {
        font-size: 2rem;
        min-height: auto; /* Ensure no fixed height on small screens */
        line-height: 1.1;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .service-card,
    .contact-form {
        padding: 25px 20px;
    }
    
    /* Make contact form more compact on mobile */
    .contact-form {
        padding: 20px 15px; /* Reduced padding for mobile */
    }
    
    .form-group {
        margin-bottom: 20px; /* Reduced spacing between form fields */
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px; /* Reduced padding inside form fields */
        font-size: 0.95rem; /* Slightly smaller text */
    }
    
    .form-group textarea {
        min-height: 100px; /* Reduced textarea height for mobile */
    }
    
    .form-group label {
        font-size: 0.9rem; /* Smaller label text */
        margin-bottom: 6px; /* Reduced label spacing */
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
    
    /* Make gallery images even smaller on very small screens */
    .gallery-item img {
        height: 200px; /* Further reduced for small mobile screens */
    }
}

/* ================= Header Responsive Breakpoints ================= */

/* Large tablets and small desktops - reduce spacing */
@media (max-width: 1200px) {
    header .left-nav li,
    header .right-nav li {
        margin: 0 25px; /* Reduced from 40px */
    }
    
    header .logo {
        margin: 0 30px; /* Reduced from 40px */
    }
    
    header .left-nav a,
    header .right-nav a {
        font-size: 1rem; /* Slightly smaller text */
    }
}

/* Medium tablets - further reduce spacing */
@media (max-width: 1024px) {
    header .left-nav li,
    header .right-nav li {
        margin: 0 20px; /* Further reduced */
    }
    
    header .logo {
        margin: 0 25px;
    }
    
    header .logo .logo-image {
        height: 55px; /* Slightly smaller logo */
    }
    
    header .left-nav a,
    header .right-nav a {
        font-size: 0.95rem;
    }
}

/* Small tablets - minimal spacing before hamburger */
@media (max-width: 900px) {
    header .left-nav li,
    header .right-nav li {
        margin: 0 15px; /* Minimal spacing */
    }
    
    header .logo {
        margin: 0 20px;
    }
    
    header .logo .logo-image {
        height: 50px;
    }
    
    header .left-nav a,
    header .right-nav a {
        font-size: 0.9rem;
        padding: 6px 0; /* Reduced padding */
    }
}

/* Switch to hamburger menu at 768px */
@media (max-width: 768px) {
    header .left-nav,
    header .right-nav {
        display: none;
    }
    
    header .logo {
        margin: 0 auto;
    }
    
    header .logo .logo-image {
        height: 45px; /* Smaller on mobile */
    }
    
    header .hamburger {
        display: flex;
        position: absolute;
        right: 20px;
    }
    
    /* Show menu when active (add via JavaScript) */
    header.menu-active .left-nav,
    header.menu-active .right-nav {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        z-index: 100;
    }
    
    header.menu-active .left-nav ul,
    header.menu-active .right-nav ul {
        flex-direction: column;
        padding: 10px 0;
    }
    
    header.menu-active .left-nav li,
    header.menu-active .right-nav li {
        margin: 10px 20px;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
}

/* Maak servicekaarten kleiner en compacter voor mobiele apparaten */
@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr); /* Toon 2 kaarten per rij op kleine schermen */
        gap: 16px;
        justify-items: center; /* Centreer kaarten in hun grid cellen */
    }
    .service-card {
        padding: 16px 8px;
        font-size: 0.95rem;
        min-width: 0;
        width: 100%; /* Zorg ervoor dat kaarten hun volledige breedte gebruiken */
        max-width: 180px; /* Beperk maximale breedte voor betere uitlijning */
    }
    /* Centreer de laatste kaart als deze alleen staat */
    .service-card:nth-child(9) {
        grid-column: 1 / -1; /* Span over beide kolommen */
        max-width: 180px; /* Behoud dezelfde breedte als andere kaarten */
        margin: 0 auto; /* Centreer horizontaal */
    }
    .service-card h3 {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    .service-card p {
        font-size: 0.95rem;
        margin-bottom: 10px;
        line-height: 1.5;
    }
    .service-icon {
        font-size: 2.2rem;
        margin-bottom: 12px;
    }
}

/* Alleen voor zeer kleine schermen (onder 320px) - zoals oudere kleine telefoons */
@media (max-width: 330px) {
    .services-grid {
        grid-template-columns: 1fr; /* Stapel kaarten alleen voor zeer kleine schermen */
    }
    .service-card {
        padding: 12px 4px;
        font-size: 0.9rem;
        max-width: 280px; /* Iets bredere kaarten voor single column */
    }
    .service-card h3 {
        font-size: 0.95rem;
    }
    .service-icon {
        font-size: 1.8rem;
    }
}