/* Verhuizen pagina styling */
.verhuizen-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    margin-top: -2rem;
}

/* Hero sectie met bewegende achtergrond */
.hero-section {
    position: relative;
    height: 500px;
    margin: -2rem -2rem 4rem;
    background: linear-gradient(45deg, var(--pink) 0%, var(--pink-dark) 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

/* Bewegende achtergrond elementen */
.moving-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    z-index: 1;
}

.moving-bg::before,
.moving-bg::after {
    content: '📦';
    position: absolute;
    font-size: 15rem;
    animation: moveBox 20s infinite linear;
}

.moving-bg::before {
    top: -50px;
    left: -50px;
    animation-delay: -10s;
}

.moving-bg::after {
    bottom: -50px;
    right: -50px;
    transform: rotate(180deg);
}

@keyframes moveBox {
    0% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(30px, 30px) rotate(180deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.hero-content p {
    font-size: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards 0.2s;
}

/* Service cards met interactieve hover */
.services-section {
    margin: 6rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    perspective: 1000px;
}

.service-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(254, 111, 179, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
    box-shadow: 0 20px 40px rgba(254, 111, 179, 0.2);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--pink);
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.2) translateZ(20px);
}

.service-card h3 {
    font-size: 1.8rem;
    color: var(--pink);
    margin-bottom: 1.5rem;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    transition: transform 0.3s ease;
}

.service-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--pink);
    transition: transform 0.3s ease;
}

.service-card:hover .service-list li {
    transform: translateX(5px) translateZ(10px);
}

/* Werkwijze sectie met timeline effect */
.approach-section {
    position: relative;
    padding: 6rem 2rem;
    margin: 6rem -2rem;
    background: linear-gradient(135deg,
        rgba(254, 111, 179, 0.1) 0%,
        rgba(255, 255, 255, 0.95) 50%,
        rgba(254, 111, 179, 0.1) 100%);
    overflow: hidden;
}

.approach-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.approach-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    position: relative;
    padding-left: 2rem;
}

.approach-content p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.8rem;
    width: 8px;
    height: 8px;
    background: var(--pink);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(254, 111, 179, 0.2);
}

/* Praktische info met gestapelde cards */
.info-section {
    margin: 6rem 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.info-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(254, 111, 179, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--pink), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(254, 111, 179, 0.2);
}

.info-card:hover::before {
    opacity: 0.1;
}

/* Responsive design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .service-card,
    .info-card {
        padding: 2rem;
    }

    .approach-section {
        padding: 4rem 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-card {
        padding: 2rem;
    }

    .approach-content {
        padding: 2rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Animaties */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.verhuizen-header {
    height: 300px; /* Reduced from 400px */
    background-color: var(--pink);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 4rem;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    width: 100%;
    overflow: hidden; /* Toegevoegd voor de animaties */
}

.header-content {
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.header-content h1 {
    font-size: 3rem; /* Reduced from 3.5rem */
    margin-bottom: 1rem;
}

.header-content p {
    font-size: 1.2rem; /* Reduced from 1.4rem */
}

.intro-section {
    max-width: 900px;
    margin: 0 auto 4rem;
    padding: 2rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.97);
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(254, 111, 179, 0.10);
}

.intro-section h2 {
    color: var(--pink);
    font-size: 2.2rem;
    margin-bottom: 2rem;
    position: relative;
}

.intro-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--pink) 0%, transparent 100%);
    border-radius: 2px;
}

.intro-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1rem;
}

.services-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 2rem;
    background: none;
    border-radius: 0;
    box-shadow: none;
}

.services-section h2 {
    text-align: center;
    color: var(--pink);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.services-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--pink) 0%, transparent 100%);
    border-radius: 2px;
}

.services-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.97);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(254, 111, 179, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--pink) 0%, var(--pink-dark) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(254, 111, 179, 0.15);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.service-card h3 {
    color: var(--pink);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

.services-outro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-top: 3rem;
    font-style: italic;
}

.target-section {
    max-width: 900px;
    margin: 4rem auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.97);
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(254, 111, 179, 0.10);
}

.target-section h2 {
    text-align: center;
    color: var(--pink);
    font-size: 2.2rem;
    margin-bottom: 2rem;
    position: relative;
}

.target-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--pink) 0%, transparent 100%);
    border-radius: 2px;
}

.target-content {
    text-align: center;
}

.target-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .intro-section,
    .services-section,
    .target-section {
        padding: 1.5rem;
        margin: 3rem auto;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .intro-section h2,
    .services-section h2,
    .target-section h2 {
        font-size: 1.8rem;
    }
}

.description-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
}

.description-text {
    flex: 2;
    min-width: 0;
}

.description-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.projecten-foto {
    max-width: 220px;
    width: 100%;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 6px 24px rgba(254, 111, 179, 0.13);
}

@media (max-width: 900px) {
    .description-flex {
        flex-direction: column;
        gap: 1.5rem;
    }
    .description-image {
        justify-content: center;
        margin-bottom: 1rem;
    }
    .projecten-foto {
        max-width: 320px;
    }
}