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

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Banner */
.top-banner {
    background: linear-gradient(90deg, #012982 0%, #8059E9 33%, #1179BA 66%, #065A3E 100%);
    color: white;
    text-align: center;
    padding: 12px 20px;
    font-size: 18px;
    font-weight: 600;
}

.banner-link {
    color: white;
    font-weight: bold;
    text-decoration: underline;
    margin-left: 5px;
}

.banner-link:hover {
    text-decoration: none;
}

/* Header */
.navbar {
    background: white;
    box-shadow: none;
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 80px;
    display: flex;
    align-items: center;
    padding: 0;
}

.navbar .container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 40px;
}

.nav-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 100%;
    padding: 0;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.logo-img {
    display: flex;
    align-items: center;
}

.logo-img a {
    display: block;
    line-height: 0;
}

.logo-img img {
    height: 60px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    justify-content: center;
}

.nav-menu a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #006BA6;
}

.nav-icons {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: flex-end;
}

.icon-btn {
    background: none;
    border: 2px solid #333;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    padding: 0;
}

.icon-btn:hover {
    background: #f0f0f0;
    border-color: #006BA6;
}

.icon-btn img {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

.taal-btn {
    background: linear-gradient(180deg, #FF0000 0%, #FF0000 33%, white 33%, white 66%, #003DA5 66%, #003DA5 100%);
}

/* Responsive */
@media (max-width: 1200px) {
    .navbar .container {
        padding: 0 30px;
    }
}

@media (max-width: 992px) {
    .navbar .container {
        padding: 0 20px;
    }

    .nav-menu {
        display: none;
    }
}

@media (max-width: 768px) {
    .navbar .container {
        padding: 0 20px;
    }
}

/* Hero */
.hero {
    position: relative;
    color: white;
    padding: 120px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.hero-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}

.hero-text {
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    max-width: 450px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn {
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
}

.btn-primary {
    background: #821CFF;
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(156, 39, 176, 0.4);
}

.btn-secondary {
    background: white;
    color: #821CFF;
}

.btn-secondary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1200px) {
    .hero .container {
        padding: 0 30px;
    }
}

@media (max-width: 992px) {
    .hero .container {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 0;
        min-height: 500px;
    }

    .hero .container {
        padding: 0 20px;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-text p {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* Reviews */
.reviews {
    padding: 80px 0;
    background: white;
}

.reviews h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 15px;
    color: #333;
}

.reviews-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

.reviews-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 70px;
    overflow: hidden;
}

.carousel-container {
    display: flex;
    gap: 30px;
    transition: transform 0.4s ease-in-out;
}

.review-card {
    min-width: 350px;
    width: 350px;
    height: 350px;
    flex-shrink: 0;
    border-radius: 20px;
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: white;
    transition: transform 0.3s;
}

.review-card h3 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.3;
}

.review-card p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}


.review-card.photo-card {
    background: none;
    padding: 0;
    overflow: hidden;
    min-width: 350px;
    width: 350px;
    height: 350px;
}

.review-card.photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.review-footer {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.review-footer p {
    margin: 0;
    font-size: 13px;
    opacity: 0.8;
}

.stars {
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.carousel-btn:hover:not(:disabled) {
    background: #f0f0f0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

/* Responsive */
@media (max-width: 1200px) {
    .reviews-carousel {
        max-width: 1000px;
    }

    .review-card,
    .review-card.photo-card {
        min-width: 320px;
        width: 320px;
        height: 320px;
    }
}

@media (max-width: 992px) {
    .reviews-carousel {
        padding: 0 60px;
    }

    .review-card,
    .review-card.photo-card {
        min-width: 300px;
        width: 300px;
        height: 300px;
    }

    .carousel-container {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .reviews-carousel {
        padding: 0 50px;
    }

    .review-card,
    .review-card.photo-card {
        min-width: 280px;
        width: 280px;
        height: 280px;
    }
}

/* Stappenplan */

.steps-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.steps-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #333;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.step-card {
    background: white;
    border-radius: 15px;
    padding: 30px 30px 0 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    display: flex;
    align-items: flex-end;
    gap: 30px;
    height: 220px;
    overflow: hidden;
}

.step-content {
    flex: 1;
    text-align: left;
    align-self: flex-start;
    padding-top: 0;
}

.step-number {
    font-size: 26px;
    font-weight: bold;
    color: #C059DA;
    margin-bottom: 8px;
}

.step-card h3 {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #000000;
}

.step-card p {
    font-size: 14px;
    color: #000000;
    line-height: 1.5;
    margin: 0;
}

.store-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.store-buttons a {
    display: block;
    transition: transform 0.3s;
}

.store-buttons a:hover {
    transform: translateY(-2px);
}

.store-buttons img {
    height: 35px;
    width: auto;
    border-radius: 5px;
}

.store-buttons a:nth-child(2) img {
    height: 37px;
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .store-buttons {
        justify-content: center;
        margin-top: 20px;
    }

    .store-buttons img {
        height: 32px;
    }
}

.phone-demo {
    width: 140px;
    height: 100%;
    flex-shrink: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.phone-demo img {
    width: auto;
    height: 200px;
    object-fit: contain;
    object-position: bottom;
}

/* Responsive */
@media (max-width: 992px) {
    .steps-grid {
        grid-template-columns: 1fr;
        padding: 0 30px;
    }

    .step-card {
        height: 200px;
        padding: 25px 25px 0 25px;
    }

    .phone-demo {
        width: 120px;
    }

    .phone-demo img {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .step-card {
        flex-direction: column;
        height: auto;
        min-height: 300px;
        text-align: center;
        padding: 25px;
        align-items: center;
    }

    .step-content {
        text-align: center;
        align-self: center;
    }

    .phone-demo {
        width: 100%;
        height: 180px;
    }

    .phone-demo img {
        height: 160px;
    }

    .steps-grid {
        padding: 0 20px;
    }
}

/* Het laatste nieuws */
.news-section {
    padding: 80px 0;
    background: white;
}

.news-section .container {
    max-width: calc(100% - 80px);
}

.news-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #333;
}

.news-carousel {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 70px 70px;
    overflow: hidden;
}

.news-container {
    display: flex;
    gap: 30px;
    transition: transform 0.4s ease-in-out;
}

.news-card {
    min-width: 280px;
    width: 280px;
    height: 520px;
    flex-shrink: 0;
    background: #f5f5f5;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.news-image {
    width: 100%;
    height: 240px;
    background: linear-gradient(135deg, #1a237e, #006BA6);
    flex-shrink: 0;
    border-radius: 0 45px 45px 45px;
    margin-bottom: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 45px 45px 45px;
}

.news-content {
    padding: 0;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.news-date {
    font-size: 12px;
    color: #999;
    margin-bottom: 10px;
    font-weight: 400;
}

.news-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #333;
    font-weight: 600;
    line-height: 1.3;
}

.news-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
    flex: 1;
}

.read-more {
    display: inline-block;
    background: #666;
    color: white;
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.3s;
    align-self: flex-start;
    margin-top: auto;
}

.read-more:hover {
    background: #333;
}

/* Carousel buttons */
.news-carousel .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.news-carousel .carousel-btn:hover:not(:disabled) {
    background: #f0f0f0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.news-carousel .carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.news-carousel .carousel-btn.prev {
    left: 10px;
}

.news-carousel .carousel-btn.next {
    right: 10px;
}

/* Responsive */
@media (max-width: 1200px) {
    .news-carousel {
        max-width: 1000px;
    }

    .news-card {
        min-width: 260px;
        width: 260px;
        height: 480px;
    }

    .news-image {
        height: 220px;
    }
}

@media (max-width: 992px) {
    .news-carousel {
        padding: 0 60px;
    }

    .news-card {
        min-width: 240px;
        width: 240px;
        height: 440px;
    }

    .news-image {
        height: 200px;
    }

    .news-container {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .news-carousel {
        padding: 0 50px;
    }

    .news-card {
        min-width: 220px;
        width: 220px;
        height: 400px;
    }

    .news-image {
        height: 180px;
    }
}

/* Samenwerking*/
.partners-section {
    padding: 60px 0;
    background: #f8f9fa;
    text-align: center;
}

.partners-section .container {
    max-width: calc(100% - 80px);
}

.partners-section h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: #333;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.partner-logo {
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.3s;
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Responsive */
@media (max-width: 768px) {
    .partners-logos {
        gap: 30px;
    }

    .partner-logo {
        width: 100px;
        height: 100px;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .partner-logo {
        width: 80px;
        height: 80px;
        padding: 10px;
    }
}

/* Nieuwsbrief */
.newsletter-section {
    background: linear-gradient(90deg, #821CFF 0%, #A41B89 100%);
    padding: 60px 40px;
}

.newsletter-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.newsletter-content {
    color: white;
}

.newsletter-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.newsletter-content p {
    font-size: 18px;
    line-height: 1.6;
}

.newsletter-form form {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 14px 18px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
}

.newsletter-form button {
    padding: 14px 35px;
    background: white;
    color: #9333EA;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

.checkbox-label {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: white;
    font-size: 12px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
    }

    .reviews-carousel,
    .news-carousel {
        padding: 0 40px;
    }

    .review-card,
    .news-card {
        min-width: 260px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 50px;
        font-size: 16px;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .btn {
        width: 100%;
    }
}