/* ===================================
   HOLLANDS DUURZAAM - STYLESHEET
   Kleuren: Blauw (#0099CC) en Groen (#28A745)
   =================================== */

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

:root {
    --color-blue: #0099CC;
    --color-green: #28A745;
    --color-dark: #333333;
    --color-light: #f8f9fa;
    --color-gray: #666666;
    --color-border: #e0e0e0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--color-dark);
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    color: var(--color-dark);
    margin-bottom: 2rem;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    color: var(--color-blue);
}

p {
    margin-bottom: 1rem;
    color: var(--color-gray);
    line-height: 1.8;
}

a {
    color: var(--color-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-green);
}

/* ===== NAVBAR ===== */
.navbar {
    background-color: #ffffff;
    border-bottom: 2px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    gap: 0.5rem;
    letter-spacing: 0.5px;
}

.logo-blue {
    color: var(--color-blue);
}

.logo-green {
    color: var(--color-green);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--color-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-blue);
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .nav-brand {
        font-size: 1.2rem;
    }
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, rgba(0, 153, 204, 0.05) 0%, rgba(40, 167, 69, 0.05) 100%);
    padding: 80px 20px;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--color-blue);
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--color-green);
    font-weight: 500;
    margin-bottom: 2rem;
}

.hero-text {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--color-blue);
    text-align: left;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.hero-text p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: var(--color-gray);
}

.hero-text strong {
    color: var(--color-blue);
}

.highlight {
    color: var(--color-green);
    font-weight: 600;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
    padding: 12px 32px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background-color: var(--color-blue);
    color: white;
}

.btn-primary:hover {
    background-color: #0077a3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 153, 204, 0.3);
}

.btn-secondary {
    background-color: var(--color-green);
    color: white;
}

.btn-secondary:hover {
    background-color: #218838;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}

/* ===== DIENSTEN SECTION ===== */
.diensten {
    padding: 80px 20px;
    background-color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid var(--color-border);
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    border-color: var(--color-blue);
    box-shadow: 0 8px 20px rgba(0, 153, 204, 0.15);
    transform: translateY(-5px);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--color-blue);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--color-gray);
}

/* ===== VOORDELEN SECTION ===== */
.voordelen {
    background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-green) 100%);
    color: white;
    padding: 80px 20px;
}

.voordelen h2 {
    color: white;
    margin-bottom: 3rem;
}

.voordelen-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.voordeel {
    background: rgba(255, 255, 255, 0.15);
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.voordeel:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.voordeel-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.voordeel p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

/* ===== REVIEWS SECTION ===== */
.reviews {
    padding: 80px 20px;
    background-color: white;
}

.reviews h2 {
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.reviews-subtitle {
    text-align: center;
    color: var(--color-green);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 3rem;
}

.reviews-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.reviews-map {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    height: 450px;
}

.reviews-map iframe {
    border: none !important;
}

.reviews-testimonials {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.review-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--color-green);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.review-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.review-stars {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.2rem;
}

.review-text {
    color: var(--color-gray);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.review-author {
    color: var(--color-blue);
    font-weight: 600;
    margin: 0;
    font-style: normal;
}

.cta-reviews {
    margin-top: 1rem;
}

.cta-reviews .btn {
    width: 100%;
    text-align: center;
}

@media (max-width: 1024px) {
    .reviews-wrapper {
        grid-template-columns: 1fr;
    }

    .reviews-map {
        height: 350px;
    }
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 80px 20px;
    background-color: var(--color-light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-form-section h2 {
    text-align: left;
    margin-bottom: 1rem;
}

.contact-form-section > p {
    margin-bottom: 2rem;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--color-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid var(--color-border);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-blue);
    box-shadow: 0 0 0 3px rgba(0, 153, 204, 0.1);
}

.form-note {
    font-size: 0.9rem;
    color: var(--color-gray);
    margin-top: 1rem;
}

.contact-form .btn {
    width: 100%;
    margin-top: 1rem;
}

.contact-info-section h3 {
    color: var(--color-blue);
    margin-bottom: 2rem;
}

.contact-info-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--color-border);
}

.contact-info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-info-item strong {
    display: block;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.contact-info-item p {
    color: var(--color-gray);
    margin: 0;
}

.contact-info-item a {
    color: var(--color-blue);
    font-weight: 500;
}

.contact-info-item a:hover {
    color: var(--color-green);
}

@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--color-dark);
    color: white;
    text-align: center;
    padding: 2rem 20px;
    border-top: 4px solid var(--color-blue);
}

.footer p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
}

.footer-legal {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    h2 {
        font-size: 2rem;
    }

    .hero {
        padding: 60px 20px;
    }

    .diensten,
    .voordelen,
    .contact {
        padding: 60px 20px;
    }

    .services-grid,
    .voordelen-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .cta-buttons {
        gap: 0.5rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.2rem;
    }
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-dark);
    color: white;
    padding: 1.5rem 20px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    border-top: 4px solid var(--color-blue);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: space-between;
}

.cookie-content p {
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    flex: 1;
    min-width: 300px;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.cookie-buttons .btn {
    padding: 10px 24px;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .cookie-buttons .btn {
        flex: 1;
        max-width: 200px;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .navbar,
    .footer,
    .cta-buttons,
    .cookie-banner {
        display: none;
    }
}
