#wifi-expertise {
    padding: 80px 0;
    margin: 100px auto;
}

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

.expertise-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expertise-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.expertise-icon {
    font-size: 3rem;
    color: var(--brand);
    margin-bottom: 20px;
}

.expertise-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--brand-mid);
    margin-bottom: 15px;
}

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

#wifi-expertise-container {
    width: var(--content-width);
    margin: 0 auto;
    text-align: center;
}

#wifi-expertise h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--brand-mid);
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    gap: 30px;
}

#wifi-expertise h2::before {
    content: '';
    flex: 1;
    height: 3px;
    background: var(--brand);
    margin-top: 10px;
}

#wifi-expertise h2::after {
    content: '';
    flex: 1;
    height: 3px;
    background: var(--brand);
    margin-top: 10px;
}

#antennes-container {
    margin: 0 auto;
    text-align: center;
}

#antennes-container h2 {
    font-size: 4rem;
    font-weight: 700;
    color: var(--brand-mid);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
}

#antennes-container h2::before {
    content: '';
    flex: 1;
    height: 3px;
    background: var(--brand);
    margin-top: 10px;
}

#antennes-container h2::after {
    content: '';
    flex: 1;
    height: 3px;
    background: var(--brand);
    margin-top: 10px;
}

#antennes-container p {
    font-size: 1.125rem;
    font-weight: 400;
    color: #333;
    line-height: 1.6;
    margin-bottom: 30px;
    width: 55%;
    margin: 40px auto;
}

#antennes-action a {
    background-color: var(--brand);
    color: #fff;
    padding: 18px 40px;
    font-size: 1.2rem;
    border-radius: 50px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

#antennes-action a:hover {
    background-color: var(--brand-dark);
    box-shadow: 0 12px 30px rgba(25, 145, 230, 0.4);
    transform: translateY(-3px);
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

#partners-content {
    margin: 0 auto;
    text-align: center;
}

#partners-content h2 {
    font-size: 4rem;
    font-weight: 700;
    color: var(--brand-mid);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
}

#partners-content h2::before {
    content: '';
    flex: 1;
    height: 3px;
    background: var(--brand);
    margin-top: 10px;
}

#partners-content h2::after {
    content: '';
    flex: 1;
    height: 3px;
    background: var(--brand);
    margin-top: 10px;
}

#partners-content p {
    font-size: 1.2rem;
    font-weight: 400;
    color: #333;
    line-height: 1.6;
    margin-bottom: 30px;
}

#partner-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

#partner-logos img {
    height: 48px;
    width: auto;
    max-width: 180px;
    max-height: 48px;
    aspect-ratio: auto;
    object-fit: contain;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

#partner-logos img.partner-starlink {
    height: 64px;
    max-height: 64px;
    max-width: 160px;
}

#partner-logos img:hover {
    opacity: 1;
}

#wifi-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#wifi-cta h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--brand-mid);
    padding-bottom: 20px;
}

#wifi-cta a {
    background-color: var(--brand);
    color: #fff;
    padding: 18px 40px;
    font-size: 1rem;
    border-radius: 50px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

/* Same CampLink → MarineLink → InduLink cycle as homepage Wi-Fi Experts */
.hero-background.wifi-slideshow .hero-slide-camplink {
    object-position: left; /* matches camplink.css hero */
    animation: wifi-slide-1 6s infinite;
}

.hero-background.wifi-slideshow .hero-slide-marinelink {
    object-position: left center; /* matches marinelink.css hero */
    animation: wifi-slide-2 6s infinite;
}

.hero-background.wifi-slideshow .hero-slide-indulink {
    object-position: bottom; /* matches indulink.css hero */
    animation: wifi-slide-3 6s infinite;
}

.hero-background.wifi-slideshow .hero-bg-image:hover {
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .hero-background.wifi-slideshow .hero-bg-image {
        animation: none;
        opacity: 0;
    }

    .hero-background.wifi-slideshow .hero-bg-image:first-child {
        opacity: 1;
    }
}


#wifi-cta a:hover {
    background-color: var(--brand-dark);
    box-shadow: 0 12px 30px rgba(25, 145, 230, 0.4);
    transform: translateY(-3px);
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

@media (max-width: 768px) {
    #antennes-container {
        text-align: left !important;
    }

    #antennes-container h2 {
        font-size: 2.5rem !important;
        align-items: flex-start !important;
        line-height: 1.1 !important;
    }

    #antennes-container h2::before {
        display: none !important;
    }

    #antennes-container h2::after {
        display: none !important;
    }

    #antennes-container p {
        font-size: 1rem !important;
        align-items: flex-start !important;
        margin: 30px 0 !important;
        width: 100% !important;
    }

    #antennes-action a {
        font-size: 0.9rem !important;
    }

    #wifi-cta {
        align-items: flex-start !important;
    }

    #partners-content h2 {
        font-size: 2.5rem !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
    }

    #partners-content h2::before,
    #partners-content h2::after {
        display: none !important;
    }

    #partners-content p {
        text-align: left !important;
        justify-content: flex-start !important;
    }

    #partner-logos {
        gap: 10px !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
    }

    #partner-logos img {
        height: 36px !important;
        width: auto !important;
        max-width: 28vw !important;
    }

    #partner-logos img.partner-starlink {
        height: 48px !important;
        max-width: 30vw !important;
    }

    #antennes {
        padding: 40px 0 !important;
        margin: 50px auto !important;
    }

    #solutions-heading {
        word-break: break-word !important;
        hyphens: auto !important;
        -webkit-hyphens: auto !important;
        -moz-hyphens: auto !important;
        -ms-hyphens: auto !important;
    }

    #inoutdoor-heading {
        word-break: break-word !important;
        hyphens: auto !important;
        -webkit-hyphens: auto !important;
        -moz-hyphens: auto !important;
        -ms-hyphens: auto !important;
    }

    #wifi-cta h2,
    #marinelink-cta h2,
    #camplink-cta h2,
    #indulink-cta h2 {
        font-size: 2.5rem !important;
    }

    section {
        margin-top: 60px !important;
        margin-bottom: 60px !important;
    }

    #wifi-expertise {
        margin-bottom: 30px !important;
    }

    #antennes {
        margin-bottom: 30px !important;
    }

    #partners {
        margin-bottom: 30px !important;
    }

    #wifi-cta {
        margin-top: 120px !important;
        margin-top: 120px !important;
    }

    .leftSection,
    .rightSection {
        margin-top: 60px !important;
        margin-bottom: 60px !important;
    }

    .leftSection h2,
    .rightSection h2 {
        margin-bottom: 20px !important;
        padding-top: 20px !important;
    }

    @media (max-width: 768px) {
        #wifi-expertise-container {
            width: 90%;
            text-align: center;
        }

        #wifi-expertise h2 {
            font-size: 2.5rem;
            margin-bottom: 40px;
            justify-content: center;
        }

        .expertise-grid {
            justify-content: center;
            align-items: center;
        }

        .expertise-item {
            text-align: center;
            margin: 0 auto;
        }

        #wifi-cta {
            align-items: flex-start !important;
        }
    }

}