h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif !important;
}

:root {
    --primary: #04F1AF;
    --secondary: #00BFFF;
    --dark: #111827;
    --gray: #6B7280;
    --light-gray: #F3F4F6;
    --border: #E5E7EB;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --shadow-sm: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}

/* ===== Hero Contact Section ===== */
.contact-hero-section {
    background: #000000;
    padding: 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-hero-section::before,
.contact-hero-section::after {
    content: none;
}

.contact-hero-section .container {
    position: relative;
    z-index: 5;
    max-width: 800px;
    text-align: center;
}

.contact-hero-section h1 {
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    color: #FFFFFF;
}

.contact-hero-section h1::before,
.contact-hero-section h1::after {
    content: none;
}

.contact-hero-section p {
    font-size: clamp(16px, 2vw, 18px);
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 300;
}

.hero-blob {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 0;
    border-radius: 0;
    backdrop-filter: none;
    background: transparent;
    border: none;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 140px 0 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 8px 16px;
    background: var(--primary);
    border: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-badge i {
    margin-right: 8px;
    font-size: 12px;
}

/* ===== Contact Section ===== */
.contact-section {
    padding-top: 80px;
    border-top: none;
    margin-top: 0;
    background: #fff;
    position: relative;
}

.contact-section::before {
    content: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
}

/* Contact Info */
.contact-info {
    position: relative;
    padding: 40px;
    border-radius: var(--radius-lg);
    background: #FAFAFA;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(229, 231, 235, 0.8);
}

.contact-info::before {
    content: none;
}

.contact-info h2 {
    font-size: 36px;
    font-weight: 900;
    color: #000;
    margin-bottom: 30px;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    line-height: 1.1;
}

.contact-info > p {
    font-size: 17px;
    color: var(--gray);
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 90%;
    position: relative;
    padding-bottom: 20px;
}

.contact-info > p::after {
    content: none;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 36px;
    margin-bottom: 48px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    padding: 0;
    border-radius: var(--radius-md);
    position: relative;
    gap: 30px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.method-icon {
    width: 72px;
    height: 72px;
    background: #000;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.method-icon svg {
    position: absolute;
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    opacity: 0.04;
    z-index: 1;
}

.method-icon i {
    font-size: 28px;
    color: var(--primary);
    position: relative;
    z-index: 2;
}

.contact-method:hover .method-icon i {
    animation: iconPop 0.5s forwards;
}

@keyframes iconPop {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.method-details {
    flex: 1;
    padding-top: 6px;
}

.method-details h3 {
    font-size: 20px;
    font-weight: 800;
    color: #000;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.method-details p {
    font-size: 15px;
    color: var(--gray);
    margin-bottom: 12px;
    line-height: 1.5;
}

.method-value {
    font-size: 18px;
    color: var(--dark);
    font-weight: 700;
    display: block;
    position: relative;
    padding: 8px 0;
}

a.method-value {
    display: inline-flex;
    align-items: center;
    position: relative;
    transition: all 0.3s ease;
    color: #000;
    text-decoration: none;
}

a.method-value::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

a.method-value::after {
    content: '→';
    font-size: 20px;
    opacity: 0;
    margin-left: 0;
    transition: all 0.3s ease;
    transform: translateX(-10px);
    position: absolute;
    right: -24px;
    color: var(--primary);
}

a.method-value:hover {
    color: var(--primary);
}

a.method-value:hover::before {
    transform: scaleX(1);
}

a.method-value:hover::after {
    opacity: 1;
    transform: translateX(0);
}

address.method-value {
    font-style: normal;
    line-height: 1.6;
    background: rgba(4, 241, 175, 0.05);
    padding: 16px;
    border-radius: 10px;
    margin-top: 16px;
    border-left: none;
}

/* Social Connect */
.social-connect {
    margin-top: 60px;
    padding: 30px;
    border-radius: 16px;
    background: #000;
    color: white;
    position: relative;
    overflow: hidden;
}

.social-connect::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 90% 10%, rgba(4, 241, 175, 0.3) 0%, transparent 80%);
    z-index: 1;
}

.social-connect h3 {
    font-size: 20px;
    font-weight: 800;
    color: white;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.social-connect h3::after {
    content: none;
}

.social-icons {
    display: flex;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.social-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-icon i {
    font-size: 24px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.social-icon:hover::before {
    transform: translateY(0);
}

.social-icon:hover i {
    color: #000;
}

/* ===== Contact Form Styling ===== */
.contact-form-container {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
    padding: 48px;
    border: 1px solid rgba(229, 231, 235, 0.7);
    position: relative;
}

/* Verwijder de gradient en de secondary kleur */
.contact-form-container::before {
    content: none;
}

.contact-form-container::after {
    content: '';
    position: absolute;
    top: -3px;
    right: -3px;
    bottom: -3px;
    left: -3px;
    background: rgba(4, 241, 175, 0.08);
    border-radius: calc(var(--radius-lg) + 3px);
    z-index: -1;
    filter: blur(8px);
    opacity: 0.8;
}

.form-header {
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 36px;
    font-weight: 900;
    color: #000;
    margin-bottom: 12px;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.form-header p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.6;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    position: relative;
}

.form-group.full-width {
    grid-column: span 2;
}

label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group:focus-within label {
    color: var(--primary);
}

input, select, textarea {
    width: 100%;
    padding: 16px;
    font-size: 15px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

input::placeholder, textarea::placeholder {
    color: #A1A1AA;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(4, 241, 175, 0.15);
}

textarea {
    resize: vertical;
    min-height: 140px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.form-group input[type="checkbox"] {
    display: inline-block;
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: var(--primary);
    box-shadow: none;
    vertical-align: middle;
}

.form-group input[type="checkbox"] + label {
    display: inline-block;
    margin-left: 8px;
    font-size: 14px;
    color: var(--gray);
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    font-weight: 400;
    vertical-align: middle;
}

.form-group input[type="checkbox"] + label a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.form-submit {
    grid-column: span 2;
    margin-top: 24px;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #000;
    color: white;
    padding: 18px 36px;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 1;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.submit-btn i {
    transition: transform 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
    color: #000;
}

.submit-btn:hover::before {
    opacity: 1;
}

.submit-btn:hover i {
    transform: translateX(6px);
}

/* ===== Map Section ===== */
.map-section {
    padding-top: 80px;
    padding-bottom: 80px;
    background: #fff;
    border-top: none;
    position: relative;
}

.map-section::before {
    content: none;
}

.map-header {
    text-align: center;
    margin-bottom: 50px;
}

.map-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
}

.map-header h2::after {
    content: none;
}

.map-header p {
    font-size: 18px;
    color: var(--gray);
    max-width: 600px;
    margin: 20px auto 0;
    line-height: 1.6;
}

.map-container {
    width: 100%;
    height: 500px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(229, 231, 235, 0.7);
    position: relative;
}

.map-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.1);
    pointer-events: none;
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 100%;
}

/* ===== Verwijder de CTA Section ===== */
.contact-cta-section {
    display: none;
}

/* ===== Form Success Modal ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal.show {
    display: flex;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: #fff;
    border-radius: var(--radius-lg);
    max-width: 500px;
    width: 90%;
    padding: 50px;
    position: relative;
    box-shadow: var(--shadow-lg);
    animation: scaleIn 0.3s ease;
}

@keyframes scaleIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-modal:hover {
    background: rgba(4, 241, 175, 0.1);
    color: var(--dark);
}

.success-message {
    text-align: center;
}

.success-message i {
    font-size: 72px;
    color: var(--primary);
    margin-bottom: 30px;
    animation: bounce 1s ease;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-30px); }
    60% { transform: translateY(-15px); }
}

.success-message h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.success-message p {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 30px;
    line-height: 1.6;
}

.modal-btn {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    color: #000;
    padding: 14px 30px;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(4, 241, 175, 0.2);
}

/* ===== WhatsApp Widget ===== */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.whatsapp-button::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.5s ease;
}

.whatsapp-button i {
    font-size: 30px;
    position: relative;
    z-index: 1;
}

.whatsapp-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-button:hover::before {
    transform: scale(2);
}

/* ===== Responsive Styles ===== */
@media (max-width: 1100px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .contact-info {
        order: 2;
    }
    
    .contact-form-container {
        order: 1;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .contact-hero-section {
        padding: 60px 0;
    }
    
    .contact-hero-section h1 {
        font-size: 2rem;
    }
    
    .contact-hero-section p {
        font-size: 1rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info {
        padding: 30px;
    }
    
    .contact-info h2 {
        font-size: 1.8rem;
    }
    
    .contact-info > p {
        font-size: 15px;
        max-width: 100%;
    }
    
    .contact-methods {
        flex-direction: column;
        gap: 24px;
    }
    
    .contact-method {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .method-icon {
        width: 60px;
        height: 60px;
    }
    
    .method-icon i {
        font-size: 24px;
    }
    
    .method-details h3 {
        font-size: 1.2rem;
    }
    
    .method-details p {
        font-size: 14px;
    }
    
    .method-value {
        font-size: 16px;
    }
    
    .social-connect {
        padding: 25px;
        margin-top: 40px;
    }
    
    .social-connect h3 {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .social-icons {
        gap: 15px;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
    }
    
    .social-icon i {
        font-size: 20px;
    }
    
    .contact-form-container {
        padding: 30px 20px;
    }
    
    .form-header h2 {
        font-size: 1.8rem;
    }
    
    .form-header p {
        font-size: 14px;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-group.full-width {
        grid-column: auto;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
        font-size: 14px;
    }
    
    .checkbox-group {
        padding: 10px;
    }
    
    .checkbox-group label {
        font-size: 13px;
    }
    
    .submit-btn {
        width: 100%;
        padding: 15px;
        font-size: 15px;
    }
    
    .map-section {
        padding: 40px 0;
    }
    
    .map-header h2 {
        font-size: 1.8rem;
    }
    
    .map-header p {
        font-size: 14px;
        padding: 0 20px;
    }
    
    .map-container {
        height: 300px;
        margin: 0 15px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-brand {
        margin-bottom: 20px;
    }
    
    .footer-logo {
        max-width: 100px;
    }
    
    .footer-brand p {
        font-size: 14px;
    }
    
    .footer-links h4 {
        font-size: 15px;
        margin-bottom: 12px;
    }
    
    .footer-links a {
        font-size: 14px;
    }
    
    .social-footer {
        justify-content: center;
        gap: 15px;
    }
    
    .footer-bottom p {
        font-size: 13px;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    .contact-hero-section {
        padding: 80px 0;
    }
    
    .contact-hero-section h1 {
        font-size: 2.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .contact-info {
        padding: 35px;
    }
    
    .contact-info h2 {
        font-size: 2rem;
    }
    
    .contact-methods {
        gap: 30px;
    }
    
    .contact-method {
        gap: 25px;
    }
    
    .method-icon {
        width: 65px;
        height: 65px;
    }
    
    .method-icon i {
        font-size: 26px;
    }
    
    .social-connect {
        padding: 30px;
    }
    
    .social-icons {
        gap: 18px;
    }
    
    .social-icon {
        width: 48px;
        height: 48px;
    }
    
    .contact-form-container {
        padding: 40px 30px;
    }
    
    .form-header h2 {
        font-size: 2rem;
    }
    
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .form-group.full-width {
        grid-column: 1 / -1;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 30px;
    }
    
    .contact-hero-section {
        padding: 100px 0;
    }
    
    .contact-hero-section h1 {
        font-size: 3rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
    
    .contact-methods {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 30px;
    }
}

/* === BEGIN FOOTER STYLES (gekopieerd uit style.css/cloud-backup.css) === */
.footer {
    background: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand,
.footer-brand * {
  align-items: flex-start !important;
  text-align: left !important;
  justify-content: flex-start !important;
}

.footer-logo {
    margin-left: 0;
    margin-right: 0;
}

.footer-brand p {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 1.15rem;
    color: #fff;
    margin-top: 1rem;
    margin-bottom: 0;
    line-height: 1.2;
    letter-spacing: 0.01em;
}

.footer-links h4, .footer-social h4 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 900;
    font-style: italic;
    color: var(--primary);
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.01em;
}

.footer-links ul, .footer-links2 ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.footer-links li, .footer-links2 li {
    margin-bottom: 0.7rem;
}

.footer-links a,
.footer-links2 a,
.footer p {
  color: rgb(255, 255, 255);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-links2 a:hover {
  color: var(--primary);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #fff !important;
    font-size: 1.25rem;
    transition: color 0.2s ease;
}

.social-links a:hover {
    color: var(--primary) !important;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    text-align: center;
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    .footer-brand {
        margin-bottom: 2rem;
    }
    .footer-logo {
        height: 45px;
    }
}

@media (max-width: 900px) {
    .footer-grid-3 {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    .footer-section {
        min-width: 0;
        margin-bottom: 1.2rem;
        align-items: center;
        text-align: center;
    }
}
/* === EINDE FOOTER STYLES === */

.privacy-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
}
.privacy-row input[type="checkbox"] {
  margin: 0;
}
.privacy-row label {
  margin: 0;
  line-height: 1.2;
}

.footer-grid-3 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  padding: 2.5rem 0 1.5rem 0;
}
.footer-section {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 180px;
}
.footer-logo {
  max-width: 120px;
  margin-bottom: 1rem;
}
.footer-brand p {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 500;
  text-align: center;
}
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}
.footer-links li {
  margin-bottom: 0.7rem;
}
.footer-links a {
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 500;
}
.footer-social .social-links {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  margin-top: 0.5rem;
}
.footer-social .social-links a {
  font-size: 1.6rem;
  display: flex;
  align-items: center;
}
.footer-bottom {
  text-align: center;
  font-size: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border);
}

.footer-grid-4 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2.5rem;
  padding: 2.5rem 0 1.5rem 0;
  flex-wrap: wrap;
}
.footer-section {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  min-width: 160px;
}
.footer-brand {
  align-items: flex-start;
  text-align: left;
}
.footer-logo {
  max-width: 120px;
  margin-bottom: 1rem;
}
.footer-brand p {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 500;
  text-align: left;
}
.footer-links ul, .footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li, .footer-contact li {
  margin-bottom: 0.7rem;
}
.footer-links a, .footer-contact a {
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 500;
}
.footer-social {
  align-items: center;
}
.footer-social .social-links {
  display: flex;
  gap: 1.2rem;
  justify-content: flex-start;
  margin-top: 0.5rem;
}
.footer-social .social-links a {
  font-size: 1.6rem;
  display: flex;
  align-items: center;
}
.footer-bottom {
  text-align: center;
  font-size: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border);
}
@media (max-width: 900px) {
  .footer-grid-4 {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  .footer-section {
    min-width: 0;
    margin-bottom: 1.2rem;
    align-items: center;
    text-align: center;
  }
  .footer-brand {
    align-items: center;
    text-align: center;
  }
  .footer-social .social-links {
    justify-content: center;
  }
}

.footer-section.footer-links2 a,
.footer-section.footer-links2 a:link,
.footer-section.footer-links2 a:visited,
.footer-section.footer-links2 a:active,
.footer-section.footer-links2 a:focus {
  color: #fff !important;
}
.footer-section.footer-links2 a:hover {
  color: var(--primary) !important;
}

.footer-vertical-modern {
  background: #000;
  color: #fff;
  padding: 0;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  border-top: 2px solid #111;
  font-family: 'Montserrat', 'Inter', Arial, sans-serif;
}
.footer-vm-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 3.5rem 1rem 1.5rem 1rem;
}
.footer-vm-logo {
  max-width: 120px;
  margin-bottom: 1.2rem;
  filter: drop-shadow(0 2px 16px #04F1AF33);
}
.footer-vm-socials {
  display: flex;
  gap: 1.3rem;
  margin-bottom: 2.2rem;
}
.footer-vm-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  background: transparent;
  transition: border-color 0.18s, color 0.18s, box-shadow 0.18s, background 0.18s;
  box-shadow: 0 2px 16px 0 rgba(4,241,175,0.06);
}
.footer-vm-socials a:hover,
.footer-vm-socials a:focus {
  border-color: var(--primary, #04F1AF);
  color: var(--primary, #04F1AF);
  background: #111;
  box-shadow: 0 0 12px 2px #04F1AF55;
}
.footer-vm-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  list-style: none;
  padding: 0;
  margin: 0 0 2.2rem 0;
  justify-content: center;
}
.footer-vm-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 1.13rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 0.2em 0;
  border-bottom: 2px solid transparent;
  transition: color 0.18s, border-color 0.18s, text-shadow 0.18s;
  opacity: 0.92;
}
.footer-vm-nav a.active,
.footer-vm-nav a:hover,
.footer-vm-nav a:focus {
  color: var(--primary, #04F1AF);
  border-bottom: 2px solid var(--primary, #04F1AF);
  text-shadow: 0 2px 12px #04F1AF55;
  opacity: 1;
}
.footer-vm-slogan {
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.13em;
  color: #fff;
  opacity: 1;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
}
.footer-vm-bottom {
  text-align: center;
  font-size: 1.08rem;
  color: #fff;
  opacity: 1;
  padding: 1.2rem 0 0.5rem 0;
  border-top: 1px solid #111;
  margin-top: 0.5rem;
  letter-spacing: 0.06em;
  width: 100%;
}
.footer-btw {
  white-space: nowrap;
}
@media (max-width: 600px) {
  .footer-vm-inner {
    padding: 2rem 0.5rem 1rem 0.5rem;
  }
  .footer-vm-nav ul {
    flex-direction: column;
    gap: 0.7rem;
  }
  .footer-vm-socials {
    margin-bottom: 1.5rem;
  }
}

/* --- Navigatie in menubalk altijd Montserrat --- */
.main-nav a, .nav-links a, .dropdown-toggle, .dropdown-item, .mobile-nav a {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 600 !important;
    font-style: normal !important;
}