/* AG Security Services - Modern Design 2025 */

:root {
    --primary-dark: #0a0a0a;
    --primary-blue: #1a4d7d;
    --accent-gold: #d4af37;
    --text-light: #ffffff;
    --text-gray: #e0e0e0;
    --bg-dark: #0f0f0f;
    --bg-section: #1a1a1a;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--primary-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 85px;
    width: 100%;
    max-width: 100vw;
}

html {
    overflow-x: hidden;
    width: 100%;
}

img,
video {
    max-width: 100%;
    height: auto;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

/* Header Styling */
#header {
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.98) 0%, rgba(10, 10, 10, 0.95) 100%);
    backdrop-filter: blur(15px);
    padding: 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

#header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    border-bottom-color: rgba(212, 175, 55, 0.2);
}

#header .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

#header .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 85px;
}

.header-left {
    flex: 0 0 auto;
    margin-right: 6rem;
}

.header-left img {
    max-height: 55px;
    transition: var(--transition);
}

.header-left img:hover {
    transform: scale(1.05);
}

.header-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

/* Navigation */
.main-menu .animenu__nav {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-menu .animenu__nav li {
    position: relative;
}

.main-menu .animenu__nav li a {
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.8rem 1.5rem;
    position: relative;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    border-radius: 8px;
}

.main-menu .animenu__nav li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    border-radius: 8px;
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.main-menu .animenu__nav li a::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 70%;
    height: 2px;
    background: var(--accent-gold);
    transition: var(--transition);
    border-radius: 2px;
}

.main-menu .animenu__nav li a:hover {
    color: var(--accent-gold);
    transform: translateY(-2px);
}

.main-menu .animenu__nav li a:hover::before {
    opacity: 1;
}

.main-menu .animenu__nav li a:hover::after {
    transform: translateX(-50%) scaleX(1);
}

/* Active/Current Page Style */
.main-menu .animenu__nav li.active a,
.main-menu .animenu__nav li a.active {
    color: var(--accent-gold);
}

.main-menu .animenu__nav li.active a::before {
    opacity: 1;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
}

.main-menu .animenu__nav li.active a::after {
    transform: translateX(-50%) scaleX(1);
}

/* Special Contact Button in Nav */
.main-menu .animenu__nav li:last-child a {
    background: linear-gradient(135deg, var(--accent-gold), #f4d03f);
    color: var(--primary-dark);
    font-weight: 700;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    margin-left: 0.5rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.main-menu .animenu__nav li:last-child a::before,
.main-menu .animenu__nav li:last-child a::after {
    display: none;
}

.main-menu .animenu__nav li:last-child a:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
    color: var(--primary-dark);
}

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 85px;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), #f4d03f);
    z-index: 1001;
    transition: width 0.1s ease;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.5);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: calc(100vh - 85px);
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(26, 77, 125, 0.3) 0%, transparent 50%),
        linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    overflow: hidden;
    margin-top: 0;
}

#particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('banner.png') center/cover no-repeat;
    opacity: 0.08;
    z-index: 0;
    filter: blur(2px);
}

.hero-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(212, 175, 55, 0.03) 2px,
            rgba(212, 175, 55, 0.03) 4px
        );
    animation: grid-move 20s linear infinite;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

@keyframes grid-move {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

/* Modern Buttons */
.btn-modern {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-gold);
    color: var(--primary-dark);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: var(--transition);
    border: 2px solid var(--accent-gold);
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-modern::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: width 0.6s, height 0.6s, top 0.6s, left 0.6s;
    transform: translate(-50%, -50%);
}

.btn-modern:hover::before {
    width: 300px;
    height: 300px;
}

.btn-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

/* Kleine toewijzingsknop + select voor diensten (admin) */
.dienst-assign-form {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin: 0;
}

.dienst-assign-select {
    max-width: 200px;
    padding: 0.1rem 0.1rem;
    border-radius: 0;
    border: none;
    border-bottom: 1px dashed rgba(212, 175, 55, 0.6);
    background: transparent;
    color: var(--accent-gold);
    font-size: 0.8rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.dienst-assign-select:focus {
    outline: none;
    border-bottom-style: solid;
    border-bottom-color: var(--accent-gold);
    box-shadow: none;
}

.btn-assign-small {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    border: none;
    background: var(--accent-gold);
    color: #000;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

/* Uurtarief editor in gebruikersbeheer */
.tarief-editor {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    background: rgba(15, 15, 15, 0.85);
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 0.5rem 0.6rem;
    width: 100%;
}

.tarief-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.4rem;
}

.tarief-label {
    font-size: 0.75rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    flex: 1;
}

.tarief-input {
    width: 90px;
    padding: 0.15rem 0.4rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(5, 5, 5, 0.95);
    color: var(--text-light);
    font-size: 0.8rem;
    flex-shrink: 0;
}

.tarief-input:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.5);
}

.tarief-save-wrapper {
    margin-top: 0.3rem;
}

@media (max-width: 768px) {
    .tarief-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .tarief-input {
        width: 100%;
    }
}

.btn-assign-small i {
    font-size: 0.75rem;
}

.btn-assign-small:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
    margin-left: 1rem;
}

.btn-outline:hover {
    background: var(--text-light);
    color: var(--primary-dark);
}

/* Stats Section */
.stats-section {
    padding: 4rem 0;
    background: var(--bg-section);
}

/* Centreer de 3 statistiek-blokken binnen de sectie */
.stats-section .container {
    display: flex;
    justify-content: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 960px;
    width: 100%;
}

.monthly-stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}

@media (max-width: 1200px) {
    .monthly-stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .monthly-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .monthly-stats-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1200px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

.stat-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(26, 77, 125, 0.05));
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.stat-icon {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff, var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Service Cards */
.services-section {
    padding: 6rem 0;
    background: var(--bg-dark);
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 4rem;
    font-weight: 300;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    padding: 2rem 0;
}

.service-card {
    background: var(--bg-section);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.3);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-gold));
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.3);
    cursor: pointer;
}

.service-card:active {
    transform: translateY(-8px) scale(0.98);
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--accent-gold), #f4d03f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.service-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, #0a0a0a 50%, rgba(212, 175, 55, 0.1) 100%);
    padding: 4rem 3rem;
    border-radius: 20px;
    margin: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
    pointer-events: none; /* overlay mag geen klikken blokkeren */
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-section h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--primary-dark);
    color: var(--text-light);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
}

.contact-btn:hover {
    border-color: var(--accent-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: var(--bg-section);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    transition: var(--transition);
    filter: brightness(1.05) saturate(0.8) hue-rotate(10deg);
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.about-text h3 {
    color: var(--accent-gold);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.about-text p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background: var(--bg-section);
    text-align: center;
}

.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 3rem auto;
    min-height: 350px;
}

.testimonial-card {
    background: var(--bg-dark);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    position: relative;
}

.testimonial-stars {
    color: var(--accent-gold);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-stars i {
    margin: 0 0.2rem;
}

.testimonial-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.testimonial-author strong {
    color: var(--accent-gold);
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-prev,
.testimonial-next {
    background: var(--bg-dark);
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.2rem;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
    transform: scale(1.1);
}

.testimonial-dots {
    display: flex;
    gap: 1rem;
}

.testimonial-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dots .dot.active {
    background: var(--accent-gold);
    transform: scale(1.3);
}

.testimonial-dots .dot:hover {
    background: var(--accent-gold);
}

/* Partners Section */
.partners-section {
    padding: 4rem 0;
    background: var(--bg-dark);
    text-align: center;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    align-items: center;
}

.partner-logo {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.partner-logo:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.partner-logo img {
    max-width: 150px;
    height: auto;
    filter: grayscale(100%) brightness(0.8);
    opacity: 0.6;
    transition: var(--transition);
}

.partner-logo:hover img {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
}

/* Footer */
.footer {
    background: #404040; /* neutraal donkergrijs */
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo img {
    filter: brightness(1.05) saturate(0.8) hue-rotate(10deg);
    transition: var(--transition);
}

.footer-logo img:hover {
    filter: brightness(1.2) saturate(0.8) hue-rotate(10deg);
}

.footer h4 {
    color: var(--accent-gold);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer p, .footer address {
    color: #ffffff;
    line-height: 1.8;
    font-style: normal;
}

.footer a {
    color: #ffffff;
    text-decoration: none;
    transition: var(--transition);
}

.footer a:hover {
    color: var(--accent-gold);
}

.socialfooter {
    display: flex;
    gap: 1rem;
    list-style: none;
    margin-top: 1.5rem;
}

.socialfooter li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--bg-section);
    border-radius: 50%;
    color: var(--text-light);
    font-size: 1.2rem;
    transition: var(--transition);
}

.socialfooter li a:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.copy-right {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

/* Floating Action Button */
.floating-cta {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.fab-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-gold), #f4d03f);
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-dark);
    position: relative;
    animation: pulse-ring 2s infinite;
}

.fab-button:hover {
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 8px 35px rgba(212, 175, 55, 0.7);
}

.fab-button.active {
    transform: rotate(45deg);
}

.fab-menu {
    position: absolute;
    bottom: 80px;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.fab-menu.active {
    opacity: 1;
    pointer-events: auto;
}

.fab-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1.5rem;
    background: var(--bg-dark);
    border: 2px solid var(--accent-gold);
    border-radius: 50px;
    color: var(--text-light);
    text-decoration: none;
    white-space: nowrap;
    transition: var(--transition);
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transform: translateY(10px);
}

.fab-menu.active .fab-item {
    transform: translateY(0);
}

.fab-menu.active .fab-item:nth-child(1) {
    transition-delay: 0.05s;
}

.fab-menu.active .fab-item:nth-child(2) {
    transition-delay: 0.1s;
}

.fab-menu.active .fab-item:nth-child(3) {
    transition-delay: 0.15s;
}

.fab-menu.active .fab-item:nth-child(4) {
    transition-delay: 0.2s;
}

.fab-item:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.fab-item i {
    font-size: 1.2rem;
}

@keyframes pulse-ring {
    0%, 100% {
        box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5), 0 0 0 0 rgba(212, 175, 55, 0.7);
    }
    50% {
        box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5), 0 0 0 15px rgba(212, 175, 55, 0);
    }
}

/* WhatsApp Button */
.whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp a {
    display: block;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp img {
    width: 35px;
    height: 35px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.1) rotate(180deg);
    }
}

/* Mobile Menu Toggle - minimal, strak icoon */
.animenu__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: transparent;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    padding: 6px;
    transition: var(--transition);
}

.animenu__toggle:hover {
    background: rgba(0, 0, 0, 0.02);
}

.animenu__toggle__bar {
    width: 22px;
    height: 2px;
    background: var(--primary-dark);
    transition: var(--transition);
    border-radius: 999px;
}

.animenu__toggle.active .animenu__toggle__bar {
    background: var(--accent-gold);
}

.animenu__toggle.active .animenu__toggle__bar:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
}

.animenu__toggle.active .animenu__toggle__bar:nth-child(2) {
    opacity: 0;
}

.animenu__toggle.active .animenu__toggle__bar:nth-child(3) {
    transform: translateY(-4px) rotate(-45deg);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .btn-outline {
        margin-left: 0;
        margin-top: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* Mobile Navigation */
    .animenu__toggle {
        display: flex;
    }
    
    .main-menu .animenu__nav {
        position: fixed;
        top: 85px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 85px);
        background: #ffffff;
        flex-direction: column;
        padding: 1.5rem 1.5rem 2rem;
        transition: var(--transition);
        z-index: 999;
        gap: 0;
        overflow-y: auto;
        box-shadow: 0 18px 40px rgba(15, 23, 42, 0.15);
    }
    
    .main-menu .animenu__nav.active {
        right: 0;
    }
    
    .main-menu .animenu__nav li {
        width: 100%;
        margin: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);n    }
    
    .main-menu .animenu__nav li:last-child {
        border-bottom: none;
    }
    
    .main-menu .animenu__nav li a {
        display: block;
        width: 100%;
        padding: 0.9rem 0.25rem;
        text-align: left;
        font-size: 0.98rem;
        background: transparent;
        border: none;
        border-radius: 0;
        color: var(--primary-dark);
    }
    
    /* geen dikke onderstreep/hover-balken in mobiel menu */
    .main-menu .animenu__nav li a::before,
    .main-menu .animenu__nav li a::after {
        display: none;
    }
    
    .main-menu .animenu__nav li a:hover,
    .main-menu .animenu__nav li a.active {
        background: rgba(0, 0, 0, 0.03);
        color: var(--primary-dark);
    }
    
    .main-menu .animenu__nav li:last-child a {
        background: transparent;
        font-weight: 600;
        color: var(--primary-dark);
        padding-top: 1.1rem;
    }
    
    #header .container {
        padding: 0 1rem;
    }
    
    #header .row {
        padding: 0;
    }
    
    .header-right {
        padding-right: 0;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    body {
        padding-top: 85px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--primary-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: #FBEC2F;
}

/* Light theme overrides voor pvsecurityservices (homepage) */
:root {
    --primary-dark: #404040;   /* donkergrijs uit ontwerp */
    --primary-blue: #404040;   /* hergebruikt als neutraal grijs in selectors */
    --accent-gold: #D4AF37;    /* donkerder goud voor betere leesbaarheid op wit */
    --text-light: #404040;
    --text-gray: #6b7280;
    --bg-dark: #f3f4f6;
    --bg-section: #f9fafb;
    --transition: all 0.3s ease;
}

/* Basis */
body {
    background: #ffffff;
    color: var(--text-light);
}

/* Header & navigatie */
#header {
    background: #ffffff;
    backdrop-filter: none;
    box-shadow: 0 2px 12px rgba(64, 64, 64, 0.12);
    border-bottom: 1px solid rgba(64, 64, 64, 0.12);
}

#header.scrolled {
    box-shadow: 0 4px 18px rgba(64, 64, 64, 0.2);
    border-bottom-color: rgba(251, 236, 47, 0.5);
}

/* Nieuwe, minimalistische navbar-stijl */
.main-menu .animenu__nav {
    gap: 1.5rem;
}

.main-menu .animenu__nav li a {
    position: relative;
    color: var(--primary-dark);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: none;
    letter-spacing: 0.03em;
    padding: 0.2rem 0;
    margin: 0 0.25rem;
    border-radius: 0;
}

.main-menu .animenu__nav li a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    border-radius: 999px;
    transition: var(--transition);
    opacity: 0;
}

.main-menu .animenu__nav li a:hover {
    color: var(--primary-dark);
}

.main-menu .animenu__nav li a:hover::before {
    width: 100%;
    opacity: 1;
}

.main-menu .animenu__nav li.active a,
.main-menu .animenu__nav li a.active {
    color: var(--primary-dark);
}

.main-menu .animenu__nav li.active a::before,
.main-menu .animenu__nav li a.active::before {
    width: 100%;
    opacity: 1;
}

/* Zorg dat het laatste item (Contact) niet meer als knop wordt gestyled */
.main-menu .animenu__nav li:last-child a {
    background: transparent;
    box-shadow: none;
}

/* Hero */
.hero-section {
    background:
        radial-gradient(circle at 0% 0%, rgba(251, 236, 47, 0.22) 0%, transparent 55%),
        radial-gradient(circle at 100% 100%, rgba(64, 64, 64, 0.25) 0%, transparent 55%),
        #f9fafb;
}

.hero-content h1 {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Kaarten & secties */
.stats-section,
.services-section,
.about-section,
.testimonials-section,
.partners-section {
    background: var(--bg-section);
}

.stat-card,
.service-card,
.testimonial-card,
.partner-logo {
    background: #ffffff;
    border-color: rgba(64, 64, 64, 0.12);
    box-shadow: 0 12px 30px rgba(64, 64, 64, 0.06);
}

.stat-card:hover,
.service-card:hover,
.partner-logo:hover {
    box-shadow: 0 16px 40px rgba(64, 64, 64, 0.12);
}

/* CTA blok + knoppen */
.cta-section {
    background: linear-gradient(135deg, #fffbe6 0%, #f3f4f6 40%, #ffffff 100%);
    border-color: rgba(64, 64, 64, 0.18);
}

.btn-modern {
    background: linear-gradient(135deg, #f7f1a8, #FBEC2F);
    color: #404040;
    border: none;
    border-radius: 999px;
    box-shadow: 0 8px 22px rgba(64, 64, 64, 0.15);
}

.btn-modern:hover {
    box-shadow: 0 12px 30px rgba(64, 64, 64, 0.25);
}

.btn-outline {
    background: transparent;
    color: var(--primary-dark);
    border-color: rgba(64, 64, 64, 0.35);
}

.btn-outline:hover {
    background: rgba(64, 64, 64, 0.03);
    color: var(--primary-dark);
    border-color: rgba(251, 236, 47, 0.7);
}

.contact-btn {
    background: #ffffff;
    color: var(--primary-dark);
    border-radius: 999px;
    border: 1px solid rgba(64, 64, 64, 0.35);
}

.contact-btn:hover {
    background: linear-gradient(135deg, #f7f1a8, #FBEC2F);
    color: #404040;
    border-color: transparent;
}

/* Footer */
.footer {
    background: #404040;
}

/* Login Page Styles */
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
    padding: 2rem;
}

#particles-canvas-login {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.login-card {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 3rem;
    max-width: 450px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out;
}

.login-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.login-logo {
    max-width: 200px;
    margin-bottom: 1.5rem;
    filter: brightness(1.05) saturate(0.8) hue-rotate(10deg);
}

.login-header h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.login-header p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group label i {
    color: var(--accent-gold);
    margin-right: 0.5rem;
}

.form-group input {
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    color: var(--text-light);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-error {
    background: rgba(220, 53, 69, 0.15);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #ff6b7a;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    display: none;
    animation: shake 0.3s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

.btn-login {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--accent-gold), #f4d03f);
    color: var(--primary-dark);
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    margin-top: 1rem;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
}

.btn-login:active {
    transform: translateY(0);
}

.login-footer {
    margin-top: 2rem;
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.back-link {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

.back-link:hover {
    color: var(--accent-gold);
}

.back-link i {
    margin-right: 0.5rem;
}

/* Dashboard Welcome Section */
.dashboard-welcome {
    position: relative;
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    text-align: center;
    overflow: hidden;
}

.welcome-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.welcome-content h1 span {
    color: var(--accent-gold);
    background: none;
    -webkit-text-fill-color: var(--accent-gold);
}

.welcome-content p {
    color: var(--text-gray);
    font-size: 1.2rem;
}

/* Rooster Header */
.rooster-header {
    padding: 8rem 0 3rem;
    background: var(--bg-section);
    text-align: center;
}

.rooster-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rooster-header h1 i {
    margin-right: 1rem;
    color: var(--accent-gold);
    background: none;
    -webkit-text-fill-color: var(--accent-gold);
}

.rooster-header p {
    color: var(--text-gray);
    font-size: 1.1rem;
}

/* Week Navigation */
.week-navigation {
    padding: 2rem 0;
    background: var(--bg-dark);
}

.week-nav-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.current-week {
    font-size: 1.5rem;
    color: var(--text-light);
    text-align: center;
    flex: 1;
}

.week-btn {
    padding: 0.75rem 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--accent-gold);
    border-radius: 10px;
    color: var(--accent-gold);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.week-btn:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-today {
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, var(--accent-gold), #f4d03f);
    color: var(--primary-dark);
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.btn-today:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.5);
}

.btn-today i {
    margin-right: 0.5rem;
}

/* Schedule Grid */
.schedule-section {
    padding: 3rem 0;
    background: var(--bg-section);
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1rem;
}

.schedule-day {
    background: var(--bg-dark);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.schedule-day:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
}

.schedule-day.weekend {
    background: rgba(212, 175, 55, 0.05);
}

.schedule-day.today {
    border: 2px solid var(--accent-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    }
}

.today-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-gold), #f4d03f);
    color: var(--primary-dark);
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-left: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: badge-bounce 0.5s ease-out;
}

@keyframes badge-bounce {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.day-header {
    padding: 1rem;
    background: rgba(212, 175, 55, 0.1);
    text-align: center;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

.day-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.day-date {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-top: 0.25rem;
}

.day-count {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.25rem;
    font-style: italic;
}

.day-shifts {
    padding: 1rem;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.schedule-shift {
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid;
    background: rgba(255, 255, 255, 0.03);
}

.schedule-shift.shift-morning {
    border-left-color: #4CAF50;
    background: rgba(76, 175, 80, 0.1);
}

.schedule-shift.shift-evening {
    border-left-color: #FF9800;
    background: rgba(255, 152, 0, 0.1);
}

.schedule-shift.shift-night {
    border-left-color: #2196F3;
    background: rgba(33, 150, 243, 0.1);
}

.shift-time {
    font-weight: 700;
    color: var(--accent-gold);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.shift-type {
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
}

.shift-location {
    color: var(--text-gray);
    font-size: 0.8rem;
}

.shift-medewerker {
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
}

.shift-delete {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(220, 53, 69, 0.2);
    color: #ff6b7a;
    border-radius: 50%;
    font-size: 0.75rem;
    opacity: 0;
    transition: all 0.2s ease;
    cursor: pointer;
    border: 1px solid rgba(220, 53, 69, 0.3);
}

.schedule-shift:hover .shift-delete {
    opacity: 1;
}

.shift-delete:hover {
    background: rgba(220, 53, 69, 0.4);
    color: #fff;
    transform: scale(1.1);
}

/* Berichten Styling */
.berichten-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.bericht-card {
    background: var(--bg-section);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 1.5rem;
    transition: var(--transition);
}

.bericht-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.bericht-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 1rem;
}

.bericht-header h3 {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin: 0;
}

.bericht-date {
    font-size: 0.85rem;
    color: var(--text-gray);
    white-space: nowrap;
}

.bericht-body p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0 0 1rem 0;
}

.bericht-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bericht-author {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* Berichten Banner (voor rooster pagina) */
.berichten-banner {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(26, 77, 125, 0.1));
    padding: 1.5rem 0;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.berichten-banner h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.berichten-lijst {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bericht-banner-item {
    background: var(--bg-dark);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-gold);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.bericht-banner-item strong {
    color: var(--text-light);
    font-size: 1rem;
}

.bericht-banner-item span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.bericht-banner-item small {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

/* Toggle button styling */
.btn-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    background: rgba(33, 150, 243, 0.2);
    color: #64b5f6;
    border-radius: 6px;
    margin-right: 0.5rem;
    transition: var(--transition);
    text-decoration: none;
}

.btn-toggle:hover {
    background: rgba(33, 150, 243, 0.4);
    transform: scale(1.1);
}

/* Gelezen button */
.btn-gelezen {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
    border-radius: 6px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.btn-gelezen:hover {
    background: rgba(76, 175, 80, 0.3);
    transform: translateY(-2px);
}

/* Submit button fix */
.btn-submit {
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, var(--accent-gold), #f4d03f);
    color: var(--primary-dark);
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Beschikbaarheid Kalender */
.beschikbaarheid-kalender {
    background: var(--bg-dark);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.kalender-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.dag-naam-header {
    text-align: center;
    font-weight: 700;
    color: var(--accent-gold);
    padding: 0.5rem;
    font-size: 0.9rem;
}

.kalender-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
}

.kalender-dag {
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.kalender-dag:not(.leeg):hover {
    transform: scale(1.05);
    border-color: var(--accent-gold);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.kalender-dag.leeg {
    background: transparent;
    border: none;
    cursor: default;
}

.kalender-dag.vandaag {
    border-color: var(--accent-gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.kalender-dag.verleden {
    opacity: 0.5;
}

.kalender-dag.status-ja {
    background: rgba(33, 150, 243, 0.15); /* Blauw - beschikbaar */
    border-color: #2196F3;
}

.kalender-dag.status-nee {
    background: rgba(220, 53, 69, 0.15); /* Rood - onbeschikbaar */
    border-color: #dc3545;
}

.kalender-dag.status-misschien {
    background: rgba(255, 152, 0, 0.15);
    border-color: #FF9800;
}

    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.status-indicator {
    font-size: 1rem;
}

.status-indicator i {
    color: var(--text-light);
}

.kalender-dag.status-ja .status-indicator i {
    color: #4CAF50;
}

.kalender-dag.status-nee .status-indicator i {
    color: #dc3545;
}

.kalender-dag.status-misschien .status-indicator i {
    color: #FF9800;
}

.kalender-dag.status-vakantie .status-indicator i {
    color: #9C27B0;
}

/* Beschikbaarheid Legenda */
.beschikbaarheid-legenda {
    background: var(--bg-dark);
    border-radius: 15px;
    padding: 2rem;
}

.beschikbaarheid-legenda h3 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.legenda-items {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.legenda-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.legenda-box {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid;
}

.legenda-box.status-ja {
    background: rgba(33, 150, 243, 0.15);
    border-color: #2196F3;
    color: #2196F3;
}

.legenda-box.status-nee {
    background: rgba(220, 53, 69, 0.15);
    border-color: #dc3545;
    color: #dc3545;
}

.legenda-box.status-misschien {
    background: rgba(255, 152, 0, 0.15);
    border-color: #FF9800;
    color: #FF9800;
}

.legenda-box.status-onbekend {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.1);
}

/* Modal Styling */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: var(--bg-dark);
    margin: 5% auto;
    padding: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-content h2 {
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    color: var(--text-gray);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
}

.close:hover {
    color: var(--accent-gold);
    transform: rotate(90deg);
}

.day-off {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--text-gray);
}

.day-off i {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--accent-gold);
    opacity: 0.5;
}

.day-off p {
    font-weight: 600;
    font-size: 1rem;
}

/* Legend */
.schedule-legend {
    padding: 2rem 0;
    background: var(--bg-dark);
}

.schedule-legend h3 {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.legend-items {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.legend-color {
    width: 30px;
    height: 20px;
    border-radius: 4px;
    border-left: 4px solid;
}

.legend-color.shift-morning {
    background: rgba(76, 175, 80, 0.1);
    border-left-color: #4CAF50;
}

.legend-color.shift-evening {
    background: rgba(255, 152, 0, 0.1);
    border-left-color: #FF9800;
}

.legend-color.shift-night {
    background: rgba(33, 150, 243, 0.1);
    border-left-color: #2196F3;
}

.legend-item span {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Monthly Stats */
.monthly-stats {
    padding: 4rem 0;
    background: var(--bg-section);
}

/* Shift Cards (Dashboard) */
.shifts-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.shift-card {
    background: var(--bg-dark);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    padding: 2rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
    transition: var(--transition);
}

.shift-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.shift-date {
    text-align: center;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(26, 77, 125, 0.15));
    border-radius: 10px;
}

.shift-date .day {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-gold);
    line-height: 1;
}

.shift-date .month {
    font-size: 1rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.25rem;
}

.shift-details h3 {
    color: var(--text-light);
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.shift-details p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin: 0.25rem 0;
}

.shift-details i {
    color: var(--accent-gold);
    margin-right: 0.5rem;
    width: 20px;
}

.shift-status {
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}

.shift-status i {
    margin-right: 0.5rem;
}

.status-confirmed {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.status-pending {
    background: rgba(255, 152, 0, 0.2);
    color: #FF9800;
    border: 1px solid rgba(255, 152, 0, 0.3);
}

/* Responsive Updates */
@media (max-width: 1024px) {
    .schedule-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .login-card {
        padding: 2rem 1.5rem;
    }
    
    .dashboard-welcome {
        padding: 6rem 0 3rem;
    }
    
    .welcome-content h1 {
        font-size: 2rem;
    }
    
    .rooster-header h1 {
        font-size: 2rem;
    }
    
    .schedule-grid {
        grid-template-columns: 1fr;
    }
    
    .week-nav-controls {
        flex-direction: column;
        gap: 1rem;
    }
    
    .current-week {
        order: -1;
        font-size: 1.2rem;
    }
    
    .week-btn {
        width: 100%;
    }
    
    .shift-card {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .shift-card:hover {
        transform: translateY(-5px);
    }
}

/* Piket Chat Widget */
.piket-chat {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9500;
}

.piket-chat-toggle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--accent-gold), #f4d03f);
    color: #0a0a0a;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.4rem;
    transition: var(--transition);
}

.piket-chat-toggle:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.6);
}

.piket-chat-window {
    position: fixed;
    right: 20px;
    bottom: 90px;
    width: 340px;
    max-height: 70vh;
    background: linear-gradient(135deg, rgba(10,10,10,0.98) 0%, rgba(26,26,40,0.98) 100%);
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.75);
    display: none;
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: auto; /* hele widget scrolbaar maken zodat je altijd bij de HR-knop kan */
}

.piket-chat-window.open {
    display: flex;
}

.piket-chat-header {
    padding: 0.8rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.7);
    border-bottom: 1px solid rgba(212, 175, 55, 0.4);
}

.piket-chat-header strong {
    color: var(--accent-gold);
}

.piket-chat-subtitle {
    font-size: 0.8rem;
    color: var(--text-gray);
}

.piket-chat-close {
    background: transparent;
    border: none;
    color: var(--text-gray);
    cursor: pointer;
    font-size: 1.1rem;
    transition: var(--transition);
}

.piket-chat-close:hover {
    color: var(--accent-gold);
    transform: rotate(90deg);
}

.piket-chat-body {
    padding: 0.75rem 0.75rem 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.piket-chat-messages {
    max-height: 300px;
    min-height: 140px;
    overflow-y: auto;
    padding-right: 0.25rem;
    margin-bottom: 0.25rem;
}

.piket-chat-message {
    margin-bottom: 0.35rem;
    display: flex;
    align-items: flex-start;
}

.piket-chat-message-inner {
    max-width: 100%;
    padding: 0.55rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    line-height: 1.45;
    white-space: pre-wrap;      /* behoud nieuwe regels in bot-tekst */
    word-wrap: break-word;
}

/* iets andere vormen per type voor mooiere bubbles */
.piket-chat-message.user .piket-chat-message-inner {
    border-radius: 16px 16px 4px 16px;
}

.piket-chat-message.hr .piket-chat-message-inner {
    border-radius: 16px 16px 16px 4px;
}

.piket-chat-message.bot .piket-chat-message-inner,
.piket-chat-message.system .piket-chat-message-inner {
    border-radius: 10px;
}

.piket-chat-message.user {
    justify-content: flex-end;
}

.piket-chat-message.user .piket-chat-message-inner {
    background: rgba(33, 150, 243, 0.9);
    color: #fff;
}

.piket-chat-message.hr .piket-chat-message-inner {
    background: rgba(76, 175, 80, 0.15);
    border: 1px solid #4CAF50;
    color: #c8e6c9;
}

.piket-chat-message.bot .piket-chat-message-inner,
.piket-chat-message.system .piket-chat-message-inner {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.35);
    color: var(--text-gray);
}

.piket-chat-message.system {
    justify-content: center;
}

.piket-chat-message.system .piket-chat-message-inner {
    border-radius: 10px;
    font-size: 0.75rem;
}

.piket-chat-quick {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 0.5rem;
}

.piket-chat-intro {
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-bottom: 0.4rem;
}

.piket-chat-quick-btn,
.piket-chat-hr-btn {
    width: 100%;
    text-align: left;
    margin-bottom: 0.35rem;
    padding: 0.45rem 0.7rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-light);
    font-size: 0.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.piket-chat-quick-btn:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.4);
}

.piket-chat-hr-btn {
    background: rgba(220, 53, 69, 0.18);
    border-color: rgba(220, 53, 69, 0.5);
}

.piket-chat-hr-btn:hover {
    background: rgba(220, 53, 69, 0.3);
}

.piket-chat-divider {
    text-align: center;
    margin: 0.35rem 0;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    position: relative;
}

.piket-chat-divider span {
    background: rgba(10, 10, 10, 0.9);
    padding: 0 0.35rem;
    position: relative;
    z-index: 1;
}

.piket-chat-divider::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
    z-index: 0;
}

.piket-chat-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 0.4rem;
}

.piket-chat-form {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

#piket-chat-input {
    flex: 1;
    padding: 0.45rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-light);
    font-size: 0.85rem;
}

.piket-chat-send {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--accent-gold), #f4d03f);
    color: #0a0a0a;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.piket-chat-hint {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
}

.piket-chat-close-chat {
    margin-top: 0.2rem;
    padding: 0;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.7rem;
    cursor: pointer;
    text-decoration: underline;
}

.piket-chat-close-chat:hover {
    color: #ffffff;
}

.piket-chat-new-wrapper {
    margin-top: 0.5rem;
    padding-top: 0.4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.piket-chat-closed-text {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.35rem;
}

.piket-chat-new-chat {
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(212, 175, 55, 0.6);
    background: transparent;
    color: var(--accent-gold);
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition);
}

.piket-chat-new-chat:hover {
    background: rgba(212, 175, 55, 0.15);
}

@media (max-width: 480px) {
    .piket-chat-window {
        right: 8px;
        left: 8px;
        width: auto;
        bottom: 76px;
        max-height: 80vh; /* meer hoogte op telefoon */
        border-radius: 14px;
    }
    .piket-chat-messages {
        max-height: 55vh;
        min-height: 120px;
    }
    .piket-chat-quick-btn,
    .piket-chat-hr-btn {
        padding: 0.55rem 0.85rem;
        font-size: 0.9rem;   /* grotere tap targets */
    }
    .piket-chat-intro {
        font-size: 0.9rem;
    }
    #piket-chat-input {
        font-size: 0.9rem;
        padding: 0.55rem 0.85rem;
    }
    .piket-chat-send {
        width: 38px;
        height: 38px;
    }
}

/* Admin Panel Styles */
.admin-form {
    background: var(--bg-section);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group label i {
    color: var(--accent-gold);
    margin-right: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    color: var(--text-light);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.form-group select option {
    background: var(--bg-dark);
    color: var(--text-light);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Table Styles */
.table-container {
    overflow-x: auto;
    background: var(--bg-dark);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table thead {
    background: rgba(212, 175, 55, 0.1);
}

.admin-table th {
    padding: 1.25rem 1rem;
    text-align: left;
    font-weight: 700;
    color: var(--accent-gold);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

.admin-table td {
    padding: 1.25rem 1rem;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.admin-table tbody tr {
    transition: var(--transition);
}

.admin-table tbody tr:hover {
    background: rgba(212, 175, 55, 0.05);
}

/* Badges */
.badge {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

.badge-dagdienst {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.badge-avonddienst {
    background: rgba(255, 152, 0, 0.2);
    color: #FF9800;
    border: 1px solid rgba(255, 152, 0, 0.3);
}

.badge-nachtdienst {
    background: rgba(33, 150, 243, 0.2);
    color: #2196F3;
    border: 1px solid rgba(33, 150, 243, 0.3);
}

.badge-evenement {
    background: rgba(156, 39, 176, 0.2);
    color: #9C27B0;
    border: 1px solid rgba(156, 39, 176, 0.3);
}

.badge-bevestigd,
.badge-gepland {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.badge-afwachting {
    background: rgba(255, 152, 0, 0.2);
    color: #FF9800;
    border: 1px solid rgba(255, 152, 0, 0.3);
}

.badge-geannuleerd {
    background: rgba(220, 53, 69, 0.2);
    color: #ff6b7a;
    border: 1px solid rgba(220, 53, 69, 0.4);
}

/* Action Buttons */
.btn-delete {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(220, 53, 69, 0.1);
    border: 2px solid rgba(220, 53, 69, 0.3);
    border-radius: 8px;
    color: #dc3545;
    transition: var(--transition);
    text-decoration: none;
}

.btn-delete:hover {
    background: rgba(220, 53, 69, 0.2);
    border-color: #dc3545;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .admin-table {
        font-size: 0.85rem;
    }
    
    .admin-table th,
    .admin-table td {
        padding: 0.75rem 0.5rem;
    }

    /* Compactere velden voor Nieuwe Dienst Toevoegen op telefoon (tablet + telefoon) */
    .admin-form {
        padding: 1.75rem 1.5rem;
        max-width: 620px;
        margin: 0 auto;
    }

    .admin-form .form-group input,
    .admin-form .form-group select,
    .admin-form .form-group textarea {
        padding: 0.7rem 0.9rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 520px) {
    /* Extra compact op kleine telefoons */
    .admin-form {
        padding: 1.25rem 1rem;
        max-width: 100%;
    }

    .admin-form .form-group label {
        font-size: 0.85rem;
    }

    .admin-form .form-group input,
    .admin-form .form-group select,
    .admin-form .form-group textarea {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }
}

/* Homepage 2025 redesign */
body.home {
    background: #f3f4f6;
    color: var(--primary-dark);
}

.home .home-main {
    padding-bottom: 4rem;
}

/* Hero: nieuwe split layout zonder particles */
.home .hero-section {
    position: relative;
    padding: 6rem 0 4rem;
    min-height: auto;
    height: auto;
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 45%, #fffbe6 100%);
    overflow: visible;
}

.home #particles-canvas {
    display: none;
}

.home .hero-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.9fr) minmax(0, 1.4fr);
    gap: 3rem;
    align-items: center;
}

.home .hero-main h1 {
    font-size: 3rem;
    line-height: 1.15;
}

.home .hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.home .hero-kicker::before {
    content: '';
    width: 34px;
    height: 1px;
    background: var(--accent-gold);
}

.home .hero-main p {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 36rem;
}

.home .hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 2rem 0 1.75rem;
}

.home .hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid rgba(64, 64, 64, 0.12);
    font-size: 0.85rem;
    color: var(--primary-dark);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.home .hero-pill i {
    color: var(--primary-dark);
}

.home .hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 1.5rem;
}

.home .hero-secondary-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary-dark);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.home .hero-secondary-link::after {
    content: '\f061'; /* fa-arrow-right */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.85rem;
}

.home .hero-secondary-link:hover {
    color: var(--accent-gold);
}

.home .hero-aside {
    align-self: stretch;
}

.home .hero-aside-card {
    background: #111827;
    color: #e5e7eb;
    border-radius: 20px;
    padding: 1.75rem 1.75rem 1.5rem;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.45);
    border: 1px solid rgba(15, 23, 42, 0.9);
}

.home .hero-aside-card h2 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: #f9fafb;
}

.home .hero-aside-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.home .hero-aside-card li i {
    color: var(--accent-gold);
    margin-right: 0.5rem;
}

/* Highlights band direct onder hero (ipv grote cijfers) */
.home .stats-section {
    padding: 2.5rem 0 4rem;
    background: transparent;
}

.home .stats-section .container {
    max-width: 1100px;
}

.home .home-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.home .highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.home .highlight-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.home .highlight-icon i {
    font-size: 1.2rem;
}

.home .highlight-text h3 {
    font-size: 1.05rem;
    margin-bottom: 0.35rem;
    color: var(--primary-dark);
}

.home .highlight-text p {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin: 0;
}

/* Sections eronder wat lichter en strakker */
.home .services-section,
.home .about-section,
.home .testimonials-section {
    background: #f9fafb;
}

.home .services-section {
    padding-top: 4rem;
}

.home .service-card {
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
}

.home .footer {
    background: #404040; /* zelfde grijs als overige pagina's */
}

@media (max-width: 1024px) {
    .home .hero-layout {
        grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.2fr);
        gap: 2.25rem;
    }
}

@media (max-width: 768px) {
    .home .hero-section {
        padding: 5.5rem 0 3rem;
    }

    .home .hero-layout {
        grid-template-columns: 1fr;
    }

    .home .hero-aside-card {
        margin-top: 1.5rem;
    }

    .home .home-highlights {
        grid-template-columns: 1fr;
    }
}

/* Homepage sections: services, about, contact, testimonials */
.home .section-header {
    text-align: left;
    max-width: 720px;
    margin-bottom: 3rem;
}

/* Zorg dat onderste secties netjes boven elkaar en boven overlays liggen */
.home .about-section,
.home .cta-section,
.home .testimonials-section {
    position: relative;
}

.home .about-section {
    z-index: 3;
}

.home .cta-section {
    z-index: 5; /* contactblok (Plan direct een gesprek) altijd bovenaan */
}

.home .testimonials-section {
    z-index: 4;
}

.home .section-header .section-title {
    text-align: left;
    margin-bottom: 0.75rem;
}

.home .section-title {
    /* op de homepage geen gele gradient-tekst, maar gewoon donkergrijs */
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: var(--primary-dark);
    background-clip: initial;
    color: var(--primary-dark);
}

.home .section-header .section-subtitle {
    text-align: left;
    margin-bottom: 0;
}

.home .service-tag {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    background: #fffbe6;
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
}

.home .service-points {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.home .service-points li i {
    color: var(--accent-gold);
    margin-right: 0.4rem;
}

.home .about-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.4fr);
    gap: 3rem;
    align-items: flex-start;
}

.home .about-text-block p {
    margin-bottom: 1rem;
}

.home .about-steps h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.home .process-timeline {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.home .process-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: flex-start;
}

.home .process-step-number {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: #fffbe6;
    color: var(--primary-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.home .process-step-content h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.home .work-with-us .work-points {
    list-style: none;
    padding: 0;
    margin: 1rem 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.home .work-with-us .work-points i {
    color: var(--accent-gold);
    margin-right: 0.45rem;
}

.home .cta-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.3fr);
    gap: 2.5rem;
    align-items: center;
}

.home .cta-text-block .section-title {
    text-align: left;
}

.home .cta-points {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-size: 0.95rem;
    color: var(--text-gray);
}

.home .cta-points i {
    color: var(--accent-gold);
    margin-right: 0.45rem;
}

.home .testimonial-card {
    background: #ffffff;
    border-color: rgba(64, 64, 64, 0.12);
    color: var(--primary-dark);
}

.home .testimonial-text {
    color: var(--primary-dark);
}

@media (max-width: 1024px) {
    .home .about-layout,
    .home .cta-layout {
        grid-template-columns: 1fr;
    }
}
