/* ===========================================
   HOME PAGE STYLES
   =========================================== */

/* ========== HERO SECTION ========== */
.hero-section {
    height: 100vh;
    min-height: 600px;
    background-color: var(--dark);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
}

/* Floating Background Objects */
.floating-objects {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    opacity: 0.1;
    animation: floatCircle 15s infinite ease-in-out;
}

.circle-1 {
    width: 150px;
    height: 150px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 20s;
}

.circle-2 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 15%;
    animation-delay: 5s;
    animation-duration: 25s;
}

.circle-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: 10s;
    animation-duration: 18s;
}

.circle-4 {
    width: 120px;
    height: 120px;
    top: 30%;
    right: 25%;
    animation-delay: 7s;
    animation-duration: 22s;
}

@keyframes floatCircle {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(50px, -50px) rotate(90deg);
    }

    50% {
        transform: translate(0, -100px) rotate(180deg);
    }

    75% {
        transform: translate(-50px, -50px) rotate(270deg);
    }
}

.floating-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.1;
    animation: floatLine 20s infinite linear;
}

.line-1 {
    width: 300px;
    height: 2px;
    top: 40%;
    left: -100px;
    transform: rotate(45deg);
}

.line-2 {
    width: 200px;
    height: 1px;
    bottom: 30%;
    right: -50px;
    transform: rotate(-30deg);
}

@keyframes floatLine {
    0% {
        transform: translateX(-100px) rotate(45deg);
    }

    100% {
        transform: translateX(calc(100vw + 200px)) rotate(45deg);
    }
}

.floating-icon {
    position: absolute;
    color: var(--primary);
    opacity: 0.2;
    font-size: 2rem;
    animation: floatIcon 15s infinite ease-in-out;
}

.icon-1 {
    top: 20%;
    right: 20%;
    animation-delay: 0s;
}

.icon-2 {
    bottom: 30%;
    left: 15%;
    animation-delay: 3s;
}

.icon-3 {
    top: 70%;
    left: 30%;
    animation-delay: 6s;
    color: var(--accent);
}

@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.2;
    }

    50% {
        transform: translateY(-100px) rotate(180deg);
        opacity: 0.4;
    }
}

.hero-image {
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='20' viewBox='0 0 100 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.184 20c.357-.13.72-.264 1.088-.402l1.768-.661C33.64 15.347 39.647 14 50 14c10.271 0 15.362 1.222 24.629 4.928.955.383 1.869.74 2.75 1.072h6.225c-2.51-.73-5.139-1.691-8.233-2.928C65.888 13.278 60.562 12 50 12c-10.626 0-16.855 1.397-26.66 5.063l-1.767.662c-2.475.923-4.66 1.674-6.724 2.275h6.335zm0-20C13.258 2.892 8.077 4 0 4V2c5.744 0 9.951-.574 14.85-2h6.334zM77.38 0C85.239 2.966 90.502 4 100 4V2c-6.842 0-11.386-.542-16.396-2h-6.225zM0 14c8.44 0 13.718-1.21 22.272-4.402l1.768-.661C33.64 5.347 39.647 4 50 4c10.271 0 15.362 1.222 24.629 4.928C84.112 12.722 89.438 14 100 14v-2c-10.271 0-15.362-1.222-24.629-4.928C65.888 3.278 60.562 2 50 2 39.374 2 33.145 3.397 23.34 7.063l-1.767.662C13.223 10.84 8.163 12 0 12v2z' fill='%23df6f57' fill-opacity='0.4' fill-rule='evenodd'/%3E%3C/svg%3E");
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: repeat;
    background-size: 300px;
    opacity: 0.7;
    animation: floatPattern 30s linear infinite;
    z-index: 1;
}

@keyframes floatPattern {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 300px 300px;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    color: var(--light);
    margin-bottom: 20px;
    text-transform: uppercase;
    font-style: italic;
    line-height: 1.1;
}

.hero-title span {
    display: inline-block;
    color: var(--primary);
    position: relative;
    animation: wordFloat 4s ease-in-out infinite;
}

@keyframes wordFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: var(--light);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
    opacity: 0.9;
    font-family: 'Montserrat', sans-serif;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--light);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: bounce 2s infinite;
    z-index: 2;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--light);
    border-radius: 20px;
    margin-top: 10px;
    position: relative;
    animation: pulseBorder 2s infinite;
}

@keyframes pulseBorder {

    0%,
    100% {
        border-color: var(--light);
    }

    50% {
        border-color: var(--primary);
    }
}

.wheel {
    width: 4px;
    height: 10px;
    background-color: var(--light);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 20px);
        opacity: 0;
    }
}

/* Coordinates */
.coordinates-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.header-coordinates-container {
    position: absolute;
    opacity: 0;
    animation: fadeInOut 8s infinite;
}

.header-coordinates-container._1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.header-coordinates-container._2 {
    top: 40%;
    right: 15%;
    animation-delay: 1s;
}

.header-coordinates-container._3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 2s;
}

.header-coordinates-container._4 {
    bottom: 20%;
    right: 25%;
    animation-delay: 3s;
}

@keyframes fadeInOut {

    0%,
    100% {
        opacity: 0;
        transform: translateY(20px);
    }

    20%,
    80% {
        opacity: 1;
        transform: translateY(0);
    }
}

.coor-block {
    width: 80px;
    height: 2px;
    background: var(--orange);
    margin-bottom: 10px;
}

.text-block-7 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: var(--beige);
    opacity: 0.8;
    line-height: 1.4;
}

.picture-pin-container-wrapper {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100px;
    height: 100px;
    opacity: 0;
    transition: all 0.5s ease;
}

.header-coordinates-container:hover .picture-pin-container-wrapper {
    opacity: 1;
}

.picture-pin-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.pin-point {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--orange);
    border-radius: 50%;
}

/* ========== BRANDS FUTURE SECTION ========== */
.brands-future-section {
    background-color: var(--dark);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.big-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    z-index: 1;
    pointer-events: none;
}

.megatext {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(4rem, 15vw, 12rem);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 0.8;
    color: rgba(255, 255, 255, 0.03);
    margin-bottom: -20px;
    pointer-events: none;
}

.megatext:nth-child(odd) {
    color: rgba(223, 111, 87, 0.05);
}

.megatext:nth-child(even) {
    color: rgba(74, 155, 127, 0.05);
}

.content-text {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 20px;
    text-align: center;
}

.lead-text {
    font-size: 1.8rem;
    color: var(--light);
    margin-bottom: 30px;
    line-height: 1.4;
    font-weight: 600;
}

.content-text p {
    font-size: 1.2rem;
    color: var(--light);
    margin-bottom: 20px;
    line-height: 1.7;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ========== COLLAGE SECTION ========== */
.collage-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.collage-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.collage-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4/3;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.collage-item:hover {
    transform: translateY(-10px);
}

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.collage-item:hover img {
    transform: scale(1.1);
}

.collage-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            transparent 60%,
            rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 1;
}

.overlay-content {
    color: white;
}

.overlay-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.overlay-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ========== INTRO SECTION ========== */
.intro {
    background-color: var(--orange);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.wrapperz {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.heading-2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--gray);
    margin-bottom: 40px;
    max-width: 800px;
}

.h2-home-highlight {
    color: var(--beige);
    position: relative;
}

.h2-home-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--teal);
    opacity: 0.5;
    z-index: -1;
}

.intro-container {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.div-block-4 {
    flex: 1;
}

.intro-tekst {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 30px;
    line-height: 1.7;
}

.intro-tekst.big {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 30px;
}

.button-phone-container {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.w-button {
    display: inline-block;
    padding: 15px 30px;
    background: var(--gray);
    color: var(--beige);
    text-decoration: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.w-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background: #2a2a2a;
}

.button-phone {
    background: var(--teal);
    color: var(--beige);
}

.button-mail {
    background: var(--gray);
    color: var(--beige);
}

.confetti-container {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.confetti-container div {
    width: 100%;
    height: 100%;
    background: rgba(223, 111, 87, 0.1);
    border-radius: 50%;
}

/* ========== ABOUT SECTION ========== */
.about-us {
    position: relative;
    background-color: var(--dark);
    overflow: hidden;
}

.stat-strip {
    width: 100%;
    background-color: var(--primary);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stat-grid {
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-box {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    transition: all 0.5s ease;
    background-color: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    animation: statFloat 6s ease-in-out infinite;
}

@keyframes statFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.stat-box:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: var(--shadow);
    animation: none;
}

.stat-box h2 {
    font-family: 'Barlow Condensed', sans-serif;
    color: #333;
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-box p {
    font-family: 'Barlow Condensed', sans-serif;
    color: #333;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

/* ========== PLATFORM SECTION ========== */
.platform-section {
    width: 100%;
    background-color: var(--teal);
    padding: 120px 0;
    position: relative;
}

.platform-inner {
    width: 90%;
    margin: auto;
    text-align: left;
}

.platform-heading {
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    text-transform: uppercase;
    font-size: 6rem;
    font-weight: 900;
    font-style: italic;
    line-height: 1;
    margin-bottom: 40px;
}

.platform-subtext {
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    max-width: 800px;
    text-transform: uppercase;
    margin-bottom: 60px;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 80px;
}

.platform-card {
    padding: 40px 30px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.5s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    animation: cardFloat 6s ease-in-out infinite;
}

@keyframes cardFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.platform-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background-color: rgba(255, 255, 255, 0.2);
    animation: none;
}

.platform-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    color: #fff;
    font-size: 3.2rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.platform-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: #fff;
    transition: width 0.3s;
}

.platform-card:hover h3::after {
    width: 100px;
}

.platform-card p {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.5;
}

/* ========== PARTNERS SECTION ========== */
.partners-section {
    background-color: var(--dark);
    padding: 5vw 0;
    overflow: hidden;
    position: relative;
}

.partners-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    align-items: center;
    padding: 0 5vw;
    gap: 2vw;
}

.partners-heading h2 {
    color: var(--light);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2rem, 3.5vw, 4rem);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
}

.partners-marquee {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 20px 0;
    height: 120px;
    display: flex;
    align-items: center;
}

.marquee-track {
    display: inline-flex;
    align-items: center;
    gap: 4vw;
    animation: marquee 30s linear infinite;
    height: 100%;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-track span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    padding: 0 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
    animation: logoFloat 4s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    min-width: 150px;
}

.marquee-track span img {
    max-height: 60px;
    max-width: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.marquee-track span:hover {
    background-color: rgba(223, 111, 87, 0.8);
    transform: translateY(-5px);
    animation: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.marquee-track span:hover img {
    opacity: 1;
    transform: scale(1.1);
}

@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* .vervolg {
    padding: 80px 0;
    position: relative;
    background: var(--dark);
    overflow: hidden;
}

.big-text-container {
    position: relative;
    z-index: 1;
    margin-bottom: 60px;
}

.megatext {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(6rem, 20vw, 25rem);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 0.8;
    color: rgba(227, 217, 209, 0.03);
    margin-bottom: -50px;
    position: relative;
    text-align: center;
    pointer-events: none;
}

.megatext:nth-child(odd) {
    color: rgba(223, 111, 87, 0.3);
}

.megatext:nth-child(even) {
    color: rgba(74, 155, 127, 0.3);
}

.collage-wrapper {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 2;
}

.collage-container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(8, 80px);
    gap: 15px;
    position: relative;
    height: 700px;
}

.collage-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background-color: var(--orange);
}

.collage-item:hover {
    transform: scale(1.05);
    z-index: 10;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.collage-item:hover img {
    transform: scale(1.1);
}

.collage-item:nth-child(1) {
    grid-column: 1 / span 5;
    grid-row: 1 / span 3;
    background: linear-gradient(135deg, var(--orange), var(--teal));
}

.collage-item:nth-child(2) {
    grid-column: 6 / span 4;
    grid-row: 2 / span 4;
    background: linear-gradient(135deg, var(--teal), var(--orange));
}

.collage-item:nth-child(3) {
    grid-column: 10 / span 3;
    grid-row: 1 / span 2;
    background: linear-gradient(135deg, var(--orange), var(--teal));
}

.collage-item:nth-child(4) {
    grid-column: 3 / span 4;
    grid-row: 4 / span 3;
    background: linear-gradient(135deg, var(--teal), var(--orange));
}

.collage-item:nth-child(5) {
    grid-column: 7 / span 5;
    grid-row: 6 / span 3;
    background: linear-gradient(135deg, var(--orange), var(--teal));
}

.collage-item:nth-child(6) {
    grid-column: 1 / span 4;
    grid-row: 5 / span 4;
    background: linear-gradient(135deg, var(--teal), var(--orange));
}

.collage-item:nth-child(7) {
    grid-column: 9 / span 4;
    grid-row: 4 / span 2;
    background: linear-gradient(135deg, var(--orange), var(--teal));
}

.collage-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg,
            rgba(223, 111, 87, 0.8),
            rgba(74, 155, 127, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(5px);
}

.collage-item:hover .collage-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
    padding: 20px;
}

.overlay-content h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.overlay-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    opacity: 0.9;
}

.collage-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    z-index: 3;
    pointer-events: none;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.collage-label h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0;
}

.collage-label p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 5px 0 0 0;
}

@media (max-width: 1200px) {
    .collage-container {
        grid-template-rows: repeat(8, 70px);
        height: 600px;
        gap: 12px;
    }

    .megatext {
        font-size: clamp(5rem, 18vw, 20rem);
    }
}

@media (max-width: 900px) {
    .collage-container {
        grid-template-columns: repeat(8, 1fr);
        grid-template-rows: repeat(10, 60px);
        height: 700px;
        gap: 10px;
    }

    .collage-item:nth-child(1) {
        grid-column: 1 / span 4;
        grid-row: 1 / span 3;
    }

    .collage-item:nth-child(2) {
        grid-column: 5 / span 4;
        grid-row: 2 / span 3;
    }

    .collage-item:nth-child(3) {
        grid-column: 3 / span 4;
        grid-row: 4 / span 2;
    }

    .collage-item:nth-child(4) {
        grid-column: 1 / span 4;
        grid-row: 6 / span 3;
    }

    .collage-item:nth-child(5) {
        grid-column: 5 / span 4;
        grid-row: 7 / span 3;
    }

    .collage-item:nth-child(6) {
        grid-column: 2 / span 4;
        grid-row: 10 / span 2;
    }

    .collage-item:nth-child(7) {
        grid-column: 6 / span 3;
        grid-row: 4 / span 2;
    }

    .megatext {
        font-size: clamp(4rem, 15vw, 15rem);
        margin-bottom: -40px;
    }
}

@media (max-width: 600px) {
    .vervolg {
        padding: 40px 0;
    }

    .collage-container {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(14, 50px);
        height: 800px;
        gap: 8px;
    }

    .collage-item:nth-child(1) {
        grid-column: 1 / span 3;
        grid-row: 1 / span 3;
    }

    .collage-item:nth-child(2) {
        grid-column: 2 / span 3;
        grid-row: 4 / span 3;
    }

    .collage-item:nth-child(3) {
        grid-column: 1 / span 2;
        grid-row: 7 / span 2;
    }

    .collage-item:nth-child(4) {
        grid-column: 3 / span 2;
        grid-row: 7 / span 3;
    }

    .collage-item:nth-child(5) {
        grid-column: 1 / span 4;
        grid-row: 10 / span 3;
    }

    .collage-item:nth-child(6) {
        grid-column: 2 / span 3;
        grid-row: 13 / span 2;
    }

    .collage-item:nth-child(7) {
        display: none;
    }

    .collage-label {
        bottom: 10px;
        left: 10px;
    }

    .collage-label h4 {
        font-size: 1rem;
    }

    .collage-label p {
        font-size: 0.8rem;
    }

    .megatext {
        font-size: clamp(3rem, 12vw, 10rem);
        margin-bottom: -30px;
    }
} */

/* ========== VERFOLG SECTION - RESPONSIVE UPDATE ========== */
.vervolg {
    padding: 80px 0;
    position: relative;
    background: var(--dark);
    overflow: hidden;
}

.big-text-container {
    position: relative;
    z-index: 1;
    margin-bottom: 60px;
    text-align: center;
}

.megatext {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(4rem, 15vw, 12rem);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 0.8;
    color: rgba(227, 217, 209, 0.03);
    margin-bottom: -20px;
    position: relative;
    pointer-events: none;
}

.megatext:nth-child(odd) {
    color: rgba(223, 111, 87, 0.15);
}

.megatext:nth-child(even) {
    color: rgba(74, 155, 127, 0.15);
}

.collage-wrapper {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 2;
}

/* Responsive Grid Layout */
.collage-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    position: relative;
}

/* Collage Item Base Styles */
.collage-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background-color: var(--orange);
    aspect-ratio: 1/1;
    min-height: 280px;
}

.collage-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.collage-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.collage-item:hover img {
    transform: scale(1.1);
}

/* Collage Label */
.collage-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: white;
    z-index: 3;
    pointer-events: none;
    transition: all 0.3s ease;
}

.collage-label h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0 0 5px 0;
    line-height: 1.2;
}

.collage-label p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
    line-height: 1.4;
}

/* Overlay effect on hover */
.collage-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg,
            rgba(223, 111, 87, 0.85),
            rgba(74, 155, 127, 0.85));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(3px);
    padding: 20px;
    z-index: 4;
}

.collage-item:hover .collage-overlay {
    opacity: 1;
}

.collage-item:hover .collage-label {
    opacity: 0;
}

.overlay-content {
    text-align: center;
    color: white;
    padding: 20px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.collage-item:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 10px;
    line-height: 1.2;
}

.overlay-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.4;
}

/* Desktop Layout - More Complex Grid */
@media (min-width: 1024px) {
    .collage-container {
        grid-template-columns: repeat(12, 1fr);
        grid-template-rows: repeat(8, minmax(80px, 1fr));
        gap: 15px;
        height: 700px;
    }

    .collage-item {
        aspect-ratio: auto;
        min-height: auto;
    }

    /* Collage item positions and sizes for desktop */
    .collage-item:nth-child(1) {
        grid-column: 1 / span 5;
        grid-row: 1 / span 3;
    }

    .collage-item:nth-child(2) {
        grid-column: 6 / span 4;
        grid-row: 2 / span 4;
    }

    .collage-item:nth-child(3) {
        grid-column: 10 / span 3;
        grid-row: 1 / span 2;
    }

    .collage-item:nth-child(4) {
        grid-column: 3 / span 4;
        grid-row: 4 / span 3;
    }

    .collage-item:nth-child(5) {
        grid-column: 7 / span 5;
        grid-row: 6 / span 3;
    }

    .collage-item:nth-child(6) {
        grid-column: 1 / span 4;
        grid-row: 5 / span 4;
    }

    .collage-item:nth-child(7) {
        grid-column: 9 / span 4;
        grid-row: 4 / span 2;
    }

    .megatext {
        font-size: clamp(6rem, 20vw, 25rem);
        margin-bottom: -50px;
    }
}

/* Tablet Layout */
@media (min-width: 768px) and (max-width: 1023px) {
    .collage-container {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 1fr);
        gap: 20px;
        height: auto;
    }

    .collage-item {
        aspect-ratio: 4/3;
        min-height: 250px;
    }

    .collage-item:nth-child(1) {
        grid-column: 1 / span 1;
        grid-row: 1 / span 1;
    }

    .collage-item:nth-child(2) {
        grid-column: 2 / span 1;
        grid-row: 1 / span 1;
    }

    .collage-item:nth-child(3) {
        grid-column: 1 / span 1;
        grid-row: 2 / span 1;
    }

    .collage-item:nth-child(4) {
        grid-column: 2 / span 1;
        grid-row: 2 / span 1;
    }

    .collage-item:nth-child(5) {
        grid-column: 1 / span 1;
        grid-row: 3 / span 1;
    }

    .collage-item:nth-child(6) {
        grid-column: 2 / span 1;
        grid-row: 3 / span 1;
    }

    .collage-item:nth-child(7) {
        grid-column: 1 / span 2;
        grid-row: 4 / span 1;
        aspect-ratio: 16/9;
    }

    .megatext {
        font-size: clamp(5rem, 18vw, 20rem);
        margin-bottom: -40px;
    }

    .vervolg {
        padding: 60px 0;
    }
}

/* Mobile Layout */
@media (max-width: 767px) {
    .vervolg {
        padding: 40px 0;
    }

    .collage-container {
        grid-template-columns: 1fr;
        gap: 20px;
        height: auto;
    }

    .collage-item {
        aspect-ratio: 16/9;
        min-height: 200px;
    }

    .big-text-container {
        margin-bottom: 40px;
    }

    .megatext {
        font-size: clamp(3rem, 12vw, 10rem);
        margin-bottom: -20px;
    }

    .collage-label h4 {
        font-size: 1.3rem;
    }

    .overlay-content h3 {
        font-size: 1.5rem;
    }

    .overlay-content p {
        font-size: 0.9rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .collage-item {
        aspect-ratio: 4/3;
        min-height: 220px;
    }

    .collage-wrapper {
        padding: 0 15px;
    }

    .collage-label {
        padding: 20px 15px;
    }

    .collage-label h4 {
        font-size: 1.2rem;
    }

    .collage-label p {
        font-size: 0.8rem;
    }

    .overlay-content {
        padding: 15px;
    }

    .overlay-content h3 {
        font-size: 1.3rem;
    }

    .overlay-content p {
        font-size: 0.85rem;
    }

    .megatext {
        font-size: clamp(2.5rem, 10vw, 8rem);
        margin-bottom: -15px;
    }
}

/* Large Desktop */
@media (min-width: 1600px) {
    .collage-container {
        height: 800px;
        grid-template-rows: repeat(8, minmax(100px, 1fr));
    }

    .collage-item:hover {
        transform: translateY(-15px) scale(1.02);
    }

    .megatext {
        font-size: clamp(8rem, 25vw, 30rem);
        margin-bottom: -70px;
    }
}

/* Accessibility: Touch device improvements */
@media (hover: none) and (pointer: coarse) {
    .collage-overlay {
        opacity: 0.9;
        backdrop-filter: none;
    }

    .collage-label {
        opacity: 0;
    }

    .collage-item:active {
        transform: translateY(-5px);
    }

    .collage-item:active img {
        transform: scale(1.05);
    }
}


/* ========== MOVEMENT PILLARS ========== */
.movement-pillars {
    margin: 50px 0;
}

.pillar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.pillar-item {
    background: rgba(227, 217, 209, 0.1);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.pillar-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--teal);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.pillar-item:hover::before {
    transform: scaleX(1);
}

.pillar-item:hover {
    transform: translateY(-8px);
    background: rgba(74, 155, 127, 0.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.pillar-icon {
    font-size: 2.2rem;
    color: var(--orange);
    margin-bottom: 20px;
    height: 60px;
    width: 60px;
    background: rgba(223, 111, 87, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.pillar-item:hover .pillar-icon {
    transform: scale(1.1);
    background: rgba(223, 111, 87, 0.2);
}

.pillar-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--beige);
    margin-bottom: 15px;
    text-transform: uppercase;
    line-height: 1.3;
}

.pillar-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.6;
    opacity: 0.9;
}

/* ========== IMPACT SECTION UPDATES ========== */
.impact-subtitle {
    margin-bottom: 60px;
    text-align: center;
}

.tagline {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 10px;
}

.subtext {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    margin-bottom: 60px;
}

.impact-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 35px 30px;
    border-radius: 15px;
    border-left: 5px solid var(--orange);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.impact-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.impact-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.1);
    line-height: 1;
}

.impact-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.2;
}

.impact-card p {
    font-family: 'Montserrat', sans-serif;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 400;
}

.impact-result {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, var(--orange), var(--teal));
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

.impact-result::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='20' viewBox='0 0 100 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.184 20c.357-.13.72-.264 1.088-.402l1.768-.661C33.64 15.347 39.647 14 50 14c10.271 0 15.362 1.222 24.629 4.928.955.383 1.869.74 2.75 1.072h6.225c-2.51-.73-5.139-1.691-8.233-2.928C65.888 13.278 60.562 12 50 12c-10.626 0-16.855 1.397-26.66 5.063l-1.767.662c-2.475.923-4.66 1.674-6.724 2.275h6.335zm0-20C13.258 2.892 8.077 4 0 4V2c5.744 0 9.951-.574 14.85-2h6.334zM77.38 0C85.239 2.966 90.502 4 100 4V2c-6.842 0-11.386-.542-16.396-2h-6.225zM0 14c8.44 0 13.718-1.21 22.272-4.402l1.768-.661C33.64 5.347 39.647 4 50 4c10.271 0 15.362 1.222 24.629 4.928C84.112 12.722 89.438 14 100 14v-2c-10.271 0-15.362-1.222-24.629-4.928C65.888 3.278 60.562 2 50 2 39.374 2 33.145 3.397 23.34 7.063l-1.767.662C13.223 10.84 8.163 12 0 12v2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.3;
    animation: floatPattern 30s linear infinite;
}

.result-content {
    position: relative;
    z-index: 2;
}

.result-content h3 {
    font-family: 'Barlow Condensed', sans-serif;
    color: #fff;
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.1;
}

.result-content p {
    font-family: 'Montserrat', sans-serif;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .platform-heading {
        font-size: 4.5rem;
    }

    .tagline {
        font-size: 2rem;
    }
}

@media (max-width: 992px) {
    .impact-grid {
        grid-template-columns: 1fr;
    }

    .pillar-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .platform-heading {
        font-size: 3.5rem;
    }

    .impact-card h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .tagline {
        font-size: 1.8rem;
    }

    .subtext {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .pillar-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .result-content h3 {
        font-size: 2rem;
    }

    .result-content p {
        font-size: 1.1rem;
    }

    .platform-heading {
        font-size: 2.8rem;
    }
}

@media (max-width: 480px) {
    .impact-card {
        padding: 25px 20px;
    }

    .impact-card h3 {
        font-size: 1.4rem;
    }

    .impact-number {
        font-size: 3rem;
    }

    .tagline {
        font-size: 1.5rem;
    }

    .pillar-item {
        padding: 25px 15px;
    }

    .pillar-title {
        font-size: 1.2rem;
    }

    .impact-result {
        padding: 40px 20px;
    }
}