
/* WORLD CUP 2026 FACILITATION PLAN */
 
.worldcup-plan {
    position: relative;
    padding: 140px 20px;
    background: url('../../assets/images/ghana-flag.png') center/cover no-repeat;
}

.wc-container {
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
.wc-header {
    text-align: center;
    margin-bottom: 80px;
}

.wc-label {
    display: inline-block;
    padding: 6px 16px;
    background: var(--brand-blue);
    color: #fff;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 20px;
    margin-bottom: 20px;
}

.wc-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--brand-blue);
    margin-bottom: 18px;
}

.wc-header p {
    max-width: 720px;
    margin: auto;
    font-size: 16.5px;
    line-height: 1.7;
    color: var(--text-dark);
}

.wc-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px;
    border-radius: 24px;

    background:
         
        url('../../assets/images/ghana-flag.png') center/cover no-repeat;

    box-shadow: 0 30px 80px rgba(0,0,0,0.08);
}
.worldcup-plan::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url('../../assets/images/noise.png') repeat;
    opacity: 0.04;
    pointer-events: none;
}


/* CARDS */
.wc-scope,
.wc-governance {
    background: #fff;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 25px 70px rgba(0,0,0,0.08);
    position: relative;
}

/* ACCENT BAR */
.wc-scope::before,
.wc-governance::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--brand-yellow);
    border-radius: 18px 0 0 18px;
}

.wc-scope h3,
.wc-governance h3 {
    font-size: 20px;
    color: var(--brand-blue);
    margin-bottom: 20px;
}

/* LIST */
.wc-scope ul,
.wc-governance ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wc-scope li,
.wc-governance li {
    padding-left: 28px;
    margin-bottom: 14px;
    position: relative;
    line-height: 1.6;
    color: var(--text-dark);
}

.wc-scope li::before,
.wc-governance li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--brand-red);
    font-size: 14px;
}

/* FOOTER STATEMENT */
.wc-footer {
    margin-top: 60px;
    padding: 30px;
    background: rgba(0,58,143,0.05);
    border-left: 6px solid var(--brand-blue);
    border-radius: 12px;

    background-color: #ffcc00;
}

.wc-footer p {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--brand-blue); 
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .wc-grid {
        grid-template-columns: 1fr;
    }

    .wc-header h2 {
        font-size: 34px;
    }
}

@media (max-width: 600px) {
    .wc-scope,
    .wc-governance {
        padding: 30px 24px;
    }
}
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease, transform 1s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.wc-flags-bg {
    position: absolute;
    inset: 0;
    background:
        url('../../assets/images/flag-usa.png') left center / 280px no-repeat,
        url('../../assets/images/flag-canada.png') center center / 280px no-repeat,
        url('../../assets/images/flag-mexico.png') right center / 280px no-repeat;
    opacity: 0.035;
    pointer-events: none;
}
.wc-timeline {
    position: relative;
    padding: 120px 20px;
    background: #ffffff;
    overflow: hidden;
}

.wc-star {
    position: absolute;
    top: 40px;
    right: 60px;
    width: 80px;
    height: 80px;
    background: url('../../assets/images/black-star.png') center/contain no-repeat;
    opacity: 0.06;
    animation: starFloat 12s ease-in-out infinite;
    pointer-events: none;
}

@keyframes starFloat {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(6deg); }
    100% { transform: translateY(0) rotate(0deg); }
}


.timeline-wrap {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Base phase card */
.phase {
    position: relative;
    background: #f9fbff;
    padding: 32px 28px 30px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    text-align: left;
    overflow: hidden;
}


.wc-timeline h3 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--brand-blue);
    margin-bottom: 70px;
    position: relative;
}

/* Optional subtle underline accent */
.wc-timeline h3::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(
        to right,
        #ce1126,
        #fcd116,
        #006b3f
    );
    margin: 18px auto 0;
    border-radius: 3px;
}

/* Progress bar */
.phase::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 5px;
    width: 100%;
}

/* Ghana color coding */
.phase-1::before { background: #ce1126; }   /* Ghana Red */
.phase-2::before { background: #fcd116; }   /* Ghana Yellow */
.phase-3::before { background: #006b3f; }   /* Ghana Green */
.phase-4::before { background: var(--brand-blue); }

/* Text */
.phase span {
    font-weight: 700;
    color: var(--brand-blue);
    display: block;
    margin-bottom: 10px;
}

.phase p {
    color: var(--text-dark);
    line-height: 1.6;
}


@media (max-width: 900px) {
    .timeline-wrap {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .timeline-wrap {
        grid-template-columns: 1fr;
    }
}
.wc-partners {
    padding: 100px 20px;
    background: #003a8f;
    text-align: center;
}

.wc-partners h3 {
    font-size: 32px;
    color: var(--brand-blue);
    margin-bottom: 50px;
}

.partner-logos {
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.partner-logos img {
    max-height: 55px;
    opacity: 0.65;
    filter: grayscale(100%);
    transition: all 0.4s ease;
}

.partner-logos img:hover {
    opacity: 1;
    filter: grayscale(0);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .partner-logos {
        justify-content: center;
    }
}
