:root {
    --primary: #004a99; /* Van der Ent Blue */
    --accent: #ffd200; /* Van der Ent Yellow */
    --text-dark: #1a1a1a;
    --text-muted: #666666;
    --bg-light: #f4f4f4;
    --font-main: 'Outfit', sans-serif;
}

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

body {
    font-family: var(--font-main);
    background-color: white;
    color: var(--text-dark);
    line-height: 1.5;
}

.container { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }

/* Header */
header {
    padding: 1rem 0;
    background: white;
    border-bottom: 4px solid var(--accent);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav { display: flex; justify-content: space-between; align-items: center; }

.logo { font-size: 1.8rem; font-weight: 900; color: var(--primary); text-decoration: none; }

.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a { color: var(--text-dark); text-decoration: none; font-weight: 700; font-size: 0.9rem; text-transform: uppercase; }

.btn-cta {
    background: var(--accent);
    color: var(--text-dark);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 800;
    text-decoration: none;
    transition: background 0.3s;
}

/* Hero */
.hero {
    height: 70vh;
    background: linear-gradient(rgba(0, 74, 153, 0.4), rgba(0, 74, 153, 0.4)), url('verh1.png') center/cover;
    display: flex;
    align-items: center;
    color: white;
}

.hero-content { max-width: 800px; }
.hero h1 { font-size: 4rem; font-weight: 900; line-height: 1; margin-bottom: 1.5rem; text-transform: uppercase; }
.hero p { font-size: 1.5rem; margin-bottom: 2rem; font-weight: 600; }

/* Info Bar */
.info-bar { background: var(--primary); color: white; padding: 2rem 0; }
.info-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.info-item { display: flex; align-items: center; gap: 1rem; justify-content: center; font-weight: 700; }

/* Services Grid (Prominent images) */
.section { padding: 5rem 0; }

.section-header { margin-bottom: 4rem; border-left: 8px solid var(--accent); padding-left: 1.5rem; }
.section-header h2 { font-size: 2.5rem; font-weight: 900; text-transform: uppercase; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.service-card {
    position: relative;
    height: 450px;
    overflow: hidden;
    cursor: pointer;
}

.service-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.service-card:hover img { transform: scale(1.1); }

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(transparent, var(--primary));
    color: white;
}

.service-overlay h3 { font-size: 1.8rem; font-weight: 900; text-transform: uppercase; }

/* Contact Form area */
.contact-section { background: var(--bg-light); display: grid; grid-template-columns: 1fr 1fr; }
.contact-img { background: url('verh4.png') center/cover; min-height: 600px; }
.contact-form-area { padding: 5rem; }

.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 800; text-transform: uppercase; }
.form-group input { width: 100%; padding: 1rem; border: 1px solid #ddd; outline: none; }
.form-group input:focus { border-color: var(--primary); }

.btn-submit {
    background: var(--primary);
    color: white;
    width: 100%;
    padding: 1.25rem;
    border: none;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
}

footer { padding: 4rem 0; background: #222; color: white; }

@media (max-width: 1024px) {
    .service-grid, .info-grid, .contact-section { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.5rem; }
}
