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

:root {
    /* Modern Color Palette */
    --primary-green: #4a5d4a;
    --dark-green: #3a4a3a;
    --light-green: #6a7d6a;
    --accent-green: #5a6d5a;
    --dark-slate: #1a2327;
    --darker-slate: #253238;
    --cream: #f8f6f4;
    --cream-dark: #f0ede9;
    --white: #ffffff;
    --black: #1a1a1a;
    --gray: #6b7280;
    --light-gray: #f9fafb;
    --border-color: rgba(255, 255, 255, 0.1);
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --shadow-color: rgba(0, 0, 0, 0.1);
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* Spacing */
    --section-padding: 5rem 0;
    --container-padding: 0 1rem;
    --border-radius: 8px;
    --border-radius-large: 16px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-weight: var(--font-weight-normal);
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: var(--font-weight-semibold);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

p {
    margin-bottom: 1rem;
    color: var(--gray);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    border: none;
    border-radius: 12px;
    font-family: var(--font-family);
    font-weight: var(--font-weight-semibold);
    font-size: 1.1rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-transform: none;
    letter-spacing: 0.02em;
}

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

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

.btn-primary {
    background: linear-gradient(135deg, #4a5d4a 0%, #6a7d6a 100%);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(74, 93, 74, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #3a4a3a 0%, #4a5d4a 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(74, 93, 74, 0.4);
}

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

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.95);
    color: #2a3a2a;
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.2);
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, 
        rgba(74, 93, 74, 0.95) 0%, 
        rgba(90, 109, 90, 0.98) 100%);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition-normal);
}

.nav {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: var(--transition-fast);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: rgba(255, 255, 255, 0.95);
    font-weight: var(--font-weight-medium);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ffffff;
    background-color: rgba(74, 93, 74, 0.15);
    transform: translateY(-1px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #4a5d4a, #6a7d6a);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: linear-gradient(135deg, 
        rgba(74, 93, 74, 0.98) 0%, 
        rgba(90, 109, 90, 0.98) 100%);
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    min-width: 250px;
    z-index: 100;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

.dropdown a {
    display: block;
    padding: 0.75rem 1rem;
    color: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    margin-bottom: 0.25rem;
    transition: all 0.3s ease;
    border: none;
}

.dropdown a:last-child {
    margin-bottom: 0;
}

.dropdown a:hover {
    color: #ffffff;
    background-color: rgba(74, 93, 74, 0.2);
    transform: translateX(5px);
    padding-left: 1.25rem;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.language-toggle {
    display: flex;
    gap: 0.5rem;
}

.lang-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.6;
    transition: var(--transition-fast);
}

.lang-btn.active,
.lang-btn:hover {
    opacity: 1;
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-green);
    transition: var(--transition-normal);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 120px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(26, 35, 39, 0.85) 0%,
        rgba(37, 50, 56, 0.75) 25%,
        rgba(74, 93, 74, 0.6) 50%,
        rgba(58, 74, 58, 0.75) 75%,
        rgba(26, 35, 39, 0.85) 100%
    );
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    color: var(--white);
    padding-top: 2rem;
}

.hero-title {
    font-size: clamp(1.8rem, 8vw, 4.5rem);
    font-weight: var(--font-weight-bold);
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 
        3px 3px 12px rgba(0, 0, 0, 0.9), 
        1px 1px 6px rgba(0, 0, 0, 0.8),
        0px 0px 20px rgba(26, 35, 39, 0.5);
    letter-spacing: -0.02em;
    line-height: 1.2;
    word-wrap: break-word;
    hyphens: auto;
}

.hero-subtitle {
    display: block;
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: var(--font-weight-medium);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0.5rem;
    text-shadow: 
        2px 2px 8px rgba(0, 0, 0, 0.8),
        0px 0px 15px rgba(26, 35, 39, 0.6);
    letter-spacing: 0.01em;
}

.hero-description {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    max-width: 650px;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.75;
    text-shadow: 
        2px 2px 8px rgba(0, 0, 0, 0.7),
        0px 0px 12px rgba(26, 35, 39, 0.5);
    font-weight: var(--font-weight-normal);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    justify-content: flex-start;
    align-items: flex-start;
}

.stat {
    text-align: center;
    position: relative;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: var(--font-weight-bold);
    color: #ffffff;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 
        2px 2px 8px rgba(0, 0, 0, 0.8),
        0px 0px 15px rgba(74, 93, 74, 0.3);
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: var(--font-weight-medium);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    letter-spacing: 0.05em;
}

/* About Section */
.about {
    padding: var(--section-padding);
    background-color: var(--light-gray);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-title {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.feature:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.feature i {
    font-size: 1.5rem;
    color: var(--primary-green);
    width: 24px;
    text-align: center;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--primary-green);
}

.about-circle-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition-slow);
}

.image-container:hover .about-circle-image {
    transform: scale(1.1);
}

.overlay-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--white);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.overlay-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.image-container:hover .overlay-icon {
    transform: scale(1.1);
}

/* Services Section */
.services {
    padding: var(--section-padding);
    background-color: var(--white);
}

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

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

.service-card {
    background-color: var(--white);
    border-radius: var(--border-radius-large);
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--light-green));
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition-normal);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-title {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-description {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-link {
    color: var(--primary-green);
    font-weight: var(--font-weight-medium);
    text-decoration: none;
    position: relative;
    transition: var(--transition-fast);
}

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

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

/* News Section */
.news {
    padding: var(--section-padding);
    background-color: var(--cream);
}

.news-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.news-image {
    position: relative;
}

.news-flags {
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: var(--border-radius-large);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.flag-container {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

.flag-text {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: var(--font-weight-semibold);
}

.news-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Trust Section */
.trust {
    padding: 1rem 0;
    background-color: var(--light-gray);
}

.trust-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    min-height: auto;
}

.trust-item {
    text-align: center;
}

.veb-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: var(--font-weight-semibold);
    color: var(--primary-green);
}

.veb-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.trustpilot-reviews {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.trustpilot-logo-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trustpilot-star {
    font-size: 1.5rem;
    color: #00b67a;
    font-weight: bold;
}

.trustpilot-name {
    font-size: 1.1rem;
    font-weight: var(--font-weight-semibold);
    color: #00b67a;
}

.google-reviews {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.google-logo i {
    font-size: 2rem;
    color: #4285f4;
}

.stars {
    color: #fbbf24;
    margin-bottom: 0.25rem;
}

.review-text {
    font-size: 0.9rem;
    color: var(--gray);
}

/* Werkwijze Section */
.werkwijze {
    padding: var(--section-padding);
    background-color: var(--white);
}

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

.step {
    text-align: center;
    padding: 2rem;
    background-color: var(--light-gray);
    border-radius: var(--border-radius-large);
    transition: var(--transition-normal);
    position: relative;
}

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

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    margin: 0 auto 1.5rem;
}

.step h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

/* Partners Section */
.partners {
    padding: var(--section-padding);
    background-color: var(--cream);
}

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

.partner-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius-large);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

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

.partner-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.partner-logo i {
    font-size: 2rem;
    color: var(--white);
}

.partner-card h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

/* Vacatures Section */
.vacatures {
    padding: var(--section-padding);
    background-color: var(--light-gray);
}

.vacatures-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: start;
}

.vacature-info h3 {
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.vacature-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

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

.benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.benefit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.benefit i {
    font-size: 1.2rem;
    color: var(--primary-green);
    width: 20px;
    text-align: center;
}

.contact-hr {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.contact-hr h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.contact-hr p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Contact Section */
.contact {
    padding: var(--section-padding);
    background-color: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-methods {
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.contact-method:last-child {
    border-bottom: none;
}

.contact-method i {
    font-size: 1.5rem;
    color: var(--primary-green);
    width: 24px;
    text-align: center;
}

.contact-label {
    display: block;
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 0.25rem;
}

.contact-value {
    font-weight: var(--font-weight-medium);
    color: var(--black);
    text-decoration: none;
    transition: var(--transition-fast);
}

.contact-value:hover {
    color: var(--primary-green);
}

.social-section h3 {
    margin-bottom: 1rem;
    color: var(--primary-green);
}

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

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition-normal);
}

.social-link.linkedin { background-color: #0077b5; }
.social-link.facebook { background-color: #1877f2; }
.social-link.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: var(--shadow-lg);
}

/* Contact Form */
.contact-form-container {
    background-color: var(--light-gray);
    border-radius: var(--border-radius-large);
    padding: 2.5rem;
}

.contact-form h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-green);
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: var(--font-family);
    font-size: 1rem;
    background-color: var(--white);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-green);
}

.form-group label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: var(--gray);
    font-size: 1rem;
    transition: var(--transition-fast);
    pointer-events: none;
    background-color: var(--white);
    padding: 0 0.5rem;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group select:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label,
.form-group select:not([value=""]) + label,
.form-group input:valid + label,
.form-group textarea:valid + label {
    top: -0.5rem;
    left: 0.5rem;
    font-size: 0.8rem;
    color: var(--primary-green);
}

/* Footer */
.footer {
    background-color: var(--dark-green);
    color: var(--white);
    padding: 3rem 0 2rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

.footer-logo img {
    height: 60px;
    filter: brightness(0) invert(1);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-section h4 {
    color: var(--cream);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
}

.footer-section a:hover {
    color: var(--white);
    padding-left: 0.5rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

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

.footer-social .social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.footer-social .social-link:hover {
    background-color: var(--primary-green);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
}

.whatsapp-float a:hover {
    background-color: #128c7e;
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-xl);
}

.whatsapp-float i {
    font-size: 1.5rem;
}

.whatsapp-float span {
    display: none;
}

/* Mobile Navigation Styles */
@media (max-width: 1024px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 320px;
        height: calc(100vh - 80px);
        background: linear-gradient(135deg, 
            rgba(74, 93, 74, 0.98) 0%, 
            rgba(90, 109, 90, 0.98) 100%);
        backdrop-filter: blur(20px);
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.3);
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        flex-direction: column;
        padding: 2rem;
        overflow-y: auto;
        z-index: 999;
        margin: 0;
        list-style: none;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-item {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .nav-link {
        display: block;
        padding: 1.25rem 1.5rem;
        margin-bottom: 0.5rem;
        border-radius: 12px;
        font-size: 1.1rem;
        color: rgba(255, 255, 255, 0.9);
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }
    
    .nav-link:hover {
        color: #ffffff;
        background: rgba(74, 93, 74, 0.2);
        transform: translateX(8px);
        border-color: rgba(255, 255, 255, 0.2);
    }
    
    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        padding: 0;
        margin-top: 0.5rem;
        margin-left: 1rem;
        border-radius: 0;
        border: none;
    }
    
    .dropdown a {
        padding: 1rem 1.25rem;
        background: rgba(255, 255, 255, 0.03);
        margin-bottom: 0.5rem;
        border-radius: 8px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        color: rgba(255, 255, 255, 0.8);
        font-size: 1rem;
        transition: all 0.3s ease;
    }
    
    .dropdown a:hover {
        background: rgba(74, 93, 74, 0.15);
        color: #ffffff;
        transform: translateX(5px);
        border-color: rgba(255, 255, 255, 0.15);
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    body.nav-open {
        overflow: hidden;
    }
    
    body.nav-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 998;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .about-content,
    .news-content,
    .contact-content,
    .vacatures-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .footer-main {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 3rem 0;
    }
    
    .hero {
        padding-top: 100px;
    }
    
    .hero-content {
        padding-top: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-stats {
        display: none;
    }
    
    .stat {
        padding: 1.5rem 2rem;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .trust {
        padding: 0.5rem 0;
    }
    
    .trust-content {
        gap: 1rem;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .trust-item {
        flex: 0 1 auto;
        min-width: fit-content;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .whatsapp-float {
        bottom: 1rem;
        right: 1rem;
    }
    
    .trust {
        padding: 0.25rem 0;
    }
    
    .trust-content {
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .hero {
        padding-top: 90px;
        min-height: 100vh;
    }
    
    .hero-content {
        padding-top: 0.5rem;
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 9vw, 2.2rem);
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.2rem);
    }
    
    .hero-description {
        font-size: clamp(1rem, 4vw, 1.1rem);
        margin-bottom: 2rem;
    }
    
    .hero-stats {
        display: none;
    }
    
    .stat {
        padding: 1.25rem 1.5rem;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .service-card,
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .image-container {
        width: 200px;
        height: 200px;
    }
    
    .overlay-icon {
        width: 40px;
        height: 40px;
        bottom: 15px;
        right: 15px;
    }
    
    .overlay-icon i {
        font-size: 1rem;
    }
}

/* Scroll Animations */
@media (prefers-reduced-motion: no-preference) {
    .service-card,
    .feature,
    .contact-method {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }
    
    .service-card.animate,
    .feature.animate,
    .contact-method.animate {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Print Styles */
@media print {
    .header,
    .whatsapp-float,
    .nav-toggle {
        display: none;
    }
    
    .hero {
        height: auto;
        min-height: auto;
        padding: 2rem 0;
    }
    
    .hero-background {
        display: none;
    }
    
    .hero-content {
        color: var(--black);
    }
    
    .hero-title,
    .hero-subtitle,
    .hero-description {
        color: var(--black);
    }
    
    * {
        box-shadow: none !important;
    }
}