:root {
--primary: #D42029;
--primary-dark: #B71C1C;
--primary-light: #FEF2F2;
--primary-glow: rgba(212, 32, 41, 0.3);
--secondary: #1C1C1E;
--secondary-light: #2C2C2E;
--accent: #F5A623;
--text: #1C1C1E;
--text-light: #5C5C63;
--text-muted: #9A9AA2;
--bg: #FFFFFF;
--bg-alt: #F8F7F5;
--bg-dark: #0F0F11;
--border: #E4E3E0;
--border-light: #F0F0F0;
--shadow-sm: 0 4px 6px -1px rgba(0,0,0,0.1);
--shadow-md: 0 20px 25px -5px rgba(0,0,0,0.1);
--shadow-lg: 0 25px 50px -12px rgba(0,0,0,0.25);
--shadow-xl: 0 35px 60px -15px rgba(0,0,0,0.3);
--gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
--font-heading: 'Space Grotesk', sans-serif;
--font-body: 'Plus Jakarta Sans', sans-serif;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: var(--font-body);
color: var(--text);
line-height: 1.6;
overflow-x: hidden;
}
.container {
max-width: 1400px;
margin: 0 auto;
padding: 0 2rem;
}
/* TOPBAR */
.topbar {
background: var(--secondary);
color: var(--text-muted);
font-size: 0.85rem;
padding: 0.75rem 2rem;
display: flex;
justify-content: space-between;
align-items: center;
border-bottom: 1px solid rgba(255,255,255,0.1);
}
.topbar-left {
display: flex;
gap: 2rem;
flex-wrap: wrap;
}
.topbar-left a {
color: var(--text-muted);
transition: var(--transition);
display: flex;
align-items: center;
gap: 0.5rem;
}
.topbar-left a:hover {
color: white;
}
.topbar-left i {
color: var(--primary);
}
.topbar-right {
display: flex;
gap: 1.5rem;
align-items: center;
}
.topbar-phone {
color: white !important;
font-weight: 600;
display: flex;
align-items: center;
gap: 0.5rem;
}
.topbar-phone i {
color: var(--primary);
}
.topbar-social {
display: flex;
gap: 1rem;
}
.topbar-social a {
color: var(--text-muted);
transition: var(--transition);
font-size: 1rem;
}
.topbar-social a:hover {
color: var(--primary);
transform: translateY(-2px);
}
/* NAVIGATION */
nav {
position: sticky;
top: 0;
z-index: 1000;
background: rgba(255,255,255,0.95);
backdrop-filter: blur(10px);
border-bottom: 1px solid var(--border-light);
padding: 0 2rem;
transition: var(--transition);
}
nav.scrolled {
padding: 0.5rem 2rem;
box-shadow: var(--shadow-md);
}
.nav-container {
max-width: 1400px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
height: 80px;
}
.nav-logo img {
height: 50px;
transition: var(--transition);
}
.nav-logo img:hover {
transform: scale(1.05);
}
.nav-menu {
display: flex;
align-items: center;
gap: 0.5rem;
}
.nav-link {
padding: 0.75rem 1.25rem;
font-weight: 600;
font-size: 0.95rem;
text-transform: uppercase;
letter-spacing: 0.5px;
color: var(--text);
border-radius: 50px;
transition: var(--transition);
text-decoration: none;
}
.nav-link:hover {
color: var(--primary);
background: var(--primary-light);
}
.nav-link.active {
color: var(--primary);
background: var(--primary-light);
}
.nav-cta {
background: var(--gradient);
color: white !important;
padding: 0.75rem 1.5rem;
border-radius: 50px;
box-shadow: 0 4px 15px var(--primary-glow);
margin-left: 1rem;
}
.nav-cta:hover {
transform: translateY(-2px);
box-shadow: 0 8px 25px var(--primary-glow);
color: white !important;
}
/* HAMBURGER */
.hamburger {
display: none;
flex-direction: column;
justify-content: center;
align-items: center;
width: 48px;
height: 48px;
background: var(--bg-alt);
border-radius: 12px;
cursor: pointer;
border: 1px solid var(--border);
}
.hamburger span {
display: block;
width: 24px;
height: 2px;
background: var(--text);
margin: 3px 0;
transition: var(--transition);
border-radius: 2px;
}
.hamburger.active span:nth-child(1) {
transform: rotate(45deg) translate(6px, 6px);
}
.hamburger.active span:nth-child(2) {
opacity: 0;
}
.hamburger.active span:nth-child(3) {
transform: rotate(-45deg) translate(6px, -6px);
}
/* MOBILE MENU */
.mobile-menu {
position: fixed;
top: 80px;
left: 0;
right: 0;
background: white;
padding: 2rem;
transform: translateY(-100%);
opacity: 0;
visibility: hidden;
transition: var(--transition);
box-shadow: var(--shadow-lg);
border-bottom: 2px solid var(--primary);
z-index: 999;
}
.mobile-menu.active {
transform: translateY(0);
opacity: 1;
visibility: visible;
}
.mobile-menu a {
display: block;
padding: 1rem;
font-weight: 600;
border-radius: 12px;
transition: var(--transition);
border: 1px solid transparent;
text-decoration: none;
color: var(--text);
}
.mobile-menu a:hover {
background: var(--primary-light);
border-color: var(--primary);
transform: translateX(5px);
}
.mobile-menu .mobile-cta {
background: var(--gradient);
color: white;
text-align: center;
margin-top: 1rem;
}
/* BUTTONS */
.btn-primary {
background: var(--gradient);
color: white;
padding: 1rem 2.5rem;
border-radius: 50px;
font-weight: 600;
display: inline-flex;
align-items: center;
gap: 0.75rem;
transition: var(--transition);
border: none;
cursor: pointer;
box-shadow: 0 4px 15px var(--primary-glow);
text-decoration: none;
}
.btn-primary:hover {
transform: translateY(-3px);
box-shadow: 0 8px 25px var(--primary-glow);
}
.btn-outline {
background: transparent;
color: var(--text);
padding: 1rem 2.5rem;
border-radius: 50px;
font-weight: 600;
display: inline-flex;
align-items: center;
gap: 0.75rem;
transition: var(--transition);
border: 2px solid var(--border);
text-decoration: none;
}
.btn-outline:hover {
border-color: var(--primary);
background: var(--primary-light);
transform: translateY(-2px);
}
.btn-light {
background: white;
color: var(--primary);
padding: 1.2rem 3rem;
border-radius: 50px;
font-weight: 700;
font-size: 1.1rem;
display: inline-flex;
align-items: center;
gap: 1rem;
transition: var(--transition);
box-shadow: 0 10px 30px rgba(0,0,0,0.2);
text-decoration: none;
}
.btn-light:hover {
transform: translateY(-3px);
box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
/* PAGE HEADER */
.page-header {
background: var(--secondary);
padding: 4rem 0;
color: white;
}
.breadcrumb {
display: flex;
align-items: center;
gap: 0.5rem;
font-size: 0.85rem;
color: var(--text-muted);
margin-bottom: 2rem;
}
.breadcrumb a {
color: var(--text-muted);
text-decoration: none;
}
.breadcrumb a:hover {
color: white;
}
.page-title {
font-family: var(--font-heading);
font-size: clamp(2.5rem, 5vw, 4rem);
font-weight: 700;
line-height: 1.1;
margin-bottom: 1rem;
}
.page-title em {
color: var(--primary);
font-style: normal;
}
.page-subtitle {
font-size: 1.1rem;
color: var(--text-muted);
max-width: 600px;
}
/* SECTIONS */
.section {
padding: 6rem 0;
}
.section-title {
font-family: var(--font-heading);
font-size: clamp(2rem, 4vw, 3rem);
font-weight: 700;
line-height: 1.1;
margin-bottom: 1.5rem;
}
.section-title span {
color: var(--primary);
position: relative;
}
.bg-alt {
background: var(--bg-alt);
}
/* HERO (homepage) */
.hero {
min-height: 90vh;
display: grid;
grid-template-columns: 1fr 1fr;
background: var(--bg);
position: relative;
overflow: hidden;
}
.hero-left {
display: flex;
flex-direction: column;
justify-content: center;
padding: 4rem 4rem 4rem 6rem;
position: relative;
z-index: 1;
}
.hero-badge {
display: inline-flex;
align-items: center;
gap: 0.75rem;
background: var(--primary-light);
color: var(--primary);
padding: 0.5rem 1rem;
border-radius: 50px;
font-weight: 600;
font-size: 0.85rem;
margin-bottom: 2rem;
width: fit-content;
border: 1px solid var(--primary);
}
.hero-title {
font-family: var(--font-heading);
font-size: clamp(3rem, 5vw, 5rem);
font-weight: 700;
line-height: 1;
margin-bottom: 1.5rem;
}
.hero-title em {
color: var(--primary);
font-style: normal;
}
.hero-subtitle {
font-size: 1.1rem;
color: var(--text-light);
max-width: 500px;
margin-bottom: 2.5rem;
line-height: 1.8;
}
.hero-buttons {
display: flex;
gap: 1rem;
flex-wrap: wrap;
margin-bottom: 3rem;
}
.hero-stats {
display: flex;
gap: 3rem;
padding-top: 2rem;
border-top: 2px solid var(--border);
}
.stat-number {
font-family: var(--font-heading);
font-size: 2.5rem;
font-weight: 700;
color: var(--primary);
line-height: 1;
margin-bottom: 0.25rem;
}
.stat-label {
font-size: 0.8rem;
color: var(--text-muted);
text-transform: uppercase;
letter-spacing: 1px;
}
.hero-right {
display: grid;
grid-template-columns: 1fr 1fr;
grid-template-rows: 1fr 1fr;
gap: 1rem;
padding: 4rem 4rem 4rem 2rem;
}
.hero-image {
border-radius: 20px;
overflow: hidden;
position: relative;
box-shadow: var(--shadow-xl);
}
.hero-image img {
width: 100%;
height: 100%;
object-fit: cover;
}
.hero-image-main {
grid-column: 1;
grid-row: 1 / 3;
}
.hero-badge-card {
position: absolute;
bottom: 1.5rem;
left: 1.5rem;
background: rgba(255,255,255,0.95);
backdrop-filter: blur(10px);
padding: 1rem 1.5rem;
border-radius: 50px;
display: flex;
align-items: center;
gap: 1rem;
box-shadow: var(--shadow-lg);
}
.hero-badge-stars {
color: var(--accent);
font-size: 0.9rem;
}
.hero-badge-number {
font-family: var(--font-heading);
font-size: 1.5rem;
font-weight: 700;
color: var(--primary);
}
/* TICKER */
.ticker {
background: var(--secondary);
padding: 1rem 0;
overflow: hidden;
white-space: nowrap;
}
.ticker-track {
display: inline-flex;
gap: 4rem;
animation: ticker 30s linear infinite;
}
.ticker-item {
font-family: var(--font-heading);
font-size: 1rem;
font-weight: 600;
color: white;
letter-spacing: 1px;
}
.ticker-item i {
color: var(--primary);
margin-right: 0.5rem;
}
.ticker-divider {
color: var(--primary);
opacity: 0.5;
}
@keyframes ticker {
from { transform: translateX(0); }
to { transform: translateX(-50%); }
}
/* USP BAR */
.usp-bar {
background: var(--bg-alt);
padding: 3rem 0;
}
.usp-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 2rem;
}
.usp-item {
display: flex;
align-items: center;
gap: 1.5rem;
padding: 1.5rem;
background: white;
border-radius: 20px;
box-shadow: var(--shadow-sm);
transition: var(--transition);
}
.usp-item:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-md);
border-left: 3px solid var(--primary);
}
.usp-icon {
width: 60px;
height: 60px;
background: var(--primary-light);
border-radius: 15px;
display: flex;
align-items: center;
justify-content: center;
color: var(--primary);
font-size: 1.5rem;
transition: var(--transition);
}
.usp-item:hover .usp-icon {
background: var(--primary);
color: white;
transform: rotate(360deg);
}
.usp-content h4 {
font-weight: 700;
margin-bottom: 0.25rem;
}
.usp-content p {
font-size: 0.9rem;
color: var(--text-muted);
}
/* CATEGORY GRID */
.category-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2rem;
}
.category-card {
position: relative;
border-radius: 20px;
overflow: hidden;
height: 300px;
text-decoration: none;
color: white;
}
.category-card img {
width: 100%;
height: 100%;
object-fit: cover;
transition: var(--transition);
}
.category-card:hover img {
transform: scale(1.1);
}
.category-overlay {
position: absolute;
bottom: 0;
left: 0;
right: 0;
padding: 2rem;
background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}
.category-overlay h3 {
font-family: var(--font-heading);
font-size: 1.5rem;
margin-bottom: 0.5rem;
}
/* SERVICES GRID */
.services-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 1.5rem;
}
.service-card {
background: white;
border-radius: 20px;
padding: 2rem;
box-shadow: var(--shadow-sm);
transition: var(--transition);
border: 1px solid var(--border);
text-decoration: none;
color: var(--text);
display: block;
}
.service-card:hover {
transform: translateY(-10px);
box-shadow: var(--shadow-xl);
border-color: var(--primary);
}
.service-icon {
width: 70px;
height: 70px;
background: var(--primary-light);
border-radius: 15px;
display: flex;
align-items: center;
justify-content: center;
color: var(--primary);
font-size: 1.8rem;
margin-bottom: 1.5rem;
transition: var(--transition);
}
.service-card:hover .service-icon {
background: var(--primary);
color: white;
transform: scale(1.1) rotate(5deg);
}
.service-card h3 {
font-family: var(--font-heading);
font-size: 1.3rem;
font-weight: 700;
margin-bottom: 0.75rem;
}
.service-card p {
font-size: 0.9rem;
color: var(--text-light);
line-height: 1.7;
margin-bottom: 1.5rem;
}
.service-link {
color: var(--primary);
font-weight: 600;
font-size: 0.9rem;
display: flex;
align-items: center;
gap: 0.5rem;
}
.service-link i {
transition: var(--transition);
}
.service-card:hover .service-link i {
transform: translateX(5px);
}
/* BRANDS SECTION */
.brands-section {
background: var(--bg-alt);
padding: 4rem 0;
border-top: 1px solid var(--border);
border-bottom: 1px solid var(--border);
}
.brands-label {
text-align: center;
font-size: 0.9rem;
text-transform: uppercase;
letter-spacing: 3px;
color: var(--text-muted);
margin-bottom: 2rem;
}
.brands-grid {
display: flex;
justify-content: center;
align-items: center;
gap: 4rem;
flex-wrap: wrap;
}
.brand-item {
filter: grayscale(100%);
opacity: 0.5;
transition: var(--transition);
}
.brand-item:hover {
filter: grayscale(0);
opacity: 1;
transform: scale(1.1);
}
.brand-item img {
height: 40px;
width: auto;
}
/* REVIEWS */
.reviews-header {
display: flex;
justify-content: space-between;
align-items: flex-end;
margin-bottom: 3rem;
flex-wrap: wrap;
gap: 2rem;
}
.score-card {
display: flex;
align-items: center;
gap: 2rem;
background: var(--bg-alt);
padding: 1.5rem 2rem;
border-radius: 20px;
border: 1px solid var(--border);
}
.score-big {
font-family: var(--font-heading);
font-size: 4rem;
font-weight: 700;
color: var(--primary);
line-height: 1;
}
.score-stars {
color: var(--accent);
font-size: 1.2rem;
margin-bottom: 0.25rem;
}
.reviews-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2rem;
}
.review-card {
background: var(--bg-alt);
border-radius: 20px;
padding: 2rem;
border: 1px solid var(--border);
transition: var(--transition);
}
.review-card:hover {
transform: translateY(-5px);
border-color: var(--primary);
box-shadow: var(--shadow-md);
background: white;
}
.review-stars {
color: var(--accent);
font-size: 1rem;
margin-bottom: 1rem;
}
.review-text {
font-size: 1rem;
line-height: 1.8;
margin-bottom: 1.5rem;
font-style: italic;
}
.review-author {
display: flex;
align-items: center;
gap: 1rem;
}
.review-avatar {
width: 50px;
height: 50px;
border-radius: 50%;
background: var(--primary-light);
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
color: var(--primary);
}
.review-name {
font-weight: 700;
}
.review-location {
font-size: 0.85rem;
color: var(--text-muted);
}
/* CONTACT */
.contact-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
background: var(--bg-alt);
border-radius: 30px;
padding: 3rem;
border: 1px solid var(--border);
}
.contact-form {
background: white;
padding: 3rem;
border-radius: 20px;
box-shadow: var(--shadow-md);
}
.contact-form h3 {
font-family: var(--font-heading);
font-size: 2rem;
margin-bottom: 2rem;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
width: 100%;
padding: 1rem 1.5rem;
margin-bottom: 1rem;
border: 2px solid var(--border);
border-radius: 12px;
font-family: var(--font-body);
font-size: 1rem;
transition: var(--transition);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
outline: none;
border-color: var(--primary);
box-shadow: 0 0 0 4px var(--primary-glow);
}
.contact-form .form-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1rem;
}
.contact-info {
background: var(--secondary);
color: white;
padding: 3rem;
border-radius: 20px;
}
.info-item {
display: flex;
gap: 1.5rem;
margin-bottom: 2rem;
padding-bottom: 2rem;
border-bottom: 1px solid rgba(255,255,255,0.1);
}
.info-item:last-child {
border-bottom: none;
margin-bottom: 0;
padding-bottom: 0;
}
.info-item i {
width: 50px;
height: 50px;
background: rgba(212,32,41,0.2);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
color: var(--primary);
font-size: 1.2rem;
flex-shrink: 0;
}
.info-item strong {
display: block;
font-size: 0.9rem;
color: var(--text-muted);
margin-bottom: 0.25rem;
font-weight: 400;
}
.info-item p {
font-size: 1.1rem;
font-weight: 600;
}
.info-item a {
color: white;
text-decoration: none;
}
.info-item a:hover {
color: var(--primary);
}
.hours {
width: 100%;
}
.hours td {
padding: 0.25rem 0;
}
.hours td:last-child {
text-align: right;
font-weight: 600;
}
.map-container {
margin-top: 3rem;
border-radius: 20px;
overflow: hidden;
border: 1px solid var(--border);
box-shadow: var(--shadow-md);
}
.map-container iframe {
width: 100%;
height: 400px;
border: none;
display: block;
}
/* CTA SECTION */
.cta-section {
background: var(--gradient);
padding: 5rem 2rem;
text-align: center;
position: relative;
overflow: hidden;
}
.cta-section::before {
content: '';
position: absolute;
top: -50%;
left: -20%;
width: 140%;
height: 200%;
background: repeating-linear-gradient(45deg, transparent, transparent 30px, rgba(255,255,255,0.03) 30px, rgba(255,255,255,0.03) 31px);
animation: rotate 60s linear infinite;
}
@keyframes rotate {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}
.cta-content {
position: relative;
z-index: 1;
max-width: 800px;
margin: 0 auto;
}
.cta-title {
font-family: var(--font-heading);
font-size: clamp(2.5rem, 5vw, 4rem);
font-weight: 700;
color: white;
margin-bottom: 1rem;
}
.cta-text {
color: rgba(255,255,255,0.9);
font-size: 1.2rem;
margin-bottom: 2.5rem;
}
/* FOOTER */
.footer {
background: var(--bg-dark);
color: #999;
padding: 4rem 2rem 2rem;
}
.footer-grid {
max-width: 1400px;
margin: 0 auto;
display: grid;
grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
gap: 3rem;
margin-bottom: 3rem;
}
.footer-logo {
height: 40px;
filter: brightness(0) invert(1);
opacity: 0.7;
margin-bottom: 1.5rem;
transition: var(--transition);
}
.footer-logo:hover {
opacity: 1;
}
.footer-about {
font-size: 0.9rem;
line-height: 1.8;
margin-bottom: 1.5rem;
}
.footer-social {
display: flex;
gap: 1rem;
}
.footer-social a {
width: 40px;
height: 40px;
background: rgba(255,255,255,0.1);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
transition: var(--transition);
color: #999;
text-decoration: none;
}
.footer-social a:hover {
background: var(--primary);
color: white;
transform: translateY(-3px);
}
.footer-col h4 {
color: white;
font-size: 1rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 1.5rem;
}
.footer-col a {
display: block;
color: #999;
margin-bottom: 0.75rem;
transition: var(--transition);
text-decoration: none;
}
.footer-col a:hover {
color: white;
transform: translateX(5px);
}
.footer-bottom {
max-width: 1400px;
margin: 0 auto;
padding-top: 2rem;
border-top: 1px solid rgba(255,255,255,0.1);
display: flex;
justify-content: space-between;
align-items: center;
font-size: 0.85rem;
color: #666;
flex-wrap: wrap;
gap: 1rem;
}
/* FLOATING BUTTONS */
.floating-buttons {
position: fixed;
bottom: 2rem;
right: 2rem;
display: flex;
flex-direction: column;
gap: 1rem;
z-index: 999;
}
.float-btn {
width: 60px;
height: 60px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.5rem;
color: white;
box-shadow: var(--shadow-xl);
transition: var(--transition);
text-decoration: none;
}
.float-btn:hover {
transform: scale(1.1) translateY(-5px);
}
.float-wa {
background: #25D366;
}
.float-ph {
background: var(--gradient);
}
/* RESPONSIVE */
@media (max-width: 1200px) {
.services-grid {
grid-template-columns: repeat(2, 1fr);
}
.footer-grid {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 992px) {
.hero {
grid-template-columns: 1fr;
}
.hero-left {
padding: 4rem 2rem;
}
.hero-right {
padding: 2rem;
height: 400px;
}
.usp-grid {
grid-template-columns: repeat(2, 1fr);
}
.reviews-grid {
grid-template-columns: repeat(2, 1fr);
}
.contact-grid {
grid-template-columns: 1fr;
}
.category-grid {
grid-template-columns: 1fr;
}
}
@media (max-width: 768px) {
.topbar {
display: none;
}
.nav-menu {
display: none;
}
.hamburger {
display: flex;
}
.services-grid {
grid-template-columns: 1fr;
}
.usp-grid {
grid-template-columns: 1fr;
}
.reviews-grid {
grid-template-columns: 1fr;
}
.footer-grid {
grid-template-columns: 1fr;
}
}
Dit is waar onze reis begint. Maak kennis met ons bedrijf en wat we doen. Wij staan voor kwaliteit en goede service. Sluit je aan, terwijl we samen groeien en succesvol worden. We zijn blij dat je hier bent om deel uit te maken van ons verhaal.