* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #4f46e5;
    --primary-light: #818cf8;
    --primary-dark: #3730a3;
    --accent: #14b8a6;
    --accent-2: #f59e0b;
    --text: #1e293b;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --glass: rgba(255, 255, 255, 0.8);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;  /* ← ZELFDE HOMEPAGE! */
    background: var(--bg-light);  /* ← ZELFDE HOMEPAGE! */
    color: var(--text);           /* ← ZELFDE HOMEPAGE! */
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;


/* Container */
.container {
    flex: 1;
    max-width: 1200px; /* Vergroot voor zij-aan-zij layout */
    margin: 40px auto;
    padding: 0 20px;
}

.contact-section {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.content-wrapper {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.form-wrapper {
    flex: 1;
    min-width: 300px;
}

/* NAVBAR (MENUBALK) */
/* ===================== */
/* Navigation */
:root {
    --primary: #4f46e5;
    --primary-light: #818cf8;
    --primary-dark: #3730a3;
    --accent: #14b8a6;
    --accent-2: #f59e0b;
    --text: #1e293b;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --glass: rgba(255, 255, 255, 0.8);
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--glass);
    backdrop-filter: blur(20px) saturate(180%);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 1rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    letter-spacing: -0.5px;
}

.logo-img {
    max-height: 45px;
    width: auto;
    display: block;
}

.nav-list {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-list a {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  letter-spacing: 0.3px !important;
  color: var(--text) !important; /* <- veranderd van white naar zwart (variabele) */
  transition: all 0.3s ease !important;
  position: relative !important;
}

.nav-list a:hover {
  color: var(--primary-light) !important;
}

.nav-list a::after {
  content: "";
  display: block;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.nav-list a:hover::after {
  transform: scaleX(1);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--text);
    cursor: pointer;
    font-weight: 300;
}
h2 {
    font-size: 1.5rem;
    color: #003087;
    margin-bottom: 10px;
}

.contact-section p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
}

/* Formulier */
.modern-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 1rem;
    color: #333;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    background-color: #fafafa;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #003087;
    outline: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.hidden {
    display: none;
}

/* Knoppen */
.button-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.submit-button, .back-button {
    background-color: #003087;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.back-button {
    background-color: #666;
}

.submit-button:hover {
    background-color: #00205b;
}

.back-button:hover {
    background-color: #444;
}

/* Contactgegevens */
.contact-info {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 5px;
}

.contact-info h3 {
    font-size: 1.2rem;
    color: #003087;
    margin-bottom: 15px;
}

.contact-info p {
    font-size: 1rem;
    margin-bottom: 10px;
}

.map-container {
    margin-top: 20px;
}

/* Loadingscreen zoals Inboedelwaardemeter */
.loading-screen {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 1000;
}

.loader {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #003087;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

.loading-screen p {
    color: #fff;
    margin-top: 20px;
    font-size: 1.2rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Footer zoals Inboedelwaardemeter */
footer {
    background: rgba(255, 255, 255, 0.95);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 3rem 1.5rem 2rem;
    position: relative;
    z-index: 1;
}

.footer-content {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand img {
    max-height: 90px;
    width: auto;
    margin: 0 auto 1rem;
    display: block;
}

.footer-brand h3 {
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-align: center;
}

.footer-brand p {
    color: var(--text-muted);
    line-height: 1.8;
    text-align: center;
}

.footer-section h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    max-width: 1600px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    /* MENUBALK MOBIEL */
    .hamburger {
        display: block;
    }

    .nav-list {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--glass);
        backdrop-filter: blur(20px);
        padding: 1rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .nav-list.active {
        display: flex;
    }

    .nav-list li {
        margin: 0.5rem 0;
    }

    .nav-list a {
        font-size: 1rem;
        display: block;
        padding: 0.5rem 1rem;
    }

    .nav-container {
        padding: 1rem 1.5rem;
    }

    /* FOOTER MOBIEL */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .footer-brand img {
        max-height: 70px;
    }

    footer {
        padding: 2rem 1rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }

    .logo {
        font-size: 1.5rem;
    }

    .logo-img {
        max-height: 35px;
    }


/* Contact Section */
.contact {
    padding: 30px 20px;
    background: #f8f9fa;
    text-align: center;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #003087;
}

.contact p {
    font-size: 16px;
    margin-bottom: 15px;
}

.contact-options {
    list-style: none;
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.contact-options li {
    font-size: 14px;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.contact-options li::before {
    content: "📞";
    position: absolute;
    left: 0;
    color: #007bff;
}

.contact-options a {
    color: #007bff;
    text-decoration: none;
}

.contact-options a:hover {
    text-decoration: underline;
}
